From 67265ceff0c2c59911f76a34b8a564a77fbc4df9 Mon Sep 17 00:00:00 2001 From: Dan Ungureanu Date: Sun, 8 Nov 2015 15:33:08 +0200 Subject: [PATCH 001/100] Fixed multiple parser issues (#11646, #11635, #11631, #11626, #11608, #11602). Updated sql-parser library to udan11/sql-parser@2a3d3b80deba3364b7a1c4ddd52b22c7bb24995b (v3.0.5). Signed-off-by: Dan Ungureanu --- .../sql-parser/src/Components/Condition.php | 1 + .../sql-parser/src/Components/Expression.php | 5 ++-- .../src/Components/OptionsArray.php | 4 +-- .../src/Contexts/ContextMySql50000.php | 2 +- .../src/Contexts/ContextMySql50100.php | 2 +- .../src/Contexts/ContextMySql50500.php | 2 +- .../src/Contexts/ContextMySql50600.php | 2 +- .../src/Contexts/ContextMySql50700.php | 2 +- libraries/sql-parser/src/Parser.php | 17 +++++++++++- libraries/sql-parser/src/Statement.php | 26 ++++++++++++++++++- .../src/Statements/CreateStatement.php | 13 ++++++++++ .../src/Statements/InsertStatement.php | 13 +++++++++- .../src/Statements/SelectStatement.php | 21 +++++++++++++++ .../sql-parser/src/Utils/BufferedQuery.php | 5 ++++ libraries/sql-parser/src/Utils/Query.php | 19 +++++++------- 15 files changed, 112 insertions(+), 22 deletions(-) diff --git a/libraries/sql-parser/src/Components/Condition.php b/libraries/sql-parser/src/Components/Condition.php index d7262c5978..ab327a2166 100644 --- a/libraries/sql-parser/src/Components/Condition.php +++ b/libraries/sql-parser/src/Components/Condition.php @@ -46,6 +46,7 @@ class Condition extends Component 'LIKE' => 1, 'NOT IN' => 1, 'NOT NULL' => 1, + 'NOT' => 1, 'NULL' => 1, 'OR' => 1, 'XOR' => 1, diff --git a/libraries/sql-parser/src/Components/Expression.php b/libraries/sql-parser/src/Components/Expression.php index 22cd23fd10..4c2c04c917 100644 --- a/libraries/sql-parser/src/Components/Expression.php +++ b/libraries/sql-parser/src/Components/Expression.php @@ -230,8 +230,9 @@ class Expression extends Component break; } } elseif ($brackets < 0) { - $parser->error(__('Unexpected closing bracket.'), $token); - $brackets = 0; + // $parser->error(__('Unexpected closing bracket.'), $token); + // $brackets = 0; + break; } } elseif ($token->value === ',') { if ($brackets === 0) { diff --git a/libraries/sql-parser/src/Components/OptionsArray.php b/libraries/sql-parser/src/Components/OptionsArray.php index 42f0762ab7..229b350110 100644 --- a/libraries/sql-parser/src/Components/OptionsArray.php +++ b/libraries/sql-parser/src/Components/OptionsArray.php @@ -146,8 +146,8 @@ class OptionsArray extends Component sprintf( __('This option conflicts with "%1$s".'), is_array($ret->options[$lastOptionId]) - ? $ret->options[$lastOptionId]['name'] - : $ret->options[$lastOptionId] + ? $ret->options[$lastOptionId]['name'] + : $ret->options[$lastOptionId] ), $token ); diff --git a/libraries/sql-parser/src/Contexts/ContextMySql50000.php b/libraries/sql-parser/src/Contexts/ContextMySql50000.php index 01090b3323..2df5326b49 100644 --- a/libraries/sql-parser/src/Contexts/ContextMySql50000.php +++ b/libraries/sql-parser/src/Contexts/ContextMySql50000.php @@ -151,7 +151,7 @@ class ContextMySql50000 extends Context 'RIGHT JOIN' => 7, 'LINEAR HASH' => 7, 'AND NO CHAIN' => 7, 'FOR EACH ROW' => 7, 'PARTITION BY' => 7, - 'SQL SECURITY' => 7, + 'SET PASSWORD' => 7, 'SQL SECURITY' => 7, 'CHARACTER SET' => 7, 'IF NOT EXISTS' => 7, 'DATA DIRECTORY' => 7, 'DEFAULT CHARSET' => 7, 'DEFAULT COLLATE' => 7, 'INDEX DIRECTORY' => 7, diff --git a/libraries/sql-parser/src/Contexts/ContextMySql50100.php b/libraries/sql-parser/src/Contexts/ContextMySql50100.php index b10ff1cd32..3779c0eeeb 100644 --- a/libraries/sql-parser/src/Contexts/ContextMySql50100.php +++ b/libraries/sql-parser/src/Contexts/ContextMySql50100.php @@ -164,7 +164,7 @@ class ContextMySql50100 extends Context 'RIGHT JOIN' => 7, 'LINEAR HASH' => 7, 'AND NO CHAIN' => 7, 'FOR EACH ROW' => 7, 'PARTITION BY' => 7, - 'SQL SECURITY' => 7, + 'SET PASSWORD' => 7, 'SQL SECURITY' => 7, 'CHARACTER SET' => 7, 'IF NOT EXISTS' => 7, 'DATA DIRECTORY' => 7, 'DEFAULT CHARSET' => 7, 'DEFAULT COLLATE' => 7, 'INDEX DIRECTORY' => 7, diff --git a/libraries/sql-parser/src/Contexts/ContextMySql50500.php b/libraries/sql-parser/src/Contexts/ContextMySql50500.php index c7faa84771..a8cd9e7639 100644 --- a/libraries/sql-parser/src/Contexts/ContextMySql50500.php +++ b/libraries/sql-parser/src/Contexts/ContextMySql50500.php @@ -169,7 +169,7 @@ class ContextMySql50500 extends Context 'RIGHT JOIN' => 7, 'LINEAR HASH' => 7, 'AND NO CHAIN' => 7, 'FOR EACH ROW' => 7, 'PARTITION BY' => 7, - 'SQL SECURITY' => 7, + 'SET PASSWORD' => 7, 'SQL SECURITY' => 7, 'CHARACTER SET' => 7, 'IF NOT EXISTS' => 7, 'DATA DIRECTORY' => 7, 'DEFAULT CHARSET' => 7, 'DEFAULT COLLATE' => 7, 'INDEX DIRECTORY' => 7, diff --git a/libraries/sql-parser/src/Contexts/ContextMySql50600.php b/libraries/sql-parser/src/Contexts/ContextMySql50600.php index 9854d37fb6..d7b0080a28 100644 --- a/libraries/sql-parser/src/Contexts/ContextMySql50600.php +++ b/libraries/sql-parser/src/Contexts/ContextMySql50600.php @@ -174,7 +174,7 @@ class ContextMySql50600 extends Context 'RIGHT JOIN' => 7, 'LINEAR HASH' => 7, 'AND NO CHAIN' => 7, 'FOR EACH ROW' => 7, 'PARTITION BY' => 7, - 'SQL SECURITY' => 7, + 'SET PASSWORD' => 7, 'SQL SECURITY' => 7, 'CHARACTER SET' => 7, 'IF NOT EXISTS' => 7, 'DATA DIRECTORY' => 7, 'DEFAULT CHARSET' => 7, 'DEFAULT COLLATE' => 7, 'INDEX DIRECTORY' => 7, diff --git a/libraries/sql-parser/src/Contexts/ContextMySql50700.php b/libraries/sql-parser/src/Contexts/ContextMySql50700.php index a308f5a5cd..1235524263 100644 --- a/libraries/sql-parser/src/Contexts/ContextMySql50700.php +++ b/libraries/sql-parser/src/Contexts/ContextMySql50700.php @@ -182,7 +182,7 @@ class ContextMySql50700 extends Context 'RIGHT JOIN' => 7, 'LINEAR HASH' => 7, 'AND NO CHAIN' => 7, 'FOR EACH ROW' => 7, 'PARTITION BY' => 7, - 'SQL SECURITY' => 7, + 'SET PASSWORD' => 7, 'SQL SECURITY' => 7, 'CHARACTER SET' => 7, 'IF NOT EXISTS' => 7, 'DATA DIRECTORY' => 7, 'DEFAULT CHARSET' => 7, 'DEFAULT COLLATE' => 7, 'INDEX DIRECTORY' => 7, diff --git a/libraries/sql-parser/src/Parser.php b/libraries/sql-parser/src/Parser.php index 1280d7287b..8f4b2eda92 100644 --- a/libraries/sql-parser/src/Parser.php +++ b/libraries/sql-parser/src/Parser.php @@ -37,9 +37,11 @@ class Parser // MySQL Utility Statements 'EXPLAIN' => 'SqlParser\\Statements\\ExplainStatement', 'DESCRIBE' => 'SqlParser\\Statements\\ExplainStatement', + 'GRANT' => '', 'HELP' => '', - 'USE' => '', + 'SET PASSWORD' => '', 'STATUS' => '', + 'USE' => '', // Table Maintenance Statements // https://dev.mysql.com/doc/refman/5.7/en/table-maintenance-sql.html @@ -296,6 +298,13 @@ class Parser */ public $statements = array(); + /** + * The number of opened brackets. + * + * @var int + */ + public $brackets = 0; + /** * Constructor. * @@ -380,6 +389,12 @@ class Parser continue; } + // Counting the brackets around statements. + if ($token->value === '(') { + ++$this->brackets; + continue; + } + // Statements can start with keywords only. // Comments, whitespaces, etc. are ignored. if ($token->type !== Token::TYPE_KEYWORD) { diff --git a/libraries/sql-parser/src/Statement.php b/libraries/sql-parser/src/Statement.php index b15dc3dac9..a9d4dc8c94 100644 --- a/libraries/sql-parser/src/Statement.php +++ b/libraries/sql-parser/src/Statement.php @@ -122,7 +122,14 @@ abstract class Statement */ $built = array(); - foreach (static::$CLAUSES as $clause) { + /** + * Statement's clauses. + * + * @var array + */ + $clauses = $this->getClauses(); + + foreach ($clauses as $clause) { /** * The name of the clause. * @@ -224,6 +231,13 @@ abstract class Statement break; } + // Checking if this closing bracket is the pair for a bracket + // outside the statement. + if (($token->value === ')') && ($parser->brackets > 0)) { + --$parser->brackets; + continue; + } + // Only keywords are relevant here. Other parts of the query are // processed in the functions below. if ($token->type !== Token::TYPE_KEYWORD) { @@ -363,6 +377,16 @@ abstract class Statement } + /** + * Gets the clauses of this statement. + * + * @return array + */ + public function getClauses() + { + return static::$CLAUSES; + } + /** * Builds the string representation of this statement. * diff --git a/libraries/sql-parser/src/Statements/CreateStatement.php b/libraries/sql-parser/src/Statements/CreateStatement.php index 1a46b56f40..fe6693bf9d 100644 --- a/libraries/sql-parser/src/Statements/CreateStatement.php +++ b/libraries/sql-parser/src/Statements/CreateStatement.php @@ -314,6 +314,11 @@ class CreateStatement extends Statement . Expression::build($this->name) . ' ' . ParameterDefinition::build($this->parameters) . ' ' . $tmp . ' ' . TokensList::build($this->body); + } else { + return 'CREATE ' + . OptionsArray::build($this->options) . ' ' + . Expression::build($this->name) . ' ' + . TokensList::build($this->body); } return ''; } @@ -547,6 +552,14 @@ class CreateStatement extends Statement $token = $list->tokens[$list->idx]; $this->body[] = $token; } + } else { + for (; $list->idx < $list->count; ++$list->idx) { + $token = $list->tokens[$list->idx]; + if ($token->type === Token::TYPE_DELIMITER) { + break; + } + $this->body[] = $token; + } } } } diff --git a/libraries/sql-parser/src/Statements/InsertStatement.php b/libraries/sql-parser/src/Statements/InsertStatement.php index 303de259b6..c2a02b0ec0 100644 --- a/libraries/sql-parser/src/Statements/InsertStatement.php +++ b/libraries/sql-parser/src/Statements/InsertStatement.php @@ -11,6 +11,7 @@ namespace SqlParser\Statements; use SqlParser\Statement; use SqlParser\Components\IntoKeyword; use SqlParser\Components\Array2d; +use SqlParser\Components\ArrayObj; /** * `INSERT` statement. @@ -76,7 +77,17 @@ class InsertStatement extends Statement /** * Values to be inserted. * - * @var Array2d + * @var ArrayObj[] */ public $values; + + /** + * @return string + */ + public function build() + { + return 'INSERT ' . $this->options + . ' INTO ' . $this->into + . ' VALUES ' . ArrayObj::build($this->values); + } } diff --git a/libraries/sql-parser/src/Statements/SelectStatement.php b/libraries/sql-parser/src/Statements/SelectStatement.php index add3b8b65d..4bcbf2dd87 100644 --- a/libraries/sql-parser/src/Statements/SelectStatement.php +++ b/libraries/sql-parser/src/Statements/SelectStatement.php @@ -195,4 +195,25 @@ class SelectStatement extends Statement * @var SelectStatement[] */ public $union = array(); + + /** + * Gets the clauses of this statement. + * + * @return array + */ + public function getClauses() + { + // This is a cheap fix for `SELECT` statements that contain `UNION`. + // The `ORDER BY` and `LIMIT` clauses should be at the end of the + // statement. + if (!empty($this->union)) { + $clauses = static::$CLAUSES; + unset($clauses['ORDER BY']); + unset($clauses['LIMIT']); + $clauses['ORDER BY'] = array('ORDER BY', 3); + $clauses['LIMIT'] = array('LIMIT', 3); + return $clauses; + } + return static::$CLAUSES; + } } diff --git a/libraries/sql-parser/src/Utils/BufferedQuery.php b/libraries/sql-parser/src/Utils/BufferedQuery.php index 7a2e5f4374..f399220b22 100644 --- a/libraries/sql-parser/src/Utils/BufferedQuery.php +++ b/libraries/sql-parser/src/Utils/BufferedQuery.php @@ -283,6 +283,10 @@ class BufferedQuery * `strtoupper(substr($this->query, $i, 9)) === 'DELIMITER'` * * This optimization makes the code about 3 times faster. + * + * `DELIMITER` is not being considered a keyword. The only context + * it has a special meaning is when it is the beginning of a + * statement. This is the reason for the last condition. */ if (($i + 9 < $len) && (($this->query[$i ] === 'D') || ($this->query[$i ] === 'd')) @@ -295,6 +299,7 @@ class BufferedQuery && (($this->query[$i + 7] === 'E') || ($this->query[$i + 7] === 'e')) && (($this->query[$i + 8] === 'R') || ($this->query[$i + 8] === 'r')) && (Context::isWhitespace($this->query[$i + 9])) + && (trim($this->current) === '') ) { // Saving the current index to be able to revert any parsing // done in this block. diff --git a/libraries/sql-parser/src/Utils/Query.php b/libraries/sql-parser/src/Utils/Query.php index 4325b6563b..d76e6bb723 100644 --- a/libraries/sql-parser/src/Utils/Query.php +++ b/libraries/sql-parser/src/Utils/Query.php @@ -295,7 +295,14 @@ class Query $flags['is_export'] = true; } - foreach ($statement->expr as $expr) { + $expressions = $statement->expr; + if (!empty($statement->join)) { + foreach ($statement->join as $join) { + $expressions[] = $join->expr; + } + } + + foreach ($expressions as $expr) { if (!empty($expr->function)) { if ($expr->function === 'COUNT') { $flags['is_count'] = true; @@ -539,15 +546,7 @@ class Query * * @var array $clauses */ - $clauses = array_flip(array_keys($statement::$CLAUSES)); - - // This is a cheap fix for `SELECT` statements that contain `UNION`. - // Replacing the `ORDER BY` or `LIMIT` clauses should replace the last - // clause. - if (($statement instanceof SelectStatement) && (!empty($statement->union))) { - $clauses['ORDER BY'] = count($clauses) + 1; - $clauses['LIMIT'] = count($clauses) + 2; - } + $clauses = array_flip(array_keys($statement->getClauses())); /** * Lexer used for lexing the clause. From b7b6092db08823d41c7dd9d6d54291e5210bd39b Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 5 Nov 2015 12:07:09 +0100 Subject: [PATCH 002/100] Translated using Weblate (Turkish) Currently translated at 100.0% (3211 of 3211 strings) [CI skip] --- po/tr.po | 58 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/po/tr.po b/po/tr.po index 86dfd6d570..d26d7d42ca 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.5.2-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-10-26 19:59-0400\n" -"PO-Revision-Date: 2015-10-27 05:44+0200\n" +"PO-Revision-Date: 2015-11-05 12:07+0000\n" "Last-Translator: Burak Yavuz \n" "Language-Team: Turkish " "\n" @@ -1634,7 +1634,7 @@ msgstr "" #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:238 #: setup/frames/menu.inc.php:26 msgid "Import" -msgstr "İçe Aktar" +msgstr "İçe aktar" #: js/messages.php:272 msgid "Import monitor configuration" @@ -1824,7 +1824,7 @@ msgstr "Depolanan işlevin tanımı RETURN ifadesi içermek zorunda!" #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 msgid "Export" -msgstr "Dışa Aktar" +msgstr "Dışa aktar" #: js/messages.php:338 libraries/rte/rte_routines.lib.php:743 msgid "ENUM/SET editor" @@ -3010,7 +3010,7 @@ msgstr "" #: libraries/Config.class.php:1802 msgid "Font size" -msgstr "Yazı Tipi boyutu" +msgstr "Yazı tipi boyutu" #: libraries/Console.class.php:85 libraries/Console.class.php:210 #: libraries/Console.class.php:313 @@ -3254,8 +3254,8 @@ msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -"Enter tuşuna basarak sorguları çalıştırın ve Shift + Enter tuşları ile yeni " -"satır ekleyin. Bunu kalıcı yapmak için ayarlara bakın." +"Enter tuşuna basıldığında sorguları çalıştır ve Shift + Enter tuşları ile " +"yeni satır ekle. Bunu kalıcı yapmak için ayarlara bakın." #: libraries/Console.class.php:389 msgid "Switch to dark theme" @@ -3874,7 +3874,7 @@ msgstr "Linting bu sorgu için etkisizleştirildi çünkü en fazla uzunluğu a #: libraries/Linter.class.php:162 #, php-format msgid "%1$s (near %2$s)" -msgstr "%1$s (yaklaşık %2$s)" +msgstr "%1$s (%2$s yanına)" #: libraries/Menu.class.php:200 libraries/ServerStatusData.class.php:442 #: libraries/config/messages.inc.php:933 @@ -4025,7 +4025,7 @@ msgstr "İkili değer günlüğü" #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" -msgstr "Kopya Etme" +msgstr "Kopya etme" #: libraries/Menu.class.php:606 libraries/ServerStatusData.class.php:194 #: libraries/Util.class.php:4281 libraries/config.values.php:105 @@ -6109,7 +6109,7 @@ msgstr "Varsayılan genel içe aktarma seçeneklerini özelleştirir." #: libraries/config/messages.inc.php:263 msgid "Import / export" -msgstr "İçe Aktar / Dışa Aktar" +msgstr "İçe aktar / Dışa aktar" #: libraries/config/messages.inc.php:265 msgid "Set import and export directories and compression options." @@ -9162,7 +9162,7 @@ msgstr "Aşağıdaki sorguya çalıştırmak istiyor musunuz?" #: libraries/mysql_charsets.lib.php:45 msgid "Charset" -msgstr "Karakter Grubu" +msgstr "Karakter grubu" #: libraries/mysql_charsets.lib.php:169 msgid "Bulgarian" @@ -13908,28 +13908,28 @@ msgstr "Kategorilenmemiş değiştirme işlemi." #: libraries/sql-parser/src/Components/Array2d.php:92 #, php-format msgid "%1$d values were expected, but found %2$d." -msgstr "%1$d değer beklendi, ancak %2$d bulundu." +msgstr "%1$d değer beklenmekte, ancak %2$d bulundu." #: libraries/sql-parser/src/Components/Array2d.php:115 msgid "An opening bracket followed by a set of values was expected." -msgstr "Açık bir köşeli parantez ardından bir grup değer beklendi." +msgstr "Açık bir köşeli parantez ardından bir grup değer beklenmekte." #: libraries/sql-parser/src/Components/ArrayObj.php:102 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." -msgstr "Açık bir köşeli parantez beklendi." +msgstr "Açık bir köşeli parantez beklenmekte." #: libraries/sql-parser/src/Components/ArrayObj.php:127 msgid "A comma or a closing bracket was expected" -msgstr "Bir virgül ya da kapalı bir köşeli parantez beklendi" +msgstr "Bir virgül ya da kapalı bir köşeli parantez beklenmekte" #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." -msgstr "Bir virgül ya da kapalı bir köşeli parantez beklendi." +msgstr "Bir virgül ya da kapalı bir köşeli parantez beklenmekte." #: libraries/sql-parser/src/Components/CreateDefinition.php:267 msgid "A closing bracket was expected." -msgstr "Kapalı bir köşeli parantez beklendi." +msgstr "Kapalı bir köşeli parantez beklenmekte." #: libraries/sql-parser/src/Components/DataType.php:128 msgid "Unrecognized data type." @@ -13951,16 +13951,16 @@ msgstr "Beklenmedik nokta." #: libraries/sql-parser/src/Components/Expression.php:334 msgid "An alias was expected." -msgstr "Bir kodadı beklendi." +msgstr "Bir kodadı beklenmekte." #: libraries/sql-parser/src/Components/ExpressionArray.php:97 msgid "An expression was expected." -msgstr "Bir ifade beklendi." +msgstr "Bir ifade beklenmekte." #: libraries/sql-parser/src/Components/Limit.php:91 #: libraries/sql-parser/src/Components/Limit.php:113 msgid "An offset was expected." -msgstr "Bir karşılık beklendi." +msgstr "Bir karşılık beklenmekte." #: libraries/sql-parser/src/Components/OptionsArray.php:147 #, php-format @@ -13969,19 +13969,19 @@ msgstr "Bu seçenek \"%1$s\" ile çakışıyor." #: libraries/sql-parser/src/Components/RenameOperation.php:103 msgid "The old name of the table was expected." -msgstr "Tablonun eski adı beklendi." +msgstr "Tablonun eski adı beklenmekte." #: libraries/sql-parser/src/Components/RenameOperation.php:113 msgid "Keyword \"TO\" was expected." -msgstr "\"TO\" anahtar kelimesi beklendi." +msgstr "\"TO\" anahtar kelimesi beklenmekte." #: libraries/sql-parser/src/Components/RenameOperation.php:130 msgid "The new name of the table was expected." -msgstr "Tablonun yeni adı beklendi." +msgstr "Tablonun yeni adı beklenmekte." #: libraries/sql-parser/src/Components/RenameOperation.php:148 msgid "A rename operation was expected." -msgstr "Yeniden adlandırma işlemi beklendi." +msgstr "Yeniden adlandırma işlemi beklenmekte." #: libraries/sql-parser/src/Lexer.php:267 msgid "Unexpected character." @@ -13999,11 +13999,11 @@ msgstr "Beklenen sınırlayıcı." #: libraries/sql-parser/src/Lexer.php:784 #, php-format msgid "Ending quote %1$s was expected." -msgstr "Sonlandırma tırnak işareti %1$s beklendi." +msgstr "Sonlandırma tırnak işareti %1$s beklenmekte." #: libraries/sql-parser/src/Lexer.php:824 msgid "Variable name was expected." -msgstr "Değişken adı beklendi." +msgstr "Değişken adı beklenmekte." #: libraries/sql-parser/src/Parser.php:392 msgid "Unexpected beginning of statement." @@ -14037,15 +14037,15 @@ msgstr "Tanınmayan anahtar kelime." #: libraries/sql-parser/src/Statements/CreateStatement.php:348 msgid "The name of the entity was expected." -msgstr "Varlığın adı beklendi." +msgstr "Varlığın adı beklenmekte." #: libraries/sql-parser/src/Statements/CreateStatement.php:365 msgid "At least one column definition was expected." -msgstr "En az bir sütun tanımı beklendi." +msgstr "En az bir sütun tanımı beklenmekte." #: libraries/sql-parser/src/Statements/CreateStatement.php:476 msgid "A \"RETURNS\" keyword was expected." -msgstr "\"RETURNS\" anahtar kelimesi beklendi." +msgstr "\"RETURNS\" anahtar kelimesi beklenmekte." #: libraries/sql.lib.php:224 msgid "Detailed profile" @@ -14299,7 +14299,7 @@ msgstr "Tarih" #: libraries/tracking.lib.php:791 msgid "Username" -msgstr "Kullanıcı Adı" +msgstr "Kullanıcı adı" #: libraries/tracking.lib.php:845 #, php-format From 06a4c57da16cc36e2fa69f7ecd6e44bd0cf8f3bc Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Mon, 9 Nov 2015 05:39:17 -0800 Subject: [PATCH 003/100] Remove dead code Signed-off-by: Marc Delisle --- libraries/plugins/ExportPlugin.php | 5 +---- libraries/plugins/export/ExportSql.php | 21 ++------------------- 2 files changed, 3 insertions(+), 23 deletions(-) diff --git a/libraries/plugins/ExportPlugin.php b/libraries/plugins/ExportPlugin.php index 0f4b20c210..4d872a6137 100644 --- a/libraries/plugins/ExportPlugin.php +++ b/libraries/plugins/ExportPlugin.php @@ -170,16 +170,13 @@ abstract class ExportPlugin * @param string $db database being exported * @param string|array $tables table(s) being exported * @param array $metadataTypes types of metadata to export - * @param array $targetNames associative array of db and table names of - * target configuraton storage * * @return bool Whether it succeeded */ public function exportMetadata( $db, $tables, - $metadataTypes, - $targetNames = array() + $metadataTypes ) { ; } diff --git a/libraries/plugins/export/ExportSql.php b/libraries/plugins/export/ExportSql.php index 16716fa1bd..62a90f7e13 100644 --- a/libraries/plugins/export/ExportSql.php +++ b/libraries/plugins/export/ExportSql.php @@ -974,16 +974,13 @@ class ExportSql extends ExportPlugin * @param string $db database being exported * @param string|array $tables table(s) being exported * @param array $metadataTypes types of metadata to export - * @param array $targetNames associative array of db and table names of - * target configuraton storage * * @return bool Whether it succeeded */ public function exportMetadata( $db, $tables, - $metadataTypes, - $targetNames = array() + $metadataTypes ) { $cfgRelation = PMA_getRelationsParam(); if (!isset($cfgRelation['db'])) { @@ -1029,16 +1026,13 @@ class ExportSql extends ExportPlugin * @param string $db database being exported * @param string $table table being exported * @param array $metadataTypes types of metadata to export - * @param array $targetNames associative array of db and table names of - * target configuraton storage * * @return bool Whether it succeeded */ private function _exportMetadata( $db, $table, - $metadataTypes, - $targetNames = array() + $metadataTypes ) { $cfgRelation = PMA_getRelationsParam(); @@ -1059,17 +1053,6 @@ class ExportSql extends ExportPlugin } $aliases = array(); - foreach ($targetNames as $type => $targetName) { - if ($type == 'phpmyadmin') { - $aliases[$cfgRelation['db']] = $targetName; - continue; - } - - if (isset($cfgRelation[$type])) { - $aliases[$cfgRelation['db']]['tables'][$cfgRelation[$type]]['alias'] - = $targetName; - } - } $comment = $this->_possibleCRLF() . $this->_exportComment() From 0187c60d6169bbf1a2b2b550c5ad57896d0b27d5 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Mon, 9 Nov 2015 09:27:23 -0800 Subject: [PATCH 004/100] Internal relations are probably less commonly used than Foreign key constraints and the display column dialog Signed-off-by: Marc Delisle --- templates/table/relation/common_form.phtml | 64 +++++++++++----------- 1 file changed, 33 insertions(+), 31 deletions(-) diff --git a/templates/table/relation/common_form.phtml b/templates/table/relation/common_form.phtml index 19a1f39397..cf3ec47dc3 100644 --- a/templates/table/relation/common_form.phtml +++ b/templates/table/relation/common_form.phtml @@ -1,36 +1,5 @@
- - -
- - - - - - - - render( - array( - 'save_row' => $save_row, - 'i' => $i, - 'odd_row' => $odd_row, - 'existrel' => $existrel, - 'db' => $db - ) - ); - $odd_row = ! $odd_row; ?> - -
- - - -
-
-
@@ -104,6 +73,39 @@
+ + + +
+ + + + + + + + render( + array( + 'save_row' => $save_row, + 'i' => $i, + 'odd_row' => $odd_row, + 'existrel' => $existrel, + 'db' => $db + ) + ); + $odd_row = ! $odd_row; ?> + +
+ + + +
+
+ +
From dd146633261314de62c26426a1f5c81fa7b04b8b Mon Sep 17 00:00:00 2001 From: Dan Ungureanu Date: Tue, 10 Nov 2015 20:19:50 +0200 Subject: [PATCH 005/100] Added ChangeLog entries. Signed-off-by: Dan Ungureanu --- ChangeLog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index e4ec259885..9846289e48 100644 --- a/ChangeLog +++ b/ChangeLog @@ -22,6 +22,12 @@ phpMyAdmin - ChangeLog - issue Profiling checkbox is missing - issue #11642 Properly handle session expiry after POST requests - issue #11648 Notice in ./export.php#214 Undefined index: quick_or_custom +- issue #11646 Unrecognized keywords +- issue #11635 Sql not executed properly +- issue #11631 Linter warnings when creating new user +- issue #11626 wrong row count for query results +- issue #11608 Analyzer doesn't recognize GRANT statements +- issue #11602 Parser warnings (subqueries) 4.5.1.0 (2015-10-23) - issue Invalid argument supplied for foreach() From 40beea16cc10db2557855934c0748ba3013e05f9 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Tue, 10 Nov 2015 13:24:47 -0500 Subject: [PATCH 006/100] Add column header for foreign key drop-downs Signed-off-by: Marc Delisle --- templates/table/relation/common_form.phtml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/templates/table/relation/common_form.phtml b/templates/table/relation/common_form.phtml index cf3ec47dc3..e770c17343 100644 --- a/templates/table/relation/common_form.phtml +++ b/templates/table/relation/common_form.phtml @@ -18,6 +18,14 @@ () + + + + + + + + $one_key): ?> From 5eaa8f86e0bbe9cebbfe9e761197186a159d0d90 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Wed, 11 Nov 2015 07:44:41 +1100 Subject: [PATCH 007/100] Fix #11654 Use a slider for Internal relations in foreign key supported tables Signed-off-by: Madhura Jayaratne --- ChangeLog | 1 + templates/table/relation/common_form.phtml | 45 +++++++++++++--------- 2 files changed, 28 insertions(+), 18 deletions(-) diff --git a/ChangeLog b/ChangeLog index 98d5a898b8..7a4f612948 100644 --- a/ChangeLog +++ b/ChangeLog @@ -11,6 +11,7 @@ phpMyAdmin - ChangeLog - issue Tracking does not make sense for information_schema - issue #11550 Regression in Find and replace + issue #11619 TokuDB Tables Show Size as "unknown" ++ issue #11654 Use a slider for Internal relations 4.5.2.0 (not yet released) - issue #11589 Incorrect parameter in mysqli_fetch_fields() diff --git a/templates/table/relation/common_form.phtml b/templates/table/relation/common_form.phtml index e770c17343..df15c06265 100644 --- a/templates/table/relation/common_form.phtml +++ b/templates/table/relation/common_form.phtml @@ -63,26 +63,13 @@
- - - -
- - -
- + +
+ + +
@@ -112,6 +99,28 @@
+ + + + + + + + +
+ + +
From 896f0fabfc9497e487b1e51f9839aa7b620af764 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 11 Nov 2015 12:07:51 -0500 Subject: [PATCH 008/100] Remove specific theme-related directives from the doc. See rationale here: http://wiki.phpmyadmin.net/pma/2015-11_Meeting#Theme_configuration_directives Signed-off-by: Marc Delisle --- doc/config.rst | 126 +------------------------------------------------ 1 file changed, 2 insertions(+), 124 deletions(-) diff --git a/doc/config.rst b/doc/config.rst index 2644c3404a..bb591ea874 100644 --- a/doc/config.rst +++ b/doc/config.rst @@ -2276,130 +2276,8 @@ Web server settings Theme settings -------------- -.. config:option:: $cfg['NaviWidth'] - - :type: integer - :default: - - Navigation panel width in pixels. See - :file:`themes/themename/layout.inc.php`. - -.. config:option:: $cfg['NaviBackground'] - - :type: string [CSS color for background] - :default: - -.. config:option:: $cfg['MainBackground'] - - :type: string [CSS color for background] - :default: - - The background styles used for both the frames. See - :file:`themes/themename/layout.inc.php`. - -.. config:option:: $cfg['NaviPointerBackground'] - - :type: string [CSS color for background] - :default: - -.. config:option:: $cfg['NaviPointerColor'] - - :type: string [CSS color] - :default: - - The style used for the pointer in the navigation panel. See - :file:`themes/themename/layout.inc.php`. - -.. config:option:: $cfg['Border'] - - :type: integer - :default: - - The size of a table's border. See :file:`themes/themename/layout.inc.php`. - -.. config:option:: $cfg['ThBackground'] - - :type: string [CSS color for background] - :default: - -.. config:option:: $cfg['ThColor'] - - :type: string [CSS color] - :default: - - The style used for table headers. See - :file:`themes/themename/layout.inc.php`. - -.. _cfg_BgcolorOne: -.. config:option:: $cfg['BgOne'] - - :type: string [CSS color] - :default: - - The color (HTML) #1 for table rows. See - :file:`themes/themename/layout.inc.php`. - -.. _cfg_BgcolorTwo: -.. config:option:: $cfg['BgTwo'] - - :type: string [CSS color] - :default: - - The color (HTML) #2 for table rows. See - :file:`themes/themename/layout.inc.php`. - -.. config:option:: $cfg['BrowsePointerBackground'] - - :type: string [CSS color] - :default: - - The background color used when hovering over a row in the Browse panel. - See :file:`themes/themename/layout.inc.php`. - -.. config:option:: $cfg['BrowsePointerColor'] - - :type: string [CSS color] - :default: - - The text color used when hovering over a row in the Browse panel. - Used when :config:option:`$cfg['BrowsePointerEnable']` is true. - See :file:`themes/themename/layout.inc.php`. - -.. config:option:: $cfg['BrowseMarkerBackground'] - - :type: string [CSS color] - :default: - - The background color used to highlight a row selected by checkbox in the Browse panel or - when a column is selected. - Used when :config:option:`$cfg['BrowsePointerEnable']` is true. - See :file:`themes/themename/layout.inc.php`. - -.. config:option:: $cfg['BrowseMarkerColor'] - - :type: string [CSS color] - :default: - - The color used when you visually mark a row or column in the Browse panel. - Rows can be marked by clicking the checkbox to the left of the row and columns can be - marked by clicking the column's header (outside of the header text). - See :file:`themes/themename/layout.inc.php`. - -.. config:option:: $cfg['FontFamily'] - - :type: string - :default: - - You put here a valid CSS font family value, for example ``arial, sans- - serif``. See :file:`themes/themename/layout.inc.php`. - -.. config:option:: $cfg['FontFamilyFixed'] - - :type: string - :default: - - You put here a valid CSS font family value, for example ``monospace``. - This one is used in textarea. See :file:`themes/themename/layout.inc.php`. + Please directly modify :file:`themes/themename/layout.inc.php`, although + your changes will be overwritten with the next update. Design customization -------------------- From ba24c28eda01f45b17006cd345a0821f8c618f88 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 11 Nov 2015 13:51:35 -0500 Subject: [PATCH 009/100] Fixes #11658 Collation column is empty in table Structure Signed-off-by: Marc Delisle --- ChangeLog | 1 + templates/table/structure/display_structure.phtml | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 9846289e48..254b934f31 100644 --- a/ChangeLog +++ b/ChangeLog @@ -28,6 +28,7 @@ phpMyAdmin - ChangeLog - issue #11626 wrong row count for query results - issue #11608 Analyzer doesn't recognize GRANT statements - issue #11602 Parser warnings (subqueries) +- issue #11658 Collation column is empty in table Structure 4.5.1.0 (2015-10-23) - issue Invalid argument supplied for foreach() diff --git a/templates/table/structure/display_structure.phtml b/templates/table/structure/display_structure.phtml index a73d5a62ad..51809b1f73 100644 --- a/templates/table/structure/display_structure.phtml +++ b/templates/table/structure/display_structure.phtml @@ -25,6 +25,7 @@ $columns_list[] = $row['Field']; $extracted_columnspec = PMA_Util::extractColumnSpec($row['Type']); $attribute = $extracted_columnspec['attribute']; + $field_charset = $row['Collation']; // prepare a common variable to reuse below; however, // in case of a VIEW, $create_table_fields is empty @@ -96,7 +97,8 @@ 'field_encoded' => urlencode($row['Field']), 'titles' => $titles, 'table' => $table, - 'tbl_storage_engine' => $tbl_storage_engine + 'tbl_storage_engine' => $tbl_storage_engine, + 'field_charset' => $field_charset ) ); ?> From 407b68441d3a847f32658550c790d17ee7de3e98 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Thu, 12 Nov 2015 17:41:11 +1100 Subject: [PATCH 010/100] Fix #11641 Ability to disable the navigationhiding Feature Signed-off-by: Madhura Jayaratne --- ChangeLog | 1 + libraries/relation.lib.php | 84 +++++++++++++++++++++++--------------- 2 files changed, 52 insertions(+), 33 deletions(-) diff --git a/ChangeLog b/ChangeLog index afd9e27a68..3e81f37054 100644 --- a/ChangeLog +++ b/ChangeLog @@ -12,6 +12,7 @@ phpMyAdmin - ChangeLog - issue #11550 Regression in Find and replace + issue #11619 TokuDB Tables Show Size as "unknown" + issue #11654 Use a slider for Internal relations ++ issue #11641 Ability to disable the navigationhiding Feature 4.5.2.0 (not yet released) - issue #11589 Incorrect parameter in mysqli_fetch_fields() diff --git a/libraries/relation.lib.php b/libraries/relation.lib.php index 53437f7773..67b8a23814 100644 --- a/libraries/relation.lib.php +++ b/libraries/relation.lib.php @@ -452,25 +452,31 @@ function PMA_checkRelationsParam() $cfgRelation = array(); $cfgRelation['PMA_VERSION'] = PMA_VERSION; - $cfgRelation['relwork'] = false; - $cfgRelation['displaywork'] = false; - $cfgRelation['bookmarkwork'] = false; - $cfgRelation['pdfwork'] = false; - $cfgRelation['commwork'] = false; - $cfgRelation['mimework'] = false; - $cfgRelation['historywork'] = false; - $cfgRelation['recentwork'] = false; - $cfgRelation['favoritework'] = false; - $cfgRelation['uiprefswork'] = false; - $cfgRelation['trackingwork'] = false; - $cfgRelation['userconfigwork'] = false; - $cfgRelation['menuswork'] = false; - $cfgRelation['navwork'] = false; + $workToTable = array( + 'relwork' => 'relation', + 'displaywork' => array('relation', 'table_info'), + 'bookmarkwork' => 'bookmarktable', + 'pdfwork' => array('table_coords', 'pdf_pages'), + 'commwork' => 'column_info', + 'mimework' => 'column_info', + 'historywork' => 'history', + 'recentwork' => 'recent', + 'favoritework' => 'favorite', + 'uiprefswork' => 'table_uiprefs', + 'trackingwork' => 'tracking', + 'userconfigwork' => 'userconfig', + 'menuswork' => array('users', 'usergroups'), + 'navwork' => 'navigationhiding', + 'savedsearcheswork' => 'savedsearches', + 'centralcolumnswork' => 'central_columns', + 'designersettingswork' => 'designer_settings', + 'exporttemplateswork' => 'export_templates', + ); + + foreach ($workToTable as $work => $table) { + $cfgRelation[$work] = false; + } $cfgRelation['allworks'] = false; - $cfgRelation['savedsearcheswork'] = false; - $cfgRelation['centralcolumnswork'] = false; - $cfgRelation['designersettingswork'] = false; - $cfgRelation['exporttemplateswork'] = false; $cfgRelation['user'] = null; $cfgRelation['db'] = null; @@ -554,9 +560,10 @@ function PMA_checkRelationsParam() if (isset($cfgRelation['relation'])) { $cfgRelation['relwork'] = true; - if (isset($cfgRelation['table_info'])) { - $cfgRelation['displaywork'] = true; - } + } + + if (isset($cfgRelation['relation']) && isset($cfgRelation['table_info'])) { + $cfgRelation['displaywork'] = true; } if (isset($cfgRelation['table_coords']) && isset($cfgRelation['pdf_pages'])) { @@ -622,19 +629,30 @@ function PMA_checkRelationsParam() $cfgRelation['exporttemplateswork'] = true; } - if ($cfgRelation['relwork'] && $cfgRelation['displaywork'] - && $cfgRelation['pdfwork'] && $cfgRelation['commwork'] - && $cfgRelation['mimework'] && $cfgRelation['historywork'] - && $cfgRelation['recentwork'] && $cfgRelation['uiprefswork'] - && $cfgRelation['trackingwork'] && $cfgRelation['userconfigwork'] - && $cfgRelation['bookmarkwork'] && $cfgRelation['centralcolumnswork'] - && $cfgRelation['menuswork'] && $cfgRelation['navwork'] - && $cfgRelation['savedsearcheswork'] && $cfgRelation['favoritework'] - && $cfgRelation['designersettingswork'] - && $cfgRelation['exporttemplateswork'] - ) { - $cfgRelation['allworks'] = true; + $allWorks = true; + foreach ($workToTable as $work => $table) { + if (! $cfgRelation[$work]) { + if (is_string($table)) { + if ($GLOBALS['cfg']['Server'][$table] !== null) { + $allWorks = false; + break; + } + } else if (is_array($table)) { + $oneNull = false; + foreach ($table as $t) { + if ($GLOBALS['cfg']['Server'][$t] === null) { + $oneNull = true; + break; + } + } + if (! $oneNull) { + $allWorks = false; + break; + } + } + } } + $cfgRelation['allworks'] = $allWorks; return $cfgRelation; } // end of the 'PMA_checkRelationsParam()' function From 34f310cb5947559cf7c632e189101e932d6bb736 Mon Sep 17 00:00:00 2001 From: nils kristian tomren Date: Wed, 11 Nov 2015 21:15:41 +0100 Subject: [PATCH 011/100] =?UTF-8?q?Translated=20using=20Weblate=20(Norwegi?= =?UTF-8?q?an=20Bokm=C3=A5l)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently translated at 58.5% (1879 of 3211 strings) [CI skip] --- po/nb.po | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/po/nb.po b/po/nb.po index 4e3b09175f..c4f605a160 100644 --- a/po/nb.po +++ b/po/nb.po @@ -4,16 +4,16 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.5.2-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-10-26 19:59-0400\n" -"PO-Revision-Date: 2015-06-22 04:13+0200\n" -"Last-Translator: Sebastian \n" -"Language-Team: Norwegian Bokmål \n" +"PO-Revision-Date: 2015-11-11 21:15+0000\n" +"Last-Translator: nils kristian tomren \n" +"Language-Team: Norwegian Bokmål " +"\n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.4-dev\n" +"X-Generator: Weblate 2.5-dev\n" #: changelog.php:37 license.php:30 #, php-format @@ -288,7 +288,6 @@ msgstr "Data" #: db_export.php:67 libraries/DbSearch.class.php:446 #: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:379 -#, fuzzy #| msgid "Select All" msgid "Select all" msgstr "Marker alle" @@ -647,7 +646,6 @@ msgstr "" "på %s." #: index.php:163 -#, fuzzy #| msgid "General Settings" msgid "General settings" msgstr "Generelle innstillinger" @@ -9978,7 +9976,7 @@ msgstr "baltisk" #: libraries/mysql_charsets.lib.php:324 msgid "Armenian" -msgstr "armensk" +msgstr "Armensk" #: libraries/mysql_charsets.lib.php:330 msgid "Cyrillic" From c76144394fed279784e01296fe038d5b504ee65a Mon Sep 17 00:00:00 2001 From: nils kristian tomren Date: Wed, 11 Nov 2015 21:15:45 +0100 Subject: [PATCH 012/100] =?UTF-8?q?Translated=20using=20Weblate=20(Norwegi?= =?UTF-8?q?an=20Bokm=C3=A5l)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently translated at 58.1% (1876 of 3228 strings) [CI skip] --- po/nb.po | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/po/nb.po b/po/nb.po index cd5beccd0e..7a775b16d7 100644 --- a/po/nb.po +++ b/po/nb.po @@ -4,16 +4,16 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-10-26 20:01-0400\n" -"PO-Revision-Date: 2015-06-22 04:13+0200\n" -"Last-Translator: Sebastian \n" -"Language-Team: Norwegian Bokmål \n" +"PO-Revision-Date: 2015-11-11 21:15+0000\n" +"Last-Translator: nils kristian tomren \n" +"Language-Team: Norwegian Bokmål " +"\n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.4-dev\n" +"X-Generator: Weblate 2.5-dev\n" #: changelog.php:37 license.php:30 #, php-format @@ -285,7 +285,6 @@ msgstr "Data" #: db_export.php:70 libraries/DbSearch.php:441 #: libraries/display_export.lib.php:46 libraries/replication_gui.lib.php:381 -#, fuzzy #| msgid "Select All" msgid "Select all" msgstr "Marker alle" @@ -635,7 +634,6 @@ msgstr "" "på %s." #: index.php:161 -#, fuzzy #| msgid "General Settings" msgid "General settings" msgstr "Generelle innstillinger" @@ -9937,7 +9935,7 @@ msgstr "baltisk" #: libraries/mysql_charsets.lib.php:318 msgid "Armenian" -msgstr "armensk" +msgstr "Armensk" #: libraries/mysql_charsets.lib.php:324 msgid "Cyrillic" From 569f38bd4e6bf032b45fb96f11cf1b7ab8d4f4e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Kate=C5=99i=C5=88=C3=A1k?= Date: Thu, 12 Nov 2015 10:28:48 +0100 Subject: [PATCH 013/100] Translated using Weblate (Czech) Currently translated at 94.6% (3056 of 3228 strings) [CI skip] --- po/cs.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/cs.po b/po/cs.po index 50731c4917..0640a7ea23 100644 --- a/po/cs.po +++ b/po/cs.po @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-10-26 20:01-0400\n" -"PO-Revision-Date: 2015-11-04 12:51+0200\n" +"PO-Revision-Date: 2015-11-12 10:28+0000\n" "Last-Translator: Petr Kateřiňák \n" "Language-Team: Czech " "\n" @@ -946,10 +946,9 @@ msgid "Do you really want to remove partitioning?" msgstr "Opravdu si přejete ZKRÁTIT vybrané oddíly?" #: js/messages.php:83 -#, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to RESET SLAVE?" -msgstr "Opravdu si přejete provést „%s“?" +msgstr "Opravdu si přejete obnovit podřízené?" #: js/messages.php:85 msgid "" From 99be092325dbf12b9665290f7cd751907914b3bb Mon Sep 17 00:00:00 2001 From: Deven Bansod Date: Thu, 12 Nov 2015 20:05:19 +0530 Subject: [PATCH 014/100] Fixes issue 11661 Signed-off-by: Deven Bansod --- libraries/controllers/TableStructureController.class.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/libraries/controllers/TableStructureController.class.php b/libraries/controllers/TableStructureController.class.php index 48853af17c..1f1b0f80dc 100644 --- a/libraries/controllers/TableStructureController.class.php +++ b/libraries/controllers/TableStructureController.class.php @@ -696,6 +696,13 @@ class TableStructureController extends TableController PMA_previewSQL(count($changes) > 0 ? $sql_query : ''); } + $columns_with_index = $this->dbi + ->getTable($this->db, $this->table) + ->getColumnsWithIndex( + PMA_Index::PRIMARY | PMA_Index::UNIQUE | PMA_Index::INDEX + | PMA_Index::SPATIAL | PMA_Index::FULLTEXT + ); + $changedToBlob = array(); // While changing the Column Collation // First change to BLOB @@ -703,6 +710,7 @@ class TableStructureController extends TableController if (isset($_REQUEST['field_collation'][$i]) && isset($_REQUEST['field_collation_orig'][$i]) && $_REQUEST['field_collation'][$i] !== $_REQUEST['field_collation_orig'][$i] + && ! in_array($_REQUEST['field_orig'][$i], $columns_with_index) ) { $secondary_query = 'ALTER TABLE ' . PMA_Util::backquote( $this->table From 3518d5cffff7f3decf4ef51c4e1be5d4565f04fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 12 Nov 2015 10:29:55 +0100 Subject: [PATCH 015/100] Translated using Weblate (Czech) Currently translated at 95.8% (3077 of 3211 strings) [CI skip] --- po/cs.po | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/po/cs.po b/po/cs.po index 47df9985d0..f087eb7c48 100644 --- a/po/cs.po +++ b/po/cs.po @@ -6,8 +6,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.5.2-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-10-26 19:59-0400\n" -"PO-Revision-Date: 2015-11-04 12:51+0200\n" -"Last-Translator: Petr Kateřiňák \n" +"PO-Revision-Date: 2015-11-12 10:29+0000\n" +"Last-Translator: Michal Čihař \n" "Language-Team: Czech " "\n" "Language: cs\n" @@ -951,10 +951,9 @@ msgid "Do you really want to TRUNCATE the selected partition(s)?" msgstr "Opravdu si přejete ZKRÁTIT vybrané oddíly?" #: js/messages.php:66 -#, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to RESET SLAVE?" -msgstr "Opravdu si přejete provést „%s“?" +msgstr "Opravdu si přejete obnovit podřízený server (RESET SLAVE)?" #: js/messages.php:68 msgid "" From 3beaef2d75b0f1fdeb930460c4d4b0add0bef259 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 12 Nov 2015 10:42:55 +0100 Subject: [PATCH 016/100] Translated using Weblate (Dutch) Currently translated at 100.0% (3211 of 3211 strings) [CI skip] --- po/nl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/nl.po b/po/nl.po index 78a7b0e362..b0010cd47e 100644 --- a/po/nl.po +++ b/po/nl.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.5.2-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-10-26 19:59-0400\n" -"PO-Revision-Date: 2015-10-27 09:00+0200\n" -"Last-Translator: dingo thirteen \n" +"PO-Revision-Date: 2015-11-12 10:42+0000\n" +"Last-Translator: Michal Čihař \n" "Language-Team: Dutch " "\n" "Language: nl\n" From 2ff1f96f40f768cb331093e6eec79b2ccb043db1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 12 Nov 2015 10:40:46 +0100 Subject: [PATCH 017/100] Translated using Weblate (Finnish) Currently translated at 67.4% (2167 of 3211 strings) [CI skip] --- po/fi.po | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/po/fi.po b/po/fi.po index e22ef9eb52..17ccb62f15 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,10 +4,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.5.2-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-10-26 19:59-0400\n" -"PO-Revision-Date: 2015-10-15 11:20+0200\n" +"PO-Revision-Date: 2015-11-12 10:40+0000\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Finnish \n" +"Language-Team: Finnish " +"\n" "Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -4880,7 +4880,7 @@ msgstr "Hallitse tietokannan \"%s\" käyttöoikeuksia." #: libraries/build_html_for_db.lib.php:181 msgid "Check privileges" -msgstr "Tarkista käyttöoikeudet" +msgstr "Merkitse käyttöoikeudet" #: libraries/central_columns.lib.php:155 msgid "" @@ -5321,8 +5321,8 @@ msgid "" "encrypt cookies; you don't need to remember it." msgstr "" "Et asettanut blowfish-salausavainta ja [kbd]evästetodennus[/kbd] on " -"käytössä, joten sinulle luotiin automaattisesti avain; sitä ei tarvitse " -"muistaa." +"käytössä, joten sinulle luotiin automaattisesti avain evästeiden salaukseen; " +"sitä ei tarvitse muistaa." #: libraries/config/ServerConfigChecks.class.php:408 #, php-format From 5d3c7d868036fbe5c0b6d61b325160f8afcd4b68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 12 Nov 2015 10:39:42 +0100 Subject: [PATCH 018/100] Translated using Weblate (Italian) Currently translated at 100.0% (3211 of 3211 strings) [CI skip] --- po/it.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/it.po b/po/it.po index f215bacd3a..3b1e403ec4 100644 --- a/po/it.po +++ b/po/it.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.5.2-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-10-26 19:59-0400\n" -"PO-Revision-Date: 2015-10-27 09:42+0200\n" -"Last-Translator: Stefano Martinelli \n" +"PO-Revision-Date: 2015-11-12 10:39+0000\n" +"Last-Translator: Michal Čihař \n" "Language-Team: Italian " "\n" "Language: it\n" @@ -10085,7 +10085,7 @@ msgstr "Ripara tabella" #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:127 msgid "Delete data or table" -msgstr "Rimouvi la tabella o i dati" +msgstr "Rimuovi la tabella o i dati" #: libraries/operations.lib.php:1556 msgid "Empty the table (TRUNCATE)" From 77e213d5b3fafc89917fb9cbb8502ca026470847 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 12 Nov 2015 10:41:58 +0100 Subject: [PATCH 019/100] Translated using Weblate (Swedish) Currently translated at 99.7% (3203 of 3211 strings) [CI skip] --- po/sv.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/sv.po b/po/sv.po index 6f56b4fc8a..ae30173134 100644 --- a/po/sv.po +++ b/po/sv.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.5.2-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-10-26 19:59-0400\n" -"PO-Revision-Date: 2015-11-01 14:21+0200\n" -"Last-Translator: Jerry Gullstrand \n" +"PO-Revision-Date: 2015-11-12 10:41+0000\n" +"Last-Translator: Michal Čihař \n" "Language-Team: Swedish " "\n" "Language: sv\n" @@ -4023,7 +4023,7 @@ msgstr "Sökningen överstiger maximal längd, tillägg avstängda." #: libraries/Linter.class.php:162 #, php-format msgid "%1$s (near %2$s)" -msgstr "%1$s (near %2$s)" +msgstr "%1$s (nära %2$s)" #: libraries/Menu.class.php:200 libraries/ServerStatusData.class.php:442 #: libraries/config/messages.inc.php:933 From 870c2c448b3e0391fb4b8a2ef84d7b16bc3b857a Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Thu, 12 Nov 2015 22:17:10 +1100 Subject: [PATCH 020/100] Fix notices about undefined indexes Signed-off-by: Madhura Jayaratne --- libraries/relation.lib.php | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/libraries/relation.lib.php b/libraries/relation.lib.php index 67b8a23814..b4dade2a45 100644 --- a/libraries/relation.lib.php +++ b/libraries/relation.lib.php @@ -559,7 +559,7 @@ function PMA_checkRelationsParam() $GLOBALS['dbi']->freeResult($tab_rs); if (isset($cfgRelation['relation'])) { - $cfgRelation['relwork'] = true; + $cfgRelation['relwork'] = true; } if (isset($cfgRelation['relation']) && isset($cfgRelation['table_info'])) { @@ -633,14 +633,18 @@ function PMA_checkRelationsParam() foreach ($workToTable as $work => $table) { if (! $cfgRelation[$work]) { if (is_string($table)) { - if ($GLOBALS['cfg']['Server'][$table] !== null) { + if (isset($GLOBALS['cfg']['Server'][$table]) + && $GLOBALS['cfg']['Server'][$table] !== false + ) { $allWorks = false; break; } } else if (is_array($table)) { $oneNull = false; foreach ($table as $t) { - if ($GLOBALS['cfg']['Server'][$t] === null) { + if (isset($GLOBALS['cfg']['Server'][$t]) + && $GLOBALS['cfg']['Server'][$t] === false + ) { $oneNull = true; break; } From 3f62b990082ede8f673b76ebfe3241503c8d8f93 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Thu, 12 Nov 2015 22:23:10 +1100 Subject: [PATCH 021/100] Document the newly allowed false value Signed-off-by: Madhura Jayaratne --- doc/config.rst | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/doc/config.rst b/doc/config.rst index bb591ea874..89474e9fff 100644 --- a/doc/config.rst +++ b/doc/config.rst @@ -502,7 +502,7 @@ Server connection settings .. _bookmark: .. config:option:: $cfg['Servers'][$i]['bookmarktable'] - :type: string + :type: string or false :default: ``''`` Since release 2.2.0 phpMyAdmin allows users to bookmark queries. This @@ -516,7 +516,7 @@ Server connection settings .. _relation: .. config:option:: $cfg['Servers'][$i]['relation'] - :type: string + :type: string or false :default: ``''`` Since release 2.2.4 you can describe, in a special 'relation' table, @@ -555,7 +555,7 @@ Server connection settings .. _table_info: .. config:option:: $cfg['Servers'][$i]['table_info'] - :type: string + :type: string or false :default: ``''`` Since release 2.3.0 you can describe, in a special 'table\_info' @@ -576,12 +576,12 @@ Server connection settings .. _table_coords: .. config:option:: $cfg['Servers'][$i]['table_coords'] - :type: string + :type: string or false :default: ``''`` .. config:option:: $cfg['Servers'][$i]['pdf_pages'] - :type: string + :type: string or false :default: ``''`` Since release 2.3.0 you can have phpMyAdmin create :term:`PDF` pages @@ -603,7 +603,7 @@ Server connection settings .. _col_com: .. config:option:: $cfg['Servers'][$i]['column_info'] - :type: string + :type: string or false :default: ``''`` This part requires a content update! Since release 2.3.0 you can @@ -662,7 +662,7 @@ Server connection settings .. _history: .. config:option:: $cfg['Servers'][$i]['history'] - :type: string + :type: string or false :default: ``''`` Since release 2.5.0 you can store your :term:`SQL` history, which means all @@ -687,7 +687,7 @@ Server connection settings .. _recent: .. config:option:: $cfg['Servers'][$i]['recent'] - :type: string + :type: string or false :default: ``''`` Since release 3.5.0 you can show recently used tables in the @@ -710,7 +710,7 @@ Server connection settings .. _table_uiprefs: .. config:option:: $cfg['Servers'][$i]['table_uiprefs'] - :type: string + :type: string or false :default: ``''`` Since release 3.5.0 phpMyAdmin can be configured to remember several @@ -728,12 +728,12 @@ Server connection settings .. _configurablemenus: .. config:option:: $cfg['Servers'][$i]['users'] - :type: string + :type: string or false :default: ``''`` .. config:option:: $cfg['Servers'][$i]['usergroups'] - :type: string + :type: string or false :default: ``''`` Since release 4.1.0 you can create different user groups with menu items @@ -752,7 +752,7 @@ Server connection settings .. _navigationhiding: .. config:option:: $cfg['Servers'][$i]['navigationhiding'] - :type: string + :type: string or false :default: ``''`` Since release 4.1.0 you can hide/show items in the navigation tree. @@ -766,7 +766,7 @@ Server connection settings .. _central_columns: .. config:option:: $cfg['Servers'][$i]['central_columns'] - :type: string + :type: string or false :default: ``''`` Since release 4.3.0 you can have a central list of columns per database. @@ -785,7 +785,7 @@ Server connection settings .. _designer_settings: .. config:option:: $cfg['Servers'][$i]['designer_settings'] - :type: string + :type: string or false :default: ``''`` Since release 4.5.0 your designer settings can be remembered. @@ -801,7 +801,7 @@ Server connection settings .. _savedsearches: .. config:option:: $cfg['Servers'][$i]['savedsearches'] - :type: string + :type: string or false :default: ``''`` Since release 4.2.0 you can save and load query-by-example searches from the Database > Query panel. @@ -815,7 +815,7 @@ Server connection settings .. _export_templates: .. config:option:: $cfg['Servers'][$i]['export_templates'] - :type: string + :type: string or false :default: ``''`` Since release 4.5.0 you can save and load export templates. @@ -829,7 +829,7 @@ Server connection settings .. _tracking: .. config:option:: $cfg['Servers'][$i]['tracking'] - :type: string + :type: string or false :default: ``''`` Since release 3.3.x a tracking mechanism is available. It helps you to @@ -915,7 +915,7 @@ Server connection settings .. _userconfig: .. config:option:: $cfg['Servers'][$i]['userconfig'] - :type: string + :type: string or false :default: ``''`` Since release 3.4.x phpMyAdmin allows users to set most preferences by From 41638f37b89dc7b221ad0d180edbe7f66e0f59ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 12 Nov 2015 10:29:52 +0100 Subject: [PATCH 022/100] Translated using Weblate (Czech) Currently translated at 100.0% (1 of 1 strings) [CI skip] --- po/cs.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/cs.po b/po/cs.po index 0640a7ea23..d61e927b46 100644 --- a/po/cs.po +++ b/po/cs.po @@ -6,8 +6,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-10-26 20:01-0400\n" -"PO-Revision-Date: 2015-11-12 10:28+0000\n" -"Last-Translator: Petr Kateřiňák \n" +"PO-Revision-Date: 2015-11-12 10:29+0000\n" +"Last-Translator: Michal Čihař \n" "Language-Team: Czech " "\n" "Language: cs\n" @@ -948,7 +948,7 @@ msgstr "Opravdu si přejete ZKRÁTIT vybrané oddíly?" #: js/messages.php:83 #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to RESET SLAVE?" -msgstr "Opravdu si přejete obnovit podřízené?" +msgstr "Opravdu si přejete obnovit podřízený server (RESET SLAVE)?" #: js/messages.php:85 msgid "" From c8839110651e1bb4ebb283ba33175b3ccdbf0149 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 12 Nov 2015 10:42:52 +0100 Subject: [PATCH 023/100] Translated using Weblate (Dutch) Currently translated at 100.0% (3228 of 3228 strings) [CI skip] --- po/nl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/nl.po b/po/nl.po index 9f00e03694..8da0f1941f 100644 --- a/po/nl.po +++ b/po/nl.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-10-26 20:01-0400\n" -"PO-Revision-Date: 2015-10-27 09:00+0200\n" -"Last-Translator: dingo thirteen \n" +"PO-Revision-Date: 2015-11-12 10:42+0000\n" +"Last-Translator: Michal Čihař \n" "Language-Team: Dutch " "\n" "Language: nl\n" From b19180f664539a0175d195346246baebc16238c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 12 Nov 2015 10:37:59 +0100 Subject: [PATCH 024/100] Translated using Weblate (Finnish) Currently translated at 67.0% (2164 of 3228 strings) [CI skip] --- po/fi.po | 136 +++++++++++++++++++++++++------------------------------ 1 file changed, 61 insertions(+), 75 deletions(-) diff --git a/po/fi.po b/po/fi.po index 953ff3711c..70a8b23221 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,10 +4,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-10-26 20:01-0400\n" -"PO-Revision-Date: 2015-10-15 11:20+0200\n" +"PO-Revision-Date: 2015-11-12 10:38+0000\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Finnish \n" +"Language-Team: Finnish " +"\n" "Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -5252,11 +5252,11 @@ msgid "Allow users to customize this value" msgstr "Anna käyttäjien mukauttaa tätä arvoa" #: libraries/config/PageSettings.php:141 -#, fuzzy #| msgid "Cannot save settings, submitted form contains errors" msgid "Cannot save settings, submitted configuration form contains errors!" msgstr "" -"Asetuksia ei voitu tallentaa, sillä lähetetyssä lomakkeessa on virheitä" +"Asetuksia ei voitu tallentaa, sillä lähetetyssä konfiguraatiolomakkeessa on " +"virheitä!" #: libraries/config/ServerConfigChecks.php:170 msgid "You should use SSL connections if your database server supports it." @@ -5303,7 +5303,7 @@ msgstr "" "sitä ei tarvitse muistaa." #: libraries/config/ServerConfigChecks.php:409 -#, fuzzy, php-format +#, php-format #| msgid "" #| "ge=form&formset=features#tab_Import_export]Bzip2 compression " #| "ompression[/a] requires functions (%s) which are unavailable on s system." @@ -5311,9 +5311,8 @@ msgid "" "%sBzip2 compression and decompression%s requires functions (%s) which are " "unavailable on this system." msgstr "" -"[a@?page=form&formset=features#tab_Import_export]Bzip2-pakkaukseen ja -" -"purkuun[/a] tarvitaan funktioita (%s), jotka eivät ole käytettävissä tässä " -"järjestelmässä." +"%sBzip2-pakkaukseen ja -purkuun%s tarvitaan funktioita (%s), jotka eivät ole " +"käytettävissä tässä järjestelmässä." #: libraries/config/ServerConfigChecks.php:419 msgid "" @@ -5330,7 +5329,7 @@ msgid "This %soption%s should be enabled if your web server supports it." msgstr "Tämä %svalinta%s tulisi olla valittuna, jos verkkopalvelin tukee sitä." #: libraries/config/ServerConfigChecks.php:433 -#, fuzzy, php-format +#, php-format #| msgid "" #| "ge=form&formset=features#tab_Import_export]GZip compression and " #| "ression[/a] requires functions (%s) which are unavailable on this tem." @@ -5338,9 +5337,8 @@ msgid "" "%sGZip compression and decompression%s requires functions (%s) which are " "unavailable on this system." msgstr "" -"[a@?page=form&formset=features#tab_Import_export]GZip-pakkaukseen ja -" -"purkuun[/a] tarvitaan funktioita (%s), jotka eivät ole käytettävissä tässä " -"järjestelmässä." +"%sGZip-pakkaukseen ja -purkuun%s tarvitaan funktioita (%s), jotka eivät ole " +"käytettävissä tässä järjestelmässä." #: libraries/config/ServerConfigChecks.php:444 #, php-format @@ -5348,9 +5346,12 @@ msgid "" "%sLogin cookie validity%s greater than %ssession.gc_maxlifetime%s may cause " "random session invalidation (currently session.gc_maxlifetime is %d)." msgstr "" +"%sKirjautumisevästeen voimassaoloaika%s joka on suurempi kuin " +"%ssession.gc_maxlifetime%s voi aiheuttaa satunnaisen session mitätöitymisen (" +"tällä hetkellä session.gc_maxlifetime on %d)." #: libraries/config/ServerConfigChecks.php:460 -#, fuzzy, php-format +#, php-format #| msgid "" #| "ge=form&formset=features#tab_Security]Login cookie validity[/a] uld be " #| "to 1800 seconds (30 minutes) at most. Values larger than 0 may pose a " @@ -5359,10 +5360,9 @@ msgid "" "%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at " "most. Values larger than 1800 may pose a security risk such as impersonation." msgstr "" -"[a@?page=form&formset=features#tab_Security]Kirjautumisevästeen kelpoisuus[/" -"a] tulisi asettaa enimmillään 1800 sekuntiin (30 minuuttia). Lukua 1800 " -"suuremmat arvot saattavat johtaa tietoturvariskiin esimerkiksi toisena " -"käyttäjänä esiintymisen muodossa." +"%sKirjautumisevästeen kelpoisuus%s tulisi asettaa enimmillään 1800 sekuntiin " +"(30 minuuttia). Lukua 1800 suuremmat arvot saattavat johtaa " +"tietoturvariskiin esimerkiksi toisena käyttäjänä esiintymisen muodossa." #: libraries/config/ServerConfigChecks.php:471 #, php-format @@ -5370,9 +5370,12 @@ msgid "" "If using [kbd]cookie[/kbd] authentication and %sLogin cookie store%s is not " "0, %sLogin cookie validity%s must be set to a value less or equal to it." msgstr "" +"Mikäli käytät [kbd]cookie[/kbd] kirjautumista ja %skirjautumisevästeen " +"muisti%s ei ole 0, %skirjautumisevästeen pätevyyden%s arvo tulee olla " +"enintään sen verran." #: libraries/config/ServerConfigChecks.php:485 -#, fuzzy, php-format +#, php-format #| msgid "" #| " feel this is necessary, use additional protection settings - ?" #| "e=servers&mode=edit&id=%1$d#tab_Server_config]host tication[/a] " @@ -5385,16 +5388,14 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Jos näet tarpeelliseksi, käytä suojauksen lisäasetuksia eli [a@?" -"page=servers&mode=edit&id=%1$d#tab_Server_config]palvelimen " -"todennusasetuksia[/a] ja [a@?page=form&" -"formset=features#tab_Security]luotettujen välipalvelimien luetteloa[/a]. IP-" +"Jos näet tarpeelliseksi, käytä suojauksen lisäasetuksia eli %spalvelimen " +"todennusasetuksia%s ja %sluotettujen välipalvelimien luetteloa%s. IP-" "osoitteeseen perustuva suojaus ei kuitenkaan ole täysin luotettava, mikäli " "IP-osoite kuuluu Internet-palveluntarjoajalle, johon sinun lisäksesi " "tuhannet käyttäjät ovat yhteydessä." #: libraries/config/ServerConfigChecks.php:500 -#, fuzzy, php-format +#, php-format #| msgid "" #| "t the [kbd]config[/kbd] authentication type and included username sword " #| "for auto-login, which is not a desirable option for live ts. Anyoneo " @@ -5411,12 +5412,11 @@ msgstr "" "Asetit [kbd]config[/kbd]-todennustyypin ja sisällytit käyttäjänimen ja " "salasanan automaattista kirjautumista varten. Tämä ei ole suotava vaihtoehto " "oikeille palvelimille. Joka tietää tai arvaa phpMyAdmin-osoitteesi pystyy " -"suoraan käyttämään phpMyAdmin-paneeliasi. [a@?page=servers&" -"mode=edit&id=%1$d#tab_Server]Todennustyypiksi[/a] kannattaa asettaa " -"[kbd]cookie[/kbd] tai [kbd]http[/kbd]." +"suoraan käyttämään phpMyAdmin-paneeliasi. %sTodennustyypiksi%s kannattaa " +"asettaa [kbd]cookie[/kbd] tai [kbd]http[/kbd]." #: libraries/config/ServerConfigChecks.php:513 -#, fuzzy, php-format +#, php-format #| msgid "" #| "ge=form&formset=features#tab_Import_export]Zip compression[/a] uires " #| "ctions (%s) which are unavailable on this system." @@ -5424,12 +5424,11 @@ msgid "" "%sZip compression%s requires functions (%s) which are unavailable on this " "system." msgstr "" -"[a@?page=form&formset=features#tab_Import_export]Zip-pakkaukseen[/a] " -"tarvitaan funktioita (%s), jotka eivät ole käytettävissä tässä " -"järjestelmässä." +"%sZip-pakkaukseen%s tarvitaan funktioita (%s), jotka eivät ole käytettävissä " +"tässä järjestelmässä." #: libraries/config/ServerConfigChecks.php:524 -#, fuzzy, php-format +#, php-format #| msgid "" #| "ge=form&formset=features#tab_Import_export]Zip ompression[/requires " #| "functions (%s) which are unavailable on this system." @@ -5437,9 +5436,8 @@ msgid "" "%sZip decompression%s requires functions (%s) which are unavailable on this " "system." msgstr "" -"[a@?page=form&formset=features#tab_Import_export]Zip-purkuun[/a] " -"tarvitaan funktioita (%s), jotka eivät ole käytettävissä tässä " -"järjestelmässä." +"%sZip-purkuun%s tarvitaan funktioita (%s), jotka eivät ole käytettävissä " +"tässä järjestelmässä." #: libraries/config/Validator.php:245 libraries/config/Validator.php:252 msgid "Could not connect to the database server!" @@ -5464,17 +5462,15 @@ msgstr "" "todennustapaa!" #: libraries/config/Validator.php:355 -#, fuzzy #| msgid "" #| "Empty phpMyAdmin control user while using phpMyAdmin configuration storage" msgid "" "Empty phpMyAdmin control user while using phpMyAdmin configuration storage!" msgstr "" "Tyhjennä phpMyAdminin hallintakäyttäjä käytettäessä phpMyAdmin configuration " -"storage-kantaa" +"storage-kantaa!" #: libraries/config/Validator.php:362 -#, fuzzy #| msgid "" #| "Empty phpMyAdmin control user password while using phpMyAdmin " #| "configuration storage" @@ -5483,7 +5479,7 @@ msgid "" "storage!" msgstr "" "Tyhjennä phpMyAdminin hallintakäyttäjän salasana käytettäessä phpMyAdmin " -"configuration storage-kantaa" +"configuration storage-kantaa!" #: libraries/config/Validator.php:448 msgid "Incorrect value:" @@ -5495,14 +5491,13 @@ msgid "Incorrect IP address: %s" msgstr "Virheellinen IP-osoite: %s" #: libraries/config/messages.inc.php:18 -#, fuzzy #| msgid "" #| "If enabled user can enter any MySQL server in login form for cookie auth" msgid "" "If enabled, user can enter any MySQL server in login form for cookie auth." msgstr "" "Jos käytössä, käyttäjä voi syöttää minkä tahansa MySQL-palvelimen " -"kirjautumislomakkeeseen evästetodennusta varten" +"kirjautumislomakkeeseen evästetodennusta varten." #: libraries/config/messages.inc.php:20 msgid "Allow login to any MySQL server" @@ -5514,15 +5509,16 @@ msgid "" "MySQL server is enabled by matching the IP or hostname of the MySQL server " "to the given regular expression." msgstr "" +"Rajoittamalla MySQL-palvelimia käyttäjä voi antaa kirjautumisen " +"mielivaltaiseen MySQL-palvelimeen sovittamalla IP-osoitteen tai isäntänimen " +"MySQL-palvelimeen säännöllisellä lausekkeella." #: libraries/config/messages.inc.php:26 -#, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Restrict login to MySQL server" -msgstr "MySQL-palvelimelle ei voitu kirjautua" +msgstr "Rajoittaa MySQL-palvelimelle kirjautumista" #: libraries/config/messages.inc.php:28 -#, fuzzy #| msgid "" #| "Enabling this allows a page located on a different domain to call " #| "phpMyAdmin inside a frame, and is a potential [strong]security hole[/" @@ -5534,7 +5530,7 @@ msgid "" msgstr "" "Tämän käyttöönottaminen antaa toisella palvelimella olevan sivun kutsua " "phpMyAdminia kehyksen sisältä. Tämä voi olla [strong]turva-aukko[/strong], " -"joka mahdollistaa kehystenväliset komentosarjahyökkäykset" +"joka mahdollistaa kehystenväliset komentosarjahyökkäykset." #: libraries/config/messages.inc.php:32 msgid "Allow third party framing" @@ -5545,14 +5541,13 @@ msgid "Show \"Drop database\" link to normal users" msgstr "Näytä tavallisille käyttäjille \"Tuhoa tietokanta\"" #: libraries/config/messages.inc.php:36 -#, fuzzy #| msgid "" #| "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " #| "authentication" msgid "" "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " "authentication." -msgstr "Evästeiden salausavain [kbd]cookie[/kbd]-todennuksessa" +msgstr "Evästeiden salausavain [kbd]cookie[/kbd]-todennuksessa." #: libraries/config/messages.inc.php:39 msgid "Blowfish secret" @@ -5575,7 +5570,6 @@ msgid "Highlight pointer" msgstr "Korosta osoitin" #: libraries/config/messages.inc.php:47 -#, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for " #| "import and export operations" @@ -5583,15 +5577,14 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for " "import operations." msgstr "" -"Käytä tuonti- ja vientitoiminnoissa [a@http://en.wikipedia.org/wiki/" -"Bzip2]bzip2[/a]-pakkausta" +"Käytä tuontitoiminnoissa " +"[a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a]-pakkausta." #: libraries/config/messages.inc.php:50 msgid "Bzip2" msgstr "Bzip2" #: libraries/config/messages.inc.php:52 -#, fuzzy #| msgid "" #| "Defines which type of editing controls should be used for CHAR and " #| "VARCHAR columns; [kbd]input[/kbd] - allows limiting of input length, " @@ -5603,7 +5596,7 @@ msgid "" msgstr "" "Määrittää minkä tyyppistä muokkaustoimintoa tulisi käyttää CHAR- ja VARCHAR-" "kentissä; [kbd]input[/kbd] - sallii syötön pituuden rajoittamisen, " -"[kbd]textarea[/kbd] - sallii kentissä uudet rivit" +"[kbd]textarea[/kbd] - sallii kentissä uudet rivit." #: libraries/config/messages.inc.php:56 msgid "CHAR columns editing" @@ -5626,12 +5619,13 @@ msgid "" "Find any errors in the query before executing it. Requires CodeMirror to be " "enabled." msgstr "" +"Etsii virheet hakulausekkeesta ennen hakulausekkeen suorittamista. Vaatii " +"CodeMirror - toiminnon kytkemistä päälle." #: libraries/config/messages.inc.php:67 -#, fuzzy #| msgid "Enable %s" msgid "Enable linter" -msgstr "Ota %s käyttöön" +msgstr "Ota koodin tarkistus käyttöön" #: libraries/config/messages.inc.php:69 msgid "" @@ -5678,7 +5672,6 @@ msgid "Check config file permissions" msgstr "Tarkista asetustiedoston käyttöoikeudet" #: libraries/config/messages.inc.php:86 -#, fuzzy #| msgid "" #| "Compress gzip/bzip2 exports on the fly without the need for much memory; " #| "if you encounter problems with created gzip/bzip2 files disable this " @@ -5687,9 +5680,8 @@ msgid "" "Compress gzip exports on the fly without the need for much memory; if you " "encounter problems with created gzip files disable this feature." msgstr "" -"Pakkaa gzip- ja bzip2-viennit lennossa käyttämättä paljon muistia; jos " -"kohtaat ongelmia luoduissa gzip- ja bzip2-tiedostoissa, poista tämä " -"ominaisuus käytöstä" +"Pakkaa gzip-viennit lennossa käyttämättä paljon muistia; jos kohtaat " +"ongelmia luoduissa gzip-tiedostoissa, poista tämä ominaisuus käytöstä." #: libraries/config/messages.inc.php:89 msgid "Compress on the fly" @@ -5716,54 +5708,50 @@ msgstr "Vahvista DROP-kyselyt" msgid "" "Log SQL queries and their execution time, to be displayed in the console" msgstr "" +"Kirjaa SQL-hakulausekkeet ja niiden suoritusajat lokiin, näytetään konsolissa" #: libraries/config/messages.inc.php:101 -#, fuzzy #| msgid "Tab that is displayed when entering a database" msgid "Tab that is displayed when entering a database." -msgstr "Tietokantaa syötettäessä näytettävä välilehti" +msgstr "Tietokantaa syötettäessä näytettävä välilehti." #: libraries/config/messages.inc.php:102 msgid "Default database tab" msgstr "Oletusarvoinen tietokantavälilehti" #: libraries/config/messages.inc.php:104 -#, fuzzy #| msgid "Tab that is displayed when entering a server" msgid "Tab that is displayed when entering a server." -msgstr "Palvelinta syötettäessä näytettävä välilehti" +msgstr "Palvelinta syötettäessä näytettävä välilehti." #: libraries/config/messages.inc.php:106 msgid "Default server tab" msgstr "Oletusarvoinen palvelinvälilehti" #: libraries/config/messages.inc.php:107 -#, fuzzy #| msgid "Tab that is displayed when entering a table" msgid "Tab that is displayed when entering a table." -msgstr "Taulua syötettäessä näytettävä välilehti" +msgstr "Taulua syötettäessä näytettävä välilehti." #: libraries/config/messages.inc.php:108 msgid "Default table tab" msgstr "Oletusarvoinen tauluvälilehti" #: libraries/config/messages.inc.php:110 -#, fuzzy #| msgid "Enclose table and column names with backquotes" msgid "Autocomplete of the table and column names in the SQL queries." -msgstr "Laita taulujen ja sarakkeiden nimet lainausmerkkeihin" +msgstr "" +"Täydennä taulun ja sarakkeiden nimet automaattisesti SQL-hakukyselyissä." #: libraries/config/messages.inc.php:113 -#, fuzzy #| msgid "Enclose table and column names with backquotes" msgid "Enable autocomplete for table and column names" -msgstr "Laita taulujen ja sarakkeiden nimet lainausmerkkeihin" +msgstr "Kytke taulujen ja sarakkeiden nimien automaattinen täydennys päälle" #: libraries/config/messages.inc.php:116 -#, fuzzy #| msgid "Whether the table structure actions should be hidden" msgid "Whether the table structure actions should be hidden." -msgstr "Taulukon rakenteiden toiminnot pitäisi olla piilossa" +msgstr "Mikäli taulun rakenteiden toiminnot pitäisi olla piilossa." #: libraries/config/messages.inc.php:117 msgid "Hide table structure actions" @@ -5802,10 +5790,10 @@ msgid "Maximum execution time" msgstr "Suorituksen enimmäiskesto" #: libraries/config/messages.inc.php:132 libraries/display_export.lib.php:801 -#, fuzzy, php-format +#, php-format #| msgid "Add %s statement" msgid "Use %s statement" -msgstr "Lisää %s lauseke" +msgstr "Käytä %s lauseketta" #: libraries/config/messages.inc.php:134 prefs_manage.php:321 msgid "Save as file" @@ -5945,10 +5933,9 @@ msgid "Overwrite existing file(s)" msgstr "Korvaa jo olemassa oleva(t) tiedosto(t)" #: libraries/config/messages.inc.php:181 -#, fuzzy #| msgid "Export table headers" msgid "Export as separate files" -msgstr "Vie taulun otsikot" +msgstr "Vie erillisinä tiedostoina" #: libraries/config/messages.inc.php:185 msgid "Remember file name template" @@ -16343,7 +16330,6 @@ msgid "Reset zoom" msgstr "Palauta zoomaus" #: templates/table/secondary_tabs.phtml:14 -#, fuzzy #| msgid "Relation view" msgid "Relation view" msgstr "Relaationäkymä" From b319ae5316acdd45736ff50f43813628003462e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 12 Nov 2015 10:41:55 +0100 Subject: [PATCH 025/100] Translated using Weblate (Swedish) Currently translated at 98.5% (3181 of 3228 strings) [CI skip] --- po/sv.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/sv.po b/po/sv.po index 5e2d213b48..7ea6ab8aed 100644 --- a/po/sv.po +++ b/po/sv.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-10-26 20:01-0400\n" -"PO-Revision-Date: 2015-11-01 14:21+0200\n" -"Last-Translator: Jerry Gullstrand \n" +"PO-Revision-Date: 2015-11-12 10:41+0000\n" +"Last-Translator: Michal Čihař \n" "Language-Team: Swedish " "\n" "Language: sv\n" @@ -3974,7 +3974,7 @@ msgstr "Sökningen överstiger maximal längd, tillägg avstängda." #: libraries/Linter.php:165 #, php-format msgid "%1$s (near %2$s)" -msgstr "%1$s (near %2$s)" +msgstr "%1$s (nära %2$s)" #: libraries/Menu.php:198 libraries/ServerStatusData.php:422 #: libraries/config/messages.inc.php:933 From 2502a4ee29e03ae59af24e8e7be6a5c12bbe48d7 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Thu, 12 Nov 2015 23:03:34 +1100 Subject: [PATCH 026/100] Fix #11647 Restrict configuration NavigationTreeDbSeparator to strings Signed-off-by: Madhura Jayaratne --- ChangeLog | 1 + doc/config.rst | 5 ++--- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3e81f37054..7406e18f5e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -13,6 +13,7 @@ phpMyAdmin - ChangeLog + issue #11619 TokuDB Tables Show Size as "unknown" + issue #11654 Use a slider for Internal relations + issue #11641 Ability to disable the navigationhiding Feature +- issue #11647 Restrict configuration NavigationTreeDbSeparator to strings 4.5.2.0 (not yet released) - issue #11589 Incorrect parameter in mysqli_fetch_fields() diff --git a/doc/config.rst b/doc/config.rst index 89474e9fff..7a63f12391 100644 --- a/doc/config.rst +++ b/doc/config.rst @@ -1507,12 +1507,11 @@ Navigation panel setup .. config:option:: $cfg['NavigationTreeDbSeparator'] - :type: string or array + :type: string :default: ``'_'`` The string used to separate the parts of the database name when - showing them in a tree. Alternatively you can specify more strings in - an array and all of them will be used as a separator. + showing them in a tree. .. config:option:: $cfg['NavigationTreeTableSeparator'] From a597bd2550ef82a59d37a97530fa47b256b33e0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 12 Nov 2015 14:28:26 +0100 Subject: [PATCH 027/100] Remove sourceforge.net downloads badge MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #11625 Signed-off-by: Michal Čihař --- README.rst | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.rst b/README.rst index dedd4d01d0..c49bef1790 100644 --- a/README.rst +++ b/README.rst @@ -26,9 +26,6 @@ Code status :alt: Buildtime Trend badge :target: https://buildtimetrend.herokuapp.com/dashboard/phpmyadmin/phpmyadmin -.. image:: https://img.shields.io/sourceforge/dm/phpmyadmin.svg - :target: https://www.phpmyadmin.net/downloads/ - Download -------- From a098615fdb7474bf006969712e957056cac56d01 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 12 Nov 2015 10:41:35 -0500 Subject: [PATCH 028/100] Add a link to document internal relations Signed-off-by: Marc Delisle --- templates/table/relation/common_form.phtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/table/relation/common_form.phtml b/templates/table/relation/common_form.phtml index df15c06265..81c799dc89 100644 --- a/templates/table/relation/common_form.phtml +++ b/templates/table/relation/common_form.phtml @@ -73,7 +73,7 @@
- + From b49169c895296710b669b9a0039ee18b307701d5 Mon Sep 17 00:00:00 2001 From: Deven Bansod Date: Thu, 12 Nov 2015 23:16:00 +0530 Subject: [PATCH 029/100] ChangeLog entry for issue #11661 Signed-off-by: Deven Bansod --- ChangeLog | 1 + 1 file changed, 1 insertion(+) diff --git a/ChangeLog b/ChangeLog index 254b934f31..9f01e3f3a3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -29,6 +29,7 @@ phpMyAdmin - ChangeLog - issue #11608 Analyzer doesn't recognize GRANT statements - issue #11602 Parser warnings (subqueries) - issue #11658 Collation column is empty in table Structure +- issue #11661 Error changing table's column encoding 4.5.1.0 (2015-10-23) - issue Invalid argument supplied for foreach() From c33cd863be46938a0e3505102676452478b1d1c2 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Fri, 13 Nov 2015 07:41:16 +1100 Subject: [PATCH 030/100] Describe that false disables these features Signed-off-by: Madhura Jayaratne --- doc/config.rst | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/doc/config.rst b/doc/config.rst index 89474e9fff..6bcdd57502 100644 --- a/doc/config.rst +++ b/doc/config.rst @@ -512,6 +512,7 @@ Server connection settings * set up :config:option:`$cfg['Servers'][$i]['pmadb']` and the phpMyAdmin configuration storage * enter the table name in :config:option:`$cfg['Servers'][$i]['bookmarktable']` + This feature can be disabled by setting the configuration to ``false``. .. _relation: .. config:option:: $cfg['Servers'][$i]['relation'] @@ -546,6 +547,8 @@ Server connection settings where you want to use this feature, click :guilabel:`Structure/Relation view/` and choose foreign columns. + This feature can be disabled by setting the configuration to ``false``. + .. note:: In the current version, ``master_db`` must be the same as ``foreign_db``. @@ -571,6 +574,8 @@ Server connection settings "Structure/Relation view/Choose column to display" to choose the column. + This feature can be disabled by setting the configuration to ``false``. + .. seealso:: :ref:`faqdisplay` .. _table_coords: @@ -598,6 +603,8 @@ Server connection settings :config:option:`$cfg['Servers'][$i]['table\_coords']` and :config:option:`$cfg['Servers'][$i]['pdf\_pages']` + This feature can be disabled by setting either of the configurations to ``false``. + .. seealso:: :ref:`faqpdf`. .. _col_com: @@ -651,6 +658,8 @@ Server connection settings * to update your PRE-4.3.0 Column\_info table manually use this ``./sql/upgrade_column_info_4_3_0+.sql`` SQL script. + This feature can be disabled by setting the configuration to ``false``. + .. note:: For auto-upgrade functionality to work, your @@ -684,6 +693,8 @@ Server connection settings * put the table name in :config:option:`$cfg['Servers'][$i]['history']` (e.g. ``pma__history``) + This feature can be disabled by setting the configuration to ``false``. + .. _recent: .. config:option:: $cfg['Servers'][$i]['recent'] @@ -707,6 +718,8 @@ Server connection settings * put the table name in :config:option:`$cfg['Servers'][$i]['recent']` (e.g. ``pma__recent``) + This feature can be disabled by setting the configuration to ``false``. + .. _table_uiprefs: .. config:option:: $cfg['Servers'][$i]['table_uiprefs'] @@ -725,6 +738,8 @@ Server connection settings * put the table name in :config:option:`$cfg['Servers'][$i]['table\_uiprefs']` (e.g. ``pma__table_uiprefs``) + This feature can be disabled by setting the configuration to ``false``. + .. _configurablemenus: .. config:option:: $cfg['Servers'][$i]['users'] @@ -749,6 +764,8 @@ Server connection settings :config:option:`$cfg['Servers'][$i]['users']` (e.g. ``pma__users``) and :config:option:`$cfg['Servers'][$i]['usergroups']` (e.g. ``pma__usergroups``) + This feature can be disabled by setting either of the configurations to ``false``. + .. _navigationhiding: .. config:option:: $cfg['Servers'][$i]['navigationhiding'] @@ -763,6 +780,8 @@ Server connection settings * put the table name in :config:option:`$cfg['Servers'][$i]['navigationhiding']` (e.g. ``pma__navigationhiding``) + This feature can be disabled by setting the configuration to ``false``. + .. _central_columns: .. config:option:: $cfg['Servers'][$i]['central_columns'] @@ -782,6 +801,8 @@ Server connection settings * put the table name in :config:option:`$cfg['Servers'][$i]['central_columns']` (e.g. ``pma__central_columns``) + This feature can be disabled by setting the configuration to ``false``. + .. _designer_settings: .. config:option:: $cfg['Servers'][$i]['designer_settings'] @@ -798,6 +819,8 @@ Server connection settings * put the table name in :config:option:`$cfg['Servers'][$i]['designer_settings']` (e.g. ``pma__designer_settings``) + This feature can be disabled by setting the configuration to ``false``. + .. _savedsearches: .. config:option:: $cfg['Servers'][$i]['savedsearches'] @@ -812,6 +835,8 @@ Server connection settings * put the table name in :config:option:`$cfg['Servers'][$i]['savedsearches']` (e.g. ``pma__savedsearches``) + This feature can be disabled by setting the configuration to ``false``. + .. _export_templates: .. config:option:: $cfg['Servers'][$i]['export_templates'] @@ -826,6 +851,8 @@ Server connection settings * put the table name in :config:option:`$cfg['Servers'][$i]['export_templates']` (e.g. ``pma__export_templates``) + This feature can be disabled by setting the configuration to ``false``. + .. _tracking: .. config:option:: $cfg['Servers'][$i]['tracking'] @@ -858,6 +885,7 @@ Server connection settings * put the table name in :config:option:`$cfg['Servers'][$i]['tracking']` (e.g. ``pma__tracking``) + This feature can be disabled by setting the configuration to ``false``. .. _tracking2: .. config:option:: $cfg['Servers'][$i]['tracking_version_auto_create'] @@ -931,6 +959,8 @@ Server connection settings * set up :config:option:`$cfg['Servers'][$i]['pmadb']` and the phpMyAdmin configuration storage * put the table name in :config:option:`$cfg['Servers'][$i]['userconfig']` + This feature can be disabled by setting the configuration to ``false``. + .. config:option:: $cfg['Servers'][$i]['MaxTableUiprefs'] :type: integer From 39ce87a0f4268c3e93e0c99de7c3efa517a1850b Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 12 Nov 2015 17:17:41 +0100 Subject: [PATCH 031/100] Translated using Weblate (Turkish) Currently translated at 100.0% (3228 of 3228 strings) [CI skip] --- po/tr.po | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/po/tr.po b/po/tr.po index cd5df37861..a6f76ff661 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-10-26 20:01-0400\n" -"PO-Revision-Date: 2015-11-05 12:07+0000\n" +"PO-Revision-Date: 2015-11-12 17:17+0000\n" "Last-Translator: Burak Yavuz \n" "Language-Team: Turkish " "\n" @@ -805,10 +805,10 @@ msgid "" "once phpMyAdmin has been configured. Otherwise the security of your server " "may be compromised by unauthorized people downloading your configuration." msgstr "" -"Kur betiği tarafından kullanılan [code]config[/code] dizini hala phpMyAdmin " -"dizininiz içinde mevcut. phpMyAdmin bir defa yapılandırıldı mı bunu " -"kaldırmanız son derece önerilir. Yoksa yapılandırmanızı indiren yetkisiz " -"insanlar tarafından sunucunuzun güvenliği riske atılabilir." +"Kur programcığı tarafından kullanılan [code]config[/code] dizini hala " +"phpMyAdmin dizininiz içinde mevcut. phpMyAdmin bir defa yapılandırıldı mı " +"bunu kaldırmanız son derece önerilir. Yoksa yapılandırmanızı indiren " +"yetkisiz insanlar tarafından sunucunuzun güvenliği riske atılabilir." #: index.php:566 #, php-format @@ -10089,8 +10089,8 @@ msgid "" "You probably did not create a configuration file. You might want to use the " "%1$ssetup script%2$s to create one." msgstr "" -"Muhtemelen bunun sebebi yapılandırma dosyasını oluşturmadığınız içindir. Bir " -"tane oluşturmak için %1$skur programcığı%2$s kullanmak isteyebilirsiniz." +"Muhtemelen bir yapılandırma dosyası oluşturmadınız. Bir tane oluşturmak için " +"%1$skur programcığını%2$s kullanmak isteyebilirsiniz." #: libraries/plugins/auth/AuthenticationConfig.php:134 msgid "" From 1fda587e35372b34b941e80fbaa60c44c5d2ac52 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 13 Nov 2015 19:08:29 -0500 Subject: [PATCH 032/100] Fixes #11667 Disable the tooltip in the navigation panel's filter box Signed-off-by: Marc Delisle --- ChangeLog | 1 + js/messages.php | 9 --------- js/navigation.js | 21 --------------------- libraries/navigation/NavigationTree.php | 4 ++-- 4 files changed, 3 insertions(+), 32 deletions(-) diff --git a/ChangeLog b/ChangeLog index d6a48878af..6ba3c1a760 100644 --- a/ChangeLog +++ b/ChangeLog @@ -14,6 +14,7 @@ phpMyAdmin - ChangeLog + issue #11654 Use a slider for Internal relations + issue #11641 Ability to disable the navigationhiding Feature - issue #11647 Restrict configuration NavigationTreeDbSeparator to strings +- issue #11667 Disable the tooltip in the navigation panel's filter box 4.5.2.0 (not yet released) - issue #11589 Incorrect parameter in mysqli_fetch_fields() diff --git a/js/messages.php b/js/messages.php index 2d7f2e639d..c95608ded8 100644 --- a/js/messages.php +++ b/js/messages.php @@ -626,15 +626,6 @@ $js_messages['strHidePanel'] = __('Hide panel'); $js_messages['strUnhideNavItem'] = __('Show hidden navigation tree items.'); $js_messages['linkWithMain'] = __('Link with main panel'); $js_messages['unlinkWithMain'] = __('Unlink from main panel'); -$js_messages['strHoverDbFastFilter'] - = __('To filter all databases on server, press Enter after a search term'); -$js_messages['strHoverFastFilter'] - = __('To filter all %s in database, press Enter after a search term'); -$js_messages['strTables'] = __('tables'); -$js_messages['strViews'] = __('views'); -$js_messages['strProcedures'] = __('procedures'); -$js_messages['strEvents'] = __('events'); -$js_messages['strFunctions'] = __('functions'); /* microhistory */ $js_messages['strInvalidPage'] diff --git a/js/navigation.js b/js/navigation.js index 01b919a4ba..78ad1953f7 100644 --- a/js/navigation.js +++ b/js/navigation.js @@ -305,7 +305,6 @@ $(function () { $(document).on('focus', '#pma_navigation_tree li.fast_filter input.searchClause', PMA_fastFilter.events.focus); $(document).on('blur', '#pma_navigation_tree li.fast_filter input.searchClause', PMA_fastFilter.events.blur); $(document).on('keyup', '#pma_navigation_tree li.fast_filter input.searchClause', PMA_fastFilter.events.keyup); - $(document).on('mouseover', '#pma_navigation_tree li.fast_filter input.searchClause', PMA_fastFilter.events.mouseover); /** * Ajax handler for pagination @@ -1309,26 +1308,6 @@ var PMA_fastFilter = { $obj.data('fastFilter').restore(); } }, - mouseover: function (event) { - var message = ''; - if ($(this).closest('li.fast_filter').is('.db_fast_filter')) { - message = PMA_messages.strHoverDbFastFilter; - } else { - var node_type = $(this).siblings("input[name='pos2_name']").val(); - var node_name = PMA_messages.strTables; - if (node_type == 'views') { - node_name = PMA_messages.strViews; - } else if (node_type == 'procedures') { - node_name = PMA_messages.strProcedures; - } else if (node_type == 'functions') { - node_name = PMA_messages.strFunctions; - } else if (node_type == 'events') { - node_name = PMA_messages.strEvents; - } - message = PMA_sprintf(PMA_messages.strHoverFastFilter, node_name); - } - PMA_tooltip($(this), 'input', message); - }, keyup: function (event) { var $obj = $(this).closest('div.list_container'); var str = ''; diff --git a/libraries/navigation/NavigationTree.php b/libraries/navigation/NavigationTree.php index a2d74243c4..11dd19a58f 100644 --- a/libraries/navigation/NavigationTree.php +++ b/libraries/navigation/NavigationTree.php @@ -1366,7 +1366,7 @@ class NavigationTree $placeholder_key = 'placeholder'; } $retval .= " $placeholder_key='" - . __('Filter databases by name or regex'); + . __("Type to filter these, Enter to search all"); $retval .= "' />"; $retval .= 'X'; $retval .= ""; @@ -1403,7 +1403,7 @@ class NavigationTree $placeholder_key = 'placeholder'; } $retval .= " $placeholder_key='" - . __('Filter by name or regex') . "' />"; + . __("Type to filter these, Enter to search all") . "' />"; $retval .= "X"; $retval .= ""; $retval .= ""; From 357b1cc87c1260aa2bf72f78fe716426baaeab4e Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 13 Nov 2015 19:14:17 -0500 Subject: [PATCH 033/100] Remove spurious characters Signed-off-by: Marc Delisle --- po/zh_CN.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/zh_CN.po b/po/zh_CN.po index ddbf963e8c..7ffbb11719 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -6910,7 +6910,7 @@ msgstr "不使用导出模板功能请留空,推荐: [kbd]pma__export_template #, fuzzy #| msgid "Textarea columns" msgid "Central columns table" -msgstr "中央框列" +msgstr "中央框列" #: libraries/config/messages.inc.php:708 #, fuzzy @@ -6920,7 +6920,7 @@ msgstr "中央框列" msgid "" "Leave blank for no central columns support, suggested: " "[kbd]pma__central_columns[/kbd]." -msgstr "不使用 中央框列功能请留空,推荐: [kbd]pma__central_columns[/kbd]" +msgstr "不使用 中央框列功能请留空,推荐: [kbd]pma__central_columns[/kbd]" #: libraries/config/messages.inc.php:711 msgid "Try to connect without password." From 143d134468558369813c4b3cc3b7cbba1d59c1e0 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 13 Nov 2015 19:14:48 -0500 Subject: [PATCH 034/100] Update po files [CI skip] Signed-off-by: Marc Delisle --- po/af.po | 2399 ++++++++++++++++++------------------ po/ar.po | 2415 ++++++++++++++++++------------------ po/az.po | 2397 ++++++++++++++++++------------------ po/be.po | 2441 +++++++++++++++++++------------------ po/be@latin.po | 2441 +++++++++++++++++++------------------ po/bg.po | 2421 ++++++++++++++++++------------------ po/bn.po | 2389 ++++++++++++++++++------------------ po/br.po | 2411 ++++++++++++++++++------------------ po/brx.po | 2366 ++++++++++++++++++----------------- po/bs.po | 2405 ++++++++++++++++++------------------ po/ca.po | 2397 ++++++++++++++++++------------------ po/ckb.po | 2397 ++++++++++++++++++------------------ po/cs.po | 2423 ++++++++++++++++++------------------ po/cy.po | 2419 ++++++++++++++++++------------------ po/da.po | 2397 ++++++++++++++++++------------------ po/de.po | 2404 ++++++++++++++++++------------------ po/el.po | 2413 ++++++++++++++++++------------------ po/en_GB.po | 2505 ++++++++++++++++++------------------- po/eo.po | 2366 ++++++++++++++++++----------------- po/es.po | 2400 ++++++++++++++++++------------------ po/et.po | 2415 ++++++++++++++++++------------------ po/eu.po | 2407 ++++++++++++++++++------------------ po/fa.po | 2412 ++++++++++++++++++------------------ po/fi.po | 2518 +++++++++++++++++++------------------- po/fr.po | 2415 ++++++++++++++++++------------------ po/fy.po | 2399 ++++++++++++++++++------------------ po/gl.po | 2412 ++++++++++++++++++------------------ po/he.po | 2407 ++++++++++++++++++------------------ po/hi.po | 2411 ++++++++++++++++++------------------ po/hr.po | 2441 +++++++++++++++++++------------------ po/hu.po | 2388 ++++++++++++++++++------------------ po/hy.po | 2395 ++++++++++++++++++------------------ po/ia.po | 2412 ++++++++++++++++++------------------ po/id.po | 2397 ++++++++++++++++++------------------ po/it.po | 2425 ++++++++++++++++++------------------ po/ja.po | 2421 ++++++++++++++++++------------------ po/ka.po | 2413 ++++++++++++++++++------------------ po/kk.po | 2411 ++++++++++++++++++------------------ po/km.po | 2372 ++++++++++++++++++------------------ po/kn.po | 2368 ++++++++++++++++++----------------- po/ko.po | 2391 ++++++++++++++++++------------------ po/ksh.po | 2375 ++++++++++++++++++------------------ po/ky.po | 2364 ++++++++++++++++++----------------- po/li.po | 2366 ++++++++++++++++++----------------- po/lt.po | 2413 ++++++++++++++++++------------------ po/lv.po | 2401 ++++++++++++++++++------------------ po/mk.po | 2405 ++++++++++++++++++------------------ po/ml.po | 2385 ++++++++++++++++++------------------ po/mn.po | 2415 ++++++++++++++++++------------------ po/ms.po | 2400 ++++++++++++++++++------------------ po/nb.po | 2436 ++++++++++++++++++------------------ po/ne.po | 2382 ++++++++++++++++++------------------ po/nl.po | 2410 ++++++++++++++++++------------------ po/pa.po | 2366 ++++++++++++++++++----------------- po/phpmyadmin.pot | 2366 ++++++++++++++++++----------------- po/pl.po | 2438 ++++++++++++++++++------------------ po/pt.po | 2396 ++++++++++++++++++------------------ po/pt_BR.po | 2397 ++++++++++++++++++------------------ po/ro.po | 2437 ++++++++++++++++++------------------ po/ru.po | 2406 ++++++++++++++++++------------------ po/si.po | 2399 ++++++++++++++++++------------------ po/sk.po | 2397 ++++++++++++++++++------------------ po/sl.po | 2401 ++++++++++++++++++------------------ po/sq.po | 2400 ++++++++++++++++++------------------ po/sr.po | 2415 ++++++++++++++++++------------------ po/sr@latin.po | 2409 ++++++++++++++++++------------------ po/sv.po | 2981 +++++++++++++++++++-------------------------- po/ta.po | 2402 ++++++++++++++++++------------------ po/te.po | 2411 ++++++++++++++++++------------------ po/th.po | 2407 ++++++++++++++++++------------------ po/tk.po | 2370 ++++++++++++++++++----------------- po/tr.po | 2413 ++++++++++++++++++------------------ po/tt.po | 2403 ++++++++++++++++++------------------ po/ug.po | 2408 ++++++++++++++++++------------------ po/uk.po | 2421 ++++++++++++++++++------------------ po/ur.po | 2411 ++++++++++++++++++------------------ po/uz.po | 2443 ++++++++++++++++++------------------- po/uz@latin.po | 2443 ++++++++++++++++++------------------- po/vi.po | 2380 ++++++++++++++++++------------------ po/vls.po | 2366 ++++++++++++++++++----------------- po/zh_CN.po | 2414 ++++++++++++++++++------------------ po/zh_TW.po | 2398 ++++++++++++++++++------------------ 82 files changed, 98671 insertions(+), 99215 deletions(-) diff --git a/po/af.po b/po/af.po index dbfc7f697c..f48197313a 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:30+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Afrikaans Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Kenmerke" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 #, 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:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Naspeur verslag" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 #, fuzzy @@ -2068,280 +2080,280 @@ msgstr "" msgid "End of step" msgstr "By Einde van Tabel" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 #, fuzzy #| msgid "None" msgid "Done" msgstr "Geen" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 #, fuzzy #| msgid "Create table on database %s" msgid "Create the following table" msgstr "Skep 'n nuwe tabel op databasis %s" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Stoor" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy msgid "Hide search criteria" msgstr "SQL-stelling" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy msgid "Show search criteria" msgstr "SQL-stelling" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Soek" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Kolom name" -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Kolom name" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy msgid "Hide find and replace criteria" msgstr "SQL-stelling" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy msgid "Show find and replace criteria" msgstr "SQL-stelling" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Voeg By/Verwyder Veld Kolomme" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy msgid "Data point content" msgstr "Tabel kommentaar" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignoreer" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "" -#: js/messages.php:508 +#: js/messages.php:509 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Lyne beeindig deur" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Inner ring %d:" msgid "Inner ring" msgstr "Binne kring %d:" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Buite kring:" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Bladsy nommer:" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 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:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgctxt "PDF" @@ -2349,265 +2361,231 @@ msgstr "Kies Alles" msgid "Open page" msgstr "Gebruik" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "Kies Alles" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 #, 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:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 #, fuzzy #| msgid "Display PDF schema" msgid "Export relational schema" msgstr "Vertoon PDF skema" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Veranderinge is gestoor" -#: js/messages.php:550 +#: js/messages.php:551 #, 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:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Stuur" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Kolom name" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Wys alles" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Lines terminated by" msgid "Original length" msgstr "Lyne beeindig deur" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 #, fuzzy msgid "Import status" msgstr "Export" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Kies Tabelle" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 #, fuzzy msgid "Go to link:" msgstr "Geen databasisse" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Kolom name" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Verander wagwoord" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 #, fuzzy msgid "Generate" msgstr "Voortgebring deur" -#: js/messages.php:620 +#: js/messages.php:621 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Ma" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Wys alles" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "Indekse" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Wys ruitgebied" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 #, fuzzy #| msgid "Indexes" msgid "Link with main panel" msgstr "Indekse" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 #, fuzzy #| msgid "Indexes" msgid "Unlink from main panel" msgstr "Indekse" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -#, fuzzy -msgid "tables" -msgstr "Tabel" - -#: js/messages.php:633 -#, fuzzy -msgid "views" -msgstr "Velde" - -#: js/messages.php:634 -msgid "procedures" -msgstr "" - -#: js/messages.php:635 -#, fuzzy -#| msgid "Reset" -msgid "events" -msgstr "Herstel" - -#: js/messages.php:636 -#, fuzzy -msgid "functions" -msgstr "Funksie" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2615,135 +2593,135 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr "" -#: js/messages.php:649 +#: js/messages.php:641 #, fuzzy msgid "up to date" msgstr "Geen databasisse" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 #, fuzzy msgid "Create view" msgstr "Bediener weergawe" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy msgid "Send error report" msgstr "Bediener Keuse" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy msgid "Submit error report" msgstr "Bediener Keuse" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Algemene verwantskap funksies" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy msgid "Show report details" msgstr "Wys tabelle" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignoreer" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Wys hierdie navraag weer hier" -#: js/messages.php:701 +#: js/messages.php:693 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Wil jy regtig " -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Tabel kommentaar" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy msgid "Hide arguments" msgstr "SQL-stelling" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Vorige" -#: js/messages.php:748 +#: js/messages.php:740 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2751,95 +2729,95 @@ msgid "Next" msgstr "Volgende" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 #, fuzzy msgid "Today" msgstr "totaal" -#: js/messages.php:755 +#: js/messages.php:747 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Biner" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:749 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:758 +#: js/messages.php:750 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Mei" -#: js/messages.php:760 +#: js/messages.php:752 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:761 +#: js/messages.php:753 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:762 +#: js/messages.php:754 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:756 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2847,78 +2825,78 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Des" -#: js/messages.php:801 +#: js/messages.php:793 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "So" -#: js/messages.php:802 +#: js/messages.php:794 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Ma" -#: js/messages.php:803 +#: js/messages.php:795 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Di" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:798 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Fr" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2926,157 +2904,157 @@ msgid "Sun" msgstr "So" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Wo" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Fr" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Sa" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "So" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Wo" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Geen" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:864 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "in gebruik" -#: js/messages.php:873 +#: js/messages.php:865 #, fuzzy #| msgid "Records" msgid "Second" msgstr "Rekords" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Add new field" msgid "Please fix this field" msgstr "Voeg 'n nuwe veld by" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Please select a database" msgid "Please enter a valid date" msgstr "Kies asb. 'n databasis" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "" @@ -3084,43 +3062,43 @@ msgstr "" msgid "Please enter the same value again" msgstr "" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:901 +#: js/messages.php:928 #, 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:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Fout" @@ -3207,11 +3185,12 @@ msgstr "in navraag" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3259,7 +3238,7 @@ msgstr "" msgid "Explain" msgstr "Verduidelik SQL" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "" @@ -3300,8 +3279,8 @@ msgid "History" msgstr "Ignoreer SQL Validasie" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3477,30 +3456,30 @@ msgstr "" msgid "Switch to dark theme" msgstr "" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3510,8 +3489,8 @@ msgstr "" msgid "Ascending" msgstr "Dalend" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3684,8 +3663,8 @@ msgstr[0] "%s resultate binne tabel %s" msgstr[1] "%s resultate binne tabel %s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3736,28 +3715,28 @@ msgstr "Selekteer Niks" msgid "Inside column:" msgstr "Binne tabel(le):" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "Voeg By/Verwyder Veld Kolomme" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 #, fuzzy msgid "Filter rows" msgstr "Velde" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Search in database" msgid "Search this table" msgstr "Soek in databasis" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 #, fuzzy #| msgid "Begin" @@ -3765,7 +3744,7 @@ msgctxt "First page" msgid "Begin" msgstr "Begin" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 #, fuzzy @@ -3774,7 +3753,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Vorige" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 #, fuzzy @@ -3783,7 +3762,7 @@ msgctxt "Next page" msgid "Next" msgstr "Volgende" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 #, fuzzy #| msgid "End" @@ -3791,131 +3770,132 @@ msgctxt "Last page" msgid "End" msgstr "Einde" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Alle" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of rows per page" msgid "Number of rows:" msgstr "Hoeveelheid rye per bladsy" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Gedeeltelike Tekste" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Volle Tekste" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 #, fuzzy msgid "Relational key" msgstr "Relasie uitsig" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display column for relations" msgstr "Kolom Kommentaar word vertoon" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 #, fuzzy msgid "Hide browser transformation" msgstr "Wys PHP informasie" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Die ry is verwyder" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Vermoor" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "Jou SQL-navraag is suksesvol uitgevoer." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Vertoon rye" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "totaal" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Met gekose:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3923,27 +3903,27 @@ msgstr "Met gekose:" msgid "Check all" msgstr "Kies Alles" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Drukker mooi (print view)" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "Kolom Kommentaar word vertoon" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 #, fuzzy #| msgid "Link not found" msgid "Link not found!" @@ -4042,19 +4022,19 @@ msgstr "Geen indeks gedefinieer!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Indekse" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -4063,24 +4043,24 @@ msgid "Action" msgstr "Aksie" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Sleutelnaam" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Uniek" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Cardinality" @@ -4088,8 +4068,8 @@ msgstr "Cardinality" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -4099,8 +4079,8 @@ msgid "Collation" msgstr "" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -4117,15 +4097,15 @@ msgstr "Die primere sleutel is verwyder." msgid "Index %s has been dropped." msgstr "Indeks %s is verwyder." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Verwyder" @@ -4162,12 +4142,13 @@ msgstr "" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4175,7 +4156,7 @@ msgstr "Tabel" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4184,8 +4165,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4193,41 +4174,41 @@ msgid "Search" msgstr "Soek" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Voeg by" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Regte" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Operasies" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4238,16 +4219,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Navraag dmv Voorbeeld" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4255,22 +4236,22 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Voeg By/Verwyder Veld Kolomme" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "databasisse" @@ -4281,34 +4262,34 @@ msgid "User accounts" msgstr "Gebruiker" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 #, fuzzy msgid "Binary log" msgstr "Biner" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4625,7 +4606,7 @@ msgstr "Kannie die indeks hernoem na PRIMARY!" msgid "No index parts defined!" msgstr "Geen indeks dele gedefinieer!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5048,37 +5029,37 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Maak Leeg" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 #, fuzzy #| msgid "User" msgid "Users" @@ -5256,8 +5237,8 @@ msgid "Add new column" msgstr "Voeg 'n nuwe veld by" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5322,19 +5303,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -6153,7 +6134,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -6197,7 +6178,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "" @@ -7844,7 +7825,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 #, fuzzy msgid "Retain query box" msgstr "SQL-stelling" @@ -8132,107 +8113,34 @@ msgstr "" msgid "OpenDocument Text" msgstr "Dokumentasie" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Tabel %s is leeg gemaak." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format msgid "View %s has been dropped." msgstr "Veld %s is verwyder" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "Tabel %s is verwyder" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "" - -#: libraries/controllers/TableStructureController.php:484 -#, fuzzy -#| msgid "Database %s has been dropped." -msgid "The columns have been moved successfully." -msgstr "Databasis %s is verwyder." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -#, fuzzy -#| msgid "Query" -msgid "Query error" -msgstr "Navraag dmv Voorbeeld" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Verander" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Indeks" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Volteks" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8248,6 +8156,14 @@ msgstr "" msgid "No data to display" msgstr "Geen databasisse" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "" + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "" @@ -8257,24 +8173,89 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr "Algemene verwantskap funksies" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Search" msgid "Table search" msgstr "Soek" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Search" msgid "Zoom search" msgstr "Soek" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy msgid "Find and replace" msgstr "SQL-stelling" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:485 +#, fuzzy +#| msgid "Database %s has been dropped." +msgid "The columns have been moved successfully." +msgstr "Databasis %s is verwyder." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +#, fuzzy +#| msgid "Query" +msgid "Query error" +msgstr "Navraag dmv Voorbeeld" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Verander" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Indeks" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Volteks" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8284,7 +8265,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Geen verandering" @@ -8357,7 +8338,7 @@ msgstr "Skep" msgid "Create database:" msgstr "Skep 'n nuwe databasis" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Geen Regte" @@ -9080,70 +9061,70 @@ msgid "Dump has been saved to file %s." msgstr "" #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL het niks teruggegee nie (dus nul rye)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Geen databasisse" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Geen databasisse" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Slegs struktuur" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" @@ -9167,77 +9148,77 @@ msgstr "Funksie" msgid "Binary" msgstr "Biner" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "" " Omrede sy lengte,
is hierdie veld moontlik nie veranderbaar nie " -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Biner - moenie verander nie" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Of" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Voeg by" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Voeg by as 'n nuwe ry" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Terug na vorige bladsy" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Voeg 'n nuwe ry by" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 #, fuzzy msgid "Go back to this page" msgstr "Terug na vorige bladsy" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9249,11 +9230,11 @@ msgstr "" msgid "Value" msgstr "Waarde" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9271,43 +9252,43 @@ msgstr "Geen" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix:" msgstr "Vervang tabel data met leer (file)" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix:" msgstr "Vervang tabel data met leer (file)" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Fr" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Replace table data with file" msgid "Add table prefix:" msgstr "Vervang tabel data met leer (file)" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -9532,8 +9513,8 @@ msgstr "" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Wys" @@ -9573,10 +9554,9 @@ msgstr[0] "" msgstr[1] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "Alter table order by" -msgid "Filter databases by name or regex" -msgstr "Verander tabel sorteer volgens" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -9585,12 +9565,6 @@ msgstr "Verander tabel sorteer volgens" msgid "Clear fast filter" msgstr "Stoor as leer (file)" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "Alter table order by" -msgid "Filter by name or regex" -msgstr "Verander tabel sorteer volgens" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -9983,7 +9957,7 @@ msgstr "Hernoem tabel na" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -9994,7 +9968,7 @@ msgstr "Jy het nie genoeg regte om nou hier te wees nie!" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -10016,18 +9990,18 @@ msgstr "Hernoem tabel na" msgid "Drop the database (DROP)" msgstr "Geen databasisse" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Slegs struktuur" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Struktuur en data" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Slegs Data" @@ -10040,7 +10014,7 @@ msgstr "Geen databasisse" msgid "CREATE DATABASE before copying" msgstr "" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "" @@ -10080,63 +10054,63 @@ msgstr "" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Kopieer tabel na (databasis.tabel)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Tabel instandhouding" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Analiseer tabel" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Kontroleer tabel" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Kontroleer tabel" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "Tabel %s is geflush." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Spoel die tabel (\"FLUSH\")" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Optimaliseer tabel" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Herstel tabel" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 #, fuzzy @@ -10144,105 +10118,105 @@ msgstr "Herstel tabel" msgid "Delete data or table" msgstr "Stort data vir tabel" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 #, fuzzy msgid "Delete the table (DROP)" msgstr "Geen databasisse" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 #, fuzzy msgid "Repair" msgstr "Herstel tabel" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy msgid "Coalesce" msgstr "Geen tabelle" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 #, fuzzy msgid "Partition maintenance" msgstr "Tabel instandhouding" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Toets referential integrity:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabel %s is geskuif na %s." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabel %s is gekopieer na %s." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabel %s is geskuif na %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabel %s is gekopieer na %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Die tabel naam is leeg!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "" @@ -10419,7 +10393,7 @@ msgstr "Databasis statistieke" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Stort data vir tabel" @@ -10444,14 +10418,14 @@ msgstr "geen Beskrywing" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Tabel struktuur vir tabel" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 #, fuzzy msgid "Structure for view" @@ -10459,7 +10433,7 @@ msgstr "Slegs struktuur" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10569,7 +10543,7 @@ msgid "Database:" msgstr "Databasis" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10679,7 +10653,7 @@ msgid "Data creation options" msgstr "Databasis statistieke" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -10748,8 +10722,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10757,87 +10731,87 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Export" msgid "Metadata" msgstr "Export" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Skepping:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Vorige opdatering:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Vorige inspeksie:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "in gebruik" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for dumped tables" msgstr "Binne tabel(le):" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "Binne tabel(le):" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Slegs struktuur" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "" @@ -11088,9 +11062,9 @@ msgstr "" msgid "Table of contents" msgstr "Tabel kommentaar" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Ekstra" @@ -11254,60 +11228,60 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been added." msgstr "Veranderinge is gestoor" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Leer kon nie gelees word nie" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy msgid "Internal relation has been added." msgstr "Algemene verwantskap funksies" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be added!" msgstr "Leer kon nie gelees word nie" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been removed." msgstr "Veranderinge is gestoor" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Leer kon nie gelees word nie" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be removed!" msgstr "Leer kon nie gelees word nie" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy msgid "Internal relation has been removed." msgstr "Algemene verwantskap funksies" @@ -11359,110 +11333,110 @@ msgstr "" msgid "Please see the documentation on how to update your column_info table. " msgstr "" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Geboekmerkde SQL-stelling" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "Space usage" msgid "Persistent favorite tables" msgstr "Spasie verbruik" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Modifications have been saved" msgid "Configurable menus" msgstr "Veranderinge is gestoor" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Rename table to" msgid "Remembering Designer Settings" msgstr "Hernoem tabel na" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "Verkeerde uitvoer tipe" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "geen Beskrywing" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11643,8 +11617,8 @@ msgstr "Gebruiker naam" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Gebruiker naam" @@ -11652,7 +11626,7 @@ msgstr "Gebruiker naam" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Wagwoord" @@ -12313,7 +12287,7 @@ msgstr[1] "Databasis %s is verwyder." msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 #, fuzzy msgid "Version" msgstr "PHP Version" @@ -12322,101 +12296,97 @@ msgstr "PHP Version" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Onbeskikbaar" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 #, fuzzy msgid "No privileges." msgstr "Geen Regte" -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "" #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "" #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "" #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12424,65 +12394,65 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "" #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "" #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -12496,8 +12466,8 @@ msgstr "Geen" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12539,39 +12509,39 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy msgid "Routine" msgstr "Voeg 'n nuwe veld by" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12586,14 +12556,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -12605,7 +12575,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 #, fuzzy msgid "Global privileges" msgstr "Geen Regte" @@ -12615,15 +12585,15 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "" @@ -12646,7 +12616,7 @@ msgid "Native MySQL Authentication" msgstr "Dokumentasie" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 #, fuzzy msgid "Login Information" msgstr "Wys PHP informasie" @@ -12672,8 +12642,8 @@ msgstr "Gebruiker naam" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Column names" msgid "Host name" @@ -12695,232 +12665,232 @@ msgstr "Dokumentasie" msgid "Password Hashing Method" msgstr "Wagwoord:" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Jy het die regte herroep vir %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Enige gebruiker" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy msgid "Database for user account" msgstr "Databasis statistieke" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 #, fuzzy msgid "User has been added." msgstr "Veld %s is verwyder" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Geen gebruiker(s) gevind nie." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Enige" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Verander Regte" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Herroep" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy msgid "Routine-specific privileges" msgstr "Geen Regte" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "With selected:" msgid "Remove selected user accounts" msgstr "Met gekose:" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Jy het die regte opgedateer vir %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Regte" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Gebruiker" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Verander Regte" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "User" msgid "User account" msgstr "Gebruiker" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12929,7 +12899,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12938,11 +12908,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Jy het 'n nuwe gebruiker bygevoeg." @@ -13180,33 +13150,33 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 #, fuzzy msgid "Refresh rate" msgstr "Voortgebring deur" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Voeg By/Verwyder Veld Kolomme" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -13266,7 +13236,7 @@ msgid "Statements" msgstr "Stellings" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -13296,34 +13266,34 @@ msgstr "Wys tabelle" msgid "Related links:" msgstr "Operasies" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Limits the number of new connections the user may open per hour." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13331,78 +13301,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13410,7 +13380,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13418,42 +13388,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13461,33 +13431,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13496,243 +13466,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Karakterstel van die leer:" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13740,99 +13710,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13840,18 +13810,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13859,11 +13829,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -13872,75 +13842,75 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 #, fuzzy #| msgid "User" msgid "User groups" msgstr "Gebruiker" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "Bediener weergawe" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Databases" msgid "Database level tabs" msgstr "databasisse" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table comments" msgid "Table level tabs" msgstr "Tabel kommentaar" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy msgid "View users" msgstr "Enige gebruiker" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Any user" msgid "Add user group" msgstr "Enige gebruiker" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy msgid "User group menu assignments" msgstr "Geen Regte" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "Kolom name" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Bediener weergawe" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Databases" msgid "Database-level tabs" msgstr "databasisse" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14004,21 +13974,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "With selected:" msgid "An alias was expected." @@ -14080,129 +14046,129 @@ msgstr "Tabel %s is verwyder" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "By Begin van Tabel" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Die ry is verwyder" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 #, fuzzy msgid "Detailed profile" msgstr "Slegs Data" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy #| msgid "Start" msgid "State" msgstr "Sa" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy msgid "Total Time" msgstr "totaal" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Boekmerk hierdie SQL-stelling" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Label" msgid "Label:" msgstr "Etiket" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -14233,29 +14199,29 @@ msgstr "" msgid "Bind parameters" msgstr "Nie goeie parameters nie!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 #, fuzzy #| msgid "Bookmark this SQL query" msgid "Bookmark this SQL query:" msgstr "Boekmerk hierdie SQL-stelling" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Wys hierdie navraag weer hier" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Kyk slegs" @@ -14300,103 +14266,103 @@ msgstr "" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Geskepte" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Opgedateer" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy msgid "Delete version" msgstr "Bediener weergawe" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Naspeur verslag" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Struktuur momentopname" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "aktief" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "nie aktief nie" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Geen databasisse" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 #, fuzzy msgid "Date" msgstr "Data" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 #, fuzzy msgid "Username" msgstr "Gebruiker Naam:" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -14404,77 +14370,77 @@ msgctxt "None for default" msgid "None" msgstr "Geen" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Bediener weergawe" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Nie gevolgde tabelle" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Volg tabel" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Nagegaande tabelle" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Vorige weergawe" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Delete" msgid "Delete tracking" msgstr "Verwyder" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Weergawes" @@ -14484,13 +14450,13 @@ msgstr "Weergawes" msgid "Manage your settings" msgstr "Algemene verwantskap funksies" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." msgstr "Veranderinge is gestoor" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14590,7 +14556,7 @@ msgstr "Geen databasisse" msgid "View dump (schema) of databases" msgstr "Sien die storting (skema) van die databasis" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14615,7 +14581,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -15523,52 +15489,57 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +msgid "Chart title:" +msgstr "Geen tabelle" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 #, fuzzy msgid "Series:" msgstr "SQL-stelling" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Waarde" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Waarde" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside table(s):" msgid "Series column:" msgstr "Binne tabel(le):" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Number of rows per page" msgid "Value Column:" msgstr "Hoeveelheid rye per bladsy" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -15633,54 +15604,55 @@ msgstr "Kommentaar" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 -#, fuzzy -msgid "Internal relations" -msgstr "Algemene verwantskap funksies" - -#: templates/table/relation/common_form.phtml:11 -#, fuzzy -msgid "Internal relation" -msgstr "Algemene verwantskap funksies" - -#: templates/table/relation/common_form.phtml:14 -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "" - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 msgid "Foreign key constraints" msgstr "" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 #, fuzzy #| msgid "Action" msgid "Actions" msgstr "Aksie" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 #, fuzzy #| msgid "Column names" msgid "Constraint properties" msgstr "Kolom name" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 #, fuzzy #| msgid "Add a linestring" msgid "+ Add constraint" msgstr "Voeg 'n lynstring by" -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +#, fuzzy +msgid "Internal relations" +msgstr "Algemene verwantskap funksies" + +#: templates/table/relation/common_form.phtml:80 +#, fuzzy +msgid "Internal relation" +msgstr "Algemene verwantskap funksies" + +#: templates/table/relation/common_form.phtml:83 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "" + +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -15833,7 +15805,7 @@ msgid "at beginning of table" msgstr "By Begin van Tabel" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy msgid "Partitions" msgstr "Operasies" @@ -15876,7 +15848,7 @@ msgstr "Operasies" msgid "Edit partitioning" msgstr "Drukker mooi (print view)" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -17111,6 +17083,33 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~ msgid "tables" +#~ msgstr "Tabel" + +#, fuzzy +#~ msgid "views" +#~ msgstr "Velde" + +#, fuzzy +#~| msgid "Reset" +#~ msgid "events" +#~ msgstr "Herstel" + +#, fuzzy +#~ msgid "functions" +#~ msgstr "Funksie" + +#, fuzzy +#~| msgid "Alter table order by" +#~ msgid "Filter databases by name or regex" +#~ msgstr "Verander tabel sorteer volgens" + +#, fuzzy +#~| msgid "Alter table order by" +#~ msgid "Filter by name or regex" +#~ msgstr "Verander tabel sorteer volgens" + #, fuzzy #~| msgid "Tracking report" #~ msgid "Taking you to %s." diff --git a/po/ar.po b/po/ar.po index 4d1c4f1a8c..44718f31f3 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:24+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Arabic =11 ? 4 : 5;\n" "X-Generator: Weblate 2.5-dev\n" -#: changelog.php:37 license.php:30 +#: changelog.php:37 license.php:33 #, php-format msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " @@ -38,7 +38,7 @@ msgstr "إضغط للترتيب." msgid "Showing rows %1$s - %2$s." msgstr "%1$s - %2$s الصفوف الظاهرة." -#: db_create.php:61 +#: db_create.php:62 #, php-format msgid "Database %1$s has been created." msgstr "تم إنشاء قاعدة البيانات %1$s." @@ -47,13 +47,13 @@ msgstr "تم إنشاء قاعدة البيانات %1$s." msgid "Database comment" msgstr "ملاحظة قاعدة البيانات" -#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:601 +#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:599 #: templates/columns_definitions/column_definitions_form.phtml:84 msgid "Table comments:" msgstr "تعليقات الجدول:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1568 +#: libraries/insert_edit.lib.php:1575 #: libraries/navigation/nodes/NodeColumn.php:34 #: libraries/plugins/export/ExportHtmlword.php:288 #: libraries/plugins/export/ExportHtmlword.php:384 @@ -63,13 +63,14 @@ msgstr "تعليقات الجدول:" #: libraries/plugins/export/ExportTexytext.php:282 #: libraries/plugins/export/ExportTexytext.php:373 #: libraries/plugins/export/PMA_ExportPdf.php:472 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:882 libraries/tracking.lib.php:978 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 +#: libraries/tracking.lib.php:892 libraries/tracking.lib.php:990 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:10 -#: templates/table/relation/common_form.phtml:43 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:27 +#: templates/table/relation/common_form.phtml:79 #: templates/table/relation/foreign_key_row.phtml:176 #: templates/table/relation/foreign_key_row.phtml:188 #: templates/table/relation/internal_relational_row.phtml:73 @@ -89,14 +90,14 @@ msgstr "عمود" #: libraries/plugins/export/ExportTexytext.php:283 #: libraries/plugins/export/ExportTexytext.php:374 #: libraries/plugins/export/PMA_ExportPdf.php:474 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 #: libraries/rte/rte_list.lib.php:78 libraries/rte/rte_list.lib.php:106 #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2606 libraries/tracking.lib.php:883 -#: libraries/tracking.lib.php:975 +#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -106,7 +107,7 @@ msgstr "النوع" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:709 -#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1577 +#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1584 #: libraries/plugins/export/ExportHtmlword.php:294 #: libraries/plugins/export/ExportHtmlword.php:390 #: libraries/plugins/export/ExportLatex.php:517 @@ -115,9 +116,9 @@ msgstr "النوع" #: libraries/plugins/export/ExportTexytext.php:284 #: libraries/plugins/export/ExportTexytext.php:375 #: libraries/plugins/export/PMA_ExportPdf.php:476 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 -#: libraries/tracking.lib.php:885 libraries/tracking.lib.php:981 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/tracking.lib.php:895 libraries/tracking.lib.php:993 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 @@ -134,9 +135,9 @@ msgstr "خالي" #: libraries/plugins/export/ExportTexytext.php:285 #: libraries/plugins/export/ExportTexytext.php:376 #: libraries/plugins/export/PMA_ExportPdf.php:478 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 -#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:886 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:896 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 @@ -148,8 +149,8 @@ msgstr "إفتراضي" #: libraries/plugins/export/ExportOdt.php:488 #: libraries/plugins/export/ExportTexytext.php:378 #: libraries/plugins/export/PMA_ExportPdf.php:487 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:640 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:663 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 msgid "Links to" msgstr "مرتبط بـ" @@ -160,37 +161,38 @@ msgstr "مرتبط بـ" #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:381 #: libraries/plugins/export/PMA_ExportPdf.php:494 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:651 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:664 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:649 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 #: templates/columns_definitions/table_fields_definitions.phtml:65 msgid "Comments" msgstr "التعليقات" -#: db_datadict.php:155 libraries/controllers/TableStructureController.php:1189 -#: libraries/controllers/TableStructureController.php:1194 -#: libraries/tracking.lib.php:925 +#: db_datadict.php:155 +#: libraries/controllers/table/TableStructureController.php:1197 +#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:79 +#: templates/table/structure/display_structure.phtml:80 msgid "Primary" msgstr "أساسي" -#: db_datadict.php:165 js/messages.php:370 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:371 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 -#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:403 -#: libraries/mult_submits.lib.php:417 +#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:408 +#: libraries/mult_submits.lib.php:422 #: libraries/plugins/export/ExportHtmlword.php:654 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:710 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2971 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3620 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1013 libraries/tracking.lib.php:1018 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2973 +#: libraries/server_privileges.lib.php:2993 +#: libraries/server_privileges.lib.php:3631 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -199,32 +201,32 @@ msgstr "أساسي" msgid "No" msgstr "لا" -#: db_datadict.php:165 js/messages.php:515 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:516 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 #: libraries/config/FormDisplay.tpl.php:280 -#: libraries/controllers/TableStructureController.php:770 -#: libraries/controllers/TableStructureController.php:1440 -#: libraries/controllers/TableStructureController.php:1449 -#: libraries/controllers/TableStructureController.php:1454 -#: libraries/controllers/TableStructureController.php:1459 -#: libraries/controllers/TableStructureController.php:1464 -#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:199 -#: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 -#: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 +#: libraries/controllers/table/TableStructureController.php:771 +#: libraries/controllers/table/TableStructureController.php:1448 +#: libraries/controllers/table/TableStructureController.php:1457 +#: libraries/controllers/table/TableStructureController.php:1462 +#: libraries/controllers/table/TableStructureController.php:1467 +#: libraries/controllers/table/TableStructureController.php:1472 +#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:200 +#: libraries/mult_submits.lib.php:344 libraries/mult_submits.lib.php:377 +#: libraries/mult_submits.lib.php:406 libraries/mult_submits.lib.php:420 #: libraries/plugins/export/ExportHtmlword.php:655 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:788 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:711 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2968 -#: libraries/server_privileges.lib.php:2989 -#: libraries/server_privileges.lib.php:3617 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1011 libraries/tracking.lib.php:1016 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2970 +#: libraries/server_privileges.lib.php:2991 +#: libraries/server_privileges.lib.php:3628 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -237,8 +239,8 @@ msgstr "نعم" msgid "View dump (schema) of database" msgstr "عرض مخطط تصدير قاعدة البيانات" -#: db_export.php:51 db_tracking.php:102 export.php:382 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:176 +#: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 +#: libraries/controllers/DatabaseStructureController.php:157 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "لم يعثر على جداول في قاعدة البيانات." @@ -255,7 +257,7 @@ msgstr "جداول" #: db_export.php:66 libraries/Menu.php:320 libraries/Menu.php:427 #: libraries/Util.php:3407 libraries/Util.php:3417 libraries/Util.php:3423 -#: libraries/Util.php:3702 libraries/Util.php:4339 libraries/Util.php:4356 +#: libraries/Util.php:3703 libraries/Util.php:4340 libraries/Util.php:4357 #: libraries/central_columns.lib.php:729 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:320 @@ -263,10 +265,10 @@ msgstr "جداول" #: libraries/config/user_preferences.forms.php:218 #: libraries/config/user_preferences.forms.php:259 #: libraries/config/user_preferences.forms.php:285 -#: libraries/import.lib.php:1299 libraries/navigation/nodes/NodeColumn.php:44 +#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:44 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 -#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:877 +#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:887 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -311,11 +313,11 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "تم تعطيل phpMyAdmin لتهيئة التخزين . لمعرفة السبب اضغط %sهنا%s." -#: db_qbe.php:135 +#: db_qbe.php:136 msgid "You have to choose at least one column to display!" msgstr "عليك اختيار عمود واحد على الأقل للعرض!" -#: db_qbe.php:152 +#: db_qbe.php:154 #, php-format msgid "Switch to %svisual builder%s" msgstr "التحويل إلى %s الباني المرئي %s" @@ -341,7 +343,7 @@ msgstr "الإصدار %1$s تم إنشاءه للجداول المحدده , msgid "No tables selected." msgstr "لم يتم تحديد أى جداول ." -#: db_tracking.php:146 +#: db_tracking.php:149 msgid "Database Log" msgstr "سجل قاعدة البيانات" @@ -373,7 +375,7 @@ msgstr "لربما يكون من الأفضل أن تقوم بتحديث هذه msgid "Bad type!" msgstr "نوع غير جيد!" -#: export.php:276 +#: export.php:278 msgid "Bad parameters!" msgstr "عوامل متغيرة غير جيدة!" @@ -381,98 +383,98 @@ msgstr "عوامل متغيرة غير جيدة!" msgid "Invalid export type" msgstr "نوع التصدير غير صحيح" -#: gis_data_editor.php:119 +#: gis_data_editor.php:117 #, php-format msgid "Value for the column \"%s\"" msgstr "قيمة العمود \"%s\"" -#: gis_data_editor.php:147 +#: gis_data_editor.php:145 #: templates/table/gis_visualization/gis_visualization.phtml:37 msgid "Use OpenStreetMaps as Base Layer" msgstr "إستعمل خريطة الشوارع الحرة كطبقة أساسية" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:169 +#: gis_data_editor.php:167 msgid "SRID:" msgstr "SRID :" -#: gis_data_editor.php:192 +#: gis_data_editor.php:190 #, php-format msgid "Geometry %d:" msgstr "هندسة %d:" -#: gis_data_editor.php:214 +#: gis_data_editor.php:212 msgid "Point:" msgstr "نقطة:" -#: gis_data_editor.php:215 gis_data_editor.php:242 gis_data_editor.php:298 -#: gis_data_editor.php:371 js/messages.php:504 +#: gis_data_editor.php:213 gis_data_editor.php:240 gis_data_editor.php:296 +#: gis_data_editor.php:369 js/messages.php:505 msgid "X" msgstr "س" -#: gis_data_editor.php:218 gis_data_editor.php:246 gis_data_editor.php:302 -#: gis_data_editor.php:377 js/messages.php:505 +#: gis_data_editor.php:216 gis_data_editor.php:244 gis_data_editor.php:300 +#: gis_data_editor.php:375 js/messages.php:506 msgid "Y" msgstr "ص" -#: gis_data_editor.php:240 gis_data_editor.php:296 gis_data_editor.php:369 -#: js/messages.php:507 +#: gis_data_editor.php:238 gis_data_editor.php:294 gis_data_editor.php:367 +#: js/messages.php:508 #, php-format msgid "Point %d" msgstr "نقطة %d" -#: gis_data_editor.php:253 gis_data_editor.php:309 gis_data_editor.php:387 -#: js/messages.php:513 +#: gis_data_editor.php:251 gis_data_editor.php:307 gis_data_editor.php:385 +#: js/messages.php:514 msgid "Add a point" msgstr "إضافة نقطة" -#: gis_data_editor.php:270 +#: gis_data_editor.php:268 #, php-format msgid "Linestring %d:" msgstr "منحنى %d:" -#: gis_data_editor.php:273 gis_data_editor.php:350 +#: gis_data_editor.php:271 gis_data_editor.php:348 msgid "Outer ring:" msgstr "الحلقة الخارجية :" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:273 gis_data_editor.php:350 #, php-format msgid "Inner ring %d:" msgstr "الحلقة الداخلية %d :" -#: gis_data_editor.php:312 +#: gis_data_editor.php:310 msgid "Add a linestring" msgstr "إضافة منحنى" -#: gis_data_editor.php:313 gis_data_editor.php:392 js/messages.php:514 +#: gis_data_editor.php:311 gis_data_editor.php:390 js/messages.php:515 msgid "Add an inner ring" msgstr "إضافة حلقة الداخلية" -#: gis_data_editor.php:334 +#: gis_data_editor.php:332 #, php-format msgid "Polygon %d:" msgstr "مضلع %d:" -#: gis_data_editor.php:398 +#: gis_data_editor.php:396 msgid "Add a polygon" msgstr "إضافة مضلع" -#: gis_data_editor.php:404 +#: gis_data_editor.php:402 msgid "Add geometry" msgstr "أضف هندسة" -#: gis_data_editor.php:410 js/messages.php:345 libraries/DbSearch.php:462 -#: libraries/DisplayResults.php:1783 libraries/browse_foreigners.lib.php:142 +#: gis_data_editor.php:408 js/messages.php:346 libraries/DbSearch.php:462 +#: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:151 #: libraries/display_export.lib.php:404 libraries/display_export.lib.php:410 -#: libraries/display_import.lib.php:403 libraries/index.lib.php:42 -#: libraries/insert_edit.lib.php:1547 libraries/insert_edit.lib.php:1584 +#: libraries/display_import.lib.php:403 libraries/index.lib.php:45 +#: libraries/insert_edit.lib.php:1554 libraries/insert_edit.lib.php:1591 #: libraries/normalization.lib.php:168 libraries/normalization.lib.php:825 #: libraries/operations.lib.php:47 libraries/operations.lib.php:114 #: libraries/operations.lib.php:266 libraries/operations.lib.php:309 #: libraries/operations.lib.php:806 libraries/operations.lib.php:877 -#: libraries/operations.lib.php:926 libraries/operations.lib.php:1336 -#: libraries/operations.lib.php:1653 +#: libraries/operations.lib.php:926 libraries/operations.lib.php:1339 +#: libraries/operations.lib.php:1656 #: libraries/plugins/auth/AuthenticationCookie.php:239 #: libraries/replication_gui.lib.php:124 libraries/replication_gui.lib.php:163 #: libraries/replication_gui.lib.php:328 libraries/replication_gui.lib.php:465 @@ -481,12 +483,12 @@ msgstr "أضف هندسة" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2343 -#: libraries/server_privileges.lib.php:3114 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_user_groups.lib.php:285 -#: libraries/sql_query_form.lib.php:369 libraries/sql_query_form.lib.php:429 -#: libraries/tracking.lib.php:536 libraries/tracking.lib.php:656 +#: libraries/server_privileges.lib.php:2345 +#: libraries/server_privileges.lib.php:3116 +#: libraries/server_privileges.lib.php:3735 +#: libraries/server_user_groups.lib.php:290 +#: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 +#: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 #: prefs_manage.php:280 prefs_manage.php:358 #: templates/columns_definitions/column_definitions_form.phtml:64 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 @@ -499,11 +501,11 @@ msgstr "أضف هندسة" msgid "Go" msgstr "إنطلق" -#: gis_data_editor.php:413 +#: gis_data_editor.php:411 msgid "Output" msgstr "المخرجات" -#: gis_data_editor.php:416 +#: gis_data_editor.php:414 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -515,7 +517,7 @@ msgstr "" msgid "Succeeded" msgstr "نجحت" -#: import.php:59 js/messages.php:588 +#: import.php:59 js/messages.php:589 msgid "Failed" msgstr "فشل" @@ -572,7 +574,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "لم أتمكن من تحميل قوابس الاستيراد، الرجاء فحص تثبيتك!" -#: import.php:669 libraries/sql.lib.php:744 libraries/sql.lib.php:1468 +#: import.php:669 libraries/sql.lib.php:754 libraries/sql.lib.php:1485 #, php-format msgid "Bookmark %s has been created." msgstr "تم إنشاء العلامة المرجعية %s." @@ -599,7 +601,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "" -#: import_status.php:111 js/messages.php:444 libraries/Util.php:797 +#: import_status.php:111 js/messages.php:445 libraries/Util.php:797 #: libraries/export.lib.php:523 #: libraries/plugins/schema/ExportRelationSchema.php:301 user_password.php:268 msgid "Back" @@ -623,7 +625,7 @@ msgstr "" msgid "General settings" msgstr "الإعدادات العامة" -#: index.php:191 js/messages.php:617 +#: index.php:191 js/messages.php:618 #: libraries/display_change_password.lib.php:54 #: libraries/display_change_password.lib.php:57 user_password.php:262 msgid "Change password" @@ -725,7 +727,11 @@ msgstr "اجلب دعم" msgid "List of changes" msgstr "قائمة التعديلات" -#: index.php:453 +#: index.php:438 libraries/server_plugins.lib.php:83 +msgid "License" +msgstr "رخصة" + +#: index.php:460 #, fuzzy #| msgid "" #| "Your configuration file contains settings (root with no password) that " @@ -743,21 +749,21 @@ msgstr "" "الافتراضية معرض لخطر الاقتحام، وعليك أن تقوم بإصلاح ثغرة الأمان هذه في أقرب " "وقت ممكن." -#: index.php:470 +#: index.php:477 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: index.php:485 +#: index.php:492 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: index.php:502 +#: index.php:509 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than " @@ -765,17 +771,17 @@ msgid "" "expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:521 +#: index.php:528 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:537 +#: index.php:544 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "يحتاج ملف الإعداد الآن إلى كلمة المرور السرية." -#: index.php:550 +#: index.php:557 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. It is strongly recommended to remove it " @@ -783,7 +789,7 @@ msgid "" "may be compromised by unauthorized people downloading your configuration." msgstr "" -#: index.php:566 +#: index.php:573 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -795,19 +801,19 @@ msgstr "" "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا" "%s." -#: index.php:573 +#: index.php:580 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" -#: index.php:619 +#: index.php:626 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: index.php:647 +#: index.php:654 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -827,7 +833,7 @@ msgstr "أكد" msgid "Do you really want to execute \"%s\"?" msgstr "هل تريد فعلاً تنفيذ \"%s\"؟" -#: js/messages.php:45 libraries/mult_submits.lib.php:397 +#: js/messages.php:45 libraries/mult_submits.lib.php:402 msgid "You are about to DESTROY a complete database!" msgstr "أنت على وشك إزالة كامل قاعدة البيانات !" @@ -989,7 +995,7 @@ msgid "Save & close" msgstr "حفظ كملف" #: js/messages.php:109 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1551 prefs_manage.php:364 +#: libraries/insert_edit.lib.php:1558 prefs_manage.php:364 #: prefs_manage.php:375 msgid "Reset" msgstr "إعادة تعيين" @@ -1068,10 +1074,10 @@ msgstr "أضف %d عمود/عواميد إلى الفهرس" msgid "You have to add at least one column." msgstr "عليك اختيار عمود واحد على الأقل للعرض" -#: js/messages.php:129 libraries/insert_edit.lib.php:1549 +#: js/messages.php:129 libraries/insert_edit.lib.php:1556 #: templates/columns_definitions/column_definitions_form.phtml:159 #: templates/table/index_form.phtml:237 -#: templates/table/relation/common_form.phtml:108 +#: templates/table/relation/common_form.phtml:127 msgid "Preview SQL" msgstr "" @@ -1122,8 +1128,8 @@ msgstr "كلمتا المرور غير متشابهتان !" msgid "Removing Selected Users" msgstr "حذف المستخدمين المحددين" -#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:461 -#: libraries/tracking.lib.php:831 +#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:471 +#: libraries/tracking.lib.php:841 msgid "Close" msgstr "أغلاق" @@ -1152,7 +1158,7 @@ msgstr "لقد تمّ حذف الصّف" #. l10n: Other, small valued, queries #: js/messages.php:155 libraries/ServerStatusData.php:130 -#: libraries/server_status_queries.lib.php:148 +#: libraries/server_status_queries.lib.php:150 msgid "Other" msgstr "آخر" @@ -1327,7 +1333,7 @@ msgstr "العمليات" msgid "Traffic" msgstr "بيانات سير" -#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4330 +#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4331 #: libraries/server_status_monitor.lib.php:258 msgid "Settings" msgstr "الإعدادات" @@ -1342,9 +1348,9 @@ msgstr "أضف تخطيط إلى المشبكة" msgid "Please add at least one variable to the series!" msgstr "فضلا , أضف متغير واحد على الأقل للسلسلة" -#: js/messages.php:216 libraries/DisplayResults.php:1477 +#: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1456,7 +1462,7 @@ msgstr "تغيير الإعدادات" msgid "Current settings" msgstr "الإعدادات الحالية" -#: js/messages.php:253 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:253 #, fuzzy #| msgid "Import files" msgid "Chart title" @@ -1539,21 +1545,21 @@ msgstr "جاري التحليل…" msgid "Explain output" msgstr "إشرح الخرج" -#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4326 +#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4327 #: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:396 #: libraries/rte/rte_list.lib.php:104 -#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:282 -#: libraries/tracking.lib.php:1623 +#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:284 +#: libraries/tracking.lib.php:1639 msgid "Status" msgstr "الحالة" -#: js/messages.php:289 js/messages.php:870 +#: js/messages.php:289 js/messages.php:862 #: libraries/plugins/export/ExportHtmlword.php:484 #: libraries/plugins/export/ExportOdt.php:600 #: libraries/plugins/export/ExportTexytext.php:445 #: libraries/plugins/export/PMA_ExportPdf.php:314 #: libraries/rte/rte_list.lib.php:93 -#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:239 +#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:243 msgid "Time" msgstr "وقت" @@ -1633,10 +1639,10 @@ msgid "" msgstr "" #: js/messages.php:322 libraries/Menu.php:355 libraries/Menu.php:457 -#: libraries/Menu.php:578 libraries/Util.php:4329 libraries/Util.php:4344 -#: libraries/Util.php:4361 libraries/config/messages.inc.php:260 +#: libraries/Menu.php:578 libraries/Util.php:4330 libraries/Util.php:4345 +#: libraries/Util.php:4362 libraries/config/messages.inc.php:260 #: libraries/display_import.lib.php:108 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:241 +#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:241 #: setup/frames/menu.inc.php:26 msgid "Import" msgstr "استيراد" @@ -1697,7 +1703,13 @@ msgstr "إختبار" msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 libraries/server_variables.lib.php:159 +#: js/messages.php:343 +#, fuzzy +#| msgid "Bad parameters!" +msgid "No parameters found!" +msgstr "عوامل متغيرة غير جيدة!" + +#: js/messages.php:347 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,73 +1720,73 @@ msgstr "" msgid "Cancel" msgstr "ألغاء" -#: js/messages.php:349 libraries/Header.php:457 +#: js/messages.php:350 libraries/Header.php:457 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "تغيير الإعدادات" -#: js/messages.php:350 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:351 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:353 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:354 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:124 #, fuzzy #| msgid "Loading" msgid "Loading…" msgstr "تحميل" -#: js/messages.php:354 +#: js/messages.php:355 msgid "Request aborted!!" msgstr "" -#: js/messages.php:355 +#: js/messages.php:356 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "معالجة الطلب" -#: js/messages.php:356 +#: js/messages.php:357 #, fuzzy #| msgid "Query type" msgid "Request failed!!" msgstr "نوع الاستعلام" -#: js/messages.php:357 +#: js/messages.php:358 #, fuzzy #| msgid "Error in processing request" msgid "Error in processing request" msgstr "خطأ في معالجة الطلب" -#: js/messages.php:358 +#: js/messages.php:359 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:359 +#: js/messages.php:360 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:360 libraries/db_common.inc.php:73 +#: js/messages.php:361 libraries/db_common.inc.php:73 #: libraries/db_table_exists.lib.php:33 libraries/server_databases.lib.php:462 msgid "No databases selected." msgstr "لا قواعد بيانات محددة." -#: js/messages.php:361 +#: js/messages.php:362 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "إزالة العمود" -#: js/messages.php:362 +#: js/messages.php:363 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "إضافة مفتاح رئيسي" -#: js/messages.php:363 +#: js/messages.php:364 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1784,232 +1796,232 @@ msgstr "إضافة مفتاح رئيسي" msgid "OK" msgstr "موافق" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Click to dismiss this notification" msgstr "إضغط لإغلاق هذا الإشعار" -#: js/messages.php:367 +#: js/messages.php:368 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "أعادة تسمية قاعدة البيانات" -#: js/messages.php:368 +#: js/messages.php:369 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "نسخ قاعدة البيانات" -#: js/messages.php:369 +#: js/messages.php:370 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "تغيير مجموعة المحارف" -#: js/messages.php:373 libraries/Util.php:3289 +#: js/messages.php:374 libraries/Util.php:3289 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "تعطيل التحقق من المفتاح الغريب" -#: js/messages.php:376 +#: js/messages.php:377 #, fuzzy #| msgid "Failed to fetch headers" msgid "Failed to get real row count." msgstr "فشل إحضار الترويسة" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Searching" msgstr "بحث" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide search results" msgstr "إخفاء نتائج البحث" -#: js/messages.php:381 +#: js/messages.php:382 msgid "Show search results" msgstr "إظهار نتائج البحث" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Browsing" msgstr "استعراض" -#: js/messages.php:383 +#: js/messages.php:384 msgid "Deleting" msgstr "حذف" -#: js/messages.php:387 +#: js/messages.php:388 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "تعريف الدالة المخزنة يجب أن تحتوي جملة RETURN !" -#: js/messages.php:388 libraries/DisplayResults.php:4832 -#: libraries/DisplayResults.php:5091 libraries/Menu.php:347 -#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3709 -#: libraries/Util.php:3710 libraries/Util.php:4328 libraries/Util.php:4343 -#: libraries/Util.php:4360 libraries/config/messages.inc.php:254 +#: js/messages.php:389 libraries/DisplayResults.php:4850 +#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 +#: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 +#: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2448 -#: libraries/server_privileges.lib.php:2527 -#: libraries/server_privileges.lib.php:2873 -#: libraries/server_privileges.lib.php:3532 -#: libraries/server_status_monitor.lib.php:321 prefs_manage.php:306 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2875 +#: libraries/server_privileges.lib.php:3543 +#: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 msgid "Export" msgstr "تصدير" -#: js/messages.php:391 libraries/rte/rte_routines.lib.php:742 +#: js/messages.php:392 libraries/rte/rte_routines.lib.php:742 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:392 +#: js/messages.php:393 #, php-format msgid "Values for column %s" msgstr "القيم للعمود %s" -#: js/messages.php:393 +#: js/messages.php:394 msgid "Values for a new column" msgstr "القيم لعمود جديد" -#: js/messages.php:394 +#: js/messages.php:395 #, fuzzy #| msgid "Enter each value in a separate field" msgid "Enter each value in a separate field." msgstr "أدخل كل قيمة بحقل منفصل" -#: js/messages.php:395 +#: js/messages.php:396 #, php-format msgid "Add %d value(s)" msgstr "إضافة قيمة/قيم %d" -#: js/messages.php:399 +#: js/messages.php:400 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "ملاحظة: إذا كان الملف يحتوي على جداول متعددة , سيتم تجميعها فى جدول واحد." -#: js/messages.php:403 +#: js/messages.php:404 msgid "Hide query box" msgstr "إخفاء صندوق الإستعلام" -#: js/messages.php:404 +#: js/messages.php:405 msgid "Show query box" msgstr "إظهار صندوق الإستعلام" -#: js/messages.php:405 libraries/Console.php:88 libraries/Console.php:217 -#: libraries/DisplayResults.php:3457 libraries/DisplayResults.php:4816 +#: js/messages.php:406 libraries/Console.php:88 libraries/Console.php:217 +#: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4834 #: libraries/Index.php:721 libraries/Util.php:727 libraries/Util.php:1238 -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:119 +#: libraries/server_user_groups.lib.php:121 #: libraries/server_variables.lib.php:242 #: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 msgid "Edit" msgstr "تعديل" -#: js/messages.php:406 libraries/Console.php:89 libraries/DbSearch.php:360 -#: libraries/DisplayResults.php:3526 libraries/DisplayResults.php:4800 +#: js/messages.php:407 libraries/Console.php:89 libraries/DbSearch.php:360 +#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4818 #: libraries/central_columns.lib.php:854 #: libraries/central_columns.lib.php:1200 libraries/display_export.lib.php:227 -#: libraries/server_user_groups.lib.php:129 -#: libraries/sql_query_form.lib.php:416 libraries/tracking.lib.php:480 +#: libraries/server_user_groups.lib.php:131 +#: libraries/sql_query_form.lib.php:417 libraries/tracking.lib.php:490 #: setup/frames/index.inc.php:187 setup/frames/index.inc.php:295 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "حذف" -#: js/messages.php:407 libraries/DisplayResults.php:915 -#: libraries/DisplayResults.php:923 +#: js/messages.php:408 libraries/DisplayResults.php:919 +#: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d ليس رقم عمود صالح." -#: js/messages.php:408 -#: libraries/controllers/table/TableSearchController.php:435 -#: libraries/controllers/table/TableSearchController.php:920 -#: libraries/sql.lib.php:193 tbl_change.php:159 +#: js/messages.php:409 +#: libraries/controllers/table/TableSearchController.php:432 +#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "استعرض القيم الغريبة" -#: js/messages.php:409 +#: js/messages.php:410 msgid "No auto-saved query" msgstr "" -#: js/messages.php:410 +#: js/messages.php:411 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "متغير" -#: js/messages.php:413 libraries/normalization.lib.php:889 +#: js/messages.php:414 libraries/normalization.lib.php:889 msgid "Pick" msgstr "اختيار" -#: js/messages.php:414 +#: js/messages.php:415 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "لايوجد صفوف مختارة" -#: js/messages.php:415 +#: js/messages.php:416 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "بحث في قاعدة البيانات" -#: js/messages.php:417 +#: js/messages.php:418 #, 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:420 +#: js/messages.php:421 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "الذاكرة الحرة" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Are you sure?" msgstr "هل أنت متأكد؟" -#: js/messages.php:423 +#: js/messages.php:424 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "مشاركه" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "إضافة مفتاح رئيسي" -#: js/messages.php:430 +#: js/messages.php:431 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "تم إضافة المفتاح الأساسي في %s" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "تقرير التتبع" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 #, fuzzy @@ -2017,353 +2029,353 @@ msgstr "" msgid "End of step" msgstr "في نهاية الجدول" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "إنتهى" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "تأكيد تبعيات جزئية" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "لا قواعد بيانات محددة." -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "خطوة" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "إضافة الصلاحيات على الجدول التالي" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "لا قواعد بيانات محددة." -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "حفظ" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "إخفاء معايير البحث" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "إظهار معايير البحث" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Table Search" msgid "Range search" msgstr "بحث في الجدول" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "اسم العمود" -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "اسم العمود" -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "جداول أكبر" -#: js/messages.php:474 +#: js/messages.php:475 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "جداول أكبر" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "إخفاء معايير البحث" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "إظهار معايير البحث" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "كل نقطة تمثل صف بيانات." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "لإستعمال المقربة، إختر جزء من رسم البيانات بواسطة الفأرة." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "أنقر زر الإسعادة للمقربة للرجوع إلى الحالة الأصلية." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "أنقر على نقطة من البيانات لمشاهدة و ربما تحرير سطر البيانات." -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "يمكن تغيير قياس الرسم البياني من خلال سحبه على طول القرنة في أسفل اليمين." -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "إختر عمودين" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "إختر عمودين مختلفين" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "محتوى نقطة البيانات" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "تجاهل" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "نسخ" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "نقطة" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "منحنى" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "مضلع" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "هندسة" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "الحلقة الداخلية" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "الحلقة الخارجية :" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "مفتاح التشفير" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "إختيار المفتاح المرجع" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "إختيار المفتاح الغريب" -#: js/messages.php:529 +#: js/messages.php:530 #, 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:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "اختر الحقل لإظهاره" -#: js/messages.php:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "صفحة رقم:" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 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:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 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:539 +#: js/messages.php:540 #, fuzzy #| msgid "Select Tables" msgid "Delete page" msgstr "اختر الجداول" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "سعرة" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "رجاء اختر صفحة لتعديلها" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "بناء الارتباطات" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "تمت التعديلات" -#: js/messages.php:550 +#: js/messages.php:551 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "إضافة خيار للعمود " -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "إرسال" -#: js/messages.php:555 +#: js/messages.php:556 #, fuzzy #| msgid "Press escape to cancel editing" msgid "Press escape to cancel editing." msgstr "إضغط escape لإلغاء التعديل" -#: js/messages.php:557 +#: js/messages.php:558 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?" @@ -2371,217 +2383,178 @@ msgstr "" "لقد تم التعديل على بعض البيانات ولم يتم حفظها. هل تريد ترك هذه الصفحة بدون " "حفظ البيانات الجديدة؟" -#: js/messages.php:560 +#: js/messages.php:561 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder." msgstr "إسحب لإعادة الترتيب" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "إضغط لوضع علامة / إزالة علامة" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy #| msgid "Double-click to copy column name" msgid "Double-click to copy column name." msgstr "أنقر مرتين لنسخ اسم العمود" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "عرض الكل" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Linestring" msgid "Original length" msgstr "منحنى" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "ألغاء" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "ألغي" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "نجاح" -#: js/messages.php:590 +#: js/messages.php:591 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "إفتراضيات الإستيراد" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "إسقاط الملفات هنا" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "اختر الجداول" -#: js/messages.php:598 +#: js/messages.php:599 #, 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:603 +#: js/messages.php:604 #, 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:609 +#: js/messages.php:610 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "ذهاب للرابط" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Copy column name" msgid "Copy column name." msgstr "أنسخ اسم العمود" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "توليد كلمة مرور" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "توليد" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "أكثر" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "عرض الكل" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Hide indexes" msgid "Hide panel" msgstr "إخفاء الفهارس" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "عرض الشعار في الإطار الأيسر" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "تخصيص الإطار الرئيسي" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "تخصيص الإطار الرئيسي" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 #, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "جداول" - -#: js/messages.php:633 -#, fuzzy -#| msgid "View" -msgid "views" -msgstr "عرض" - -#: js/messages.php:634 -#, fuzzy -#| msgid "Processes" -msgid "procedures" -msgstr "عمليات" - -#: js/messages.php:635 -#, fuzzy -#| msgid "Event" -msgid "events" -msgstr "حدث" - -#: js/messages.php:636 -#, fuzzy -#| msgid "Function" -msgid "functions" -msgstr "دالة" - -#: js/messages.php:640 -#, 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:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2591,425 +2564,425 @@ msgstr "" "هو %s, released on %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", آخر إصدار مستقر:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "محدثة" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "إنشاء عرض" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "تغيير الإعدادات" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Import files" msgid "Show report details" msgstr "استورد الملفات" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "تجاهل" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "أعرض هذا الاستعلام هنا مرة أخرى" -#: js/messages.php:701 +#: js/messages.php:693 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "هل تريد فعلاً تنفيذ \"%s\"؟" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, fuzzy, php-format #| msgid "Issued queries" msgid "%s queries executed %s times in %s seconds." msgstr "إستعلامات صادرة" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "تعليقات الجدول" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "إخفاء نتائج البحث" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "سابق" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "التالي" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "اليوم" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "يناير" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "فبراير" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "مارس" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "أبريل" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "مايو" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "يونيو" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "يوليو" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "أغسطس" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "سبتمبر" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "أكتوبر" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "نوفمبر" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "ديسمبر" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "يناير" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "فبراير" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "مارس" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "أبريل" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "مايو" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "يونيو" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "يوليو" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "أغسطس" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "سبتمبر" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "أكتوبر" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "نوفمبر" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "ديسمبر" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "الأحد" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "الإثنين" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "الثلاثاء" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "الأربعاء" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "الخميس" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "الجمعة" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "السبت" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "الأحد" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "الإثنين" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "الثلاثاء" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "الأربعاء" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "الخميس" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "الجمعة" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "السبت" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "الأحد" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "الإثنين" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "الثلاثاء" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "الأربعاء" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "الخميس" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "الجمعة" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "السبت" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "الأسبوع" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "التقويم-الشهر-السنة" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "لا شيء" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "الساعة" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "الدقيقة" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "الثانية" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "استخدم حقل نص" -#: js/messages.php:886 +#: js/messages.php:878 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:887 +#: js/messages.php:879 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:889 +#: js/messages.php:883 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:890 +#: js/messages.php:885 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:891 +#: js/messages.php:888 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:892 +#: js/messages.php:890 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" @@ -3021,53 +2994,53 @@ msgstr "رقم منفذ غير صحيح" msgid "Please enter the same value again" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:898 +#: js/messages.php:917 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:899 +#: js/messages.php:922 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:901 +#: js/messages.php:928 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:902 +#: js/messages.php:933 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "خطأ" @@ -3157,11 +3130,12 @@ msgstr "في الاستعلام" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3213,7 +3187,7 @@ msgstr "" msgid "Explain" msgstr "شرح SQL" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "جانبي" @@ -3257,8 +3231,8 @@ msgid "History" msgstr "نصوص SQL سابقة" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3447,30 +3421,30 @@ msgstr "" msgid "Switch to dark theme" msgstr "بدل إلى الجدول المنسوخ" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "التفاصيل…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3480,8 +3454,8 @@ msgstr "" msgid "Ascending" msgstr "تصاعديا" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3658,8 +3632,8 @@ msgstr[4] "%s مطابقة في الجدول %s" msgstr[5] "%s مطابقة في الجدول %s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3703,123 +3677,123 @@ msgstr "عدم تحديد الكل" msgid "Inside column:" msgstr "داخل العمود:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "إحفظ البيانات المعدّلة" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "استعادة ترتيب الأعمدة" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 #, fuzzy #| msgid "Filter" msgid "Filter rows" msgstr "مرشح" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Search in database" msgid "Search this table" msgstr "بحث في قاعدة البيانات" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "بداية" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "سابق" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "التالي" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "نهاية" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "الكل" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "عدد الأسطر:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "رتّب حسب الْمفتاح" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "نصوص جزئيّة" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "نصوص كاملة" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "مفتاح العلائقيّة" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display column for relations" msgstr "إظهار تعليقات العمود" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "أظهر المحتويات الثنائية" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "عرض محتويات BLOB" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "أخفي محتويات المستعرض" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "نصّ معروف جيّداً" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "ثنائي معروف جيّداً" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "لقد تمّ حذف الصّف" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "حذف" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "ممكن أن يكون تقريبي. أنظر إلى [doc@faq3-11]الأسئلة المتكررة 3.11[/doc]" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -3827,7 +3801,8 @@ msgstr "ممكن أن يكون تقريبي. أنظر إلى [doc@faq3-11]الأ msgid "Your SQL query has been executed successfully." msgstr "تم تنفيذ إستعلام SQL بنجاح" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3836,43 +3811,43 @@ msgstr "" "لدى هذا العرض على الأقل هذا العدد من الأسطر. الرجاء مراجعة الــ " "%sdocumentation%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "أظهر الصفوف" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "المجموع" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "استغرق الاستعلام %01.4f ثانية" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "مع المحدد:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3880,25 +3855,25 @@ msgstr "مع المحدد:" msgid "Check all" msgstr "تحديد الكل" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "عرض نسخة للطباعة" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "عمليّات على نتائج الإستعلام" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "عرض الرّسم البياني" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "إبداء بيانات نظام المعلومات الجغرافية للعيان" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 #, fuzzy #| msgid "Link not found" msgid "Link not found!" @@ -4004,19 +3979,19 @@ msgstr "لم يتم تعريف الفهرس!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "فهارس" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -4025,24 +4000,24 @@ msgid "Action" msgstr "العملية" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "اسم المفتاح" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "فريد" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "محزم" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "" @@ -4050,8 +4025,8 @@ msgstr "" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -4061,8 +4036,8 @@ msgid "Collation" msgstr "" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -4078,15 +4053,15 @@ msgstr "لقد تم حذف المفتاح الأساسي." msgid "Index %s has been dropped." msgstr "تم حذف الفهرس %s." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "سقّط" @@ -4123,12 +4098,13 @@ msgstr "عرض" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4136,7 +4112,7 @@ msgstr "الجدول" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4145,8 +4121,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4154,41 +4130,41 @@ msgid "Search" msgstr "إبحث" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "إدخال" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "الإمتيازات" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "عمليات" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "تتبع" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4199,16 +4175,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "قاعدة البيانات فارغة!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "استعلام بواسطة مثال" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4216,22 +4192,22 @@ msgstr "" msgid "Events" msgstr "أحداث" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "المصمم" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "Textarea columns" msgid "Central columns" msgstr "عواميد منطقة النص" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "قاعدة بيانات" @@ -4242,33 +4218,33 @@ msgid "User accounts" msgstr "المستخدمون" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "سجل ثنائي" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "إستنساخ" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "متغيرات" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "مجموعات المحارف" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "محركات" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "القوابس" @@ -4610,7 +4586,7 @@ msgstr "لايمكن تغيير اسم الفهرس إلى الأساسي!" msgid "No index parts defined!" msgstr "أجزاء الفهرسة غير معرفة!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5031,39 +5007,39 @@ msgstr "إنّ ال %s الوظيفية هي مصابة بعطل معروف، أ msgid "Click to toggle" msgstr "إضغط للإختيار" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "تصفح حاسبك:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "إختر مجلد الرفع من الخادم %s:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "لا يمكن الوصول إلى الدليل اللذي عينته لعمل التحميل." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 #, fuzzy #| msgid "There are no files to upload" msgid "There are no files to upload!" msgstr "لايوجد أي ملفات لرفعها" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "إفراغ" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "تنفيذ" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "طباعة" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "المستخدمون" @@ -5238,8 +5214,8 @@ msgid "Add new column" msgstr "إضافة عمود" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5301,19 +5277,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "عليك الترقية إلى %s%s أو لاحقا." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "إستغلال محتمل" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "الكشف عن مفتاح رقمي" @@ -6173,7 +6149,7 @@ msgid "Remember file name template" msgstr "تذكر إسم قالب الملف" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "أضف قيمة AUTO_INCREMENT" @@ -6218,7 +6194,7 @@ msgstr "تعقب التغيرات الحاصلة على قاعدة البيان #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "أضف %s" @@ -7969,7 +7945,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "إحتفظ بصندوق الإستعلام" @@ -8271,114 +8247,35 @@ msgstr "" msgid "OpenDocument Text" msgstr "مستند مفتوح" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "تم إفراغ محتويات الجدول %s." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "تم إزالة %s من العرض" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "تم إزالة الجدول %s" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "غير معروفة" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#: libraries/controllers/TableStructureController.php:250 -#, fuzzy -#| msgid "No rows selected" -msgid "No column selected." -msgstr "لايوجد صفوف مختارة" - -#: libraries/controllers/TableStructureController.php:484 -#, fuzzy -#| msgid "The selected users have been deleted successfully." -msgid "The columns have been moved successfully." -msgstr "تم حذف المستخدمين المحددين بنجاح." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "خطأ في الإستعلام" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "تغيير" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "فهرست" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "النص كاملا" - -#: libraries/controllers/TableStructureController.php:1201 -#, fuzzy -#| msgid "Browse distinct values" -msgid "Distinct values" -msgstr "إستعرض القيم المميزة" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8394,6 +8291,14 @@ msgstr "" msgid "No data to display" msgstr "لايوجد بيانات" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "" + #: libraries/controllers/table/TableRelationController.php:212 #, fuzzy #| msgid "Thread %s was successfully killed." @@ -8406,25 +8311,96 @@ msgstr "تم إيقاف العمليّة %s بنجاح." msgid "Internal relations were successfully updated." msgstr "العلاقات الداخلية" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Table Search" msgid "Table search" msgstr "بحث في الجدول" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Zoom Search" msgid "Zoom search" msgstr "بحث" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "Find and Replace" msgid "Find and replace" msgstr "بحث واستبدال" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: libraries/controllers/table/TableStructureController.php:251 +#, fuzzy +#| msgid "No rows selected" +msgid "No column selected." +msgstr "لايوجد صفوف مختارة" + +#: libraries/controllers/table/TableStructureController.php:485 +#, fuzzy +#| msgid "The selected users have been deleted successfully." +msgid "The columns have been moved successfully." +msgstr "تم حذف المستخدمين المحددين بنجاح." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "خطأ في الإستعلام" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "تغيير" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "فهرست" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "النص كاملا" + +#: libraries/controllers/table/TableStructureController.php:1209 +#, fuzzy +#| msgid "Browse distinct values" +msgid "Distinct values" +msgstr "إستعرض القيم المميزة" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8434,7 +8410,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "لا تغييرات" @@ -8507,7 +8483,7 @@ msgstr "تكوين" msgid "Create database:" msgstr "أنشئ قاعدة معطيات" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "امتياز غير موجود" @@ -9226,73 +9202,73 @@ msgid "Dump has been saved to file %s." msgstr "تم حفظ الـDump إلى الملف %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "قام MySQL بإرجاع نتيجة فارغة." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, fuzzy, php-format #| msgid "No databases" msgid "Go to database: %s" msgstr "لايوجد قواعد بيانات" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "بيانات مفقودة لـ %s" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "اذهب إلى الجدول" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "البنية فقط" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "إنشاء فهرس للعمود %s" @@ -9315,75 +9291,75 @@ msgstr "دالة" msgid "Binary" msgstr "ثنائي" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "بسبب طوله,
فمن المحتمل أن هذا الحقل غير قابل للتحرير " -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "ثنائي - لاتحرره" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "أو" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "دليل تحميل الملفات على خادم الشبكة" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "تحرير/إدخال" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "وبعدها" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "إدخال كتسجيل جديد" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "الرجوع إلى الصفحة السابقة" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "إدخال تسجيل جديد" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "ارجع إلى هذه الصفحة" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "عدل الصف التالي" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9395,11 +9371,11 @@ msgstr "" msgid "Value" msgstr "القيمة" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9417,45 +9393,45 @@ msgstr "لا شيء" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "نجاح!" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table prefix:" msgstr "استبدال بادئة الجدول" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Copy table with prefix" msgid "Copy table with prefix:" msgstr "نسخ الجدول مع البادئة" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 #, fuzzy #| msgid "Fri" msgid "From" msgstr "الجمعة" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "إلى" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Add new field" msgid "Add table prefix:" msgstr "إضافة حقل جديد" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 #, fuzzy #| msgid "Add new field" msgid "Add prefix" msgstr "إضافة حقل جديد" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -9687,8 +9663,8 @@ msgstr "عمليات" msgid "Views:" msgstr "عرض" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "عرض" @@ -9734,10 +9710,9 @@ msgstr[4] "" msgstr[5] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "table name" -msgid "Filter databases by name or regex" -msgstr "اسم الجدول" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -9746,12 +9721,6 @@ msgstr "اسم الجدول" msgid "Clear fast filter" msgstr "حفظ كملف" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "table name" -msgid "Filter by name or regex" -msgstr "اسم الجدول" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -10157,7 +10126,7 @@ msgstr "أعد تسمية قاعدة البيانات ﺇﻠﻰ" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10168,7 +10137,7 @@ msgstr "ليس لديك الحقوق الكافية بأن تكون هنا ال #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -10188,18 +10157,18 @@ msgstr "حذف قاعدة البيانات" msgid "Drop the database (DROP)" msgstr "حذف قاعدة البيانات" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "البنية فقط" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "البنية والبيانات" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "بيانات فقط" @@ -10213,7 +10182,7 @@ msgstr "نسخ قاعدة البيانات إلى" msgid "CREATE DATABASE before copying" msgstr "إنشاء قاعدة البيانات قبل عملية النسخ" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "أضف قيود" @@ -10253,163 +10222,163 @@ msgstr "" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "أنسخ الجدول إلى (database.table)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "بدل إلى الجدول المنسوخ" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "صيانة الجدول" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "تحليل الجدول" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "التحقق من الجدول" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "التحقق من الجدول" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "إلغاء تجزئة الجدول" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "لقد تم إعادة تحميل الجدول %s بنجاح." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "إعادة تحميل الجدول (FLUSH)" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "تحسين الجدول" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "إصلاح الجدول" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "حذف البيانات او الجدول" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "إفراغ الجدول (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "حذف الجدول (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "حلل" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "تحقق" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "تحسين" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "إعادة بناء" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "إصلاح" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "أغلاق" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "تقسيم %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "إزالة التقسيم" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "تحديد التكامل المرجعي:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "لايمكن نقل الجدول إلى نفسه!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "لا يمكن نسخ الجدول إلى نفسه!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "%s جدول تم نقله إلى %s." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "الجدول %s لقد تم نسخه إلى %s." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "%s جدول تم نقله إلى %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "الجدول %s لقد تم نسخه إلى %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "اسم الجدول فارغ!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10594,7 +10563,7 @@ msgstr "خيارات تصدير قاعدة بيانات" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "إرجاع أو استيراد بيانات الجدول" @@ -10620,21 +10589,21 @@ msgstr "الوصف" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "بنية الجدول" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10750,7 +10719,7 @@ msgid "Database:" msgstr "قاعدة البيانات" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10866,7 +10835,7 @@ msgid "Data creation options" msgstr "خيارات التحويل" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -10935,8 +10904,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10944,92 +10913,92 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Missing data for %s" msgid "Metadata" msgstr "بيانات مفقودة لـ %s" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Metadata for %s" msgstr "بيانات مفقودة لـ %s" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "الإنشاء:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "آخر تحديث:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "آخر فحص:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "قيد الإستعمال" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "قيود الجداول المحفوظة" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "القيود للجدول" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "قيود الجداول المحفوظة" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "داخل الجداول:" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "لاتستعمل AUTO_INCREMENT للقيم الصفرية" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "أضف قيمة AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11285,9 +11254,9 @@ msgstr "بناء الارتباطات" msgid "Table of contents" msgstr "جدول المحتويات" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "إضافي" @@ -11496,61 +11465,61 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been added." msgstr "تمت التعديلات" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "لا يمكن قراءة الملف" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "Internal relations" msgid "Internal relation has been added." msgstr "العلاقات الداخلية" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be added!" msgstr "لا يمكن قراءة الملف" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been removed." msgstr "تمت التعديلات" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "لا يمكن قراءة الملف" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be removed!" msgstr "لا يمكن قراءة الملف" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Internal relations" msgid "Internal relation has been removed." @@ -11606,97 +11575,97 @@ msgstr "تحويل المتصفح" msgid "Please see the documentation on how to update your column_info table. " msgstr "رجاء راجع التوثيق لكيفية تحديث جدول column_comments." -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "علامة مرجعية SQL-استعلام" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "نصوص SQL سابقة" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "There are no recent tables" msgid "Persistent favorite tables" msgstr "لا يوجد جداول أخيرة" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Configuration file" msgid "Configurable menus" msgstr "ملف التكوين" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Remember table's sorting" msgid "Remembering Designer Settings" msgstr "تذكر ترتيب الجداول" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "نوع التصدير غير صحيح" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "بدون وصف" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, fuzzy, php-format #| msgid "" #| "Tracking of changes made in database. Requires the phpMyAdmin " @@ -11706,13 +11675,13 @@ msgid "" "configuration storage there." msgstr "تعقب التغيرات الحاصلة على قاعدة البيانات." -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, fuzzy, php-format #| msgid "" #| "Tracking of changes made in database. Requires the phpMyAdmin " @@ -11895,8 +11864,8 @@ msgstr "اسم المستخدم" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "اسم المستخدم" @@ -11904,7 +11873,7 @@ msgstr "اسم المستخدم" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "كلمة السر" @@ -12639,7 +12608,7 @@ msgstr[5] "تم حذف قواعد البيانات %s بنجاح." msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "نسخة" @@ -12647,100 +12616,96 @@ msgstr "نسخة" msgid "Author" msgstr "مؤلف" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "رخصة" - #: libraries/server_plugins.lib.php:114 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "معطل" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "لا صلاحيات." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "يتضمن كل الصلاحيات عدا GRANT." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "يسمح بقراءة البيانات." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "يسمح بإضافة واستبدال البيانات." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "يسمح بتعديل البيانات." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "يسمح بحذف البيانات." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "يسمح بإنشاء قواعد بيانات وجداول جديدة." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "يسمح بحذف قواعد البيانات." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "يسمح بإعادة تحميل إعدادات الخادم وتفريغ كاش الخادم." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "يسمح بإيقاف عمل الخادم." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "يسمح باستيراد وتصدير البيانات من وإلى الملفّات." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "ليس له أي تأثير في نسخة MySQL الحالية." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "يسمح بإنشاء وحذف الفهارس." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "يسمح بتعديل بناء الجداول الموجودة مسبقا." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "يسمح بالوصول لقائمة أسماء جميع قواعد البيانات." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12750,41 +12715,41 @@ msgstr "" "كضبط الإعدادات العامة other users." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "يسمح بإنشاء جداول مؤقتة." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "يسمح بقفل الجداول للعملية الحالية." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "مطلوب لتوابع لاستنساخ." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "يعطي الحق للمستخدم بالسؤال عن مكان وجود slaves/masters." #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "" #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 #, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Allows to set up events for the event scheduler." msgstr "يسمح بقفل الجداول للعملية الحالية." #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 #, fuzzy #| msgid "Allows creating and dropping indexes." msgid "Allows creating and dropping triggers." @@ -12792,27 +12757,27 @@ msgstr "يسمح بإنشاء وحذف الفهارس." #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -12826,8 +12791,8 @@ msgstr "لا شيء" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12871,12 +12836,12 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "ملاحظة: تغيير هذه الخيارات للرقم 0 )صفر( يلغي الحد." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "يحد عدد الاستعلامات التي يستطيع المستخدم إرسالها إلى الخادم بكل ساعة." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12885,19 +12850,19 @@ msgstr "" "بيانات." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "يحد من عدد الاتصالات الجديدة التي يمكن للمستخدم فتحها بكل ساعة." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Add new field" @@ -12905,7 +12870,7 @@ msgid "Routine" msgstr "إضافة حقل جديد" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "يسمح بإضافة المستخدمين والصلاحيات دون إعادة قراءة جداول الصلاحيات." @@ -12924,14 +12889,14 @@ msgstr "يسمح بحذف البيانات." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "صلاحيات خاصة بالجدول" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -12943,7 +12908,7 @@ msgid "Administration" msgstr "إدارة" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "صلاحيات عامة" @@ -12954,15 +12919,15 @@ msgid "Global" msgstr "عام" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "صلاحيات خاصة بقاعدة البيانات" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "يسمح بإنشاء جداول جديدة." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "يسمح بحذف الجداول." @@ -12985,7 +12950,7 @@ msgid "Native MySQL Authentication" msgstr "المصادقة" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "بيانات الدخول" @@ -13010,8 +12975,8 @@ msgstr "اسم المستخدم" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Log name" msgid "Host name" @@ -13033,245 +12998,245 @@ msgstr "المصادقة" msgid "Password Hashing Method" msgstr "كلمة المرور:" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "تم تغيير كلمة المرور لـ %s بنجاح." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "لقد أبطلت الامتيازات لـ %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "إضافة مستخدم" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database export options" msgid "Database for user account" msgstr "خيارات تصدير قاعدة بيانات" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "المستخدمين ذوي صلاحية الوصول إلى \"%s\"" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 #, fuzzy #| msgid "The row has been deleted." msgid "User has been added." msgstr "لقد تم حذف الصف" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "منح" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "المستخدم(ون) لم يتم إيجادهم." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "أي" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "عام" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "خاص بقاعدة بيانات" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "حرف شامل" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "خاص بقاعدة بيانات" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "تحرير الامتيازات" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "إبطال" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "عدل الصف التالي" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… أبق القديم." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… احذف القديم من جداول المستخدمين." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… استعد كل الصلاحيات الفعالة من القديم واحذهم بعد ذلك." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… احذف القديم من جداول المستخدمين وأعد قراءة الصلاحيات بعد ذلك." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "غير معلومات الدخول / انسخ اسم مستخدم" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "أضف اسم مستخدم جديد بنفس الصلاحيات و…" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "صلاحيات خاصة بالحقل" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "احذف المستخدمين المحددين" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "استرجع كل الصلاحيات الفعالة من المستخدمين ثم احذفهم بعد ذلك." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "احذف قواعد البيانات التي لها نفس أسماء المستخدمين." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "إعادة تحميل الأمتيازات" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "تم حذف المستخدمين المحددين بنجاح." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "لقد جددت وحدثت الإمتيازات لـ %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "قيد حذف %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "تم إعادة قراءة الصلاحيات بنجاح." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "اسم المستخدم %s موجود مسبقاً!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "الإمتيازات" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "المستخدم" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "تحرير الامتيازات" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "Users" msgid "User account" msgstr "المستخدمون" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "معلومات المستخدم" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13284,7 +13249,7 @@ msgstr "" "ما تم التعديل عليها يدويا. في هذه الحالة، عليك %s بإعادة قراءة الصلاحيات %s " "قبل أن تكمل." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13303,11 +13268,11 @@ msgstr "" "ما تم التعديل عليها يدويا. في هذه الحالة، عليك %s بإعادة قراءة الصلاحيات %s " "قبل أن تكمل." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "المستخدم المحدد غير موجود في جدول الصلاحيات." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "لقد أضفت مستخدم جديد." @@ -13554,35 +13519,35 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 #, fuzzy #| msgid "Enable highlighting" msgid "Enable charts dragging" msgstr "تفعيل التوضيح (highlighting)" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 #, fuzzy msgid "Refresh rate" msgstr "حدث" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "إضافه/حذف عمود حقل" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" @@ -13655,7 +13620,7 @@ msgid "Statements" msgstr "أوامر" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -13688,33 +13653,33 @@ msgstr "شاهد الجدول" msgid "Related links:" msgstr "الروابط" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13722,78 +13687,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13801,7 +13766,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13809,42 +13774,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13852,33 +13817,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13887,244 +13852,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "هيئة الملفات المستوردة" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14132,99 +14097,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14232,18 +14197,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14251,13 +14216,13 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "التتبع غير نشط." -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -14266,76 +14231,76 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 #, fuzzy #| msgid "Users" msgid "User groups" msgstr "المستخدمون" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "إصدارة المزود" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Databases" msgid "Database level tabs" msgstr "قاعدة بيانات" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table removal" msgid "Table level tabs" msgstr "اسم الجدول" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy msgid "View users" msgstr "إضافة مستخدم" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "إضافة مستخدم" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "لا صلاحيات." -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "اسم العمود" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "إصدارة المزود" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Databases" msgid "Database-level tabs" msgstr "قاعدة بيانات" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table removal" msgid "Table-level tabs" @@ -14399,21 +14364,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14480,143 +14441,143 @@ msgstr "تم إنشاء الإجراء %1$s." msgid "Variable name was expected." msgstr "إسم قالب الجدول" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "في بداية الجدول" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 #, fuzzy #| msgid "Unexpected characters on line %s." msgid "Unexpected token." msgstr "أحرف غير متوقعة على السطر %s." -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "لقد تمّ حذف الصّف" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "ملفات البيانات" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 #, fuzzy #| msgid "Other" msgid "Order" msgstr "آخر" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy #| msgid "Startup" msgid "State" msgstr "بدء التشغيل" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "مجموع الوقت:" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "وقت" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "أغلاق" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "وقت" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "اجعل علامة مرجعية SQL-استعلام" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Label" msgid "Label:" msgstr "علامة" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "اسمح لكل المستخدمين الوصول إلى هذه العلامة المرجعية" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created!" msgstr "تم إنشاء العلامة المرجعية %s" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -14647,29 +14608,29 @@ msgstr "" msgid "Bind parameters" msgstr "عوامل متغيرة غير جيدة!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 #, fuzzy #| msgid "Bookmark this SQL query" msgid "Bookmark this SQL query:" msgstr "اجعل علامة مرجعية SQL-استعلام" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "أعرض هذا الاستعلام هنا مرة أخرى" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "عرض فقط" @@ -14717,180 +14678,180 @@ msgstr "تعطيل التتبع لـ %s.%s" msgid "Deactivate now" msgstr "تعطيل الآن" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "أنشئ" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "محدث" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "إنشاء إصدار" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "تقرير التتبع" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "لقطة للبناء الهيكلي" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "نشط" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "غير نشط" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "يسمح بإضافة واستبدال البيانات." -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "لايوجد بيانات" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "تنفيذ SQL" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "تصدير كـ %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "تاريخ" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "اسم المستخدم" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "لا شيء" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "تتبع التقرير للجدول %s" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "التتبع نشط." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "التتبع نشط." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Version %1$s of %2$s was deleted." msgstr "انشئ إصدار %s لـ %s.s%s" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "تم إنشاء الإصدار %s , التتبع نشط لـ %s.%s" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "الجداول الغير متتبعة" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "تتبع الجدول" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "الجداول المتعقبة" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "آخر إصدار" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "حذف بيانات تتبع التغيرات" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "الإصدارات" @@ -14900,13 +14861,13 @@ msgstr "الإصدارات" msgid "Manage your settings" msgstr "المزايا العامّة للرابط" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." msgstr "تمت التعديلات" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -15007,7 +14968,7 @@ msgstr "لايوجد قواعد بيانات" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -15032,7 +14993,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "لم يستطع phpMyAdmin إيقاف العملية %s. يبدو أنها أوقفت مسبقا." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -15978,51 +15939,57 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Import files" +msgid "Chart title:" +msgstr "استورد الملفات" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "القيمة" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "القيمة" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside column:" msgid "Series column:" msgstr "داخل العمود:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Values for column %s" msgid "Value Column:" msgstr "القيم للعمود %s" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -16092,54 +16059,55 @@ msgstr "تعليق" msgid "Drag to reorder" msgstr "إسحب لإعادة الترتيب" -#: templates/table/relation/common_form.phtml:7 -msgid "Internal relations" -msgstr "العلاقات الداخلية" - -#: templates/table/relation/common_form.phtml:11 -msgid "Internal relation" -msgstr "العلاقات الداخلية" - -#: templates/table/relation/common_form.phtml:14 -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "" - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 #, fuzzy #| msgid "Foreign key constraint" msgid "Foreign key constraints" msgstr "قيود المفتاح الغريب" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 #, fuzzy #| msgid "Action" msgid "Actions" msgstr "العملية" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 #, fuzzy #| msgid "Constraints for table" msgid "Constraint properties" msgstr "القيود للجدول" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 msgid "Foreign key constraint" msgstr "قيود المفتاح الغريب" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "أضف قيود" -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +msgid "Internal relations" +msgstr "العلاقات الداخلية" + +#: templates/table/relation/common_form.phtml:80 +msgid "Internal relation" +msgstr "العلاقات الداخلية" + +#: templates/table/relation/common_form.phtml:83 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "" + +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16293,7 +16261,7 @@ msgid "at beginning of table" msgstr "في بداية الجدول" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16342,7 +16310,7 @@ msgstr "مقسم" msgid "Edit partitioning" msgstr "إزالة التقسيم" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -17620,6 +17588,41 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "جداول" + +#, fuzzy +#~| msgid "View" +#~ msgid "views" +#~ msgstr "عرض" + +#, fuzzy +#~| msgid "Processes" +#~ msgid "procedures" +#~ msgstr "عمليات" + +#, fuzzy +#~| msgid "Event" +#~ msgid "events" +#~ msgstr "حدث" + +#, fuzzy +#~| msgid "Function" +#~ msgid "functions" +#~ msgstr "دالة" + +#, fuzzy +#~| msgid "table name" +#~ msgid "Filter databases by name or regex" +#~ msgstr "اسم الجدول" + +#, fuzzy +#~| msgid "table name" +#~ msgid "Filter by name or regex" +#~ msgstr "اسم الجدول" + #, fuzzy #~| msgid "Tracking report" #~ msgid "Taking you to %s." diff --git a/po/az.po b/po/az.po index 003935e97f..4876abc38d 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-05-21 01:04+0200\n" "Last-Translator: Sevdimali İsa \n" "Language-Team: Azerbaijani Are you sure you " "want to continue?" @@ -1949,343 +1961,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:426 +#: js/messages.php:427 msgid "Continue" msgstr "Davam" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "Birinci dərəcəli açar əlavə et" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "Birinci Dərəcəli Açar əlavə edildi." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "Sizi növbəti addıma aparır…" -#: js/messages.php:433 +#: js/messages.php:434 #, 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:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "Addım sonu" -#: js/messages.php:435 +#: js/messages.php:436 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:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Hazırdır" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Heç bir baza seçilmemişdir." -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "Göstərilən cədvəli yarat" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Heç bir baza seçilmemişdir." -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Yaddaşa ver" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Axtarış kriteriyalarını gizlət" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Axtarış kriteriyalarını göstər" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "Aralıq Axtarma" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "Maksimum Sütun:" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "Minimum Sütun:" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "Minimum dəyər:" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "Maksimum dəyər:" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "Axtar və Dəyişdir kriteriyalarını gizlət" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "Axtar və Dəyişdir kriteriyalarını göstər" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "Hər nöqtə bir verilən sətrini təmsil edir." -#: js/messages.php:484 +#: js/messages.php:485 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:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 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:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "İki sütun seçin" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "İki fərqli sütun seçin" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "Verilən nöqtə məzmunu" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Diqqətə Alma" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Xətt" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Poliqon" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Inner ring %d:" msgid "Inner ring" msgstr "Daxili halqa %d:" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Xarici halqa:" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "Şifrələmə açarını kopyalamaq istəyirsinizmi?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "Şifrələmə açarı" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:529 +#: js/messages.php:530 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:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 msgid "Page name" msgstr "Səhifə adı" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 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:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 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:539 +#: js/messages.php:540 msgid "Delete page" msgstr "Səhifəni sil" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Başlıqsız" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "Zəhmət olmasa davam etmək üçün bir səhifə seçin" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "Zəhmət olmasa keçərli bir səhifə adı daxil edin" -#: js/messages.php:544 +#: js/messages.php:545 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:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "Səhifə uğurla silindi" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "Əlaqəli sxemləri eksport et" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Modifikasiyalar yaddaşa verildi" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "\"%s\" sütunu üçün seçim əlavə edin." -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "%d obyekt yaradıldı." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Submit" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "Redaktəni ləğv etmək üçün Esc düyməsinə basın." -#: js/messages.php:557 +#: js/messages.php:558 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?" @@ -2293,179 +2305,150 @@ msgstr "" "Bəzi verilənləri redaktə etdiniz və yaddaşa vermədiniz. Verilənləri yadda " "saxlamadan çıxmaq istəyirsinizmi?" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "Yenidən düzənləmək üçün sürükləyin." -#: js/messages.php:561 +#: js/messages.php:562 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:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "Sütun adını kopyalamaq üçün iki dəfə klikləyin." -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Hamısını göstər" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 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:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "Orjinal sətir" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "ləğv et" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Dayandırılmış Əlaqələr" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "İmport statusu" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "Əvvəlcə Verilənlər Bazasını seçin" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "Bağlantıya get:" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "Sütun adını kopyala." -#: js/messages.php:612 +#: js/messages.php:613 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:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Parol yarat" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Yarat" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "Daha çox" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Paneli Göstər" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Paneli Gizlət" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "Gizli naviqasiya ağac bəndlərini göstər." -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "Əsas panel ilə əlaqələndir" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "Əsas panel ilə əlaqəni kəs" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, 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:632 -msgid "tables" -msgstr "cədvəllər" - -#: js/messages.php:633 -msgid "views" -msgstr "görünüşlər" - -#: js/messages.php:634 -msgid "procedures" -msgstr "proseduralar" - -#: js/messages.php:635 -msgid "events" -msgstr "hadisələr" - -#: js/messages.php:636 -msgid "functions" -msgstr "funksiyalar" - -#: js/messages.php:640 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:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2475,56 +2458,56 @@ msgstr "" "versiya %s, %s tarixində yayımlanıb." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", son stabil versiya:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "aktual" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "Görünüş yarat" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy #| msgid "Send error reports" msgid "Send error report" msgstr "Xəta hesabatları göndər" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Xəta Hesabatı Göndər" -#: js/messages.php:657 +#: js/messages.php:649 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:659 +#: js/messages.php:651 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Hesabat tənzimləmələrini dəyişdir" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Hesabat Təfsilatlarını Göstər" -#: js/messages.php:663 +#: js/messages.php:655 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:667 +#: js/messages.php:659 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2534,369 +2517,369 @@ 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "Serverdə bəzi xətalar aşkar edildi!" -#: js/messages.php:675 +#: js/messages.php:667 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:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "Heç birin diqqətə alma" -#: js/messages.php:689 +#: js/messages.php:681 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:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "Bu sorğu təkrar icra olunsunmu?" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "Bu əlfəcini silmək istədiyinizə əminsinizmi?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Cədvəl haqqında izahat" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Axtarış nəticələrini gizlət" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "Əvvəlki" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "Sonrakı" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Bugün" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "Yanvar" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "Fevral" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "Mart" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "Aprel" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "May" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "İyun" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "İyul" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "Avqust" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "Sentyabr" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "Oktyabr" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "Noyabr" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "Dekabr" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Yan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "İyun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "İyul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Avq" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Sent" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Noy" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Dek" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "Bazar" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "Bazar Ertəsi" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "Çərşənbə axşamı" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "Çərşənbə" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "Cümə axşamı" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "Cümə" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "Şənbə" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "Baz" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Baz Ert" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Çerş Axş" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Çerş" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Cüme Axş" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Cüme" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Şen" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "B" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "Baz Ert" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "Çərş Axş" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "Ç" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "CA" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "C" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "Ş" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "təqvim-ay-il" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "Heç biri" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Saat" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Dəqiqə" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Saniyə" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Mətn sahəsi istifadə et" -#: js/messages.php:886 +#: js/messages.php:878 #, 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:887 +#: js/messages.php:879 #, 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:888 +#: js/messages.php:880 #, 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:889 +#: js/messages.php:883 #, 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:890 +#: js/messages.php:885 #, 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:891 +#: js/messages.php:888 #, 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:892 +#: js/messages.php:890 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" @@ -2908,55 +2891,55 @@ msgstr "Zəhmət olmasa keçərli uzunluq daxil edin!" msgid "Please enter the same value again" msgstr "Zəhmət olmasa keçərli bir səhifə adı daxil edin" -#: js/messages.php:894 +#: js/messages.php:897 #, 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:895 +#: js/messages.php:902 #, 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:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 #, 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:898 +#: js/messages.php:917 #, 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:899 +#: js/messages.php:922 #, 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:901 +#: js/messages.php:928 #, 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:902 +#: js/messages.php:933 #, 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:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Xəta" @@ -3044,11 +3027,12 @@ msgstr "Sorğunu təkrarla" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3090,7 +3074,7 @@ msgstr "Cari sessiya ərzində" msgid "Explain" msgstr "İzah Et" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Profilləmə" @@ -3124,8 +3108,8 @@ msgid "History" msgstr "Tarixçə" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3292,7 +3276,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Qaranlıq temaya keç" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3300,26 +3284,26 @@ msgstr "" "Server cavab vermir(yada ki lokal MYSQL serverinin soketi duzgün " "konfiqurasiya edilməyib)." -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "Server cavab vermir." -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "Zəhmət olmasa Bazanın olduğu qovluğun səlahiyyətlərini gözdən keçirin." -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Detallar…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Konfiqurasiya faylınızda göstərilmiş idarəetmə istifadəçiləri üçün qoşulma " "uğursuz oldu." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3329,8 +3313,8 @@ msgstr "" msgid "Ascending" msgstr "Artan sırada" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3475,8 +3459,8 @@ msgstr[0] "%2$s cədvəlində %1$s uyğunluq" msgstr[1] "%2$s cədvəlində %1$s uyğunluq" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3520,121 +3504,122 @@ msgstr "Heç birini seçmə" msgid "Inside column:" msgstr "Daxili sütun:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "Redaktə edilən verilənləri yaddaşa ver" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "Sütun sırasını geri yüklə" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "Sətirləri filtrlə" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "Bu cədvəldə axtar" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "Başlanğıc" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "Əvvəlki" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "Sonrakı" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "Son" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Hamısı" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Sətir sayı:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Açara görə sırala" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "Qismi Mətnlər" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "Tam Mətnlər" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Əlaqəli açar" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display column for relations" msgstr "Sütun Qısa İzahatını Dəyişdir" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "Binar məzmunu göstər" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "BLOB məzmunlarını göstər" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "Browser transformasiyasını gizlət" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "Mətn(WKT)" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "Binar(WKB)" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "Sətir silindi." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Söndür" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "SQL sorğunuz müvəffəqiyyətlə icra edilmişdir." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3643,40 +3628,40 @@ msgstr "" "Bu görünüş ən az bu sətirin sayı qədər olur. Zəhmət olmasa %sdokumentasiyaya" "%s baxın." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "Göstərilən sətir %1s - %2s" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d toplam, %2$d sorğuda" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "cəmi %d" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "sorğu %01.4f saniyədə icra edildi." -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Seçilənləri:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3684,25 +3669,25 @@ msgstr "Seçilənləri:" msgid "Check all" msgstr "Hamısını Seç" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Çap görüntüsü" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Diaqram göstər" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "GIS verilənini vizuallaşdır" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "Link tapılmadı!" @@ -3796,19 +3781,19 @@ msgstr "İndeks təyin edilməyib!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Indeksler" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3817,24 +3802,24 @@ msgid "Action" msgstr "Fəaliyyətlər" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Açar söz" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Unikal" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Paketləndi" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Cardinality" @@ -3842,8 +3827,8 @@ msgstr "Cardinality" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3853,8 +3838,8 @@ msgid "Collation" msgstr "Qarşılaşdırma" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3870,15 +3855,15 @@ msgstr "Birinci dərəcəli açar ləğv edildi." msgid "Index %s has been dropped." msgstr "%s indeksi ləğv edildi." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Ləğv et" @@ -3915,12 +3900,13 @@ msgstr "Görünüş" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3928,7 +3914,7 @@ msgstr "Cədvəl" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3937,8 +3923,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3946,41 +3932,41 @@ msgid "Search" msgstr "Axtarış" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Əlavə et" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Səlahiyyətlər" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Əməliyyatlar" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "İzləmə" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3991,16 +3977,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "Verilənlər Bazası boş olaraq görsənir!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Sorğu" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rutinlər" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4008,20 +3994,20 @@ msgstr "Rutinlər" msgid "Events" msgstr "Hadisələr" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Dizayner" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "Orta sütunlar" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Verilənlər Bazaları" @@ -4032,33 +4018,33 @@ msgid "User accounts" msgstr "İstifadəçi qrupları" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Binar logu" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Təkrarlanma(replikasiya)" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Dəyişənlər" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "kodlaşdırma" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Motorlar" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "Qoşmalar" @@ -4352,7 +4338,7 @@ msgstr "" msgid "No index parts defined!" msgstr "İndeks qisimleri te'yin edilmedi!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4797,37 +4783,37 @@ msgstr "%s Funksionallıq bilinən bir xəta tərəfindən zədələnib, baxın msgid "Click to toggle" msgstr "Dəyişmək üçün tıklayın" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Kompüterindən seç:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Web server upload direktoriyasından%s seçin:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Upload işleri üçün te'yin etdiyiniz direktoriya tapılmadı." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "Yüklənəcək fayl yoxdur!" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Boşalt" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "İcra et" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Çap et" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "İstifadəçilər" @@ -4990,8 +4976,8 @@ msgid "Add new column" msgstr "Yeni sütun əlavə et" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5054,19 +5040,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "%s %s vəya yenisinə yüksəltməlisiniz." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -5858,7 +5844,7 @@ msgid "Remember file name template" msgstr "Fayl adı şablonunu xatırla" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT dəyəri əlavə et" @@ -5897,7 +5883,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "" @@ -7517,7 +7503,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 #, fuzzy msgid "Retain query box" msgstr "SQL sorğusu" @@ -7814,103 +7800,33 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "OpenDocument Mətni" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "Seçilmiş siyahı doludur!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "%s cədvəli boşaldıldı." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "%s görünüşünü yığışdır." -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "%s cədvəli ləğv edildi." -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "Seçilmiş siyahı doludur!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "bilinmir" -#: libraries/controllers/TableStructureController.php:162 -#, fuzzy, php-format -#| msgid "The column name '%s' is a MySQL reserved keyword." -msgid "The name '%s' is a MySQL reserved keyword." -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.php:250 -msgid "No column selected." -msgstr "Sütun seçilməmişdir." - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "Sütunlar uğurlu şəkildə daşındı." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "%1$s cədvəli uğurlu bir şəkildə dəyişdirildi." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "Sorğu xətası" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Dəyişdir" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "İndeks" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: 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.php:1201 -msgid "Distinct values" -msgstr "Fərdi qiymətlər" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -7924,6 +7840,14 @@ msgstr "" msgid "No data to display" msgstr "Göstərmək üçün məlumat yoxdur" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "%1$s cədvəli uğurlu bir şəkildə dəyişdirildi." + #: libraries/controllers/table/TableRelationController.php:212 #, fuzzy #| msgid "Thread %s was successfully killed." @@ -7934,21 +7858,83 @@ msgstr "Thread %s uğurla söndürüldü (killed)." msgid "Internal relations were successfully updated." msgstr "Daxili əlaqələr uğurla yeniləndi." -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "Cədvəl axtarışı" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Search" msgid "Zoom search" msgstr "Axtarış" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Tap və Əvəz et" +#: libraries/controllers/table/TableStructureController.php:163 +#, fuzzy, php-format +#| msgid "The column name '%s' is a MySQL reserved keyword." +msgid "The name '%s' is a MySQL reserved keyword." +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/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "Sütun seçilməmişdir." + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "Sütunlar uğurlu şəkildə daşındı." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "Sorğu xətası" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Dəyişdir" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "İndeks" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Tam metn (Fulltext)" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "Fərdi qiymətlər" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -7958,7 +7944,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Deyişiklik Yoxdur" @@ -8027,7 +8013,7 @@ msgstr "Yarat" msgid "Create database:" msgstr "Verilənlər Bazası yarat:" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Selahiyyet çatışmazlığı" @@ -8722,69 +8708,69 @@ msgid "Dump has been saved to file %s." msgstr "Sxem %s faylına qeyd edildi." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL boş nəticə çoxluğu göndərdi(yəni sıfır sətir)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "%s Verilənlər Bazasına get" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "%s Cədvəlinə get" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "%s Strukturu" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr " %s sütunda indeks yarat" @@ -8807,71 +8793,71 @@ msgstr "Funksiya" msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "Uzun olduğuna görə,
bu sütun redaktə edilməyə bilər." -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Binary - deyişiklik etme" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "ya da" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "web-server upload direktoriyası:" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "Redaktə et/Əlavə et" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Yeni sətir olaraq əlavə et" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Evvelki sehifeye qayıt" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Teze bir setir daha gir" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Bu sehifeye geri dön" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Bir sonrakı setre keç" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -8883,11 +8869,11 @@ msgstr "" msgid "Value" msgstr "Dəyər" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -8903,35 +8889,35 @@ msgstr "Heç biri" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "Cədvəl prefiksini dəyiş:" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "Cədvəli prefiks ilə birlikdə kopyala:" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "Burdan" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "Cədvəl prefiksi əlavə et:" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "Prefiks əlavə et" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "Aşağıdakı sorğunu icra etmək istədiyinizə əminsinizmi?" @@ -9153,8 +9139,8 @@ msgstr "Proseduralar:" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Göstər" @@ -9194,18 +9180,15 @@ msgstr[0] "" msgstr[1] "" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" -msgstr "Verilənlər Bazasını adına ya da düzgün ifadəsinə görə filtrlə" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 msgid "Clear fast filter" msgstr "Sürətli filtri təmizlə" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "Adına ya da düzgün ifadəsinə görə filtrlə" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -9588,7 +9571,7 @@ msgstr "Verilənlər Bazasını yenidən adlandır" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -9599,7 +9582,7 @@ msgstr "Burada olma haqqınız yoxdur!" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9619,18 +9602,18 @@ msgstr "Verilənlər Bazasını sil" msgid "Drop the database (DROP)" msgstr "Verilənlər Bazasını sil(DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Sadəcə struktur" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Struktur və məlumat" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Sadəcə məlumat" @@ -9642,7 +9625,7 @@ msgstr "Verilənlər Bazasını buraya kopyala" msgid "CREATE DATABASE before copying" msgstr "Koçürmədən əvvəl VERİLƏNLƏR BAZASI yarat(CREATE DATABASE)" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "" @@ -9682,162 +9665,162 @@ msgstr "Depolama Motorları" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Cədvəli kopyala (verilənlər bazası.cədvəl)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Kopyalanmış cedvele keç" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Cədvəl təmizliyi" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Cədvəli analiz et" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Cədvəli yoxla" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Cədvəli yoxla" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Cədvəli birləşdir(defragment)" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "%s cədvəli təmizləndi." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "Cədvəli təmizlə(FLUSH)" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Cədvəli optimallaşdır" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Cedveli te'mir et" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "Cədvəl və ya veriləni sil" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "Cədvəli boşalt(TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "Cədvəli sil(DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Analiz et" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Yoxlama" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Optimallaşdır" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Yenidən Qur" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Təmir et" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "Bağla" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "Bölüm sazlaması" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "Bölmə %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Cedveli eynisinin üzerine kopyalaya bilmerem!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "%s cədvəli %s - ə daşınmışdır." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "%s cədvəli %s - ə kopyalandı." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "%s cədvəli %s - ə daşınmışdır." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, fuzzy, php-format msgid "Table %s has been copied to %s." msgstr "%s cədvəli %s - ə kopyalandı." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Cedveli adı boşdur!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "Bu formatın variantları yoxdur" @@ -10016,7 +9999,7 @@ msgstr "Data Dump seçimləri" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Sxemi çıxarılan cedvel" @@ -10040,21 +10023,21 @@ msgstr "Tərif" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Cədvəl üçün cədvəl strukturu" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Görünüş strukturu" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10144,7 +10127,7 @@ msgid "Database:" msgstr "Verilənlər Bazası:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "Verilən:" @@ -10242,7 +10225,7 @@ msgid "Data creation options" msgstr "Verilən yaratma seçimləri" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -10311,8 +10294,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10320,87 +10303,87 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Export method" msgid "Metadata" msgstr "Eksport metodu" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Yaradılma:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Ən son yenilənmə:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Ən son yoxlama:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "istifadede" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for dumped tables" msgstr "Inside table(s):" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "Cədvəl üçün indekslər" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT deyeri elave et" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "Cədvəl üçün AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "Cədvəl Əlaqələri" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, 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.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "Verilənlərin oxunması xətası:" @@ -10644,9 +10627,9 @@ msgstr "" msgid "Table of contents" msgstr "İçindəkilər Cədvəli" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Əlavə" @@ -10848,55 +10831,55 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been added." msgstr "Modifications have been saved" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Fayl oxuna bilmir" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "Daxili əlaqə əlavə edildi." -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 msgid "Error: Internal relation could not be added!" msgstr "Xəta: Daxili əlaqə əlavə edilmədi!" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been removed." msgstr "Modifications have been saved" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Fayl oxuna bilmir" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 msgid "Error: Internal relation could not be removed!" msgstr "Xəta: Daxili əlaqə ləğv edilə bilmədi!" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "Daxili əlaqə ləğv edildi." @@ -10945,108 +10928,108 @@ msgstr "" "Lütfən, column_info cədvəlinizi necə yeniləyəcəyiniz barədə öyrənmək üçün " "dokumentasiyaya baxın. " -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Bookmark-lanmış SQL sorğusu" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL tarixçəsi" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "Davamlı son istifadə olunan cədvəllər" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "Persistent recently used tables" msgid "Persistent favorite tables" msgstr "Davamlı son istifadə olunan cədvəllər" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "İstifadəçi seçimləri" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "Konfiqurasiyası dəyişdirilə bilən menyular" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Remember table's sorting" msgid "Remembering Designer Settings" msgstr "Cədvəlin sıralamasını xatırla" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "Etibarsız eksport tipi" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "Haqqında məlumat (description) mövcud deyildir" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11221,8 +11204,8 @@ msgstr "İstifadəçi adı:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "İstifadəçi adı" @@ -11230,7 +11213,7 @@ msgstr "İstifadəçi adı" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Parol" @@ -11868,7 +11851,7 @@ msgstr[1] "%1$d bazası müvəffəqiyyətlə ləğv edildi." msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Versiya" @@ -11876,98 +11859,94 @@ msgstr "Versiya" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "Söndürülüb" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Selahiyyet te'yin edilmedi." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "GRANT-dan başqa bütün səlahiyyətlər daxildir." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Məlumat silməyə icazə verir." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Yeni bazalar ve cədvəllər qurmağa icazə verir." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Bazaları və cədvəlləri ləğv etməyə icazə verir." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Mövcud olan cedvellerin strukturunu deyişdirmeye icaze verir." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -11978,67 +11957,67 @@ msgstr "" "killing threads of other users." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Keçici cədvəllər qurmağa icazə verir." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "Gives the right to the user to ask where the slaves / masters are." #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Yeni görünüşlər qurmağa icazə verir." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 #, fuzzy msgid "Allows creating and dropping triggers." msgstr "Allows creating and dropping indexes." #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Saxlanan rutinlər yaratmağa icazə verir." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "" "Saxlanan rutinlərinlərin dəyişdirilməsinə və ləğv edilməsinə icazə verir." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Saxlanan rutinlərin icra edilməsinə icazə verir." @@ -12050,8 +12029,8 @@ msgstr "Yox" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "İstifadəçi qrupu" @@ -12095,13 +12074,13 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Qeyd: Bu variantları 0 (sıfır)-a çevirmək hüdudu (limiti) qaldıracaq." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "İstifadəçinin saat başına serverə göndərə biləcəyi sorğu sayını limitləyir." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12110,20 +12089,20 @@ msgstr "" "əmrlərin sayını limitləyir." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "İstifadəçinin saat başına aça biləcəyi qoşulmaların sayını limitləyir." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12131,7 +12110,7 @@ msgid "Routine" msgstr "Rutinlər" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12153,14 +12132,14 @@ msgstr "Saxlanan rutinlərin icra edilməsinə icazə verir." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Cədvələ xas səlahiyyətlər" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Qeyd: MySQL səlahiyyət adları ingilis dilində ifadə edilmişdir." @@ -12170,7 +12149,7 @@ msgid "Administration" msgstr "Administrasiya" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Qlobal səlahiyyətlər" @@ -12179,15 +12158,15 @@ msgid "Global" msgstr "Qlobal" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Verilənlər Bazasına Məxsus Səlahiyyətlər" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Yeni cədvəllər qurmağa icazə verir." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Cədvəlləri ləğv etməyə icazə verir." @@ -12210,7 +12189,7 @@ msgid "Native MySQL Authentication" msgstr "İdentifikasiya" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Sistemə Giriş Məlumatı" @@ -12236,8 +12215,8 @@ msgstr "İstifadəçi adı:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Column names" msgid "Host name" @@ -12259,117 +12238,117 @@ msgstr "İdentifikasiya" msgid "Password Hashing Method" msgstr "Parol:" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "%s üçün parol müvəffəqiyyətlə dəyişdirilmişdir." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "%s üçün səlahiyyətləri geri aldınız." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add user group" msgid "Add user account" msgstr "İstifadəçi qrupları əlavə et" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "İstifadəçi üçün Verilənlər Bazası" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "Eyni adda baza yarat və bütün səlahiyyətləri ver." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "\"%s\" bazasındakı bütün səlahiyyətləri ver." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\" Bazasına girişi olan istifadəçilər" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "İstifadəçi əlavə olundu." -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "İcazə ver" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "İstifadəçiləri göstərmək üçün yetərsiz səlahiyyət." -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "İstifadəçi tapılmadı." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Hər hansı" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "qlobal" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "bazaya xas" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "xüsusi işarə" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "cədvələ xas" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "Səlahiyyətləri redaktə et:" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Geri al" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "İstifadəçi qruplarını redaktə et" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… köhnəsini saxla." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… istifadəçi cədvəllərindən köhnəsini sil." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… köhnə istifadəçinin səlahiyyətlərini əlindən alaraq onu sil." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12377,120 +12356,120 @@ msgstr "" "… Köhnə olanı istifadəçi cədvəllərindən sil və ardından səlahiyyətləri " "yenidən yüklə." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Sistem Giriş Məlumatını Dəyişdir / İstifadəçini Kopyala" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Eyni səlahiyyətlərə sahib yeni istifadəçi yarat və …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Sütuna xas Səlahiyyətlər" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Seçilən istifadəçiləri ləğv et" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "İstifadəçilərdən bütün aktiv səlahiyyətləri geri al və sonra da sil." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "İstifadəçilərlə eyni adlı verilənlər bazalarını ləğv et." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "%s silinir" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "%s istifadeçisi mövcuddur!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "%s üçün səlahiyyətlər" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "İstifadəçi" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "Yeni" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "Səlahiyyətləri redaktə et:" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "User group" msgid "User account" msgstr "İstifadəçi qrupu" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "İstifadəçilərə ümumi baxış" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12503,7 +12482,7 @@ msgstr "" "içərisindəkilər webserver-in istifadə etdiklərindən fərqli ola bilər. Bu " "halda, davam etmədən əvvəl, səlahiyyətləri %syenidən yükləməlisiniz%s." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -12522,11 +12501,11 @@ msgstr "" "içərisindəkilər webserver-in istifadə etdiklərindən fərqli ola bilər. Bu " "halda, davam etmədən əvvəl, səlahiyyətləri %syenidən yükləməlisiniz%s." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Yeni istifadəçi əlavə etdiniz." @@ -12752,30 +12731,30 @@ msgstr "Təlimatlar/Tənzimləmələr" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "Yenilənmə tezliyi" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "Diaqram sütunları" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "İlkin formaya sıfırla" @@ -12831,7 +12810,7 @@ msgid "Statements" msgstr "Variantlar" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -12856,33 +12835,33 @@ msgstr "Formatlaşdırılmamış dəyərləri göstər" msgid "Related links:" msgstr "Əlaqəli linklər:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL serverinə bağlanmaq üçün uğursuz cəhdlərin sayıdır." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12890,78 +12869,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12969,7 +12948,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12977,42 +12956,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "Boş səhifə sayıdır." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13020,33 +12999,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13055,85 +13034,85 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "Log faylına yazılan bayt sayı." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "Yaradılmış səhifələrin sayı." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -13142,57 +13121,57 @@ msgstr "" "çoxlu sayda dəyərlər sayılıb; səhifə ölçüsü bunları asanlıqla bayta " "çevirməyə icazə verir." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "Oxunmuş səhifələrin sayı." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "Yazılmış səhifələrin sayı." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "Hal-hazırda gözlənən kilidli sətirlərin sayı." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Kilidli sətirləri əldə etmək üçün orta zaman(millisaniyə)." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Kilidli sətirləri əldə etmək üçün ümumi zaman(millisaniyə)." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Kilidli sətirləri əldə etmək üçün maksimum zaman(millisaniyə)." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "Kilidli sətirlərin ümumi gözləmə miqdarı." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB cədvəlindən silinmiş sətirlərin sayı." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB cədvəlinə əlavə olunmuş sətirlərin sayı." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB cədvəlindən oxunmuş sətirlərin sayı." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB cədvəlində yenilənmiş sətirlərin sayı." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -13200,22 +13179,22 @@ msgstr "" "Açar keşində istifadə olunmayan blok sayı. Bu dəyər ilə açar keşindəki " "istifadənin miqdarını təyin edə bilərsiniz." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "İstifadə olunan açar keşinin faizi(hesablanmış dəyər)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "Keşdən açar blokunun oxunması üçün sorğu sayı." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13225,35 +13204,35 @@ msgstr "" "sizin key_buffer_size dəyəriniz çox kişikdir. Əksik keş nisbəti Key_reads/" "Key_read_requests kimi hesablanmalıdır." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "Keşə açar bloku yazmaq üçün sorğuların sayı." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "Diskə açar bloklarının fiziki yazma sayı." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Fiziki yazmaların faizi yazma sorğuları ilə müqayisə edilir(hesablanmış " "dəyər)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13261,11 +13240,11 @@ msgstr "" "Serverin başladılmasından bu yana istifadədə olan eyni zamanlı ən çox əlaqə " "sayı." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "INSERT DELAYED sıralarında yazılmaq üçün gözləyən sətir sayı." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13273,38 +13252,38 @@ msgstr "" "Açıq olan cədvəl sayı. Əgər açıq cədvəllər böyükdürsə, cədvəl keş dəyəriniz " "ehtimal ki çox kişikdir." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "Açıq olan fayl sayı." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "Açıq olan cədvəl sayı." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "Sorğu keşi üçün boş yaddaş miqdarıdır." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13312,35 +13291,35 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "Keşdə qeydiyyatlı sorğuların sayı." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "Sorğu keşi içindəki toplam blok sayı." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -13349,65 +13328,65 @@ msgstr "" "sayıdır.(Əgər bu dəyər 0 deyildirsə, cədvəllərinizin açarlarını diqqətli " "olaraq yoxlamalısınız.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13415,18 +13394,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "Cari açıq bağlantıların sayı." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13434,12 +13413,12 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "Sorğu tipi" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -13448,59 +13427,59 @@ msgstr "" msgid "Users of '%s' user group" msgstr "'%s' istifadəçi qrupunun istifadəçiləri" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "Bu istifadəçi qrupuna aid heç bir istifadəçi tapılmadı." -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "İstifadəçi qrupları" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "Server səviyyə pəncərələri" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "Verilənlər Bazaları səviyyə pəncərələri" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "Cədvəl səviyyə pəncərələri" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "İstifadəçiləri göstər" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "İstifadəçi qrupları əlavə et" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "İstifadəçi qrupunu redaktə et: '%s'" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "İstifadəçi qrupu menu təyinetmələri" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "Qrup adı:" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Server versiyası" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -13565,21 +13544,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -13650,127 +13625,127 @@ msgstr "%1$s hadisəsi yaradıldı." msgid "Variable name was expected." msgstr "Cədvəl adı şablonu" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Cədvəlin başına" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 #, fuzzy #| msgid "Unexpected characters on line %s." msgid "Unexpected token." msgstr "%s. sətirində gözlənilməyən simvollar." -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 #, fuzzy #| msgid "The number of tables that are open." msgid "The name of the entity was expected." msgstr "Açıq olan cədvəl sayı." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Sətir silindi." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "Detallı profil" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "Sıra" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "Status" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "Cəmi vaxt" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "% müddət" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "Zənglər" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "ø müddət" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Bu SQL sorğusunu işarələ" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "Etiket:" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Hər istifadəçinin bu əlfəcinə çatmasına icazə ver" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "Əlfəcin yaradıla bilmədi!" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "PHP kodu olaraq göstərilir" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`%s` cədvəlinin indeksləri ilə əlaqəli problemlər" @@ -13801,27 +13776,27 @@ msgstr "Avto yaddaşa verilmiş sorğunu al" msgid "Bind parameters" msgstr "Pis parametrlər!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "Bu SQL sorğusunu bookmark-la:" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Eyni adın mövcud əlfəcini dəyişdir" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Bu sorğunu burada yenə göstər" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Sadəcə göstər" @@ -13866,174 +13841,174 @@ msgstr "%s üçün izləməni deaktiv et" msgid "Deactivate now" msgstr "İndi deaktivləşdir" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Yaradıldı" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Yeniləndi" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "Versiya yarat" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "İzləmə hesabatı" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Struktur görüntüs qeyd etmə" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "aktiv" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "aktiv deyil" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "İzləmə ifadələri" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "Hesabatdan izlənən verilən sətirini sil" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "Verilən yoxdur" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Tarix" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "İstifadəçi Adı" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Heç biri" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Server versiyası" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "İzlənilməyən cədvəllər" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Cedvəli İzlə" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "İzlənən cədvəllər" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Son versiya" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "İzləməni sil" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Versiyalar" @@ -14041,13 +14016,13 @@ msgstr "Versiyalar" msgid "Manage your settings" msgstr "Tənzimləmələrinizi idarə edin" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." msgstr "Modifications have been saved" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14150,7 +14125,7 @@ msgstr "Verilənlər Bazası yoxdur" msgid "View dump (schema) of databases" msgstr "Verilənlər bazalarının sxemini göstər" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14181,7 +14156,7 @@ msgstr "" "phpMyAdmin %s emeliyyat thread-ini söndüre (kill) bilmedi. Böyük ehtimal " "artıq söndürülmüşdür." -#: server_status_queries.php:50 +#: server_status_queries.php:47 #, fuzzy #| msgid "Not enough privilege to view users." msgid "Not enough privilege to view query statistics." @@ -15059,45 +15034,51 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "Diaqram başlığı" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "X-Oxu:" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "Ardıcıllıq:" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "X-Oxu nişanı:" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "X Dəyəri" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "Y-Oxu nişanı:" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Y Qiyməti" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "Ardıcıllıq sütunu:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Value column:" msgid "Value Column:" msgstr "Qiymət sütunu:" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "Diaqramı şəkil olaraq yaddaşa ver" @@ -15159,15 +15140,45 @@ msgstr "Şərh:" msgid "Drag to reorder" msgstr "Yenidən düzənləmək üçün sürükləyin." -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +msgid "Foreign key constraints" +msgstr "" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "Fəaliyyətlər" + +#: templates/table/relation/common_form.phtml:10 +#, fuzzy +#| msgid "Column names" +msgid "Constraint properties" +msgstr "Sütun adları" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "" + +#: templates/table/relation/common_form.phtml:60 +#, fuzzy +#| msgid "Add a linestring" +msgid "+ Add constraint" +msgstr "Sətir sırası əlavə et" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "Daxili əlaqələr" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "Daxili əlaqə" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15175,36 +15186,7 @@ msgstr "" "FOREIGN KEY bağlantısının yerini tutan bir bağlantı varkən daxili bağlantı " "yaratmaq mümkün deyildir." -#: templates/table/relation/common_form.phtml:37 -msgid "Foreign key constraints" -msgstr "" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "Fəaliyyətlər" - -#: templates/table/relation/common_form.phtml:41 -#, fuzzy -#| msgid "Column names" -msgid "Constraint properties" -msgstr "Sütun adları" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "" - -#: templates/table/relation/common_form.phtml:83 -#, fuzzy -#| msgid "Add a linestring" -msgid "+ Add constraint" -msgstr "Sətir sırası əlavə et" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "Göstərmək üçün sütun seçin:" @@ -15342,7 +15324,7 @@ msgid "at beginning of table" msgstr "Cədvəlin başına" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -15391,7 +15373,7 @@ msgstr "bölündü" msgid "Edit partitioning" msgstr "bölündü" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "Redaktə görünuşü" @@ -16607,6 +16589,31 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert 0-a konfiqurasiya edilib" +#~ 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" + +#~ msgid "tables" +#~ msgstr "cədvəllər" + +#~ msgid "views" +#~ msgstr "görünüşlər" + +#~ msgid "procedures" +#~ msgstr "proseduralar" + +#~ msgid "events" +#~ msgstr "hadisələr" + +#~ msgid "functions" +#~ msgstr "funksiyalar" + +#~ msgid "Filter databases by name or regex" +#~ msgstr "Verilənlər Bazasını adına ya da düzgün ifadəsinə görə filtrlə" + +#~ msgid "Filter by name or regex" +#~ msgstr "Adına ya da düzgün ifadəsinə görə filtrlə" + #~ msgid "Taking you to %s." #~ msgstr "Sizi apardığı yer %s." diff --git a/po/be.po b/po/be.po index 407ef03ebb..49b5c28c84 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-05-15 14:28+0200\n" "Last-Translator: Viktar Palstsiuk \n" "Language-Team: Belarusian =20) ? 1 : 2;\n" "X-Generator: Weblate 2.3-dev\n" -#: changelog.php:37 license.php:30 +#: changelog.php:37 license.php:33 #, php-format msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " @@ -38,7 +38,7 @@ msgstr "Клікніце для сартавання." msgid "Showing rows %1$s - %2$s." msgstr "Паказваюцца радкі %1$s - %2$s." -#: db_create.php:61 +#: db_create.php:62 #, php-format msgid "Database %1$s has been created." msgstr "База дадзеных %1$s створаная." @@ -47,13 +47,13 @@ msgstr "База дадзеных %1$s створаная." msgid "Database comment" msgstr "Камэнтар да базы дадзеных" -#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:601 +#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:599 #: templates/columns_definitions/column_definitions_form.phtml:84 msgid "Table comments:" msgstr "Камэнтар да табліцы:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1568 +#: libraries/insert_edit.lib.php:1575 #: libraries/navigation/nodes/NodeColumn.php:34 #: libraries/plugins/export/ExportHtmlword.php:288 #: libraries/plugins/export/ExportHtmlword.php:384 @@ -63,13 +63,14 @@ msgstr "Камэнтар да табліцы:" #: libraries/plugins/export/ExportTexytext.php:282 #: libraries/plugins/export/ExportTexytext.php:373 #: libraries/plugins/export/PMA_ExportPdf.php:472 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:882 libraries/tracking.lib.php:978 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 +#: libraries/tracking.lib.php:892 libraries/tracking.lib.php:990 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:10 -#: templates/table/relation/common_form.phtml:43 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:27 +#: templates/table/relation/common_form.phtml:79 #: templates/table/relation/foreign_key_row.phtml:176 #: templates/table/relation/foreign_key_row.phtml:188 #: templates/table/relation/internal_relational_row.phtml:73 @@ -89,14 +90,14 @@ msgstr "Калонка" #: libraries/plugins/export/ExportTexytext.php:283 #: libraries/plugins/export/ExportTexytext.php:374 #: libraries/plugins/export/PMA_ExportPdf.php:474 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 #: libraries/rte/rte_list.lib.php:78 libraries/rte/rte_list.lib.php:106 #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2606 libraries/tracking.lib.php:883 -#: libraries/tracking.lib.php:975 +#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -106,7 +107,7 @@ msgstr "Тып" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:709 -#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1577 +#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1584 #: libraries/plugins/export/ExportHtmlword.php:294 #: libraries/plugins/export/ExportHtmlword.php:390 #: libraries/plugins/export/ExportLatex.php:517 @@ -115,9 +116,9 @@ msgstr "Тып" #: libraries/plugins/export/ExportTexytext.php:284 #: libraries/plugins/export/ExportTexytext.php:375 #: libraries/plugins/export/PMA_ExportPdf.php:476 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 -#: libraries/tracking.lib.php:885 libraries/tracking.lib.php:981 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/tracking.lib.php:895 libraries/tracking.lib.php:993 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 @@ -134,9 +135,9 @@ msgstr "Нуль" #: libraries/plugins/export/ExportTexytext.php:285 #: libraries/plugins/export/ExportTexytext.php:376 #: libraries/plugins/export/PMA_ExportPdf.php:478 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 -#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:886 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:896 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 @@ -148,8 +149,8 @@ msgstr "Па змоўчаньні" #: libraries/plugins/export/ExportOdt.php:488 #: libraries/plugins/export/ExportTexytext.php:378 #: libraries/plugins/export/PMA_ExportPdf.php:487 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:640 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:663 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 msgid "Links to" msgstr "Зьвязаная з" @@ -160,37 +161,38 @@ msgstr "Зьвязаная з" #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:381 #: libraries/plugins/export/PMA_ExportPdf.php:494 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:651 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:664 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:649 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 #: templates/columns_definitions/table_fields_definitions.phtml:65 msgid "Comments" msgstr "Камэнтары" -#: db_datadict.php:155 libraries/controllers/TableStructureController.php:1189 -#: libraries/controllers/TableStructureController.php:1194 -#: libraries/tracking.lib.php:925 +#: db_datadict.php:155 +#: libraries/controllers/table/TableStructureController.php:1197 +#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:79 +#: templates/table/structure/display_structure.phtml:80 msgid "Primary" msgstr "Першасны" -#: db_datadict.php:165 js/messages.php:370 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:371 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 -#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:403 -#: libraries/mult_submits.lib.php:417 +#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:408 +#: libraries/mult_submits.lib.php:422 #: libraries/plugins/export/ExportHtmlword.php:654 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:710 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2971 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3620 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1013 libraries/tracking.lib.php:1018 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2973 +#: libraries/server_privileges.lib.php:2993 +#: libraries/server_privileges.lib.php:3631 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -199,32 +201,32 @@ msgstr "Першасны" msgid "No" msgstr "Не" -#: db_datadict.php:165 js/messages.php:515 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:516 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 #: libraries/config/FormDisplay.tpl.php:280 -#: libraries/controllers/TableStructureController.php:770 -#: libraries/controllers/TableStructureController.php:1440 -#: libraries/controllers/TableStructureController.php:1449 -#: libraries/controllers/TableStructureController.php:1454 -#: libraries/controllers/TableStructureController.php:1459 -#: libraries/controllers/TableStructureController.php:1464 -#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:199 -#: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 -#: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 +#: libraries/controllers/table/TableStructureController.php:771 +#: libraries/controllers/table/TableStructureController.php:1448 +#: libraries/controllers/table/TableStructureController.php:1457 +#: libraries/controllers/table/TableStructureController.php:1462 +#: libraries/controllers/table/TableStructureController.php:1467 +#: libraries/controllers/table/TableStructureController.php:1472 +#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:200 +#: libraries/mult_submits.lib.php:344 libraries/mult_submits.lib.php:377 +#: libraries/mult_submits.lib.php:406 libraries/mult_submits.lib.php:420 #: libraries/plugins/export/ExportHtmlword.php:655 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:788 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:711 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2968 -#: libraries/server_privileges.lib.php:2989 -#: libraries/server_privileges.lib.php:3617 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1011 libraries/tracking.lib.php:1016 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2970 +#: libraries/server_privileges.lib.php:2991 +#: libraries/server_privileges.lib.php:3628 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -237,8 +239,8 @@ msgstr "Так" msgid "View dump (schema) of database" msgstr "Праглядзець дамп (схему) базы дадзеных" -#: db_export.php:51 db_tracking.php:102 export.php:382 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:176 +#: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 +#: libraries/controllers/DatabaseStructureController.php:157 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "У базе дадзеных табліц ня выяўлена." @@ -255,7 +257,7 @@ msgstr "Табліц" #: db_export.php:66 libraries/Menu.php:320 libraries/Menu.php:427 #: libraries/Util.php:3407 libraries/Util.php:3417 libraries/Util.php:3423 -#: libraries/Util.php:3702 libraries/Util.php:4339 libraries/Util.php:4356 +#: libraries/Util.php:3703 libraries/Util.php:4340 libraries/Util.php:4357 #: libraries/central_columns.lib.php:729 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:320 @@ -263,10 +265,10 @@ msgstr "Табліц" #: libraries/config/user_preferences.forms.php:218 #: libraries/config/user_preferences.forms.php:259 #: libraries/config/user_preferences.forms.php:285 -#: libraries/import.lib.php:1299 libraries/navigation/nodes/NodeColumn.php:44 +#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:44 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 -#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:877 +#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:887 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -311,11 +313,11 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "Сховішча канфігурацыі PHPMyAdmin дэактываванае. %sДаведацца чаму%s." -#: db_qbe.php:135 +#: db_qbe.php:136 msgid "You have to choose at least one column to display!" msgstr "Вам неабходна выбраць прынамсі адну калёнку для адлюстраваньня!" -#: db_qbe.php:152 +#: db_qbe.php:154 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" @@ -345,7 +347,7 @@ msgstr "" msgid "No tables selected." msgstr "Ня выбраная база дадзеных." -#: db_tracking.php:146 +#: db_tracking.php:149 #, fuzzy msgid "Database Log" msgstr "База дадзеных" @@ -379,7 +381,7 @@ msgstr "" msgid "Bad type!" msgstr "Тып запыту" -#: export.php:276 +#: export.php:278 #, fuzzy #| msgid "Add new field" msgid "Bad parameters!" @@ -390,109 +392,109 @@ msgstr "Дадаць новае поле" msgid "Invalid export type" msgstr "Тып экспарту" -#: gis_data_editor.php:119 +#: gis_data_editor.php:117 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:147 +#: gis_data_editor.php:145 #: templates/table/gis_visualization/gis_visualization.phtml:37 msgid "Use OpenStreetMaps as Base Layer" msgstr "" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:169 +#: gis_data_editor.php:167 msgid "SRID:" msgstr "" -#: gis_data_editor.php:192 +#: gis_data_editor.php:190 #, php-format msgid "Geometry %d:" msgstr "" -#: gis_data_editor.php:214 +#: gis_data_editor.php:212 msgid "Point:" msgstr "" -#: gis_data_editor.php:215 gis_data_editor.php:242 gis_data_editor.php:298 -#: gis_data_editor.php:371 js/messages.php:504 +#: gis_data_editor.php:213 gis_data_editor.php:240 gis_data_editor.php:296 +#: gis_data_editor.php:369 js/messages.php:505 msgid "X" msgstr "" -#: gis_data_editor.php:218 gis_data_editor.php:246 gis_data_editor.php:302 -#: gis_data_editor.php:377 js/messages.php:505 +#: gis_data_editor.php:216 gis_data_editor.php:244 gis_data_editor.php:300 +#: gis_data_editor.php:375 js/messages.php:506 msgid "Y" msgstr "" -#: gis_data_editor.php:240 gis_data_editor.php:296 gis_data_editor.php:369 -#: js/messages.php:507 +#: gis_data_editor.php:238 gis_data_editor.php:294 gis_data_editor.php:367 +#: js/messages.php:508 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:253 gis_data_editor.php:309 gis_data_editor.php:387 -#: js/messages.php:513 +#: gis_data_editor.php:251 gis_data_editor.php:307 gis_data_editor.php:385 +#: js/messages.php:514 #, fuzzy #| msgid "Add new field" msgid "Add a point" msgstr "Дадаць новае поле" -#: gis_data_editor.php:270 +#: gis_data_editor.php:268 #, fuzzy, php-format #| msgid "Lines terminated by" msgid "Linestring %d:" msgstr "Радкі падзеленыя" -#: gis_data_editor.php:273 gis_data_editor.php:350 +#: gis_data_editor.php:271 gis_data_editor.php:348 msgid "Outer ring:" msgstr "" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:273 gis_data_editor.php:350 #, php-format msgid "Inner ring %d:" msgstr "" -#: gis_data_editor.php:312 +#: gis_data_editor.php:310 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Дадаць новага карыстальніка" -#: gis_data_editor.php:313 gis_data_editor.php:392 js/messages.php:514 +#: gis_data_editor.php:311 gis_data_editor.php:390 js/messages.php:515 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Дадаць новага карыстальніка" -#: gis_data_editor.php:334 +#: gis_data_editor.php:332 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Polygon %d:" msgstr "Дадаць %s новыя палі" -#: gis_data_editor.php:398 +#: gis_data_editor.php:396 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" msgstr "Дадаць %s новыя палі" -#: gis_data_editor.php:404 +#: gis_data_editor.php:402 #, fuzzy msgid "Add geometry" msgstr "Дадаць новага карыстальніка" -#: gis_data_editor.php:410 js/messages.php:345 libraries/DbSearch.php:462 -#: libraries/DisplayResults.php:1783 libraries/browse_foreigners.lib.php:142 +#: gis_data_editor.php:408 js/messages.php:346 libraries/DbSearch.php:462 +#: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:151 #: libraries/display_export.lib.php:404 libraries/display_export.lib.php:410 -#: libraries/display_import.lib.php:403 libraries/index.lib.php:42 -#: libraries/insert_edit.lib.php:1547 libraries/insert_edit.lib.php:1584 +#: libraries/display_import.lib.php:403 libraries/index.lib.php:45 +#: libraries/insert_edit.lib.php:1554 libraries/insert_edit.lib.php:1591 #: libraries/normalization.lib.php:168 libraries/normalization.lib.php:825 #: libraries/operations.lib.php:47 libraries/operations.lib.php:114 #: libraries/operations.lib.php:266 libraries/operations.lib.php:309 #: libraries/operations.lib.php:806 libraries/operations.lib.php:877 -#: libraries/operations.lib.php:926 libraries/operations.lib.php:1336 -#: libraries/operations.lib.php:1653 +#: libraries/operations.lib.php:926 libraries/operations.lib.php:1339 +#: libraries/operations.lib.php:1656 #: libraries/plugins/auth/AuthenticationCookie.php:239 #: libraries/replication_gui.lib.php:124 libraries/replication_gui.lib.php:163 #: libraries/replication_gui.lib.php:328 libraries/replication_gui.lib.php:465 @@ -501,12 +503,12 @@ msgstr "Дадаць новага карыстальніка" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2343 -#: libraries/server_privileges.lib.php:3114 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_user_groups.lib.php:285 -#: libraries/sql_query_form.lib.php:369 libraries/sql_query_form.lib.php:429 -#: libraries/tracking.lib.php:536 libraries/tracking.lib.php:656 +#: libraries/server_privileges.lib.php:2345 +#: libraries/server_privileges.lib.php:3116 +#: libraries/server_privileges.lib.php:3735 +#: libraries/server_user_groups.lib.php:290 +#: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 +#: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 #: prefs_manage.php:280 prefs_manage.php:358 #: templates/columns_definitions/column_definitions_form.phtml:64 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 @@ -519,11 +521,11 @@ msgstr "Дадаць новага карыстальніка" msgid "Go" msgstr "Панеслася" -#: gis_data_editor.php:413 +#: gis_data_editor.php:411 msgid "Output" msgstr "" -#: gis_data_editor.php:416 +#: gis_data_editor.php:414 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -535,7 +537,7 @@ msgstr "" msgid "Succeeded" msgstr "У доступе адмоўлена!" -#: import.php:59 js/messages.php:588 +#: import.php:59 js/messages.php:589 msgid "Failed" msgstr "" @@ -605,7 +607,7 @@ msgid "Could not load import plugins, please check your installation!" msgstr "" "Немагчыма загрузіць плагіны імпартаваньня, калі ласка, праверце ўсталёўку!" -#: import.php:669 libraries/sql.lib.php:744 libraries/sql.lib.php:1468 +#: import.php:669 libraries/sql.lib.php:754 libraries/sql.lib.php:1485 #, fuzzy, php-format #| msgid "Bookmark %s created" msgid "Bookmark %s has been created." @@ -641,7 +643,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "" -#: import_status.php:111 js/messages.php:444 libraries/Util.php:797 +#: import_status.php:111 js/messages.php:445 libraries/Util.php:797 #: libraries/export.lib.php:523 #: libraries/plugins/schema/ExportRelationSchema.php:301 user_password.php:268 msgid "Back" @@ -666,7 +668,7 @@ msgstr "" msgid "General settings" msgstr "Магчымасьці асноўных сувязяў" -#: index.php:191 js/messages.php:617 +#: index.php:191 js/messages.php:618 #: libraries/display_change_password.lib.php:54 #: libraries/display_change_password.lib.php:57 user_password.php:262 msgid "Change password" @@ -793,7 +795,11 @@ msgstr "" msgid "List of changes" msgstr "Няма зьменаў" -#: index.php:453 +#: index.php:438 libraries/server_plugins.lib.php:83 +msgid "License" +msgstr "" + +#: index.php:460 #, fuzzy #| msgid "" #| "Your configuration file contains settings (root with no password) that " @@ -812,7 +818,7 @@ msgstr "" "зьнешняга ўрываньня, і таму вам абавязкова трэба выправіць гэтую хібу ў " "бясьпецы." -#: index.php:470 +#: index.php:477 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -821,7 +827,7 @@ msgstr "" "Вы ўключылі mbstring.func_overload у вашым канфігурацыйным файле PHP. Гэтая " "опцыя несумяшчальная з phpMyAdmin і можа выклікаць пашкоджаньне дадзеных!" -#: index.php:485 +#: index.php:492 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -831,7 +837,7 @@ msgstr "" "шматбайтавую кадыроўку. Без пашырэньня mbstring phpMyAdmin ня можа падзяляць " "радкі карэктна, і гэта можа прывесьці да нечаканых вынікаў." -#: index.php:502 +#: index.php:509 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than " @@ -839,18 +845,18 @@ msgid "" "expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:521 +#: index.php:528 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:537 +#: index.php:544 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Канфігурацыйнаму файлу зараз патрэбная сакрэтная фраза (blowfish_secret)." -#: index.php:550 +#: index.php:557 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. It is strongly recommended to remove it " @@ -858,7 +864,7 @@ msgid "" "may be compromised by unauthorized people downloading your configuration." msgstr "" -#: index.php:566 +#: index.php:573 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -870,12 +876,12 @@ msgstr "" "Дадатковыя магчымасьці работы з зьвязанымі табліцамі былі адключаныя. Каб " "высьветліць чаму, націсьніце %sтут%s." -#: index.php:573 +#: index.php:580 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" -#: index.php:619 +#: index.php:626 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -884,7 +890,7 @@ msgstr "" "Вэрсія вашай бібліятэкі MySQL для PHP %s адрозьніваецца ад вэрсіі вашага " "сэрвэра MySQL %s. Гэта можа выклікаць непрадказальныя паводзіны." -#: index.php:647 +#: index.php:654 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -907,7 +913,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "Ці сапраўды вы жадаеце " -#: js/messages.php:45 libraries/mult_submits.lib.php:397 +#: js/messages.php:45 libraries/mult_submits.lib.php:402 msgid "You are about to DESTROY a complete database!" msgstr "Вы зьбіраеце ВЫДАЛІЦЬ базу дадзеных цалкам!" @@ -1071,7 +1077,7 @@ msgid "Save & close" msgstr "Захаваць як файл" #: js/messages.php:109 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1551 prefs_manage.php:364 +#: libraries/insert_edit.lib.php:1558 prefs_manage.php:364 #: prefs_manage.php:375 msgid "Reset" msgstr "Скінуць" @@ -1152,10 +1158,10 @@ msgstr "Дадаць %s новыя палі" msgid "You have to add at least one column." msgstr "Трэба дадаць прынамсі адно поле." -#: js/messages.php:129 libraries/insert_edit.lib.php:1549 +#: js/messages.php:129 libraries/insert_edit.lib.php:1556 #: templates/columns_definitions/column_definitions_form.phtml:159 #: templates/table/index_form.phtml:237 -#: templates/table/relation/common_form.phtml:108 +#: templates/table/relation/common_form.phtml:127 msgid "Preview SQL" msgstr "" @@ -1208,8 +1214,8 @@ msgstr "Паролі не супадаюць!" msgid "Removing Selected Users" msgstr "Выдаліць выбраных карыстальнікаў" -#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:461 -#: libraries/tracking.lib.php:831 +#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:471 +#: libraries/tracking.lib.php:841 msgid "Close" msgstr "" @@ -1237,7 +1243,7 @@ msgstr "Радок быў выдалены" #. l10n: Other, small valued, queries #: js/messages.php:155 libraries/ServerStatusData.php:130 -#: libraries/server_status_queries.lib.php:148 +#: libraries/server_status_queries.lib.php:150 msgid "Other" msgstr "" @@ -1426,7 +1432,7 @@ msgstr "Пэрсыдзкая" msgid "Traffic" msgstr "Трафік" -#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4330 +#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4331 #: libraries/server_status_monitor.lib.php:258 #, fuzzy #| msgid "General relation features" @@ -1443,9 +1449,9 @@ msgstr "Зьвяць зь сеткай" msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:216 libraries/DisplayResults.php:1477 +#: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1562,7 +1568,7 @@ msgstr "Магчымасьці асноўных сувязяў" msgid "Current settings" msgstr "Магчымасьці асноўных сувязяў" -#: js/messages.php:253 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:253 #, fuzzy #| msgid "Report title" msgid "Chart title" @@ -1654,21 +1660,21 @@ msgstr "Прааналізаваць" msgid "Explain output" msgstr "Тлумачыць SQL" -#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4326 +#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4327 #: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:396 #: libraries/rte/rte_list.lib.php:104 -#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:282 -#: libraries/tracking.lib.php:1623 +#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:284 +#: libraries/tracking.lib.php:1639 msgid "Status" msgstr "Стан" -#: js/messages.php:289 js/messages.php:870 +#: js/messages.php:289 js/messages.php:862 #: libraries/plugins/export/ExportHtmlword.php:484 #: libraries/plugins/export/ExportOdt.php:600 #: libraries/plugins/export/ExportTexytext.php:445 #: libraries/plugins/export/PMA_ExportPdf.php:314 #: libraries/rte/rte_list.lib.php:93 -#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:239 +#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:243 msgid "Time" msgstr "Час" @@ -1764,10 +1770,10 @@ msgid "" msgstr "" #: js/messages.php:322 libraries/Menu.php:355 libraries/Menu.php:457 -#: libraries/Menu.php:578 libraries/Util.php:4329 libraries/Util.php:4344 -#: libraries/Util.php:4361 libraries/config/messages.inc.php:260 +#: libraries/Menu.php:578 libraries/Util.php:4330 libraries/Util.php:4345 +#: libraries/Util.php:4362 libraries/config/messages.inc.php:260 #: libraries/display_import.lib.php:108 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:241 +#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:241 #: setup/frames/menu.inc.php:26 msgid "Import" msgstr "Імрарт" @@ -1835,7 +1841,13 @@ msgstr "" msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 libraries/server_variables.lib.php:159 +#: js/messages.php:343 +#, fuzzy +#| msgid "Add new field" +msgid "No parameters found!" +msgstr "Дадаць новае поле" + +#: js/messages.php:347 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 @@ -1846,72 +1858,72 @@ msgstr "" msgid "Cancel" msgstr "Скасаваць" -#: js/messages.php:349 libraries/Header.php:457 +#: js/messages.php:350 libraries/Header.php:457 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" msgstr "Магчымасьці асноўных сувязяў" -#: js/messages.php:350 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:351 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:353 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:354 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:124 #, fuzzy msgid "Loading…" msgstr "Лякальны" -#: js/messages.php:354 +#: js/messages.php:355 msgid "Request aborted!!" msgstr "" -#: js/messages.php:355 +#: js/messages.php:356 #, fuzzy #| msgid "Processes" msgid "Processing request" msgstr "Працэсы" -#: js/messages.php:356 +#: js/messages.php:357 #, fuzzy #| msgid "Query cache" msgid "Request failed!!" msgstr "Кэш запытаў" -#: js/messages.php:357 +#: js/messages.php:358 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Працэсы" -#: js/messages.php:358 +#: js/messages.php:359 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:359 +#: js/messages.php:360 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:360 libraries/db_common.inc.php:73 +#: js/messages.php:361 libraries/db_common.inc.php:73 #: libraries/db_table_exists.lib.php:33 libraries/server_databases.lib.php:462 msgid "No databases selected." msgstr "Ня выбраная база дадзеных." -#: js/messages.php:361 +#: js/messages.php:362 #, fuzzy #| msgid "Dropping Procedure" msgid "Dropping column" msgstr "Працэдуры" -#: js/messages.php:362 +#: js/messages.php:363 #, fuzzy #| msgid "Add %s field(s)" msgid "Adding primary key" msgstr "Дадаць %s новыя палі" -#: js/messages.php:363 +#: js/messages.php:364 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1921,237 +1933,237 @@ msgstr "Дадаць %s новыя палі" msgid "OK" msgstr "OK" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:367 +#: js/messages.php:368 #, fuzzy #| msgid "Rename database to" msgid "Renaming databases" msgstr "Перайменаваць базу дадзеных у" -#: js/messages.php:368 +#: js/messages.php:369 #, fuzzy #| msgid "Copy database to" msgid "Copying database" msgstr "Капіяваць базу дадзеных у" -#: js/messages.php:369 +#: js/messages.php:370 #, fuzzy #| msgid "Charset" msgid "Changing charset" msgstr "Кадыроўка" -#: js/messages.php:373 libraries/Util.php:3289 +#: js/messages.php:374 libraries/Util.php:3289 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Адключыць праверку зьнешніх ключоў" -#: js/messages.php:376 +#: js/messages.php:377 #, fuzzy msgid "Failed to get real row count." msgstr "Памылка запісу на дыск." -#: js/messages.php:379 +#: js/messages.php:380 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Пошук" -#: js/messages.php:380 +#: js/messages.php:381 #, fuzzy msgid "Hide search results" msgstr "SQL-запыт" -#: js/messages.php:381 +#: js/messages.php:382 #, fuzzy msgid "Show search results" msgstr "SQL-запыт" -#: js/messages.php:382 +#: js/messages.php:383 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Прагляд" -#: js/messages.php:383 +#: js/messages.php:384 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Выдаленьне %s" -#: js/messages.php:387 +#: js/messages.php:388 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:388 libraries/DisplayResults.php:4832 -#: libraries/DisplayResults.php:5091 libraries/Menu.php:347 -#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3709 -#: libraries/Util.php:3710 libraries/Util.php:4328 libraries/Util.php:4343 -#: libraries/Util.php:4360 libraries/config/messages.inc.php:254 +#: js/messages.php:389 libraries/DisplayResults.php:4850 +#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 +#: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 +#: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2448 -#: libraries/server_privileges.lib.php:2527 -#: libraries/server_privileges.lib.php:2873 -#: libraries/server_privileges.lib.php:3532 -#: libraries/server_status_monitor.lib.php:321 prefs_manage.php:306 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2875 +#: libraries/server_privileges.lib.php:3543 +#: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 msgid "Export" msgstr "Экспарт" -#: js/messages.php:391 libraries/rte/rte_routines.lib.php:742 +#: js/messages.php:392 libraries/rte/rte_routines.lib.php:742 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:392 +#: js/messages.php:393 #, fuzzy, php-format #| msgid "Number of fields" msgid "Values for column %s" msgstr "Колькасьць палёў" -#: js/messages.php:393 +#: js/messages.php:394 msgid "Values for a new column" msgstr "" -#: js/messages.php:394 +#: js/messages.php:395 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:395 +#: js/messages.php:396 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Дадаць новага карыстальніка" -#: js/messages.php:399 +#: js/messages.php:400 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:403 +#: js/messages.php:404 #, fuzzy msgid "Hide query box" msgstr "SQL-запыт" -#: js/messages.php:404 +#: js/messages.php:405 #, fuzzy msgid "Show query box" msgstr "SQL-запыт" -#: js/messages.php:405 libraries/Console.php:88 libraries/Console.php:217 -#: libraries/DisplayResults.php:3457 libraries/DisplayResults.php:4816 +#: js/messages.php:406 libraries/Console.php:88 libraries/Console.php:217 +#: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4834 #: libraries/Index.php:721 libraries/Util.php:727 libraries/Util.php:1238 -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:119 +#: libraries/server_user_groups.lib.php:121 #: libraries/server_variables.lib.php:242 #: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 msgid "Edit" msgstr "Рэдагаваць" -#: js/messages.php:406 libraries/Console.php:89 libraries/DbSearch.php:360 -#: libraries/DisplayResults.php:3526 libraries/DisplayResults.php:4800 +#: js/messages.php:407 libraries/Console.php:89 libraries/DbSearch.php:360 +#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4818 #: libraries/central_columns.lib.php:854 #: libraries/central_columns.lib.php:1200 libraries/display_export.lib.php:227 -#: libraries/server_user_groups.lib.php:129 -#: libraries/sql_query_form.lib.php:416 libraries/tracking.lib.php:480 +#: libraries/server_user_groups.lib.php:131 +#: libraries/sql_query_form.lib.php:417 libraries/tracking.lib.php:490 #: setup/frames/index.inc.php:187 setup/frames/index.inc.php:295 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Выдаліць" -#: js/messages.php:407 libraries/DisplayResults.php:915 -#: libraries/DisplayResults.php:923 +#: js/messages.php:408 libraries/DisplayResults.php:919 +#: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:408 -#: libraries/controllers/table/TableSearchController.php:435 -#: libraries/controllers/table/TableSearchController.php:920 -#: libraries/sql.lib.php:193 tbl_change.php:159 +#: js/messages.php:409 +#: libraries/controllers/table/TableSearchController.php:432 +#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "Праглядзець зьнешнія значэньні" -#: js/messages.php:409 +#: js/messages.php:410 msgid "No auto-saved query" msgstr "" -#: js/messages.php:410 +#: js/messages.php:411 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Зьменная" -#: js/messages.php:413 libraries/normalization.lib.php:889 +#: js/messages.php:414 libraries/normalization.lib.php:889 msgid "Pick" msgstr "" -#: js/messages.php:414 +#: js/messages.php:415 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "Ніводны радок ня выбраны" -#: js/messages.php:415 +#: js/messages.php:416 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Пошук у базе дадзеных" -#: js/messages.php:417 +#: js/messages.php:418 #, 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:420 +#: js/messages.php:421 msgid "See more" msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Are you sure?" msgstr "" -#: js/messages.php:423 +#: js/messages.php:424 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Атрыбуты" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Першасны ключ быў дададзены да %s." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 #, fuzzy #| msgid "Change" msgid "Taking you to next step…" msgstr "Зьмяніць" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 #, fuzzy @@ -2159,563 +2171,524 @@ msgstr "" msgid "End of step" msgstr "У канцы табліцы" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 #, fuzzy msgid "Done" msgstr "Дадзеныя" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Ня выбраная база дадзеных." -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Дадаць прывілеі на наступную табліцу" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Ня выбраная база дадзеных." -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Захаваць" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy msgid "Hide search criteria" msgstr "SQL-запыт" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy msgid "Show search criteria" msgstr "SQL-запыт" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Пошук" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Назвы калёнак" -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Назвы калёнак" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 #, fuzzy msgid "Maximum value:" msgstr "Базы дадзеных адсутнічаюць" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy msgid "Hide find and replace criteria" msgstr "SQL-запыт" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy msgid "Show find and replace criteria" msgstr "SQL-запыт" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Дадаць/выдаліць калёнку крытэру" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Памер указальніка на дадзеныя" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ігнараваць" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Скапіяваць" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "" -#: js/messages.php:508 +#: js/messages.php:509 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Радкі падзеленыя" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Add a new User" msgid "Inner ring" msgstr "Дадаць новага карыстальніка" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Радкі падзеленыя" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Выберыце спасылкавы ключ" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Выберыце зьнешні ключ" -#: js/messages.php:529 +#: js/messages.php:530 #, 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:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Старонка:" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 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:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 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:539 +#: js/messages.php:540 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "Выбраць усё" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Калі ласка, выберыце старонку для рэдагаваньня" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid page name" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 #, fuzzy #| msgid "Relational schema" msgid "Export relational schema" msgstr "Рэляцыйная схема" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Мадыфікацыі былі захаваныя" -#: js/messages.php:550 +#: js/messages.php:551 #, fuzzy, php-format #| msgid "Number of fields" msgid "Add an option for column \"%s\"." msgstr "Колькасьць палёў" -#: js/messages.php:551 +#: js/messages.php:552 #, fuzzy, php-format #| msgid "%1$d row(s) affected." msgid "%d object(s) created." msgstr "Зьменена радкоў: %1$d." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Адправіць" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Назвы калёнак" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Паказаць усе" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Першапачатковая пазыцыя" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Скасаваць" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Спынена" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 #, fuzzy msgid "Import status" msgstr "Імпартаваць файлы" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "Парог файла логу" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Выберыце табліцу(ы)" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 #, fuzzy msgid "Go to link:" msgstr "Базы дадзеных адсутнічаюць" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Назвы калёнак" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Згенэраваць пароль" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Згенэраваць" -#: js/messages.php:620 +#: js/messages.php:621 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Пан" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Паказаць усе" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "Дадаць новае поле" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Паказаць сетку" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 #, fuzzy msgid "Link with main panel" msgstr "Налады экспарту базы дадзеных" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 #, fuzzy msgid "Unlink from main panel" msgstr "Налады экспарту базы дадзеных" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 #, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "Табліц" - -#: js/messages.php:633 -#, fuzzy -#| msgid "View" -msgid "views" -msgstr "Выгляд" - -#: js/messages.php:634 -#, fuzzy -#| msgid "Procedures" -msgid "procedures" -msgstr "Працэдуры" - -#: js/messages.php:635 -#, fuzzy -#| msgid "Event" -msgid "events" -msgstr "Падзея" - -#: js/messages.php:636 -#, fuzzy -#| msgid "Functions" -msgid "functions" -msgstr "Функцыі" - -#: js/messages.php:640 -#, 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:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2723,137 +2696,137 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 #, fuzzy msgid ", latest stable version:" msgstr "Стварыць сувязь" -#: js/messages.php:649 +#: js/messages.php:641 #, fuzzy msgid "up to date" msgstr "Базы дадзеных адсутнічаюць" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 #, fuzzy msgid "Create view" msgstr "Стварыць сувязь" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy msgid "Send error report" msgstr "ID сэрвэра" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy msgid "Submit error report" msgstr "ID сэрвэра" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Магчымасьці асноўных сувязяў" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Паказаць адкрытыя табліцы" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ігнараваць" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Паказаць гэты запыт зноў" -#: js/messages.php:701 +#: js/messages.php:693 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Ці сапраўды вы жадаеце " -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL-запыт" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Камэнтар да табліцы" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy msgid "Hide arguments" msgstr "SQL-запыт" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Папярэдняя старонка" -#: js/messages.php:748 +#: js/messages.php:740 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2861,96 +2834,96 @@ msgid "Next" msgstr "Наступная старонка" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Агулам" -#: js/messages.php:755 +#: js/messages.php:747 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Двайковы" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:749 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Сак" -#: js/messages.php:758 +#: js/messages.php:750 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Кра" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Тра" -#: js/messages.php:760 +#: js/messages.php:752 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Чэр" -#: js/messages.php:761 +#: js/messages.php:753 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Ліп" -#: js/messages.php:762 +#: js/messages.php:754 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Жні" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:756 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Кас" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Сту" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Лют" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Сак" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Кра" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2958,78 +2931,78 @@ msgid "May" msgstr "Тра" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Чэр" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Ліп" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Жні" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Вер" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Кас" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Ліс" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Сьн" -#: js/messages.php:801 +#: js/messages.php:793 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ндз" -#: js/messages.php:802 +#: js/messages.php:794 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пан" -#: js/messages.php:803 +#: js/messages.php:795 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Аўт" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:798 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пят" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3037,86 +3010,86 @@ msgid "Sun" msgstr "Ндз" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Пан" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Аўт" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Сер" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Цач" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Пят" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Суб" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ндз" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пан" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Аўт" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Сер" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Цач" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пят" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Суб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 #, fuzzy #| msgid "Wiki" msgid "Wk" @@ -3125,81 +3098,81 @@ msgstr "Wiki" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Няма" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:864 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "выкарыстоўваецца" -#: js/messages.php:873 +#: js/messages.php:865 #, fuzzy #| msgid "per second" msgid "Second" msgstr "у сэкунду" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Выкарыстоўваць тэкставае поле" -#: js/messages.php:886 +#: js/messages.php:878 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid email address" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:887 +#: js/messages.php:879 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid URL" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:889 +#: js/messages.php:883 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date ( ISO )" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:890 +#: js/messages.php:885 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:891 +#: js/messages.php:888 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid credit card number" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:892 +#: js/messages.php:890 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" @@ -3211,53 +3184,53 @@ msgstr "%d не зьяўляецца карэктным нумарам радк msgid "Please enter the same value again" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter at least {0} characters" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value between {0} and {1}" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:898 +#: js/messages.php:917 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value less than or equal to {0}" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:899 +#: js/messages.php:922 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value greater than or equal to {0}" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:901 +#: js/messages.php:928 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date or time" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:902 +#: js/messages.php:933 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid HEX input" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Памылка" @@ -3345,11 +3318,12 @@ msgstr "па запыту" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3398,7 +3372,7 @@ msgstr "" msgid "Explain" msgstr "Тлумачыць SQL" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Прафіляваньне" @@ -3440,8 +3414,8 @@ msgid "History" msgstr "Гісторыя SQL" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3622,7 +3596,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Перайсьці да скапіяванай табліцы" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -3630,28 +3604,28 @@ msgid "" "configured)." msgstr "(або сокет лякальнага сэрвэра MySQL не сканфігураваны правільна)" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Сэрвэр не адказвае" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Падрабязьней…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Не атрымалася ўсталяваць злучэньне для controluser, вызначанае ў вашым " "канфігурацыйным файле." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3661,8 +3635,8 @@ msgstr "" msgid "Ascending" msgstr "прамы" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3835,8 +3809,8 @@ msgstr[0] "%s супадзеньняў у табліцы %s" msgstr[1] "%s супадзеньняў у табліцы %s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3887,29 +3861,29 @@ msgstr "Зьняць усе адзнакі" msgid "Inside column:" msgstr "Унутры поля:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 #, fuzzy msgid "Save edited data" msgstr "Хатняя тэчка дадзеных" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "Дадаць/выдаліць калёнку крытэру" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 #, fuzzy msgid "Filter rows" msgstr "Файлы" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Search in database" msgid "Search this table" msgstr "Пошук у базе дадзеных" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 #, fuzzy #| msgid "Begin" @@ -3917,7 +3891,7 @@ msgctxt "First page" msgid "Begin" msgstr "Першая старонка" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 #, fuzzy @@ -3926,7 +3900,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Папярэдняя старонка" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 #, fuzzy @@ -3935,7 +3909,7 @@ msgctxt "Next page" msgid "Next" msgstr "Наступная старонка" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 #, fuzzy #| msgid "End" @@ -3943,85 +3917,85 @@ msgctxt "Last page" msgid "End" msgstr "Апошняя старонка" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Усе" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of fields" msgid "Number of rows:" msgstr "Колькасьць палёў" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Сартаваць па ключы" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Частковыя тэксты" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Поўныя тэксты" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Ключ сувязі" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Disable foreign key checks" msgid "Display column for relations" msgstr "Адключыць праверку зьнешніх ключоў" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Пераўтварэньне MIME-тыпу браўзэрам" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Радок быў выдалены" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Спыніць" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Значэньне можа быць прыблізным. Гл. [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -4029,7 +4003,8 @@ msgstr "Значэньне можа быць прыблізным. Гл. [doc@fa msgid "Your SQL query has been executed successfully." msgstr "Ваш SQL-запыт быў пасьпяхова выкананы" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -4038,43 +4013,43 @@ msgstr "" "Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да " "%sдакумэнтацыі%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Паказаныя запісы" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "усяго" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "Запыт выконваўся %01.4f сэк" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "З адзначанымі:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -4082,27 +4057,27 @@ msgstr "З адзначанымі:" msgid "Check all" msgstr "Адзначыць усё" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Вэрсія для друку" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Дзеяньні з вынікамі запытаў" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Паказаць PDF-схему" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 #, fuzzy #| msgid "Link not found" msgid "Link not found!" @@ -4212,19 +4187,19 @@ msgstr "Індэкс ня вызначаны!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Індэксы" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -4233,24 +4208,24 @@ msgid "Action" msgstr "Дзеяньне" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Імя ключа" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Унікальнае" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Сьціснутая" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Колькасьць элемэнтаў" @@ -4258,8 +4233,8 @@ msgstr "Колькасьць элемэнтаў" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -4269,8 +4244,8 @@ msgid "Collation" msgstr "Супастаўленьне" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -4286,15 +4261,15 @@ msgstr "Першасны ключ быў выдалены." msgid "Index %s has been dropped." msgstr "Індэкс %s быў выдалены." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Выдаліць" @@ -4333,12 +4308,13 @@ msgstr "Выгляд" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4346,7 +4322,7 @@ msgstr "Табліца" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4355,8 +4331,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4364,41 +4340,41 @@ msgid "Search" msgstr "Пошук" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Уставіць" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Прывілеі" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Апэрацыі" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4409,16 +4385,16 @@ msgstr "Трыгеры" msgid "Database seems to be empty!" msgstr "База дадзеных — пустая!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Запыт згодна прыкладу" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Працэдуры" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4426,22 +4402,22 @@ msgstr "Працэдуры" msgid "Events" msgstr "Падзеі" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Дызайнэр" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Дадаць/выдаліць калёнку крытэру" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Базы дадзеных" @@ -4452,33 +4428,33 @@ msgid "User accounts" msgstr "Карыстальнік" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Двайковы лог" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Рэплікацыя" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Зьменныя" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Кадыроўкі" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Машыны" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4810,7 +4786,7 @@ msgstr "Немагчыма перайменаваць індэкс у PRIMARY!" msgid "No index parts defined!" msgstr "Часткі індэксу ня вызначаныя!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Памылка стварэньня зьнешняга ключа на %1$s (праверце тыпы калёнак)" @@ -5239,39 +5215,39 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "тэчка вэб-сэрвэра для загрузкі файлаў" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Немагчыма адкрыць пазначаную вамі тэчку для загрузкі файлаў." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 #, fuzzy msgid "There are no files to upload!" msgstr "Праверыць табліцу" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Ачысьціць" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Друк" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 #, fuzzy #| msgid "User" msgid "Users" @@ -5453,8 +5429,8 @@ msgid "Add new column" msgstr "Дадаць %s новыя палі" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5525,19 +5501,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "Вам трэба абнавіць %s да вэрсіі %s ці пазьнейшай." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -6379,7 +6355,7 @@ msgid "Remember file name template" msgstr "Шаблён назвы файла" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Дадаць значэньне AUTO_INCREMENT" @@ -6422,7 +6398,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Дадаць %s" @@ -8137,7 +8113,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 #, fuzzy msgid "Retain query box" msgstr "SQL-запыт" @@ -8433,113 +8409,35 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Тэкст Open Document" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Табліца %s была ачышчаная." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "Выгляд %s быў выдалены" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "Табліца %s была выдаленая" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "невядома" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: libraries/controllers/TableStructureController.php:250 -#, fuzzy -#| msgid "No rows selected" -msgid "No column selected." -msgstr "Ніводны радок ня выбраны" - -#: libraries/controllers/TableStructureController.php:484 -#, fuzzy -#| msgid "The selected users have been deleted successfully." -msgid "The columns have been moved successfully." -msgstr "Выбраныя карыстальнікі былі пасьпяхова выдаленыя." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "Табліца %1$s была пасьпяхова зьмененая." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -#, fuzzy -#| msgid "Query type" -msgid "Query error" -msgstr "Тып запыту" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Зьмяніць" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Індэкс" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Поўнатэкстэкставае" - -#: libraries/controllers/TableStructureController.php:1201 -#, fuzzy -#| msgid "Browse distinct values" -msgid "Distinct values" -msgstr "Прагляд розных значэньняў" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8555,6 +8453,14 @@ msgstr "" msgid "No data to display" msgstr "Базы дадзеных адсутнічаюць" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "Табліца %1$s была пасьпяхова зьмененая." + #: libraries/controllers/table/TableRelationController.php:212 #, fuzzy #| msgid "Thread %s was successfully killed." @@ -8567,24 +8473,94 @@ msgstr "Паток %s быў пасьпяхова спынены." msgid "Internal relations were successfully updated." msgstr "Унутраная сувязь дададзеная" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Search" msgid "Table search" msgstr "Пошук" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Search" msgid "Zoom search" msgstr "Пошук" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy msgid "Find and replace" msgstr "SQL-запыт" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: libraries/controllers/table/TableStructureController.php:251 +#, fuzzy +#| msgid "No rows selected" +msgid "No column selected." +msgstr "Ніводны радок ня выбраны" + +#: libraries/controllers/table/TableStructureController.php:485 +#, fuzzy +#| msgid "The selected users have been deleted successfully." +msgid "The columns have been moved successfully." +msgstr "Выбраныя карыстальнікі былі пасьпяхова выдаленыя." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +#, fuzzy +#| msgid "Query type" +msgid "Query error" +msgstr "Тып запыту" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Зьмяніць" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Індэкс" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Поўнатэкстэкставае" + +#: libraries/controllers/table/TableStructureController.php:1209 +#, fuzzy +#| msgid "Browse distinct values" +msgid "Distinct values" +msgstr "Прагляд розных значэньняў" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8594,7 +8570,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Няма зьменаў" @@ -8670,7 +8646,7 @@ msgstr "Стварыць" msgid "Create database:" msgstr "Стварыць новую базу дадзеных" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Без прывілеяў" @@ -9474,71 +9450,71 @@ msgid "Dump has been saved to file %s." msgstr "Дамп захаваны ў файл %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL вярнула пусты вынік (то бок нуль радкоў)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Базы дадзеных адсутнічаюць" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Базы дадзеных адсутнічаюць" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Толькі структуру" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, fuzzy, php-format #| msgid "Export views" msgid "Go to view: %s" msgstr "Тып экспарту" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" @@ -9562,74 +9538,74 @@ msgstr "Функцыя" msgid "Binary" msgstr "Двайковы" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "З-за вялікай даўжыні,
гэтае поле ня можа быць адрэдагаванае " -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Двайковыя дадзеныя — не рэдагуюцца" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Або" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "тэчка вэб-сэрвэра для загрузкі файлаў" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Уставіць" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Пачаць устаўку зноў з %s-га радку" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "і пасьля" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Уставіць як новы радок" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 #, fuzzy msgid "Show insert query" msgstr "У выглядзе SQL-запыту" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Перайсьці да папярэдняй старонкі" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Дадаць яшчэ адзін радок" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Вярнуцца да гэтай старонкі" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Рэдагаваць наступны радок" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9639,7 +9615,7 @@ msgstr "" "Выкарыстоўвайце клявішу TAB для перамяшчэньня ад значэньня да значэньня або " "CTRL+стрэлкі для перамяшчэньня ў любое іншае месца" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9651,11 +9627,11 @@ msgstr "" msgid "Value" msgstr "Значэньне" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "У выглядзе SQL-запыту" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "ID устаўленага радку: %1$d" @@ -9673,45 +9649,45 @@ msgstr "Няма" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix:" msgstr "Замяніць дадзеныя табліцы дадзенымі з файла" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix:" msgstr "Замяніць дадзеныя табліцы дадзенымі з файла" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Пят" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Add new field" msgid "Add table prefix:" msgstr "Дадаць новае поле" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 #, fuzzy #| msgid "Add new field" msgid "Add prefix" msgstr "Дадаць новае поле" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -9943,8 +9919,8 @@ msgstr "Працэдуры" msgid "Views:" msgstr "Выгляд" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Паказаць" @@ -9985,10 +9961,9 @@ msgstr[1] "" msgstr[2] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "table name" -msgid "Filter databases by name or regex" -msgstr "імя табліцы" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -9997,12 +9972,6 @@ msgstr "імя табліцы" msgid "Clear fast filter" msgstr "Захаваць як файл" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "table name" -msgid "Filter by name or regex" -msgstr "імя табліцы" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -10408,7 +10377,7 @@ msgstr "Перайменаваць базу дадзеных у" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10419,7 +10388,7 @@ msgstr "Вы ня маеце дастатковых прывілеяў быць #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -10442,18 +10411,18 @@ msgstr "Перайменаваць базу дадзеных у" msgid "Drop the database (DROP)" msgstr "Базы дадзеных адсутнічаюць" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Толькі структуру" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Структуру і дадзеныя" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Толькі дадзеныя" @@ -10467,7 +10436,7 @@ msgstr "Капіяваць базу дадзеных у" msgid "CREATE DATABASE before copying" msgstr "выканаць CREATE DATABASE перад капіяваньнем" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Дадаць абмежаваньні" @@ -10507,63 +10476,63 @@ msgstr "Машына захаваньня дадзеных" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Скапіяваць табліцу ў (база дадзеных.табліца)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Перайсьці да скапіяванай табліцы" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Абслугоўваньне табліцы" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Аналізаваць табліцу" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Праверыць табліцу" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Праверыць табліцу" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Дэфрагмэнтаваць табліцу" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "Кэш табліцы %s быў ачышчаны." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Скінуць кэш табліцы (\"FLUSH\")" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Аптымізаваць табліцу" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Рамантаваць табліцу" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 #, fuzzy @@ -10571,103 +10540,103 @@ msgstr "Рамантаваць табліцу" msgid "Delete data or table" msgstr "Дамп дадзеных табліцы" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 #, fuzzy msgid "Delete the table (DROP)" msgstr "Базы дадзеных адсутнічаюць" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Прааналізаваць" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Праверыць" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Аптымізаваць" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Перабудаваць" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Адрамантаваць" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy msgid "Coalesce" msgstr "Няма табліц" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "Падтрымка падзелаў" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "Падзел %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "Скасаваць падзел на часткі" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Праверыць цэласнасьць дадзеных:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Немагчыма перанесьці табліцу ў саму сябе!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Немагчыма скапіяваць табліцу ў саму сябе!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Табліца %s была перанесеная ў %s." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Табліца %s была скапіяваная ў %s." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "Табліца %s была перанесеная ў %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "Табліца %s была скапіяваная ў %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Пустая назва табліцы!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10860,7 +10829,7 @@ msgstr "Налады экспарту базы дадзеных" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Дамп дадзеных табліцы" @@ -10886,21 +10855,21 @@ msgstr "Апісаньне" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Структура табліцы" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Структура для прагляду" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Замяняльная структура для прагляду" @@ -11018,7 +10987,7 @@ msgid "Database:" msgstr "База дадзеных" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11134,7 +11103,7 @@ msgid "Data creation options" msgstr "Опцыі пераўтварэньня" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -11203,8 +11172,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11212,92 +11181,92 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Export type" msgid "Metadata" msgstr "Тып экспарту" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Створаная:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Апошняе абнаўленьне:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Апошняя праверка:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "выкарыстоўваецца" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Абмежаваньні для экспартаваных табліц" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Абмежаваньні для табліцы" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Абмежаваньні для экспартаваных табліц" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "У табліцы(ах):" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Дадаць значэньне AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Дадаць значэньне AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "MIME-тыпы табліцы" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "Сувязі ў табліцы" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Структура для прагляду" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11557,9 +11526,9 @@ msgstr "Рэляцыйная схема" msgid "Table of contents" msgstr "Зьмест" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Дадаткова" @@ -11809,63 +11778,63 @@ msgstr "Фарматуе тэкст як SQL-запыт з падсьвечан msgid "Formats text as XML with syntax highlighting." msgstr "Фарматуе тэкст як SQL-запыт з падсьвечаным сынтаксісам." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Памылка: сувязь ужо існуе." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "Сувязь FOREIGN KEY была дададзеная" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Памылка: сувязь не дададзеная." -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Relational features are disabled!" msgstr "Памылка: сувязь не дададзеная." -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "Унутраная сувязь дададзеная" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "Памылка: сувязь не дададзеная." -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "Сувязь FOREIGN KEY была дададзеная" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Памылка: сувязь не дададзеная." -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "Памылка: сувязь не дададзеная." -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11923,108 +11892,108 @@ msgstr "" "За інфармацыяй як абнавіць табліцу column_comments зьвярніцеся, калі ласка, " "да дакумэнтацыі." -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Закладзены SQL-запыт" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "Гісторыя SQL" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy msgid "Persistent favorite tables" msgstr "Праверыць табліцу" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Modifications have been saved" msgid "Configurable menus" msgstr "Мадыфікацыі былі захаваныя" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Rename table to" msgid "Remembering Designer Settings" msgstr "Перайменаваць табліцу ў" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy msgid "Saving export templates" msgstr "Тып экспарту" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "няма апісаньня" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -12207,8 +12176,8 @@ msgstr "Імя карыстальніка" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Імя карыстальніка" @@ -12216,7 +12185,7 @@ msgstr "Імя карыстальніка" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Пароль" @@ -12933,7 +12902,7 @@ msgstr[1] "%s базаў дадзеных былі пасьпяхова выда msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 #, fuzzy msgid "Version" msgstr "Пэрсыдзкая" @@ -12942,103 +12911,99 @@ msgstr "Пэрсыдзкая" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Адключана" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Без прывілеяў." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Уключае ўсе прывілеі, апроч GRANT." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Дазваляе чытаць дадзеныя." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Дазваляе ўстаўляць і замяняць дадзеныя." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Дазваляе зьмяняць дадзеныя." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Дазваляе выдаляць дадзеныя." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Дазваляе ствараць новыя базы дадзеных і табліцы." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Дазваляе выдаляць базы дадзеных і табліцы." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Дазваляе перазагружаць налады сэрвэра і ачышчаць кэш сэрвэра." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Дазваляе спыняць сэрвэр." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 #, fuzzy #| msgid "Allows viewing processes of all users" msgid "Allows viewing processes of all users." msgstr "Дазваляе праглядаць працэсы ўсіх карыстальнікаў" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" "Дазваляе імпартаваць дадзеныя з файлаў і экспартаваць дадзеныя ў файлы." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "Не працуе ў гэтай вэрсіі MySQL." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Дазваляе ствараць і выдаляць індэксы." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Дазваляе зьмяняць структуру існых табліц." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Дае доступ да поўнага сьпісу базаў дадзеных." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -13049,41 +13014,41 @@ msgstr "" "глябальных зьменных або спыненьне патокаў іншых карыстальнікаў." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Дазваляе ствараць часовыя табліцы." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Дазваляе блякаваць табліцы для бягучага патоку." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Неабходна для рэплікацыі slaves." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "Дазваляе карыстальніку пытацца, дзе знаходзяцца slaves / masters." #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Дазваляе ствараць новыя прагляды." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "Дазваляе ствараць падзеі ў пляніроўніку падзеяў" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 #, fuzzy #| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." @@ -13091,28 +13056,28 @@ msgstr "Дазваляе стварэньне і выдаленьне трыге #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Дазваляе выкананьне запытаў SHOW CREATE VIEW." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Дазваляе ствараць праграмы, якія захоўваюцца." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Дазваляе зьмяняць і выдаляць праграмы, якія захоўваюцца." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Дазваляе ствараць, выдаляць і пераймяноўваць уліковыя запісы карыстальнікаў." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Дазваляе выкананьне праграмаў, якія захоўваюцца." @@ -13126,8 +13091,8 @@ msgstr "Няма" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -13171,14 +13136,14 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Заўвага: Пазначэньне гэтых опцыяў як 0 (нуль) здымае абмежаваньне." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Абмяжоўвае колькасьць запытаў, якія карыстальнік можа адправіць на сэрвэр на " "працягу гадзіны." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -13187,22 +13152,22 @@ msgstr "" "якія карыстальнік можа выканаць на працягу гадзіны." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Абмяжоўвае колькасьць новых злучэньняў, якія карыстальнік можа адкрыць на " "працягу гадзіны." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Абмяжоўвае колькасьць адначасовых злучэньняў, якія можа мець карыстальнік." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -13210,7 +13175,7 @@ msgid "Routine" msgstr "Працэдуры" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -13231,14 +13196,14 @@ msgstr "Дазваляе выкананьне праграмаў, якія за #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Прывілеі, спэцыфічныя для табліцы" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -13250,7 +13215,7 @@ msgid "Administration" msgstr "Адміністраваньне" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Глябальныя прывілеі" @@ -13261,15 +13226,15 @@ msgid "Global" msgstr "глябальны" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Спэцыфічныя прывілеі базы дадзеных" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Дазваляе ствараць новыя табліцы." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Дазваляе выдаляць табліцы." @@ -13289,7 +13254,7 @@ msgid "Native MySQL Authentication" msgstr "Апаратная аўтэнтыфікацыя скончылася няўдала" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Інфармацыя пра ўваход" @@ -13314,8 +13279,8 @@ msgstr "Імя карыстальніка" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Log name" msgid "Host name" @@ -13336,247 +13301,247 @@ msgstr "Аўтэнтыфікацыя…" msgid "Password Hashing Method" msgstr "Хэшаваньне паролю" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "Пароль для %s пасьпяхова зьменены." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Вы анулявалі прывілеі для %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Любы карыстальнік" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "База дадзеных для карыстальніка" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" "Стварыць базу дадзеных з такім самым імем і надзяліць усімі прывілеямі." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Надзяліць усімі прывілеямі базы з іменамі па масцы (імя карыстальніка_%)." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, fuzzy, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Праверыць прывілеі для базы \"%s\"." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Карыстальнікі з правамі доступу да \"%s\"" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Выгляд %s быў выдалены" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Grant" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Не знойдзены карыстальнік." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Любы" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "глябальны" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "спэцыфічны для базы дадзеных" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "шаблён" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "спэцыфічны для базы дадзеных" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Рэдагаваць прывілеі" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Ануляваць" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 #, fuzzy msgid "Edit user group" msgstr "Вэб-сэрвэр" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… пакінуць старога." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… выдаліць старога з табліцы карыстальнікаў." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… ануляваць усе актыўныя прывілеі старога і пасьля выдаліць яго." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… выдаліць старога з табліцы карыстальнікаў і пасьля перазагрузіць прывілеі." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Зьмяніць рэгістрацыйную інфармацыю / Капіяваць карыстальніка" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Стварыць новага карыстальніка з такімі ж прывілеямі і …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Спэцыфічныя прывілеі калёнак" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Выдаліць выбраных карыстальнікаў" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Ануляваць усе актыўныя прывілеі карыстальнікаў і пасьля выдаліць іх." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "Выдаліць базы дадзеных, якія маюць такія ж імёны як і карыстальнікі." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "На выбраныя карыстальнікі для выдаленьня!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Перазагрузіць прывілеі" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Выбраныя карыстальнікі былі пасьпяхова выдаленыя." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Вы зьмянілі прывілеі для %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "Выдаленьне %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Прывілеі былі пасьпяхова перазагружаныя." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "Карыстальнік %s ужо існуе!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Прывілеі" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Карыстальнік" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Рэдагаваць прывілеі" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "User" msgid "User account" msgstr "Карыстальнік" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Карыстальнікі" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13589,7 +13554,7 @@ msgstr "" "якія выкарыстоўвае сэрвэр, калі яны былі зьмененыя ўручную. У гэтым выпадку " "вам трэба %sперазагрузіць прывілеі%s да таго, як вы працягнеце." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13608,11 +13573,11 @@ msgstr "" "якія выкарыстоўвае сэрвэр, калі яны былі зьмененыя ўручную. У гэтым выпадку " "вам трэба %sперазагрузіць прывілеі%s да таго, як вы працягнеце." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "Вылучаны карыстальнік ня знойдзены ў табліцы прывілеяў." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Быў дададзены новы карыстальнік." @@ -13861,33 +13826,33 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 #, fuzzy msgid "Refresh rate" msgstr "Абнавіць" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Дадаць/выдаліць калёнку крытэру" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -13956,7 +13921,7 @@ msgid "Statements" msgstr "Выразы" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -13989,19 +13954,19 @@ msgstr "Паказаць адкрытыя табліцы" msgid "Related links:" msgstr "Сувязі" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Колькасьць сынхранізавыных запісаў, зробленых у лог-файл." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -14011,17 +13976,17 @@ msgstr "" "якія перавысілі значэньне binlog_cache_size і выкарыстоўвалі часовы файл для " "захоўваньня выразаў транзакцыі." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Колькасьць транзакцыяў, якія выкарыстоўвалі часовы двайковы кэш запытаў." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -14033,11 +13998,11 @@ msgstr "" "павялічыць значэньне tmp_table_size, каб часовыя табліцы захоўваліся ў " "памяці, а не на дыску." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "Колькасьць часовых файлаў, створаных mysqld." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -14045,7 +14010,7 @@ msgstr "" "Колькасьць часовых табліц, разьмешчаных у памяці, якія былі аўтаматычна " "створаныя сэрвэрам падчас выкананьня выразаў." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -14053,7 +14018,7 @@ msgstr "" "Колькасьць радкоў, запісаных з INSERT DELAYED, з-за якіх адбыліся пэўныя " "памылкі (пэўна, дубляваныя ключы)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -14062,23 +14027,23 @@ msgstr "" "Кожная табліца, на якой выконваецца INSERT DELAYED атрымлівае свой уласны " "паток." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "Колькасьць запісаных INSERT DELAYED радкоў." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "Колькасьць выкананых FLUSH-выразаў." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "Колькасьць унутраных COMMIT-выразаў." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "Колькасьць разоў выдаленьня радка з табліцы." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -14088,7 +14053,7 @@ msgstr "" "яна табліцу з дадзеным імем. Гэта называецца высьвятленьнем. " "Handler_discover паказвае колькасьць высьвятленьняў табліц." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -14099,7 +14064,7 @@ msgstr "" "сканаваньняў; напрыклад, SELECT col1 FROM foo, улічваючы, што col1 " "індэксаваная." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -14107,7 +14072,7 @@ msgstr "" "Колькасьць запытаў на чытаньне радка з выкарыстаньнем ключа. Калі яна " "вялікая, гэта добрая прыкмета таго, што запыты і табліцы добра індэксаваныя." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -14117,7 +14082,7 @@ msgstr "" "павялічваецца, калі выконваецца запыт на індэксаваную калёнку з шэрагам " "абмежаваньняў або калі адбываецца сканаваньне індэксаў." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -14125,7 +14090,7 @@ msgstr "" "Колькасьць запытаў чытаньня папярэдні радок у ключавым парадку. Гэты мэтад " "чытаньня выкарыстоўваецца пераважна для аптымізацыі ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -14137,7 +14102,7 @@ msgstr "" "прысутнічае шмат запытаў, якія патрабуюць ад MySQL перагляд табліцы цалкам " "або выконваюцца аб'яднаньні, якія няправільна выкарыстоўваюць ключы." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -14149,37 +14114,37 @@ msgstr "" "што табліцы індэксаваныя няправільна або запыты не напісаныя так, каб " "выкарыстоўваць перавагі індэксаў." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "Колькасьць унутраных выразаў ROLLBACK." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "Колькасьць запытаў абнаўленьня радка ў табліцы." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "Колькасьць запытаў устаўкі радка ў табліцу." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Колькасьць старонак, якія ўтрымліваюць дадзеныя (зьмененых або нязьмененых)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "Колькасьць зьмененых старонак." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Колькасьць старонак буфэрнага пулу, на якія быў атрыманы запыт на скід." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "Колькасьць вольных старонак." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -14189,7 +14154,7 @@ msgstr "" "старонкі, якія ў бягучы момант чытаюцца ці запісваюцца або якія ня могуць " "быць скінутыя ці выдаленыя з-за пэўнай прычыны." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -14202,11 +14167,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "Агульны памер буфэрнага пулу, у старонках." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -14215,7 +14180,7 @@ msgstr "" "адбываецца, калі запыт праглядае значную частку табліцы, але ў выпадковым " "парадку." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -14223,11 +14188,11 @@ msgstr "" "Колькасьць пасьлядоўных папярэдніх чытаньняў, зробленых InnoDB. Гэта " "адбываецца, калі InnoDB выконвае пасьлядоўны поўны прагляд табліцы." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "Колькасьць лягічных запытаў чытаньня, зробленых InnoDB." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -14235,7 +14200,7 @@ msgstr "" "Колькасьць лягічных чытаньняў, якія InnoDB не змагла аднавіць з буфэрнага " "пулу, а таму зрабіла аднастаронкавае чытаньне." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -14249,55 +14214,55 @@ msgstr "" "падлічвае колькасьць такіх чаканьняў. Калі памер буфэру быў вызначаны " "правільна, гэтае значэньне мусіць быць маленькім." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "Колькасьць запісаў, зробленых у буфэрны пул InnoDB." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "Колькасьць апэрацыяў fsync() на бягучы момант." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "Бягучая колькасьць апэрацыяў fsync(), якія чакаюць выкананьня." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "Бягучая колькасьць чытаньняў, якія чакаюць выкананьня." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "Бягучая колькасьць запісаў, якія чакаюць выкананьня." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "Колькасьць прачытаных на бягучы момант дадзеных, у байтах." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "Агульная колькасьць чытаньняў дадзеных." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "Агульная колькасьць запісаў дадзеных." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "Колькасьць запісаных на бягучы момант дадзеных, у байтах." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Колькасьць падвойных запісаў, якія былі выкананыя, і колькасьць старонак, " "якія былі запісаныя для гэтай мэты." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" "Колькасьць падвойных запісаў, якія былі выкананыя, і колькасьць старонак, " "якія былі запісаныя для гэтай мэты." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -14305,35 +14270,35 @@ msgstr "" "Колькасьць выпадкаў чаканьня з-за таго, што буфэр логу быў занадта малы, і " "таму давялося чакаць, пакуль ён не ачысьціцца." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "Колькасьць запісаў у лог." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "Колькасьць фізычна выкананых запісаў у лог-файл." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "Колькасьць сынхранізавыных запісаў, зробленых у лог-файл." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "Колькасьць сынхранізаваньняў лог-файла, якія чакаюць выкананьня." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "Колькасьць запісаў у лог-файл, якія чакаюць выкананьня." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "Колькасьць байтаў, запісаных у лог-файл." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "Колькасьць створаных старонак." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -14341,55 +14306,55 @@ msgstr "" "Памер закампіляванай старонкі InnoDB (па змоўчаньні 16КБ). Пэўныя велічыні " "вымяраюцца ў старонках; памер старонкі дазваляе хутка перавесьці яго ў байты." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "Колькасьць прачытаных старонак." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "Колькасьць запісаных старонак." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" "Колькасьць блякаваньняў радкоў, чаканьне якіх адбываецца на бягучы момант." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Сярэдні час атрыманьня магчымасьці блякаваньня радку, у мілісэкундах." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Агульны час чаканьня атрыманьня магчымасьці блякаваньня радку, у " "мілісэкундах." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Максымальны час атраманьня магчымасьці блякаваньня радку, у мілісэкундах." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "Колькасьць разоў, калі даводзілася чакаць блякаваньне радку." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "Колькасьць радкоў, выдаленых з табліц InnoDB." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "Колькасьць радкоў, устаўленых у табліцы InnoDB." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "Колькась радкоў, прачытаных з табліц InnoDB." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "Колькасьць радкоў, абноўленых у табліцах InnoDB." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -14397,7 +14362,7 @@ msgstr "" "Колькасьць блёкаў у кэшы ключоў, якія былі зьмененыя, але яшчэ не былі " "скінутыя на дыск. Выкарыстоўваецца як значэньне Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -14405,7 +14370,7 @@ msgstr "" "Колькасьць нявыкарыстаных блёкаў у кэшы ключоў. Гэтае значэньне можна " "выкарыстоўваць для вызначэньня ступені выкарыстаньня кэшу ключоў." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -14415,17 +14380,17 @@ msgstr "" "ступеньню пэўнасьці сьведчыць пра максымальную за ўвесь час колькасьць " "блёкаў, якія выкарастоўваліся адначасова." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Фармат імпартаванага файла" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "Колькасьць запытаў на чытаньне блёку ключоў з кэшу." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -14435,26 +14400,26 @@ msgstr "" "вялікае, значэньне key_buffer_size, відаць, вельмі малое. Колькасьць " "промахаў у кэш можна вылічыць як Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "Колькасьць запытаў на запіс блёку ключоў у кэш." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "Колькасьць фізычных запісаў блёку ключоў на дыск." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -14465,17 +14430,17 @@ msgstr "" "Значэньне па змоўчаньні 0 азначае, што ніводны запыт яшчэ ня быў " "зкампіляваны." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Колькасьць радкоў для запісу, адкладзеных запытамі INSERT DELAYED." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -14483,39 +14448,39 @@ msgstr "" "Колькасьць табліц, якія былі адкрытыя. Калі адкрытыя табліцы вялікія, " "значэньне кэшу табліц імаверна вельмі малое." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "Колькасьць адкрытых файлаў." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Колькасьць адкрытых патокаў (выкарыстоўваюцца пераважна для лагаваньня)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "Колькасьць адкрытых табліц." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "Колькасьць вольнай памяці для кэшу запытаў." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "Колькасьць зваротаў да кэшу." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "Колькасьць запытаў, якія былі даданыя ў кэш." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14528,7 +14493,7 @@ msgstr "" "выкарыстоўваўся найменш (LRU) для вызначэньня, якія запыты трэба выдаляць з " "кэшу." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -14536,19 +14501,19 @@ msgstr "" "Колькасьць некэшавальных запытаў (некэшавальных або некэшаваных з-за " "значэньня дырэктывы query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "Колькасьць запытаў, якія прысутнічаюць у кэшы." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "Агульная колькасьць блёкаў у кэшы запытыў." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "Стан абароненай ад памылак рэплікацыі (яшчэ не рэалізаваная)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -14556,13 +14521,13 @@ msgstr "" "Колькасьць аб'яднаньняў, якія не выкарыстоўвяюць індэксы. Калі гэтае " "значэньне ня роўнае 0, варта праверыць індэксы ў табліцах." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" "Колькасьць аб'яднаньняў, якія выкарыстоўвалі пошук па масцы ў мэтавай " "табліцы." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -14571,7 +14536,7 @@ msgstr "" "ключа пасьля кожнага радка. (Калі гэтае значэньне ня роўнае 0, варта " "праверыць індэксы ў табліцах.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -14579,17 +14544,17 @@ msgstr "" "Колькасьць аб'яднаньняў, якія выкарыстоўвалі спалучэньні палёў у першай " "табліцы. (Звычайна не крытычна, нават калі гэтае значэньне вялікае.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "Колькасьць аб'яднаньняў, якія правялі поўны прагляд першай табліцы." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Колькасьць часовых табліц, якія ў бягучы момант адкрытыя залежным SQL-" "патокам." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -14597,13 +14562,13 @@ msgstr "" "Агульная (ад загрузкі) колькасьць разоў, калі залежны SQL-паток рэплікацыі " "паўтараў транзакцыі." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Гэтае значэньне роўнае \"ON\", калі сэрвэр зьяўляецца залежным і падлучаным " "да сэрвэра, які яго кантралюе." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -14611,14 +14576,14 @@ msgstr "" "Колькасьць патокаў, якім спатрэбілася больш за slow_launch_time сэкундаў для " "стварэньня." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Колькасьць запытаў, на выканантне якіх спатрэбілася больш, чым " "long_query_time сэкундаў." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -14628,25 +14593,25 @@ msgstr "" "значэньне вялікае, варта разгледзіць павелічэньне значэньня сыстэмнай " "зьменнай sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" "Колькасьць сартаваньняў, якія былі зробленыя з выкарыстаньнем некалькіх " "слупкоў." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "Колькасьць адсартаваных радкоў." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "Колькасьць сартаваньняў, якія былі зробленыя падчас прагляду табліцы." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "Колькасьць разоў, калі блякаваньне табліцы было зробленае імгненна." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14658,7 +14623,7 @@ msgstr "" "існуюць праблемы з прадукцыйнасьцю, варта спачатку аптымізаваць запыты, а " "пасьля або падзяліць табліцу або табліцы, або выкарыстоўваць рэплікацыю." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -14668,11 +14633,11 @@ msgstr "" "вылічаная як Threads_created/Connections. Калі гэтае значэньне пафарбаванае " "ў чырвоны колер, варта павялічыць значэньне thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "Колькасьць адкрытых на бягучы момант злучэньняў." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14684,13 +14649,13 @@ msgstr "" "thread_cache_size. (Звычайна, гэта не дае якога-небудзь заўважнага " "павелічэньня прадукцыйнасьці, калі прысутнічае добрая рэалізацыя патокаў.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Кэш ключоў" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "Колькасьць патокаў, якія не зьяўляюцца сьпячымі." @@ -14699,77 +14664,77 @@ msgstr "Колькасьць патокаў, якія не зьяўляюцца msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 #, fuzzy #| msgid "User" msgid "User groups" msgstr "Карыстальнік" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "Вэрсія сэрвэра" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Database for user" msgid "Database level tabs" msgstr "База дадзеных для карыстальніка" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table removal" msgid "Table level tabs" msgstr "Імя табліцы" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy #| msgid "View" msgid "View users" msgstr "Выгляд" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Any user" msgid "Add user group" msgstr "Любы карыстальнік" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Без прывілеяў." -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "Назвы калёнак" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Вэрсія сэрвэра" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Database for user" msgid "Database-level tabs" msgstr "База дадзеных для карыстальніка" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table removal" msgid "Table-level tabs" @@ -14833,21 +14798,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14915,138 +14876,138 @@ msgstr "Табліца %1$s створаная." msgid "Variable name was expected." msgstr "Шаблён назвы файла" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "У пачатку табліцы" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 #, fuzzy #| msgid "The number of tables that are open." msgid "The name of the entity was expected." msgstr "Колькасьць адкрытых табліц." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Радок быў выдалены" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Памер павелічэньня файлаў з дадзенымі" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy msgid "State" msgstr "Стан" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Агулам" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Час" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Час" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Дадаць гэты SQL-запыт у закладкі" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Label" msgid "Label:" msgstr "Метка" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Даць кожнаму карыстальніку доступ да гэтай закладкі" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created!" msgstr "Закладка %s створаная" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "У выглядзе PHP-коду" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Праблемы з індэксамі для табліцы `%s`" @@ -15077,29 +15038,29 @@ msgstr "" msgid "Bind parameters" msgstr "Дадаць новае поле" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 #, fuzzy #| msgid "Bookmark this SQL query" msgid "Bookmark this SQL query:" msgstr "Дадаць гэты SQL-запыт у закладкі" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Замяніць існую закладку з такім жа імем" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Разьдзяляльнік" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Паказаць гэты запыт зноў" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Толькі прагляд" @@ -15144,107 +15105,107 @@ msgstr "" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 #, fuzzy msgid "Created" msgstr "Стварыць" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy msgid "Delete version" msgstr "Стварыць сувязь" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 #, fuzzy msgid "Structure snapshot" msgstr "Толькі структуру" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Дазваляе ўстаўляць і замяняць дадзеныя." -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Базы дадзеных адсутнічаюць" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, fuzzy, php-format msgid "Export as %s" msgstr "Тып экспарту" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 #, fuzzy msgid "Date" msgstr "Дадзеныя" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 #, fuzzy msgid "Username" msgstr "Імя карыстальніка:" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -15252,81 +15213,81 @@ msgctxt "None for default" msgid "None" msgstr "Няма" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Стварыць сувязь" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 #, fuzzy msgid "Untracked tables" msgstr "Праверыць табліцу" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 #, fuzzy msgid "Track table" msgstr "Праверыць табліцу" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 #, fuzzy msgid "Tracked tables" msgstr "Праверыць табліцу" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 #, fuzzy msgid "Last version" msgstr "Стварыць сувязь" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking" msgstr "Дазваляе ўстаўляць і замяняць дадзеныя." -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 #, fuzzy msgid "Versions" msgstr "Пэрсыдзкая" @@ -15337,13 +15298,13 @@ msgstr "Пэрсыдзкая" msgid "Manage your settings" msgstr "Магчымасьці асноўных сувязяў" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." msgstr "Мадыфікацыі былі захаваныя" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -15448,7 +15409,7 @@ msgstr "Базы дадзеных адсутнічаюць" msgid "View dump (schema) of databases" msgstr "Праглядзець дамп (схему) базаў дадзеных" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -15473,7 +15434,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin ня можа спыніць працэс %s. Напэўна, ён ужо спынены." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -16434,52 +16395,58 @@ msgstr "" msgid "Stacked" msgstr "Сьціснутая" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Report title" +msgid "Chart title:" +msgstr "Загаловак справаздачы" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 #, fuzzy msgid "Series:" msgstr "SQL-запыт" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Значэньне" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Значэньне" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside field:" msgid "Series column:" msgstr "Унутры поля:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Number of fields" msgid "Value Column:" msgstr "Колькасьць палёў" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -16545,17 +16512,49 @@ msgstr "Камэнтар" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +#, fuzzy +#| msgid "Disable foreign key checks" +msgid "Foreign key constraints" +msgstr "Адключыць праверку зьнешніх ключоў" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "Дзеяньні" + +#: templates/table/relation/common_form.phtml:10 +#, fuzzy +#| msgid "Constraints for table" +msgid "Constraint properties" +msgstr "Абмежаваньні для табліцы" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "" + +#: templates/table/relation/common_form.phtml:60 +#, fuzzy +#| msgid "Add constraints" +msgid "+ Add constraint" +msgstr "Дадаць абмежаваньні" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "Унутраныя сувязі" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Унутраныя сувязі" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -16563,38 +16562,7 @@ msgstr "" "Унутраная сувязь не зьяўляецца абавязковай, калі існуе адпаведная сувязь " "FOREIGN KEY." -#: templates/table/relation/common_form.phtml:37 -#, fuzzy -#| msgid "Disable foreign key checks" -msgid "Foreign key constraints" -msgstr "Адключыць праверку зьнешніх ключоў" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "Дзеяньні" - -#: templates/table/relation/common_form.phtml:41 -#, fuzzy -#| msgid "Constraints for table" -msgid "Constraint properties" -msgstr "Абмежаваньні для табліцы" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "" - -#: templates/table/relation/common_form.phtml:83 -#, fuzzy -#| msgid "Add constraints" -msgid "+ Add constraint" -msgstr "Дадаць абмежаваньні" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -16754,7 +16722,7 @@ msgid "at beginning of table" msgstr "У пачатку табліцы" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16803,7 +16771,7 @@ msgstr "падзеленая на сэкцыі" msgid "Edit partitioning" msgstr "Скасаваць падзел на часткі" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -18122,6 +18090,41 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "максымум адначасовых злучэньняў" +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "Табліц" + +#, fuzzy +#~| msgid "View" +#~ msgid "views" +#~ msgstr "Выгляд" + +#, fuzzy +#~| msgid "Procedures" +#~ msgid "procedures" +#~ msgstr "Працэдуры" + +#, fuzzy +#~| msgid "Event" +#~ msgid "events" +#~ msgstr "Падзея" + +#, fuzzy +#~| msgid "Functions" +#~ msgid "functions" +#~ msgstr "Функцыі" + +#, fuzzy +#~| msgid "table name" +#~ msgid "Filter databases by name or regex" +#~ msgstr "імя табліцы" + +#, fuzzy +#~| msgid "table name" +#~ msgid "Filter by name or regex" +#~ msgstr "імя табліцы" + #, fuzzy #~| msgid "Change" #~ msgid "Taking you to %s." diff --git a/po/be@latin.po b/po/be@latin.po index 2b477b8ed0..e5476d4aad 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:22+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Belarusian (latin) =20) ? 1 : 2;\n" "X-Generator: Weblate 2.5-dev\n" -#: changelog.php:37 license.php:30 +#: changelog.php:37 license.php:33 #, php-format msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " @@ -37,7 +37,7 @@ msgstr "" msgid "Showing rows %1$s - %2$s." msgstr "Pakazanyja zapisy" -#: db_create.php:61 +#: db_create.php:62 #, php-format msgid "Database %1$s has been created." msgstr "Baza dadzienych %1$s stvoranaja." @@ -46,7 +46,7 @@ msgstr "Baza dadzienych %1$s stvoranaja." msgid "Database comment" msgstr "Kamentar da bazy dadzienych" -#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:601 +#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:599 #: templates/columns_definitions/column_definitions_form.phtml:84 #, fuzzy #| msgid "Table comments" @@ -54,7 +54,7 @@ msgid "Table comments:" msgstr "Kamentar da tablicy" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1568 +#: libraries/insert_edit.lib.php:1575 #: libraries/navigation/nodes/NodeColumn.php:34 #: libraries/plugins/export/ExportHtmlword.php:288 #: libraries/plugins/export/ExportHtmlword.php:384 @@ -64,13 +64,14 @@ msgstr "Kamentar da tablicy" #: libraries/plugins/export/ExportTexytext.php:282 #: libraries/plugins/export/ExportTexytext.php:373 #: libraries/plugins/export/PMA_ExportPdf.php:472 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:882 libraries/tracking.lib.php:978 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 +#: libraries/tracking.lib.php:892 libraries/tracking.lib.php:990 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:10 -#: templates/table/relation/common_form.phtml:43 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:27 +#: templates/table/relation/common_form.phtml:79 #: templates/table/relation/foreign_key_row.phtml:176 #: templates/table/relation/foreign_key_row.phtml:188 #: templates/table/relation/internal_relational_row.phtml:73 @@ -92,14 +93,14 @@ msgstr "Nazvy kalonak" #: libraries/plugins/export/ExportTexytext.php:283 #: libraries/plugins/export/ExportTexytext.php:374 #: libraries/plugins/export/PMA_ExportPdf.php:474 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 #: libraries/rte/rte_list.lib.php:78 libraries/rte/rte_list.lib.php:106 #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2606 libraries/tracking.lib.php:883 -#: libraries/tracking.lib.php:975 +#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -109,7 +110,7 @@ msgstr "Typ" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:709 -#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1577 +#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1584 #: libraries/plugins/export/ExportHtmlword.php:294 #: libraries/plugins/export/ExportHtmlword.php:390 #: libraries/plugins/export/ExportLatex.php:517 @@ -118,9 +119,9 @@ msgstr "Typ" #: libraries/plugins/export/ExportTexytext.php:284 #: libraries/plugins/export/ExportTexytext.php:375 #: libraries/plugins/export/PMA_ExportPdf.php:476 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 -#: libraries/tracking.lib.php:885 libraries/tracking.lib.php:981 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/tracking.lib.php:895 libraries/tracking.lib.php:993 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 @@ -137,9 +138,9 @@ msgstr "Nul" #: libraries/plugins/export/ExportTexytext.php:285 #: libraries/plugins/export/ExportTexytext.php:376 #: libraries/plugins/export/PMA_ExportPdf.php:478 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 -#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:886 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:896 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 @@ -151,8 +152,8 @@ msgstr "Pa zmoŭčańni" #: libraries/plugins/export/ExportOdt.php:488 #: libraries/plugins/export/ExportTexytext.php:378 #: libraries/plugins/export/PMA_ExportPdf.php:487 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:640 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:663 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 msgid "Links to" msgstr "Źviazanaja z" @@ -163,37 +164,38 @@ msgstr "Źviazanaja z" #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:381 #: libraries/plugins/export/PMA_ExportPdf.php:494 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:651 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:664 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:649 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 #: templates/columns_definitions/table_fields_definitions.phtml:65 msgid "Comments" msgstr "Kamentary" -#: db_datadict.php:155 libraries/controllers/TableStructureController.php:1189 -#: libraries/controllers/TableStructureController.php:1194 -#: libraries/tracking.lib.php:925 +#: db_datadict.php:155 +#: libraries/controllers/table/TableStructureController.php:1197 +#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:79 +#: templates/table/structure/display_structure.phtml:80 msgid "Primary" msgstr "Pieršasny" -#: db_datadict.php:165 js/messages.php:370 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:371 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 -#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:403 -#: libraries/mult_submits.lib.php:417 +#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:408 +#: libraries/mult_submits.lib.php:422 #: libraries/plugins/export/ExportHtmlword.php:654 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:710 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2971 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3620 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1013 libraries/tracking.lib.php:1018 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2973 +#: libraries/server_privileges.lib.php:2993 +#: libraries/server_privileges.lib.php:3631 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -202,32 +204,32 @@ msgstr "Pieršasny" msgid "No" msgstr "Nie" -#: db_datadict.php:165 js/messages.php:515 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:516 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 #: libraries/config/FormDisplay.tpl.php:280 -#: libraries/controllers/TableStructureController.php:770 -#: libraries/controllers/TableStructureController.php:1440 -#: libraries/controllers/TableStructureController.php:1449 -#: libraries/controllers/TableStructureController.php:1454 -#: libraries/controllers/TableStructureController.php:1459 -#: libraries/controllers/TableStructureController.php:1464 -#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:199 -#: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 -#: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 +#: libraries/controllers/table/TableStructureController.php:771 +#: libraries/controllers/table/TableStructureController.php:1448 +#: libraries/controllers/table/TableStructureController.php:1457 +#: libraries/controllers/table/TableStructureController.php:1462 +#: libraries/controllers/table/TableStructureController.php:1467 +#: libraries/controllers/table/TableStructureController.php:1472 +#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:200 +#: libraries/mult_submits.lib.php:344 libraries/mult_submits.lib.php:377 +#: libraries/mult_submits.lib.php:406 libraries/mult_submits.lib.php:420 #: libraries/plugins/export/ExportHtmlword.php:655 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:788 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:711 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2968 -#: libraries/server_privileges.lib.php:2989 -#: libraries/server_privileges.lib.php:3617 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1011 libraries/tracking.lib.php:1016 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2970 +#: libraries/server_privileges.lib.php:2991 +#: libraries/server_privileges.lib.php:3628 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -240,8 +242,8 @@ msgstr "Tak" msgid "View dump (schema) of database" msgstr "Prahladzieć damp (schiemu) bazy dadzienych" -#: db_export.php:51 db_tracking.php:102 export.php:382 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:176 +#: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 +#: libraries/controllers/DatabaseStructureController.php:157 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "U bazie dadzienych tablic nia vyjaŭlena." @@ -258,7 +260,7 @@ msgstr "Tablic" #: db_export.php:66 libraries/Menu.php:320 libraries/Menu.php:427 #: libraries/Util.php:3407 libraries/Util.php:3417 libraries/Util.php:3423 -#: libraries/Util.php:3702 libraries/Util.php:4339 libraries/Util.php:4356 +#: libraries/Util.php:3703 libraries/Util.php:4340 libraries/Util.php:4357 #: libraries/central_columns.lib.php:729 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:320 @@ -266,10 +268,10 @@ msgstr "Tablic" #: libraries/config/user_preferences.forms.php:218 #: libraries/config/user_preferences.forms.php:259 #: libraries/config/user_preferences.forms.php:285 -#: libraries/import.lib.php:1299 libraries/navigation/nodes/NodeColumn.php:44 +#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:44 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 -#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:877 +#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:887 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -321,13 +323,13 @@ msgstr "" "Dadatkovyja mahčymaści raboty z źviazanymi tablicami byli adklučanyja. Kab " "vyśvietlić čamu, naciśnicie %stut%s." -#: db_qbe.php:135 +#: db_qbe.php:136 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to choose at least one column to display!" msgstr "Vam nieabchodna vybrać prynamsi adnu kalonku dla adlustravańnia" -#: db_qbe.php:152 +#: db_qbe.php:154 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" @@ -358,7 +360,7 @@ msgstr "" msgid "No tables selected." msgstr "Nia vybranaja baza dadzienych." -#: db_tracking.php:146 +#: db_tracking.php:149 msgid "Database Log" msgstr "" @@ -392,7 +394,7 @@ msgstr "" msgid "Bad type!" msgstr "Typ zapytu" -#: export.php:276 +#: export.php:278 #, fuzzy #| msgid "Add new field" msgid "Bad parameters!" @@ -404,108 +406,108 @@ msgstr "Dadać novaje pole" msgid "Invalid export type" msgstr "Ekspart" -#: gis_data_editor.php:119 +#: gis_data_editor.php:117 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:147 +#: gis_data_editor.php:145 #: templates/table/gis_visualization/gis_visualization.phtml:37 msgid "Use OpenStreetMaps as Base Layer" msgstr "" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:169 +#: gis_data_editor.php:167 msgid "SRID:" msgstr "" -#: gis_data_editor.php:192 +#: gis_data_editor.php:190 #, php-format msgid "Geometry %d:" msgstr "" -#: gis_data_editor.php:214 +#: gis_data_editor.php:212 msgid "Point:" msgstr "" -#: gis_data_editor.php:215 gis_data_editor.php:242 gis_data_editor.php:298 -#: gis_data_editor.php:371 js/messages.php:504 +#: gis_data_editor.php:213 gis_data_editor.php:240 gis_data_editor.php:296 +#: gis_data_editor.php:369 js/messages.php:505 msgid "X" msgstr "" -#: gis_data_editor.php:218 gis_data_editor.php:246 gis_data_editor.php:302 -#: gis_data_editor.php:377 js/messages.php:505 +#: gis_data_editor.php:216 gis_data_editor.php:244 gis_data_editor.php:300 +#: gis_data_editor.php:375 js/messages.php:506 msgid "Y" msgstr "" -#: gis_data_editor.php:240 gis_data_editor.php:296 gis_data_editor.php:369 -#: js/messages.php:507 +#: gis_data_editor.php:238 gis_data_editor.php:294 gis_data_editor.php:367 +#: js/messages.php:508 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:253 gis_data_editor.php:309 gis_data_editor.php:387 -#: js/messages.php:513 +#: gis_data_editor.php:251 gis_data_editor.php:307 gis_data_editor.php:385 +#: js/messages.php:514 #, fuzzy #| msgid "Add new field" msgid "Add a point" msgstr "Dadać novaje pole" -#: gis_data_editor.php:270 +#: gis_data_editor.php:268 #, fuzzy, php-format #| msgid "Lines terminated by" msgid "Linestring %d:" msgstr "Radki padzielenyja" -#: gis_data_editor.php:273 gis_data_editor.php:350 +#: gis_data_editor.php:271 gis_data_editor.php:348 msgid "Outer ring:" msgstr "" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:273 gis_data_editor.php:350 #, php-format msgid "Inner ring %d:" msgstr "" -#: gis_data_editor.php:312 +#: gis_data_editor.php:310 #, fuzzy #| msgid "Add constraints" msgid "Add a linestring" msgstr "Dadać abmiežavańni" -#: gis_data_editor.php:313 gis_data_editor.php:392 js/messages.php:514 +#: gis_data_editor.php:311 gis_data_editor.php:390 js/messages.php:515 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:334 +#: gis_data_editor.php:332 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Polygon %d:" msgstr "Dadać %s novyja pali" -#: gis_data_editor.php:398 +#: gis_data_editor.php:396 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" msgstr "Dadać %s novyja pali" -#: gis_data_editor.php:404 +#: gis_data_editor.php:402 #, fuzzy #| msgid "Add a new User" msgid "Add geometry" msgstr "Dadać novaha karystalnika" -#: gis_data_editor.php:410 js/messages.php:345 libraries/DbSearch.php:462 -#: libraries/DisplayResults.php:1783 libraries/browse_foreigners.lib.php:142 +#: gis_data_editor.php:408 js/messages.php:346 libraries/DbSearch.php:462 +#: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:151 #: libraries/display_export.lib.php:404 libraries/display_export.lib.php:410 -#: libraries/display_import.lib.php:403 libraries/index.lib.php:42 -#: libraries/insert_edit.lib.php:1547 libraries/insert_edit.lib.php:1584 +#: libraries/display_import.lib.php:403 libraries/index.lib.php:45 +#: libraries/insert_edit.lib.php:1554 libraries/insert_edit.lib.php:1591 #: libraries/normalization.lib.php:168 libraries/normalization.lib.php:825 #: libraries/operations.lib.php:47 libraries/operations.lib.php:114 #: libraries/operations.lib.php:266 libraries/operations.lib.php:309 #: libraries/operations.lib.php:806 libraries/operations.lib.php:877 -#: libraries/operations.lib.php:926 libraries/operations.lib.php:1336 -#: libraries/operations.lib.php:1653 +#: libraries/operations.lib.php:926 libraries/operations.lib.php:1339 +#: libraries/operations.lib.php:1656 #: libraries/plugins/auth/AuthenticationCookie.php:239 #: libraries/replication_gui.lib.php:124 libraries/replication_gui.lib.php:163 #: libraries/replication_gui.lib.php:328 libraries/replication_gui.lib.php:465 @@ -514,12 +516,12 @@ msgstr "Dadać novaha karystalnika" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2343 -#: libraries/server_privileges.lib.php:3114 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_user_groups.lib.php:285 -#: libraries/sql_query_form.lib.php:369 libraries/sql_query_form.lib.php:429 -#: libraries/tracking.lib.php:536 libraries/tracking.lib.php:656 +#: libraries/server_privileges.lib.php:2345 +#: libraries/server_privileges.lib.php:3116 +#: libraries/server_privileges.lib.php:3735 +#: libraries/server_user_groups.lib.php:290 +#: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 +#: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 #: prefs_manage.php:280 prefs_manage.php:358 #: templates/columns_definitions/column_definitions_form.phtml:64 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 @@ -532,11 +534,11 @@ msgstr "Dadać novaha karystalnika" msgid "Go" msgstr "Paniesłasia" -#: gis_data_editor.php:413 +#: gis_data_editor.php:411 msgid "Output" msgstr "" -#: gis_data_editor.php:416 +#: gis_data_editor.php:414 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -548,7 +550,7 @@ msgstr "" msgid "Succeeded" msgstr "U dostupie admoŭlena!" -#: import.php:59 js/messages.php:588 +#: import.php:59 js/messages.php:589 msgid "Failed" msgstr "" @@ -618,7 +620,7 @@ msgid "Could not load import plugins, please check your installation!" msgstr "" "Niemahčyma zahruzić płahiny impartavańnia, kali łaska, praviercie ŭstaloŭku!" -#: import.php:669 libraries/sql.lib.php:744 libraries/sql.lib.php:1468 +#: import.php:669 libraries/sql.lib.php:754 libraries/sql.lib.php:1485 #, fuzzy, php-format #| msgid "Bookmark %s created" msgid "Bookmark %s has been created." @@ -654,7 +656,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "" -#: import_status.php:111 js/messages.php:444 libraries/Util.php:797 +#: import_status.php:111 js/messages.php:445 libraries/Util.php:797 #: libraries/export.lib.php:523 #: libraries/plugins/schema/ExportRelationSchema.php:301 user_password.php:268 msgid "Back" @@ -678,7 +680,7 @@ msgstr "" msgid "General settings" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: index.php:191 js/messages.php:617 +#: index.php:191 js/messages.php:618 #: libraries/display_change_password.lib.php:54 #: libraries/display_change_password.lib.php:57 user_password.php:262 msgid "Change password" @@ -808,7 +810,11 @@ msgstr "" msgid "List of changes" msgstr "Niama źmienaŭ" -#: index.php:453 +#: index.php:438 libraries/server_plugins.lib.php:83 +msgid "License" +msgstr "" + +#: index.php:460 #, fuzzy #| msgid "" #| "Your configuration file contains settings (root with no password) that " @@ -827,7 +833,7 @@ msgstr "" "źniešniaha ŭryvańnia, i tamu vam abaviazkova treba vypravić hetuju chibu ŭ " "biaśpiecy." -#: index.php:470 +#: index.php:477 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -836,7 +842,7 @@ msgstr "" "Vy ŭklučyli mbstring.func_overload u vašym kanfihuracyjnym fajle PHP. Hetaja " "opcyja niesumiaščalnaja z phpMyAdmin i moža vyklikać paškodžańnie dadzienych!" -#: index.php:485 +#: index.php:492 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -846,7 +852,7 @@ msgstr "" "šmatbajtavuju kadyroŭku. Biez pašyreńnia mbstring phpMyAdmin nia moža " "padzialać radki karektna, i heta moža pryvieści da niečakanych vynikaŭ." -#: index.php:502 +#: index.php:509 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than " @@ -854,18 +860,18 @@ msgid "" "expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:521 +#: index.php:528 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:537 +#: index.php:544 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Kanfihuracyjnamu fajłu zaraz patrebnaja sakretnaja fraza (blowfish_secret)." -#: index.php:550 +#: index.php:557 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. It is strongly recommended to remove it " @@ -873,7 +879,7 @@ msgid "" "may be compromised by unauthorized people downloading your configuration." msgstr "" -#: index.php:566 +#: index.php:573 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -885,12 +891,12 @@ msgstr "" "Dadatkovyja mahčymaści raboty z źviazanymi tablicami byli adklučanyja. Kab " "vyśvietlić čamu, naciśnicie %stut%s." -#: index.php:573 +#: index.php:580 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" -#: index.php:619 +#: index.php:626 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -899,7 +905,7 @@ msgstr "" "Versija vašaj biblijateki MySQL dla PHP %s adroźnivajecca ad versii vašaha " "servera MySQL %s. Heta moža vyklikać niepradkazalnyja pavodziny." -#: index.php:647 +#: index.php:654 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -922,7 +928,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "Ci sapraŭdy vy žadajecie " -#: js/messages.php:45 libraries/mult_submits.lib.php:397 +#: js/messages.php:45 libraries/mult_submits.lib.php:402 msgid "You are about to DESTROY a complete database!" msgstr "Vy źbirajecie VYDALIĆ bazu dadzienych całkam!" @@ -1086,7 +1092,7 @@ msgid "Save & close" msgstr "Zachavać jak fajł" #: js/messages.php:109 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1551 prefs_manage.php:364 +#: libraries/insert_edit.lib.php:1558 prefs_manage.php:364 #: prefs_manage.php:375 msgid "Reset" msgstr "Skinuć" @@ -1167,10 +1173,10 @@ msgstr "Dadać %s novyja pali" msgid "You have to add at least one column." msgstr "Treba dadać prynamsi adno pole." -#: js/messages.php:129 libraries/insert_edit.lib.php:1549 +#: js/messages.php:129 libraries/insert_edit.lib.php:1556 #: templates/columns_definitions/column_definitions_form.phtml:159 #: templates/table/index_form.phtml:237 -#: templates/table/relation/common_form.phtml:108 +#: templates/table/relation/common_form.phtml:127 msgid "Preview SQL" msgstr "" @@ -1223,8 +1229,8 @@ msgstr "Paroli nie supadajuć!" msgid "Removing Selected Users" msgstr "Vydalić vybranych karystalnikaŭ" -#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:461 -#: libraries/tracking.lib.php:831 +#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:471 +#: libraries/tracking.lib.php:841 msgid "Close" msgstr "" @@ -1252,7 +1258,7 @@ msgstr "Radok byŭ vydaleny" #. l10n: Other, small valued, queries #: js/messages.php:155 libraries/ServerStatusData.php:130 -#: libraries/server_status_queries.lib.php:148 +#: libraries/server_status_queries.lib.php:150 msgid "Other" msgstr "" @@ -1442,7 +1448,7 @@ msgstr "Suviazi" msgid "Traffic" msgstr "Trafik" -#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4330 +#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4331 #: libraries/server_status_monitor.lib.php:258 #, fuzzy #| msgid "General relation features" @@ -1459,9 +1465,9 @@ msgstr "Źviać ź sietkaj" msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:216 libraries/DisplayResults.php:1477 +#: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1578,7 +1584,7 @@ msgstr "Mahčymaści asnoŭnych suviaziaŭ" msgid "Current settings" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: js/messages.php:253 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:253 #, fuzzy #| msgid "Report title" msgid "Chart title" @@ -1672,21 +1678,21 @@ msgstr "Praanalizavać" msgid "Explain output" msgstr "Tłumačyć SQL" -#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4326 +#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4327 #: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:396 #: libraries/rte/rte_list.lib.php:104 -#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:282 -#: libraries/tracking.lib.php:1623 +#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:284 +#: libraries/tracking.lib.php:1639 msgid "Status" msgstr "Stan" -#: js/messages.php:289 js/messages.php:870 +#: js/messages.php:289 js/messages.php:862 #: libraries/plugins/export/ExportHtmlword.php:484 #: libraries/plugins/export/ExportOdt.php:600 #: libraries/plugins/export/ExportTexytext.php:445 #: libraries/plugins/export/PMA_ExportPdf.php:314 #: libraries/rte/rte_list.lib.php:93 -#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:239 +#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:243 msgid "Time" msgstr "Čas" @@ -1784,10 +1790,10 @@ msgid "" msgstr "" #: js/messages.php:322 libraries/Menu.php:355 libraries/Menu.php:457 -#: libraries/Menu.php:578 libraries/Util.php:4329 libraries/Util.php:4344 -#: libraries/Util.php:4361 libraries/config/messages.inc.php:260 +#: libraries/Menu.php:578 libraries/Util.php:4330 libraries/Util.php:4345 +#: libraries/Util.php:4362 libraries/config/messages.inc.php:260 #: libraries/display_import.lib.php:108 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:241 +#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:241 #: setup/frames/menu.inc.php:26 msgid "Import" msgstr "Imrart" @@ -1856,7 +1862,13 @@ msgstr "" msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 libraries/server_variables.lib.php:159 +#: js/messages.php:343 +#, fuzzy +#| msgid "Add new field" +msgid "No parameters found!" +msgstr "Dadać novaje pole" + +#: js/messages.php:347 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 @@ -1867,73 +1879,73 @@ msgstr "" msgid "Cancel" msgstr "Skasavać" -#: js/messages.php:349 libraries/Header.php:457 +#: js/messages.php:350 libraries/Header.php:457 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: js/messages.php:350 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:351 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:353 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:354 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:124 #, fuzzy #| msgid "Reload privileges" msgid "Loading…" msgstr "Pierazahruzić pryvilei" -#: js/messages.php:354 +#: js/messages.php:355 msgid "Request aborted!!" msgstr "" -#: js/messages.php:355 +#: js/messages.php:356 #, fuzzy #| msgid "Processes" msgid "Processing request" msgstr "Pracesy" -#: js/messages.php:356 +#: js/messages.php:357 #, fuzzy #| msgid "Query cache" msgid "Request failed!!" msgstr "Keš zapytaŭ" -#: js/messages.php:357 +#: js/messages.php:358 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Pracesy" -#: js/messages.php:358 +#: js/messages.php:359 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:359 +#: js/messages.php:360 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:360 libraries/db_common.inc.php:73 +#: js/messages.php:361 libraries/db_common.inc.php:73 #: libraries/db_table_exists.lib.php:33 libraries/server_databases.lib.php:462 msgid "No databases selected." msgstr "Nia vybranaja baza dadzienych." -#: js/messages.php:361 +#: js/messages.php:362 #, fuzzy #| msgid "Dropping Procedure" msgid "Dropping column" msgstr "Pracedury" -#: js/messages.php:362 +#: js/messages.php:363 #, fuzzy #| msgid "Add %s field(s)" msgid "Adding primary key" msgstr "Dadać %s novyja pali" -#: js/messages.php:363 +#: js/messages.php:364 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1943,242 +1955,242 @@ msgstr "Dadać %s novyja pali" msgid "OK" msgstr "OK" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:367 +#: js/messages.php:368 #, fuzzy #| msgid "Rename database to" msgid "Renaming databases" msgstr "Pierajmienavać bazu dadzienych u" -#: js/messages.php:368 +#: js/messages.php:369 #, fuzzy #| msgid "Copy database to" msgid "Copying database" msgstr "Kapijavać bazu dadzienych u" -#: js/messages.php:369 +#: js/messages.php:370 #, fuzzy #| msgid "Charset" msgid "Changing charset" msgstr "Kadyroŭka" -#: js/messages.php:373 libraries/Util.php:3289 +#: js/messages.php:374 libraries/Util.php:3289 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Adklučyć pravierku źniešnich klučoŭ" -#: js/messages.php:376 +#: js/messages.php:377 #, fuzzy msgid "Failed to get real row count." msgstr "Pamyłka zapisu na dysk." -#: js/messages.php:379 +#: js/messages.php:380 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Pošuk" -#: js/messages.php:380 +#: js/messages.php:381 #, fuzzy #| msgid "in query" msgid "Hide search results" msgstr "pa zapytu" -#: js/messages.php:381 +#: js/messages.php:382 #, fuzzy #| msgid "Showing SQL query" msgid "Show search results" msgstr "U vyhladzie SQL-zapytu" -#: js/messages.php:382 +#: js/messages.php:383 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Prahlad" -#: js/messages.php:383 +#: js/messages.php:384 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Vydaleńnie %s" -#: js/messages.php:387 +#: js/messages.php:388 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:388 libraries/DisplayResults.php:4832 -#: libraries/DisplayResults.php:5091 libraries/Menu.php:347 -#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3709 -#: libraries/Util.php:3710 libraries/Util.php:4328 libraries/Util.php:4343 -#: libraries/Util.php:4360 libraries/config/messages.inc.php:254 +#: js/messages.php:389 libraries/DisplayResults.php:4850 +#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 +#: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 +#: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2448 -#: libraries/server_privileges.lib.php:2527 -#: libraries/server_privileges.lib.php:2873 -#: libraries/server_privileges.lib.php:3532 -#: libraries/server_status_monitor.lib.php:321 prefs_manage.php:306 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2875 +#: libraries/server_privileges.lib.php:3543 +#: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 msgid "Export" msgstr "Ekspart" -#: js/messages.php:391 libraries/rte/rte_routines.lib.php:742 +#: js/messages.php:392 libraries/rte/rte_routines.lib.php:742 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:392 +#: js/messages.php:393 #, fuzzy, php-format #| msgid "Number of fields" msgid "Values for column %s" msgstr "Kolkaść paloŭ" -#: js/messages.php:393 +#: js/messages.php:394 msgid "Values for a new column" msgstr "" -#: js/messages.php:394 +#: js/messages.php:395 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:395 +#: js/messages.php:396 #, fuzzy, php-format #| msgid "Add a new User" msgid "Add %d value(s)" msgstr "Dadać novaha karystalnika" -#: js/messages.php:399 +#: js/messages.php:400 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:403 +#: js/messages.php:404 #, fuzzy #| msgid "in query" msgid "Hide query box" msgstr "pa zapytu" -#: js/messages.php:404 +#: js/messages.php:405 #, fuzzy #| msgid "Showing SQL query" msgid "Show query box" msgstr "U vyhladzie SQL-zapytu" -#: js/messages.php:405 libraries/Console.php:88 libraries/Console.php:217 -#: libraries/DisplayResults.php:3457 libraries/DisplayResults.php:4816 +#: js/messages.php:406 libraries/Console.php:88 libraries/Console.php:217 +#: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4834 #: libraries/Index.php:721 libraries/Util.php:727 libraries/Util.php:1238 -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:119 +#: libraries/server_user_groups.lib.php:121 #: libraries/server_variables.lib.php:242 #: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 msgid "Edit" msgstr "Redagavać" -#: js/messages.php:406 libraries/Console.php:89 libraries/DbSearch.php:360 -#: libraries/DisplayResults.php:3526 libraries/DisplayResults.php:4800 +#: js/messages.php:407 libraries/Console.php:89 libraries/DbSearch.php:360 +#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4818 #: libraries/central_columns.lib.php:854 #: libraries/central_columns.lib.php:1200 libraries/display_export.lib.php:227 -#: libraries/server_user_groups.lib.php:129 -#: libraries/sql_query_form.lib.php:416 libraries/tracking.lib.php:480 +#: libraries/server_user_groups.lib.php:131 +#: libraries/sql_query_form.lib.php:417 libraries/tracking.lib.php:490 #: setup/frames/index.inc.php:187 setup/frames/index.inc.php:295 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Vydalić" -#: js/messages.php:407 libraries/DisplayResults.php:915 -#: libraries/DisplayResults.php:923 +#: js/messages.php:408 libraries/DisplayResults.php:919 +#: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:408 -#: libraries/controllers/table/TableSearchController.php:435 -#: libraries/controllers/table/TableSearchController.php:920 -#: libraries/sql.lib.php:193 tbl_change.php:159 +#: js/messages.php:409 +#: libraries/controllers/table/TableSearchController.php:432 +#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "Prahladzieć źniešnija značeńni" -#: js/messages.php:409 +#: js/messages.php:410 msgid "No auto-saved query" msgstr "" -#: js/messages.php:410 +#: js/messages.php:411 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Źmiennaja" -#: js/messages.php:413 libraries/normalization.lib.php:889 +#: js/messages.php:414 libraries/normalization.lib.php:889 msgid "Pick" msgstr "" -#: js/messages.php:414 +#: js/messages.php:415 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "Nivodny radok nia vybrany" -#: js/messages.php:415 +#: js/messages.php:416 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Pošuk u bazie dadzienych" -#: js/messages.php:417 +#: js/messages.php:418 #, 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:420 +#: js/messages.php:421 msgid "See more" msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Are you sure?" msgstr "" -#: js/messages.php:423 +#: js/messages.php:424 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Atrybuty" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 #, 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:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 #, fuzzy #| msgid "Change" msgid "Taking you to next step…" msgstr "Źmianić" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 #, fuzzy @@ -2186,571 +2198,532 @@ msgstr "" msgid "End of step" msgstr "U kancy tablicy" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 #, fuzzy #| msgid "None" msgid "Done" msgstr "Nijakaja" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Nia vybranaja baza dadzienych." -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Dadać pryvilei na nastupnuju tablicu" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Nia vybranaja baza dadzienych." -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Zachavać" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy #| msgid "in query" msgid "Hide search criteria" msgstr "pa zapytu" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy #| msgid "Showing SQL query" msgid "Show search criteria" msgstr "U vyhladzie SQL-zapytu" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Pošuk" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Nazvy kalonak" -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Nazvy kalonak" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "in query" msgid "Hide find and replace criteria" msgstr "pa zapytu" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Showing SQL query" msgid "Show find and replace criteria" msgstr "U vyhladzie SQL-zapytu" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Dadać/vydalić kalonku kryteru" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Pamier ukazalnika na dadzienyja" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignaravać" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Skapijavać" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "" -#: js/messages.php:508 +#: js/messages.php:509 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Radki padzielenyja" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Lines terminated by" msgid "Inner ring" msgstr "Radki padzielenyja" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Radki padzielenyja" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Vybierycie spasyłkavy kluč" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Vybierycie źniešni kluč" -#: js/messages.php:529 +#: js/messages.php:530 #, 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:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Staronka:" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 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:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 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:539 +#: js/messages.php:540 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "Vybrać usio" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 #, 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:542 +#: js/messages.php:543 #, 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:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 #, fuzzy #| msgid "Relational schema" msgid "Export relational schema" msgstr "Relacyjnaja schiema" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Madyfikacyi byli zachavanyja" -#: js/messages.php:550 +#: js/messages.php:551 #, fuzzy, php-format #| msgid "Number of fields" msgid "Add an option for column \"%s\"." msgstr "Kolkaść paloŭ" -#: js/messages.php:551 +#: js/messages.php:552 #, fuzzy, php-format #| msgid "%1$d row(s) affected." msgid "%d object(s) created." msgstr "Źmieniena radkoŭ: %1$d." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Adpravić" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Nazvy kalonak" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Pakazać usie" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Pieršapačatkovaja pazycyja" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Skasavać" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Spyniena" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 #, fuzzy #| msgid "Import files" msgid "Import status" msgstr "Impartavać fajły" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "Paroh fajła łogu" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Vybierycie tablicu(y)" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 #, fuzzy #| msgid "No tables" msgid "Go to link:" msgstr "Niama tablic" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Nazvy kalonak" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Zgieneravać parol" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Zgieneravać" -#: js/messages.php:620 +#: js/messages.php:621 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pan" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Pakazać usie" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "Dadać novaje pole" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Pakazać sietku" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 #, fuzzy #| msgid "Use text field" msgid "Link with main panel" msgstr "Vykarystoŭvać tekstavaje pole" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 #, fuzzy #| msgid "Use text field" msgid "Unlink from main panel" msgstr "Vykarystoŭvać tekstavaje pole" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 #, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "Tablic" - -#: js/messages.php:633 -#, fuzzy -#| msgid "View" -msgid "views" -msgstr "Vyhlad" - -#: js/messages.php:634 -#, fuzzy -#| msgid "Procedures" -msgid "procedures" -msgstr "Pracedury" - -#: js/messages.php:635 -#, fuzzy -#| msgid "Event" -msgid "events" -msgstr "Padzieja" - -#: js/messages.php:636 -#, fuzzy -#| msgid "Functions" -msgid "functions" -msgstr "Funkcyi" - -#: js/messages.php:640 -#, 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:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2758,138 +2731,138 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr "" -#: js/messages.php:649 +#: js/messages.php:641 #, fuzzy #| msgid "No databases" msgid "up to date" msgstr "Bazy dadzienych adsutničajuć" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "Stvaryć" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Pakazać adkrytyja tablicy" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignaravać" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Pakazać hety zapyt znoŭ" -#: js/messages.php:701 +#: js/messages.php:693 #, 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:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, 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:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Kamentar da tablicy" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy #| msgid "in query" msgid "Hide arguments" msgstr "pa zapytu" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Papiaredniaja staronka" -#: js/messages.php:748 +#: js/messages.php:740 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2897,96 +2870,96 @@ msgid "Next" msgstr "Nastupnaja staronka" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ahułam" -#: js/messages.php:755 +#: js/messages.php:747 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Dvajkovy" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:749 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Sak" -#: js/messages.php:758 +#: js/messages.php:750 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Kra" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Tra" -#: js/messages.php:760 +#: js/messages.php:752 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Čer" -#: js/messages.php:761 +#: js/messages.php:753 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Lip" -#: js/messages.php:762 +#: js/messages.php:754 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Žni" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:756 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Kas" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Stu" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Lut" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Sak" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Kra" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2994,78 +2967,78 @@ msgid "May" msgstr "Tra" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Čer" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Žni" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Vier" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Kas" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Śn" -#: js/messages.php:801 +#: js/messages.php:793 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ndz" -#: js/messages.php:802 +#: js/messages.php:794 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pan" -#: js/messages.php:803 +#: js/messages.php:795 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Aŭt" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:798 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Piat" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3073,86 +3046,86 @@ msgid "Sun" msgstr "Ndz" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Pan" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Aŭt" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Sier" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Cač" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Piat" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ndz" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pan" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Aŭt" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sier" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Cač" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Piat" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 #, fuzzy #| msgid "Wiki" msgid "Wk" @@ -3161,81 +3134,81 @@ msgstr "Wiki" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Nijakaja" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:864 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "vykarystoŭvajecca" -#: js/messages.php:873 +#: js/messages.php:865 #, fuzzy #| msgid "per second" msgid "Second" msgstr "u sekundu" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Vykarystoŭvać tekstavaje pole" -#: js/messages.php:886 +#: js/messages.php:878 #, 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:887 +#: js/messages.php:879 #, 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:888 +#: js/messages.php:880 #, 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:889 +#: js/messages.php:883 #, 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:890 +#: js/messages.php:885 #, 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:891 +#: js/messages.php:888 #, 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:892 +#: js/messages.php:890 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" @@ -3247,53 +3220,53 @@ msgstr "%d nie źjaŭlajecca karektnym numaram radka." msgid "Please enter the same value again" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 #, 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:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 #, 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:898 +#: js/messages.php:917 #, 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:899 +#: js/messages.php:922 #, 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:901 +#: js/messages.php:928 #, 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:902 +#: js/messages.php:933 #, 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:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Pamyłka" @@ -3381,11 +3354,12 @@ msgstr "pa zapytu" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3434,7 +3408,7 @@ msgstr "" msgid "Explain" msgstr "Tłumačyć SQL" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Prafilavańnie" @@ -3476,8 +3450,8 @@ msgid "History" msgstr "Historyja SQL" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3662,7 +3636,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Pierajści da skapijavanaj tablicy" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -3670,28 +3644,28 @@ msgid "" "configured)." msgstr "(abo sokiet lakalnaha servera MySQL nie skanfihuravany pravilna)" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Server nie adkazvaje" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Padrabiaźniej…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Nie atrymałasia ŭstalavać złučeńnie dla controluser, vyznačanaje ŭ vašym " "kanfihuracyjnym fajle." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3701,8 +3675,8 @@ msgstr "" msgid "Ascending" msgstr "pramy" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3877,8 +3851,8 @@ msgstr[1] "%s supadzieńniaŭ u tablicy %s" msgstr[2] "%s supadzieńniaŭ u tablicy %s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3929,29 +3903,29 @@ msgstr "Źniać usie adznaki" msgid "Inside column:" msgstr "Unutry pola:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "Dadać/vydalić kalonku kryteru" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 #, fuzzy #| msgid "Files" msgid "Filter rows" msgstr "Fajły" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Search in database" msgid "Search this table" msgstr "Pošuk u bazie dadzienych" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 #, fuzzy #| msgid "Begin" @@ -3959,7 +3933,7 @@ msgctxt "First page" msgid "Begin" msgstr "Pieršaja staronka" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 #, fuzzy @@ -3968,7 +3942,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Papiaredniaja staronka" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 #, fuzzy @@ -3977,7 +3951,7 @@ msgctxt "Next page" msgid "Next" msgstr "Nastupnaja staronka" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 #, fuzzy #| msgid "End" @@ -3985,85 +3959,85 @@ msgctxt "Last page" msgid "End" msgstr "Apošniaja staronka" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Usie" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of fields" msgid "Number of rows:" msgstr "Kolkaść paloŭ" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Sartavać pa klučy" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Častkovyja teksty" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Poŭnyja teksty" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Kluč suviazi" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Disable foreign key checks" msgid "Display column for relations" msgstr "Adklučyć pravierku źniešnich klučoŭ" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Pieraŭtvareńnie MIME-typu braŭzeram" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Radok byŭ vydaleny" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Spynić" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Značeńnie moža być prybliznym. Hł. [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -4071,7 +4045,8 @@ msgstr "Značeńnie moža być prybliznym. Hł. [doc@faq3-11]FAQ 3.11[/doc]" msgid "Your SQL query has been executed successfully." msgstr "Vaš SQL-zapyt byŭ paśpiachova vykanany" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -4080,43 +4055,43 @@ msgstr "" "Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da " "%sdakumentacyi%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Pakazanyja zapisy" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "usiaho" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "Zapyt vykonvaŭsia %01.4f sek" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Z adznačanymi:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -4124,27 +4099,27 @@ msgstr "Z adznačanymi:" msgid "Check all" msgstr "Adznačyć usio" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Versija dla druku" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Dziejańni z vynikami zapytaŭ" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Pakazać PDF-schiemu" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 #, fuzzy #| msgid "Link not found" msgid "Link not found!" @@ -4254,19 +4229,19 @@ msgstr "Indeks nia vyznačany!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Indeksy" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -4275,24 +4250,24 @@ msgid "Action" msgstr "Dziejańnie" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Imia kluča" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Unikalnaje" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Ścisnutaja" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Kolkaść elementaŭ" @@ -4300,8 +4275,8 @@ msgstr "Kolkaść elementaŭ" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -4311,8 +4286,8 @@ msgid "Collation" msgstr "Supastaŭleńnie" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -4328,15 +4303,15 @@ msgstr "Pieršasny kluč byŭ vydaleny." msgid "Index %s has been dropped." msgstr "Indeks %s byŭ vydaleny." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Vydalić" @@ -4375,12 +4350,13 @@ msgstr "Vyhlad" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4388,7 +4364,7 @@ msgstr "Tablica" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4397,8 +4373,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4406,41 +4382,41 @@ msgid "Search" msgstr "Pošuk" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Ustavić" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Pryvilei" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Aperacyi" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4451,16 +4427,16 @@ msgstr "Tryhiery" msgid "Database seems to be empty!" msgstr "Baza dadzienych — pustaja!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Zapyt zhodna prykładu" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Pracedury" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4468,22 +4444,22 @@ msgstr "Pracedury" msgid "Events" msgstr "Padziei" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Dyzajner" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Dadać/vydalić kalonku kryteru" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Bazy dadzienych" @@ -4494,33 +4470,33 @@ msgid "User accounts" msgstr "Karystalnik" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Dvajkovy łog" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikacyja" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Źmiennyja" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Kadyroŭki" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Mašyny" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4858,7 +4834,7 @@ msgstr "Niemahčyma pierajmienavać indeks u PRIMARY!" msgid "No index parts defined!" msgstr "Častki indeksu nia vyznačanyja!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Pamyłka stvareńnia źniešniaha kluča na %1$s (praviercie typy kalonak)" @@ -5289,38 +5265,38 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "tečka web-servera dla zahruzki fajłaŭ" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Niemahčyma adkryć paznačanuju vami tečku dla zahruzki fajłaŭ." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Ačyścić" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Druk" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 #, fuzzy #| msgid "User" msgid "Users" @@ -5503,8 +5479,8 @@ msgid "Add new column" msgstr "Dadać %s novyja pali" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5576,19 +5552,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "Vam treba abnavić %s da versii %s ci paźniejšaj." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -6425,7 +6401,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Dadać značeńnie AUTO_INCREMENT" @@ -6468,7 +6444,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Dadać %s" @@ -8178,7 +8154,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 #, fuzzy #| msgid "in query" msgid "Retain query box" @@ -8478,113 +8454,35 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Tekst Open Document" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Tablica %s była ačyščanaja." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "Vyhlad %s byŭ vydaleny" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "Tablica %s była vydalenaja" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "nieviadoma" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: libraries/controllers/TableStructureController.php:250 -#, fuzzy -#| msgid "No rows selected" -msgid "No column selected." -msgstr "Nivodny radok nia vybrany" - -#: libraries/controllers/TableStructureController.php:484 -#, 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.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "Tablica %1$s była paśpiachova źmienienaja." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -#, fuzzy -#| msgid "Query type" -msgid "Query error" -msgstr "Typ zapytu" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Źmianić" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Indeks" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Poŭnatekstekstavaje" - -#: libraries/controllers/TableStructureController.php:1201 -#, fuzzy -#| msgid "Browse distinct values" -msgid "Distinct values" -msgstr "Prahlad roznych značeńniaŭ" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8600,6 +8498,14 @@ msgstr "" msgid "No data to display" msgstr "Bazy dadzienych adsutničajuć" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "Tablica %1$s była paśpiachova źmienienaja." + #: libraries/controllers/table/TableRelationController.php:212 #, fuzzy #| msgid "Thread %s was successfully killed." @@ -8612,25 +8518,95 @@ msgstr "Patok %s byŭ paśpiachova spynieny." msgid "Internal relations were successfully updated." msgstr "Unutranaja suviaź dadadzienaja" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Search" msgid "Table search" msgstr "Pošuk" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Search" msgid "Zoom search" msgstr "Pošuk" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "in query" msgid "Find and replace" msgstr "pa zapytu" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: libraries/controllers/table/TableStructureController.php:251 +#, fuzzy +#| msgid "No rows selected" +msgid "No column selected." +msgstr "Nivodny radok nia vybrany" + +#: libraries/controllers/table/TableStructureController.php:485 +#, 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/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +#, fuzzy +#| msgid "Query type" +msgid "Query error" +msgstr "Typ zapytu" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Źmianić" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Indeks" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Poŭnatekstekstavaje" + +#: libraries/controllers/table/TableStructureController.php:1209 +#, fuzzy +#| msgid "Browse distinct values" +msgid "Distinct values" +msgstr "Prahlad roznych značeńniaŭ" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8640,7 +8616,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Niama źmienaŭ" @@ -8716,7 +8692,7 @@ msgstr "Stvaryć" msgid "Create database:" msgstr "Stvaryć novuju bazu dadzienych" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Biez pryvilejaŭ" @@ -9527,72 +9503,72 @@ msgid "Dump has been saved to file %s." msgstr "Damp zachavany ŭ fajł %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL viarnuła pusty vynik (to bok nul radkoŭ)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, fuzzy, php-format #| msgid "No databases" msgid "Go to database: %s" msgstr "Bazy dadzienych adsutničajuć" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, fuzzy, php-format #| msgid "No tables" msgid "Go to table: %s" msgstr "Niama tablic" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Tolki strukturu" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" @@ -9616,73 +9592,73 @@ msgstr "Funkcyja" msgid "Binary" msgstr "Dvajkovy" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "Z-za vialikaj daŭžyni, hetaje pole nia moža być adredagavanaje " -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Dvajkovyja dadzienyja — nie redagujucca" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Abo" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "tečka web-servera dla zahruzki fajłaŭ" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Ustavić" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Pačać ustaŭku znoŭ z %s-ha radku" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "i paśla" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Ustavić jak novy radok" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Pierajści da papiaredniaj staronki" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Dadać jašče adzin radok" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Viarnucca da hetaj staronki" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Redagavać nastupny radok" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9692,7 +9668,7 @@ msgstr "" "Vykarystoŭvajcie klavišu TAB dla pieramiaščeńnia ad značeńnia da značeńnia " "abo CTRL+strełki dla pieramiaščeńnia ŭ luboje inšaje miesca" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9704,11 +9680,11 @@ msgstr "" msgid "Value" msgstr "Značeńnie" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "U vyhladzie SQL-zapytu" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "ID ustaŭlenaha radku: %1$d" @@ -9726,45 +9702,45 @@ msgstr "Nijakaja" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix:" msgstr "Zamianić dadzienyja tablicy dadzienymi z fajła" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix:" msgstr "Zamianić dadzienyja tablicy dadzienymi z fajła" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Piat" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Add new field" msgid "Add table prefix:" msgstr "Dadać novaje pole" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 #, fuzzy #| msgid "Add new field" msgid "Add prefix" msgstr "Dadać novaje pole" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -9996,8 +9972,8 @@ msgstr "Pracedury" msgid "Views:" msgstr "Vyhlad" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Pakazać" @@ -10040,10 +10016,9 @@ msgstr[1] "" msgstr[2] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "table name" -msgid "Filter databases by name or regex" -msgstr "imia tablicy" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -10052,12 +10027,6 @@ msgstr "imia tablicy" msgid "Clear fast filter" msgstr "Zachavać jak fajł" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "table name" -msgid "Filter by name or regex" -msgstr "imia tablicy" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -10463,7 +10432,7 @@ msgstr "Pierajmienavać bazu dadzienych u" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10474,7 +10443,7 @@ msgstr "Vy nia majecie dastatkovych pryvilejaŭ być u hetym miescy ŭ hety čas #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -10498,18 +10467,18 @@ msgstr "Pierajmienavać bazu dadzienych u" msgid "Drop the database (DROP)" msgstr "Kapijavać bazu dadzienych u" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Tolki strukturu" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Strukturu i dadzienyja" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Tolki dadzienyja" @@ -10523,7 +10492,7 @@ msgstr "Kapijavać bazu dadzienych u" msgid "CREATE DATABASE before copying" msgstr "vykanać CREATE DATABASE pierad kapijavańniem" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Dadać abmiežavańni" @@ -10563,63 +10532,63 @@ msgstr "Mašyna zachavańnia dadzienych" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Skapijavać tablicu ŭ (baza dadzienych.tablica)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Pierajści da skapijavanaj tablicy" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Absłuhoŭvańnie tablicy" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Analizavać tablicu" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Pravieryć tablicu" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Pravieryć tablicu" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Defrahmentavać tablicu" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "Keš tablicy %s byŭ ačyščany." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Skinuć keš tablicy (\"FLUSH\")" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Aptymizavać tablicu" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Ramantavać tablicu" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 #, fuzzy @@ -10627,103 +10596,103 @@ msgstr "Ramantavać tablicu" msgid "Delete data or table" msgstr "Damp dadzienych tablicy" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 #, fuzzy #| msgid "Copy database to" msgid "Delete the table (DROP)" msgstr "Kapijavać bazu dadzienych u" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Praanalizavać" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Pravieryć" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Aptymizavać" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Pierabudavać" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Adramantavać" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "Padtrymka padziełaŭ" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "Padzieł %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "Skasavać padzieł na častki" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Pravieryć cełasnaść dadzienych:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Niemahčyma pieranieści tablicu ŭ samu siabie!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Niemahčyma skapijavać tablicu ŭ samu siabie!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tablica %s była pieraniesienaja ŭ %s." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tablica %s była skapijavanaja ŭ %s." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "Tablica %s była pieraniesienaja ŭ %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "Tablica %s była skapijavanaja ŭ %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Pustaja nazva tablicy!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10918,7 +10887,7 @@ msgstr "Nałady ekspartu bazy dadzienych" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Damp dadzienych tablicy" @@ -10944,21 +10913,21 @@ msgstr "Apisańnie" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Struktura tablicy" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Struktura dla prahladu" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Zamianialnaja struktura dla prahladu" @@ -11076,7 +11045,7 @@ msgid "Database:" msgstr "Baza dadzienych" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11194,7 +11163,7 @@ msgid "Data creation options" msgstr "Opcyi pieraŭtvareńnia" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -11263,8 +11232,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11272,98 +11241,98 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Export type" msgid "Metadata" msgstr "Typ ekspartu" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 #, fuzzy #| msgid "Creation" msgid "Creation:" msgstr "Stvoranaja" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 #, fuzzy #| msgid "Last update" msgid "Last update:" msgstr "Apošniaje abnaŭleńnie" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 #, fuzzy #| msgid "Last check" msgid "Last check:" msgstr "Apošniaja pravierka" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "vykarystoŭvajecca" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Abmiežavańni dla ekspartavanych tablic" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Abmiežavańni dla tablicy" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Abmiežavańni dla ekspartavanych tablic" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "U tablicy(ach):" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Dadać značeńnie AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Dadać značeńnie AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "MIME-typy tablicy" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "Suviazi ŭ tablicy" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Struktura dla prahladu" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11623,9 +11592,9 @@ msgstr "Relacyjnaja schiema" msgid "Table of contents" msgstr "Źmiest" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Dadatkova" @@ -11878,63 +11847,63 @@ msgstr "Farmatuje tekst jak SQL-zapyt z padśviečanym syntaksisam." msgid "Formats text as XML with syntax highlighting." msgstr "Farmatuje tekst jak SQL-zapyt z padśviečanym syntaksisam." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Pamyłka: suviaź užo isnuje." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "Suviaź FOREIGN KEY była dadadzienaja" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Pamyłka: suviaź nie dadadzienaja." -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Relational features are disabled!" msgstr "Pamyłka: suviaź nie dadadzienaja." -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "Unutranaja suviaź dadadzienaja" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "Pamyłka: suviaź nie dadadzienaja." -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "Suviaź FOREIGN KEY była dadadzienaja" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Pamyłka: suviaź nie dadadzienaja." -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "Pamyłka: suviaź nie dadadzienaja." -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11992,110 +11961,110 @@ msgstr "" "Za infarmacyjaj jak abnavić tablicu column_comments źviarniciesia, kali " "łaska, da dakumentacyi." -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Zakładzieny SQL-zapyt" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "Historyja SQL" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "The server is not responding" msgid "Persistent favorite tables" msgstr "Server nie adkazvaje" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Modifications have been saved" msgid "Configurable menus" msgstr "Madyfikacyi byli zachavanyja" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Rename table to" msgid "Remembering Designer Settings" msgstr "Pierajmienavać tablicu ŭ" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Export" msgid "Saving export templates" msgstr "Ekspart" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "niama apisańnia" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -12275,8 +12244,8 @@ msgstr "Imia karystalnika" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Imia karystalnika" @@ -12284,7 +12253,7 @@ msgstr "Imia karystalnika" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Parol" @@ -13004,7 +12973,7 @@ msgstr[2] "%s bazaŭ dadzienych byli paśpiachova vydalenyja." msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "" @@ -13012,103 +12981,99 @@ msgstr "" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Adklučana" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Biez pryvilejaŭ." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Uklučaje ŭsie pryvilei, aproč GRANT." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Dazvalaje čytać dadzienyja." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Dazvalaje ŭstaŭlać i zamianiać dadzienyja." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Dazvalaje źmianiać dadzienyja." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Dazvalaje vydalać dadzienyja." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Dazvalaje stvarać novyja bazy dadzienych i tablicy." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Dazvalaje vydalać bazy dadzienych i tablicy." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Dazvalaje pierazahružać nałady servera i ačyščać keš servera." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Dazvalaje spyniać server." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 #, fuzzy #| msgid "Allows viewing processes of all users" msgid "Allows viewing processes of all users." msgstr "Dazvalaje prahladać pracesy ŭsich karystalnikaŭ" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" "Dazvalaje impartavać dadzienyja z fajłaŭ i ekspartavać dadzienyja ŭ fajły." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "Nie pracuje ŭ hetaj versii MySQL." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Dazvalaje stvarać i vydalać indeksy." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Dazvalaje źmianiać strukturu isnych tablic." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Daje dostup da poŭnaha śpisu bazaŭ dadzienych." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -13119,41 +13084,41 @@ msgstr "" "vyznačeńnie hlabalnych źmiennych abo spynieńnie patokaŭ inšych karystalnikaŭ." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Dazvalaje stvarać časovyja tablicy." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Dazvalaje blakavać tablicy dla biahučaha patoku." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Nieabchodna dla replikacyi slaves." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "Dazvalaje karystalniku pytacca, dzie znachodziacca slaves / masters." #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Dazvalaje stvarać novyja prahlady." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "Dazvalaje stvarać padziei ŭ planiroŭniku padziejaŭ" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 #, fuzzy #| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." @@ -13161,28 +13126,28 @@ msgstr "Dazvalaje stvareńnie i vydaleńnie tryhieraŭ" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Dazvalaje vykanańnie zapytaŭ SHOW CREATE VIEW." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Dazvalaje stvarać pragramy, jakija zachoŭvajucca." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Dazvalaje źmianiać i vydalać pragramy, jakija zachoŭvajucca." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Dazvalaje stvarać, vydalać i pierajmianoŭvać ulikovyja zapisy karystalnikaŭ." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Dazvalaje vykanańnie pragramaŭ, jakija zachoŭvajucca." @@ -13196,8 +13161,8 @@ msgstr "Nijakaja" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -13241,14 +13206,14 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Zaŭvaha: Paznačeńnie hetych opcyjaŭ jak 0 (nul) zdymaje abmiežavańnie." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Abmiažoŭvaje kolkaść zapytaŭ, jakija karystalnik moža adpravić na server na " "praciahu hadziny." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -13257,22 +13222,22 @@ msgstr "" "dadzienych, jakija karystalnik moža vykanać na praciahu hadziny." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Abmiažoŭvaje kolkaść novych złučeńniaŭ, jakija karystalnik moža adkryć na " "praciahu hadziny." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Abmiažoŭvaje kolkaść adnačasovych złučeńniaŭ, jakija moža mieć karystalnik." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -13280,7 +13245,7 @@ msgid "Routine" msgstr "Pracedury" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -13301,14 +13266,14 @@ msgstr "Dazvalaje vykanańnie pragramaŭ, jakija zachoŭvajucca." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Pryvilei, specyfičnyja dla tablicy" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -13320,7 +13285,7 @@ msgid "Administration" msgstr "Administravańnie" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Hlabalnyja pryvilei" @@ -13331,15 +13296,15 @@ msgid "Global" msgstr "hlabalny" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Specyfičnyja pryvilei bazy dadzienych" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Dazvalaje stvarać novyja tablicy." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Dazvalaje vydalać tablicy." @@ -13362,7 +13327,7 @@ msgid "Native MySQL Authentication" msgstr "Aŭtentyfikacyja…" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Infarmacyja pra ŭvachod" @@ -13387,8 +13352,8 @@ msgstr "Imia karystalnika" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Log name" msgid "Host name" @@ -13410,249 +13375,249 @@ msgstr "Aŭtentyfikacyja…" msgid "Password Hashing Method" msgstr "Chešavańnie parolu" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "Parol dla %s paśpiachova źmienieny." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Vy anulavali pryvilei dla %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Luby karystalnik" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Baza dadzienych dla karystalnika" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" "Stvaryć bazu dadzienych z takim samym imiem i nadzialić usimi pryvilejami." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Nadzialić usimi pryvilejami bazy z imienami pa mascy (imia karystalnika_%)." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Karystalniki z pravami dostupu da \"%s\"" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Vyhlad %s byŭ vydaleny" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Grant" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nie znojdzieny karystalnik." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Luby" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "hlabalny" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "specyfičny dla bazy dadzienych" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "šablon" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "specyfičny dla bazy dadzienych" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Redagavać pryvilei" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Anulavać" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "Redagavać nastupny radok" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… pakinuć staroha." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… vydalić staroha z tablicy karystalnikaŭ." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… anulavać usie aktyŭnyja pryvilei staroha i paśla vydalić jaho." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… vydalić staroha z tablicy karystalnikaŭ i paśla pierazahruzić pryvilei." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Źmianić rehistracyjnuju infarmacyju / Kapijavać karystalnika" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Stvaryć novaha karystalnika z takimi ž pryvilejami i …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Specyfičnyja pryvilei kalonak" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Vydalić vybranych karystalnikaŭ" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Anulavać usie aktyŭnyja pryvilei karystalnikaŭ i paśla vydalić ich." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" "Vydalić bazy dadzienych, jakija majuć takija ž imiony jak i karystalniki." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "Na vybranyja karystalniki dla vydaleńnia!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Pierazahruzić pryvilei" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Vybranyja karystalniki byli paśpiachova vydalenyja." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Vy źmianili pryvilei dla %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "Vydaleńnie %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Pryvilei byli paśpiachova pierazahružanyja." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "Karystalnik %s užo isnuje!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Pryvilei" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Karystalnik" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Redagavać pryvilei" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "User" msgid "User account" msgstr "Karystalnik" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Karystalniki" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13665,7 +13630,7 @@ msgstr "" "jakija vykarystoŭvaje server, kali jany byli źmienienyja ŭručnuju. U hetym " "vypadku vam treba %spierazahruzić pryvilei%s da taho, jak vy praciahniecie." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13684,11 +13649,11 @@ msgstr "" "jakija vykarystoŭvaje server, kali jany byli źmienienyja ŭručnuju. U hetym " "vypadku vam treba %spierazahruzić pryvilei%s da taho, jak vy praciahniecie." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "Vyłučany karystalnik nia znojdzieny ŭ tablicy pryvilejaŭ." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Byŭ dadadzieny novy karystalnik." @@ -13937,33 +13902,33 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 #, fuzzy msgid "Refresh rate" msgstr "Abnavić" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Dadać/vydalić kalonku kryteru" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -14031,7 +13996,7 @@ msgid "Statements" msgstr "Vyrazy" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -14064,19 +14029,19 @@ msgstr "Pakazać adkrytyja tablicy" msgid "Related links:" msgstr "Suviazi" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Kolkaść synchranizavynych zapisaŭ, zroblenych u łog-fajł." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -14086,17 +14051,17 @@ msgstr "" "jakija pieravysili značeńnie binlog_cache_size i vykarystoŭvali časovy fajł " "dla zachoŭvańnia vyrazaŭ tranzakcyi." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Kolkaść tranzakcyjaŭ, jakija vykarystoŭvali časovy dvajkovy keš zapytaŭ." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -14108,11 +14073,11 @@ msgstr "" "pavialičyć značeńnie tmp_table_size, kab časovyja tablicy zachoŭvalisia ŭ " "pamiaci, a nie na dysku." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "Kolkaść časovych fajłaŭ, stvoranych mysqld." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -14120,7 +14085,7 @@ msgstr "" "Kolkaść časovych tablic, raźmieščanych u pamiaci, jakija byli aŭtamatyčna " "stvoranyja serveram padčas vykanańnia vyrazaŭ." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -14128,7 +14093,7 @@ msgstr "" "Kolkaść radkoŭ, zapisanych z INSERT DELAYED, z-za jakich adbylisia peŭnyja " "pamyłki (peŭna, dublavanyja klučy)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -14137,23 +14102,23 @@ msgstr "" "Kožnaja tablica, na jakoj vykonvajecca INSERT DELAYED atrymlivaje svoj " "ułasny patok." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "Kolkaść zapisanych INSERT DELAYED radkoŭ." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "Kolkaść vykananych FLUSH-vyrazaŭ." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "Kolkaść unutranych COMMIT-vyrazaŭ." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "Kolkaść razoŭ vydaleńnia radka z tablicy." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -14163,7 +14128,7 @@ msgstr "" "viedaje jana tablicu z dadzienym imiem. Heta nazyvajecca vyśviatleńniem. " "Handler_discover pakazvaje kolkaść vyśviatleńniaŭ tablic." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -14174,7 +14139,7 @@ msgstr "" "skanavańniaŭ; naprykład, SELECT col1 FROM foo, uličvajučy, što col1 " "indeksavanaja." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -14183,7 +14148,7 @@ msgstr "" "vialikaja, heta dobraja prykmieta taho, što zapyty i tablicy dobra " "indeksavanyja." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -14193,7 +14158,7 @@ msgstr "" "pavialičvajecca, kali vykonvajecca zapyt na indeksavanuju kalonku z šeraham " "abmiežavańniaŭ abo kali adbyvajecca skanavańnie indeksaŭ." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -14201,7 +14166,7 @@ msgstr "" "Kolkaść zapytaŭ čytańnia papiaredni radok u klučavym paradku. Hety metad " "čytańnia vykarystoŭvajecca pieravažna dla aptymizacyi ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -14214,7 +14179,7 @@ msgstr "" "całkam abo vykonvajucca ab'jadnańni, jakija niapravilna vykarystoŭvajuć " "klučy." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -14226,37 +14191,37 @@ msgstr "" "aznačaje, što tablicy indeksavanyja niapravilna abo zapyty nie napisanyja " "tak, kab vykarystoŭvać pieravahi indeksaŭ." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "Kolkaść unutranych vyrazaŭ ROLLBACK." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "Kolkaść zapytaŭ abnaŭleńnia radka ŭ tablicy." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "Kolkaść zapytaŭ ustaŭki radka ŭ tablicu." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Kolkaść staronak, jakija ŭtrymlivajuć dadzienyja (źmienienych abo " "niaźmienienych)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "Kolkaść źmienienych staronak." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Kolkaść staronak bufernaha pułu, na jakija byŭ atrymany zapyt na skid." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "Kolkaść volnych staronak." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -14266,7 +14231,7 @@ msgstr "" "staronki, jakija ŭ biahučy momant čytajucca ci zapisvajucca abo jakija nia " "mohuć być skinutyja ci vydalenyja z-za peŭnaj pryčyny." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -14279,11 +14244,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "Ahulny pamier bufernaha pułu, u staronkach." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -14292,7 +14257,7 @@ msgstr "" "adbyvajecca, kali zapyt prahladaje značnuju častku tablicy, ale ŭ vypadkovym " "paradku." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -14300,11 +14265,11 @@ msgstr "" "Kolkaść paśladoŭnych papiarednich čytańniaŭ, zroblenych InnoDB. Heta " "adbyvajecca, kali InnoDB vykonvaje paśladoŭny poŭny prahlad tablicy." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "Kolkaść lagičnych zapytaŭ čytańnia, zroblenych InnoDB." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -14312,7 +14277,7 @@ msgstr "" "Kolkaść lagičnych čytańniaŭ, jakija InnoDB nie zmahła adnavić z bufernaha " "pułu, a tamu zrabiła adnastaronkavaje čytańnie." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -14326,55 +14291,55 @@ msgstr "" "kamputar padličvaje kolkaść takich čakańniaŭ. Kali pamier buferu byŭ " "vyznačany pravilna, hetaje značeńnie musić być maleńkim." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "Kolkaść zapisaŭ, zroblenych u buferny puł InnoDB." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "Kolkaść aperacyjaŭ fsync() na biahučy momant." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "Biahučaja kolkaść aperacyjaŭ fsync(), jakija čakajuć vykanańnia." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "Biahučaja kolkaść čytańniaŭ, jakija čakajuć vykanańnia." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "Biahučaja kolkaść zapisaŭ, jakija čakajuć vykanańnia." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "Kolkaść pračytanych na biahučy momant dadzienych, u bajtach." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "Ahulnaja kolkaść čytańniaŭ dadzienych." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "Ahulnaja kolkaść zapisaŭ dadzienych." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "Kolkaść zapisanych na biahučy momant dadzienych, u bajtach." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Kolkaść padvojnych zapisaŭ, jakija byli vykananyja, i kolkaść staronak, " "jakija byli zapisanyja dla hetaj mety." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" "Kolkaść padvojnych zapisaŭ, jakija byli vykananyja, i kolkaść staronak, " "jakija byli zapisanyja dla hetaj mety." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -14382,35 +14347,35 @@ msgstr "" "Kolkaść vypadkaŭ čakańnia z-za taho, što bufer łogu byŭ zanadta mały, i tamu " "daviałosia čakać, pakul jon nie ačyścicca." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "Kolkaść zapisaŭ u łog." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "Kolkaść fizyčna vykananych zapisaŭ u łog-fajł." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "Kolkaść synchranizavynych zapisaŭ, zroblenych u łog-fajł." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "Kolkaść synchranizavańniaŭ łog-fajła, jakija čakajuć vykanańnia." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "Kolkaść zapisaŭ u łog-fajł, jakija čakajuć vykanańnia." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "Kolkaść bajtaŭ, zapisanych u łog-fajł." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "Kolkaść stvoranych staronak." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -14419,54 +14384,54 @@ msgstr "" "vymiarajucca ŭ staronkach; pamier staronki dazvalaje chutka pieravieści jaho " "ŭ bajty." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "Kolkaść pračytanych staronak." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "Kolkaść zapisanych staronak." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" "Kolkaść blakavańniaŭ radkoŭ, čakańnie jakich adbyvajecca na biahučy momant." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Siaredni čas atrymańnia mahčymaści blakavańnia radku, u milisekundach." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Ahulny čas čakańnia atrymańnia mahčymaści blakavańnia radku, u milisekundach." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Maksymalny čas atramańnia mahčymaści blakavańnia radku, u milisekundach." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "Kolkaść razoŭ, kali davodziłasia čakać blakavańnie radku." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "Kolkaść radkoŭ, vydalenych z tablic InnoDB." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "Kolkaść radkoŭ, ustaŭlenych u tablicy InnoDB." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "Kolkaś radkoŭ, pračytanych z tablic InnoDB." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "Kolkaść radkoŭ, abnoŭlenych u tablicach InnoDB." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -14474,7 +14439,7 @@ msgstr "" "Kolkaść blokaŭ u kešy klučoŭ, jakija byli źmienienyja, ale jašče nie byli " "skinutyja na dysk. Vykarystoŭvajecca jak značeńnie Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -14482,7 +14447,7 @@ msgstr "" "Kolkaść niavykarystanych blokaŭ u kešy klučoŭ. Hetaje značeńnie možna " "vykarystoŭvać dla vyznačeńnia stupieni vykarystańnia kešu klučoŭ." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -14492,17 +14457,17 @@ msgstr "" "stupieńniu peŭnaści śviedčyć pra maksymalnuju za ŭvieś čas kolkaść blokaŭ, " "jakija vykarastoŭvalisia adnačasova." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Farmat impartavanaha fajła" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "Kolkaść zapytaŭ na čytańnie bloku klučoŭ z kešu." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -14512,26 +14477,26 @@ msgstr "" "vialikaje, značeńnie key_buffer_size, vidać, vielmi małoje. Kolkaść " "promachaŭ u keš možna vyličyć jak Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "Kolkaść zapytaŭ na zapis bloku klučoŭ u keš." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "Kolkaść fizyčnych zapisaŭ bloku klučoŭ na dysk." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -14542,17 +14507,17 @@ msgstr "" "Značeńnie pa zmoŭčańni 0 aznačaje, što nivodny zapyt jašče nia byŭ " "zkampilavany." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Kolkaść radkoŭ dla zapisu, adkładzienych zapytami INSERT DELAYED." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -14560,39 +14525,39 @@ msgstr "" "Kolkaść tablic, jakija byli adkrytyja. Kali adkrytyja tablicy vialikija, " "značeńnie kešu tablic imavierna vielmi małoje." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "Kolkaść adkrytych fajłaŭ." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Kolkaść adkrytych patokaŭ (vykarystoŭvajucca pieravažna dla łahavańnia)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "Kolkaść adkrytych tablic." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "Kolkaść volnaj pamiaci dla kešu zapytaŭ." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "Kolkaść zvarotaŭ da kešu." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "Kolkaść zapytaŭ, jakija byli dadanyja ŭ keš." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14605,7 +14570,7 @@ msgstr "" "vykarystoŭvaŭsia najmienš (LRU) dla vyznačeńnia, jakija zapyty treba vydalać " "z kešu." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -14613,19 +14578,19 @@ msgstr "" "Kolkaść niekešavalnych zapytaŭ (niekešavalnych abo niekešavanych z-za " "značeńnia dyrektyvy query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "Kolkaść zapytaŭ, jakija prysutničajuć u kešy." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "Ahulnaja kolkaść blokaŭ u kešy zapytyŭ." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stan abaronienaj ad pamyłak replikacyi (jašče nie realizavanaja)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -14633,13 +14598,13 @@ msgstr "" "Kolkaść ab'jadnańniaŭ, jakija nie vykarystoŭviajuć indeksy. Kali hetaje " "značeńnie nia roŭnaje 0, varta pravieryć indeksy ŭ tablicach." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" "Kolkaść ab'jadnańniaŭ, jakija vykarystoŭvali pošuk pa mascy ŭ metavaj " "tablicy." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -14648,7 +14613,7 @@ msgstr "" "kluča paśla kožnaha radka. (Kali hetaje značeńnie nia roŭnaje 0, varta " "pravieryć indeksy ŭ tablicach.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -14656,17 +14621,17 @@ msgstr "" "Kolkaść ab'jadnańniaŭ, jakija vykarystoŭvali spałučeńni paloŭ u pieršaj " "tablicy. (Zvyčajna nie krytyčna, navat kali hetaje značeńnie vialikaje.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "Kolkaść ab'jadnańniaŭ, jakija praviali poŭny prahlad pieršaj tablicy." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Kolkaść časovych tablic, jakija ŭ biahučy momant adkrytyja zaležnym SQL-" "patokam." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -14674,13 +14639,13 @@ msgstr "" "Ahulnaja (ad zahruzki) kolkaść razoŭ, kali zaležny SQL-patok replikacyi " "paŭtaraŭ tranzakcyi." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Hetaje značeńnie roŭnaje \"ON\", kali server źjaŭlajecca zaležnym i " "padłučanym da servera, jaki jaho kantraluje." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -14688,14 +14653,14 @@ msgstr "" "Kolkaść patokaŭ, jakim spatrebiłasia bolš za slow_launch_time sekundaŭ dla " "stvareńnia." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Kolkaść zapytaŭ, na vykanantnie jakich spatrebiłasia bolš, čym " "long_query_time sekundaŭ." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -14705,25 +14670,25 @@ msgstr "" "hetaje značeńnie vialikaje, varta razhledzić pavieličeńnie značeńnia " "systemnaj źmiennaj sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" "Kolkaść sartavańniaŭ, jakija byli zroblenyja z vykarystańniem niekalkich " "słupkoŭ." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "Kolkaść adsartavanych radkoŭ." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "Kolkaść sartavańniaŭ, jakija byli zroblenyja padčas prahladu tablicy." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "Kolkaść razoŭ, kali blakavańnie tablicy było zroblenaje imhnienna." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14735,7 +14700,7 @@ msgstr "" "prablemy z pradukcyjnaściu, varta spačatku aptymizavać zapyty, a paśla abo " "padzialić tablicu abo tablicy, abo vykarystoŭvać replikacyju." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -14745,11 +14710,11 @@ msgstr "" "jak Threads_created/Connections. Kali hetaje značeńnie pafarbavanaje ŭ " "čyrvony koler, varta pavialičyć značeńnie thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "Kolkaść adkrytych na biahučy momant złučeńniaŭ." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14761,13 +14726,13 @@ msgstr "" "thread_cache_size. (Zvyčajna, heta nie daje jakoha-niebudź zaŭvažnaha " "pavieličeńnia pradukcyjnaści, kali prysutničaje dobraja realizacyja patokaŭ.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Keš klučoŭ" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "Kolkaść patokaŭ, jakija nie źjaŭlajucca śpiačymi." @@ -14776,77 +14741,77 @@ msgstr "Kolkaść patokaŭ, jakija nie źjaŭlajucca śpiačymi." msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 #, fuzzy #| msgid "User" msgid "User groups" msgstr "Karystalnik" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "Versija servera" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Database for user" msgid "Database level tabs" msgstr "Baza dadzienych dla karystalnika" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table removal" msgid "Table level tabs" msgstr "Imia tablicy" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy #| msgid "View" msgid "View users" msgstr "Vyhlad" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Any user" msgid "Add user group" msgstr "Luby karystalnik" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Biez pryvilejaŭ." -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "Nazvy kalonak" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Versija servera" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Database for user" msgid "Database-level tabs" msgstr "Baza dadzienych dla karystalnika" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table removal" msgid "Table-level tabs" @@ -14910,21 +14875,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14991,139 +14952,139 @@ msgstr "Tablica %1$s stvoranaja." msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "U pačatku tablicy" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 #, fuzzy #| msgid "The number of tables that are open." msgid "The name of the entity was expected." msgstr "Kolkaść adkrytych tablic." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Radok byŭ vydaleny" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Pamier pavieličeńnia fajłaŭ z dadzienymi" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy #| msgid "Sat" msgid "State" msgstr "Sub" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Ahułam" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Čas" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Čas" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Dadać hety SQL-zapyt u zakładki" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Label" msgid "Label:" msgstr "Mietka" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Dać kožnamu karystalniku dostup da hetaj zakładki" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created!" msgstr "Zakładka %s stvoranaja" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "U vyhladzie PHP-kodu" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Prablemy z indeksami dla tablicy `%s`" @@ -15154,29 +15115,29 @@ msgstr "" msgid "Bind parameters" msgstr "Dadać novaje pole" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 #, fuzzy #| msgid "Bookmark this SQL query" msgid "Bookmark this SQL query:" msgstr "Dadać hety SQL-zapyt u zakładki" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Zamianić isnuju zakładku z takim ža imiem" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Raździalalnik" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Pakazać hety zapyt znoŭ" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Tolki prahlad" @@ -15222,104 +15183,104 @@ msgstr "" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Delete relation" msgid "Delete version" msgstr "Vydalić suviaź" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Dazvalaje ŭstaŭlać i zamianiać dadzienyja." -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Bazy dadzienych adsutničajuć" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -15327,78 +15288,78 @@ msgctxt "None for default" msgid "None" msgstr "Nijakaja" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format #| msgid "General relation features" msgid "Version %1$s of %2$s was deleted." msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking" msgstr "Dazvalaje ŭstaŭlać i zamianiać dadzienyja." -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "" @@ -15408,13 +15369,13 @@ msgstr "" msgid "Manage your settings" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." msgstr "Madyfikacyi byli zachavanyja" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -15519,7 +15480,7 @@ msgstr "Bazy dadzienych adsutničajuć" msgid "View dump (schema) of databases" msgstr "Prahladzieć damp (schiemu) bazaŭ dadzienych" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -15544,7 +15505,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin nia moža spynić praces %s. Napeŭna, jon užo spynieny." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -16502,51 +16463,57 @@ msgstr "" msgid "Stacked" msgstr "Ścisnutaja" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Report title" +msgid "Chart title:" +msgstr "Zahałovak spravazdačy" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Značeńnie" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Značeńnie" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside field:" msgid "Series column:" msgstr "Unutry pola:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Number of fields" msgid "Value Column:" msgstr "Kolkaść paloŭ" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -16612,17 +16579,49 @@ msgstr "Kamentar" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +#, fuzzy +#| msgid "Disable foreign key checks" +msgid "Foreign key constraints" +msgstr "Adklučyć pravierku źniešnich klučoŭ" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "Dziejańni" + +#: templates/table/relation/common_form.phtml:10 +#, fuzzy +#| msgid "Constraints for table" +msgid "Constraint properties" +msgstr "Abmiežavańni dla tablicy" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "" + +#: templates/table/relation/common_form.phtml:60 +#, fuzzy +#| msgid "Add constraints" +msgid "+ Add constraint" +msgstr "Dadać abmiežavańni" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "Unutranyja suviazi" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Unutranyja suviazi" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -16630,38 +16629,7 @@ msgstr "" "Unutranaja suviaź nie źjaŭlajecca abaviazkovaj, kali isnuje adpaviednaja " "suviaź FOREIGN KEY." -#: templates/table/relation/common_form.phtml:37 -#, fuzzy -#| msgid "Disable foreign key checks" -msgid "Foreign key constraints" -msgstr "Adklučyć pravierku źniešnich klučoŭ" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "Dziejańni" - -#: templates/table/relation/common_form.phtml:41 -#, fuzzy -#| msgid "Constraints for table" -msgid "Constraint properties" -msgstr "Abmiežavańni dla tablicy" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "" - -#: templates/table/relation/common_form.phtml:83 -#, fuzzy -#| msgid "Add constraints" -msgid "+ Add constraint" -msgstr "Dadać abmiežavańni" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -16821,7 +16789,7 @@ msgid "at beginning of table" msgstr "U pačatku tablicy" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16870,7 +16838,7 @@ msgstr "padzielenaja na sekcyi" msgid "Edit partitioning" msgstr "Skasavać padzieł na častki" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -18206,6 +18174,41 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "maksymum adnačasovych złučeńniaŭ" +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "Tablic" + +#, fuzzy +#~| msgid "View" +#~ msgid "views" +#~ msgstr "Vyhlad" + +#, fuzzy +#~| msgid "Procedures" +#~ msgid "procedures" +#~ msgstr "Pracedury" + +#, fuzzy +#~| msgid "Event" +#~ msgid "events" +#~ msgstr "Padzieja" + +#, fuzzy +#~| msgid "Functions" +#~ msgid "functions" +#~ msgstr "Funkcyi" + +#, fuzzy +#~| msgid "table name" +#~ msgid "Filter databases by name or regex" +#~ msgstr "imia tablicy" + +#, fuzzy +#~| msgid "table name" +#~ msgid "Filter by name or regex" +#~ msgstr "imia tablicy" + #, fuzzy #~| msgid "Change" #~ msgid "Taking you to %s." diff --git a/po/bg.po b/po/bg.po index 58b899ea11..2683e13c00 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-06-28 13:36+0200\n" "Last-Translator: Valter Georgiev \n" "Language-Team: Bulgarian Are you sure you " "want to continue?" @@ -1967,51 +1979,51 @@ msgstr "" "Това действие може да промени дефиницията на накоя от колоните.
Сифурни " "ли сте, че искате да продължите?" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "Продължете" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "Добавяне на първичен ключ" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "Беше добавен главен ключ." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "Към следващата стъпка…" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Първата стъпка от нормализирането е завършено за таблиза '%s'." -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "Край на стъпката" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "Втора стъпка на нормализация (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Готово" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "Потвърждаване на частичната зависимост" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "Избраните частични зависимостити са следните:" -#: js/messages.php:440 +#: js/messages.php:441 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 +2031,20 @@ msgstr "" "Забележка: а, б -> D, F предполага стойности на колони А и В се комбинират " "заедно могат да се определят стойностите на колона г и колона е." -#: js/messages.php:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "Няма избрани частични зависимости!" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Покажи ми възможните частични зависимости, базирани на данните в таблицата" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "Скриване на листа с частичните зависимости" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2040,173 +2052,173 @@ msgstr "" "Облегнете се! Може да отнеме няколко секунди, в зависимост от размера на " "данните и броя на колоните в таблицата." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "Стъпка" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "Следните действия ще бъдат изпълнени:" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "ИЗТРИВАНЕ на колона/и %s от таблицата %s" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "Създаване на следната таблица" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "Трета стъпка на нормализация (3NF)" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "Потвърждаване на преходните зависимости" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "Избраните зависимости са следните:" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "Няма избрани зависимости!" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Запазване" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Скриване критерий за търсене" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Показване критерий за търсене" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "Търсене в област" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "Максимум колони:" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "Минимум колони:" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "Минимална стойност:" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "Максимална стойност:" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "Скриване параметрите за търсене и заместване" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "Показване параметрите за търсене и заместване" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "Всяка точка представлява ред." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "Посочване на точка ще покаже етикета ѝ." -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "За да увеличите, изберете част от диаграмата с мишката." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" "Щракнете върху връзката за възстановяване на мащабирането, за да се върнете " "в състоянието по подразбиране." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Кликнете върху точката с данните, за да видите и евентуално промените реда." -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Плотът може да се преоразмерява, като го дръпнете за долния десен ъгъл." -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "Изберете две колони" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "Изберете две различни колони" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "Съдържание на точката с данни" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Игнориране" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Копиране" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Точка" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Linestring" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Многоъгълник" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Геометрия" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Вътрешен пръстен" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Външен контур:" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "Искате ли да копирате криптиращия ключ?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "Криптиращ ключ" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2214,24 +2226,24 @@ msgstr "" "Изглежда сте направили промени на страницата; ще бъдете уведомени преди да " "изоставите промените" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Изберете посочвания ключ" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Избор външен ключ" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "Моля изберете главен или уникален ключ!" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Изберете колона за показване" -#: js/messages.php:532 +#: js/messages.php:533 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?" @@ -2239,77 +2251,77 @@ msgstr "" "Не сте записали промените в оформлението. Те ще бъдат загубени, ако не ги " "запазите. Искате ли да продължите?" -#: js/messages.php:535 +#: js/messages.php:536 msgid "Page name" msgstr "Име на страница" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Записване на страница" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Записване на страница като" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Отвори страница" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "Изтриване на страница" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Неозаглавено" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "Моля изберете страница, за да продължите" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "Моля, въведете валидно име на страница" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "Искате ли да запишете промените на текущата страница?" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "Изтриването на страницата е успешно" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "Експорт на релационна схема" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Промените бяха запазени" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "Добавяне на опция към колона \"%s\"." -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "%d обект(а) бяха създадени." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Изпълнение" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "Натиснете Esc за отмяна на редакцията." -#: js/messages.php:557 +#: js/messages.php:558 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?" @@ -2317,15 +2329,15 @@ msgstr "" "Редактирали сте данни и те не са запазени. Наистина ли искате да напуснете " "страницата преди запазването им?" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "Завличане за промяна на подредбата." -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "Кликнете за сортиране на резултата по тази колона." -#: js/messages.php:563 +#: js/messages.php:564 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 " @@ -2335,26 +2347,26 @@ msgstr "" "ASC/DESC.
- Control+кликване за премахване на колоната от ORDER BY " "клаузата" -#: js/messages.php:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "Щракване за маркиране/отмаркиране." -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "Щракнете двукратно за копиране името на колона." -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Щракнете стрелката,
за да изберете колони." -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Показване на всички" -#: js/messages.php:574 +#: js/messages.php:575 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." @@ -2363,11 +2375,11 @@ msgstr "" "редакция, отметката, връзките редактиране, копиране и изтриване може да не " "работят след запазване." -#: js/messages.php:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "Моля въведете валиден шеснадесетичен низ. Валидни символи са 0-9, A-F." -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2375,137 +2387,104 @@ msgstr "" "Наистина ли искате да видите всички редове? За една голяма таблица, това " "може да блокира браузъра." -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "Първоначална дължина" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "Отмяна" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Прекъснати" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "Успех" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "Състояние на импорта" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Пуснете файловете тук" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "Първо избетере база данни" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Можете също да редактирате повече стойности
като щракнете два пъти " "директно върху тях." -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Можете също да редактирате повече стойности
като щракнете директно върху " "тях." -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "Към връзка:" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "Копиране името на колоната." -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Кликване с десния бутон върху името на колоната, за да го копирате в " "системния буфер." -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Генериране на парола" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Генериране" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "Още" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Показване на панела" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Скриване на панела" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "Показване на скритото навигационно дърво." -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "Свързване с главния панел" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "Премахване от главния панел" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" -"За да филтрирате всички бази данни на сървъра, натиснете Enter, след като " -"въведете филтър" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" -"За да филтрирате всички %s в базата данни, натиснете Enter, след като " -"въведете филтър" - #: js/messages.php:632 -msgid "tables" -msgstr "Таблици" - -#: js/messages.php:633 -msgid "views" -msgstr "Изглед" - -#: js/messages.php:634 -msgid "procedures" -msgstr "Процедури" - -#: js/messages.php:635 -msgid "events" -msgstr "събития" - -#: js/messages.php:636 -msgid "functions" -msgstr "Функции" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" "Исканата страница не беше намерена в хронологията, може би е с изтекла " "валидност." -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2515,31 +2494,31 @@ msgstr "" "версия е %s, излязла на %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", последната стабилна версия:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "актуално" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "Създаване на изглед" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Порт на сървъра" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "представи доклад за грешка" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2547,25 +2526,25 @@ msgstr "" "Възникнала е грешка фатална JavaScript. Бихте ли искали да изпратите доклад " "за грешка?" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Промяна на рапорт настройки" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Показване детайли за рапорта" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "Вашият износ е непълна, поради нисък изпълнение срок на ниво PHP!" -#: js/messages.php:667 +#: js/messages.php:659 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2575,58 +2554,58 @@ msgstr "" "някои от полетата могат да бъдат пренебрегнати, поради max_input_vars " "конфигурацията на PHP." -#: js/messages.php:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "Засечени са някой грешки на сървъра!" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "Моля погледнете в края на този прозорец." -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "Игнориране на всички" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "Според настройките си, те се подава в момента, моля, бъдете търпеливи." -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "Изпълняване на заявката отново?" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "Наистина ли искате да изтриете отметката: \"%s\"?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s изпълнени заявки %s пъти %s секунди." -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 msgid "Show arguments" msgstr "Покажи доводи" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "Скриване доводи" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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,291 +2616,291 @@ msgstr "" "вас. В Safari, такъв проблем обикновено се причинява от \"Private Browsing " "Mode\"." -#: js/messages.php:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "Преден" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "Следващ" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Днес" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "януари" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "февруари" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "март" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "април" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "май" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "юни" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "юли" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "август" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "септември" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "октомври" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "ноември" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "декември" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "яну" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "фев" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "март" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "май" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "юни" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "юли" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "септ" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "ное" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "дек" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "неделя" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "понеделник" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "вторник" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "сряда" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "четвъртък" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "петък" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "събота" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "нд" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "пн" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "вт" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "ср" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "чт" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "пт" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "сб" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "нд" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "пн" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "вт" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "ср" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "чт" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "пт" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "сб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "Сед" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "календар-месец-година" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "няма" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Час" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "минута" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "секунда" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "Моля поправете тази област" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "Моля въведете валиден емайл адрес" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "Моля, въведете валиден URL" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "Моля, въведете валидна дата" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "Моля въведете валидна дата (ISO)" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "Моля, въведете валиден номер" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "Моля, въведете валиден номер на кредитна карта" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "Моля, въведете само цифри" @@ -2929,41 +2908,41 @@ msgstr "Моля, въведете само цифри" msgid "Please enter the same value again" msgstr "Моля, въведете една и съща стойност отново" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "Моля, въведете поне {0} букви" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "Моля, въведете стойност между {0} и {1}" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "Моля въведете стойност по-малка или равна на {0}" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "Въведете стойност по-голяма от или равна на {0}" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "Моля, въведете валиден дата или час" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "Моля, въведете валиден HEX" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Грешка" @@ -3052,11 +3031,12 @@ msgstr "Подзаявка" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3098,7 +3078,7 @@ msgstr "По време на текущата сесия" msgid "Explain" msgstr "Обяснение" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Профилиране" @@ -3132,8 +3112,8 @@ msgid "History" msgstr "SQL изтория" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3278,7 +3258,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Превключи на тъмна палитра" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3286,24 +3266,24 @@ msgstr "" "Сървърът не отговаря (или местният сокет на сървъра не е конфигуриран " "правилно)." -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "Сървърът не отговаря." -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "Проверете правата на папката, съдържаща БД." -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Подробности…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3313,8 +3293,8 @@ msgstr "" msgid "Ascending" msgstr "Възходящо" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3465,8 +3445,8 @@ msgstr[0] "%1$s съвпадение в таблица %2$s" msgstr[1] "%1$s съвпадения в таблица %2$s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3510,123 +3490,123 @@ msgstr "Размаркиране всички" msgid "Inside column:" msgstr "В колона:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "Съхраняване на редактираните данни" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "Възстановяване на подредбата на колоните" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 #, fuzzy #| msgid "Filters" msgid "Filter rows" msgstr "Филтри" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Search in database" msgid "Search this table" msgstr "Търсене в БД" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "Начало" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "Предна" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "Следваща" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "Последна" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Всички" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Брой редове:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Сортиране по ключ" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "Частични текстове" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "Пълни текстове" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Display foreign key relationships" msgid "Display column for relations" msgstr "Показване връзките на външен ключ" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "Показване на двоичните данни" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "Показване на BLOB-данните" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "Без трансформация от браузъра" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "Добре познат текст" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "Добре позната двоична стойност" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Редът беше изтрит" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Спиране" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Може да има приблизителна стойност. Виж [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -3634,50 +3614,51 @@ msgstr "Може да има приблизителна стойност. Виж msgid "Your SQL query has been executed successfully." msgstr "SQL заявката беше изпълнена успешно" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "Този изглед има поне толкова реда. Погледнете %sдокументацията%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Показване на записи" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "общо" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "Заявката отне %01.4f секунди" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Когато има отметка:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3685,25 +3666,25 @@ msgstr "Когато има отметка:" msgid "Check all" msgstr "Маркиране всички" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Преглед за печат" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Операции с резултата от заявката" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Диаграма" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "Визуализиране на GIS данни" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 #, fuzzy #| msgid "Link not found" msgid "Link not found!" @@ -3811,19 +3792,19 @@ msgstr "Не е избран индекс!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Индекси" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3832,24 +3813,24 @@ msgid "Action" msgstr "Действие" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Име на ключ" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Уникално" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Опаковани" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Кардиналност" @@ -3857,8 +3838,8 @@ msgstr "Кардиналност" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3868,8 +3849,8 @@ msgid "Collation" msgstr "Колация" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3885,15 +3866,15 @@ msgstr "Главният ключ беше изтрит." msgid "Index %s has been dropped." msgstr "Индекс %s беше изтрит." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Изтриване" @@ -3932,12 +3913,13 @@ msgstr "Изглед" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3945,7 +3927,7 @@ msgstr "Таблица" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3954,8 +3936,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3963,41 +3945,41 @@ msgid "Search" msgstr "Търсене" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Вмъкване" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Права" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Операции" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Проследяване" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4008,16 +3990,16 @@ msgstr "Тригери" msgid "Database seems to be empty!" msgstr "БД изглежда празна!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Заявка по пример" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Процедури" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4025,22 +4007,22 @@ msgstr "Процедури" msgid "Events" msgstr "Събития" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Строител" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "Textarea columns" msgid "Central columns" msgstr "Колони в текство поле" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "БД" @@ -4051,33 +4033,33 @@ msgid "User accounts" msgstr "Потребители" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Двоичен дневник" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Репликация" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Променливи" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Знакови набори" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Хранилища" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "Добавки" @@ -4399,7 +4381,7 @@ msgstr "Индексът не може да бъде преименуван на msgid "No index parts defined!" msgstr "Не са дефинирани части на индекс!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4825,39 +4807,39 @@ msgstr "Функционалността %s се влияе от известе msgid "Click to toggle" msgstr "Щракване за превключване" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Разглеждане на компютъра:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Избор от директорията за качване %s:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Папката, която сте указали за качване е недостъпна." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 #, fuzzy #| msgid "There are no files to upload" msgid "There are no files to upload!" msgstr "Няма файлве за качване" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Изчистване" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "Изпълнение" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Печат" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "Потребители" @@ -5032,8 +5014,8 @@ msgid "Add new column" msgstr "Добавяне колона" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5099,19 +5081,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "Осъвременете до %s %s или по-нова." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "възможен пробив в сигурността" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "цифров ключ открит" @@ -6029,7 +6011,7 @@ msgid "Remember file name template" msgstr "Запомняне на шаблона за име на файл" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Добавяне AUTO_INCREMENT стойност" @@ -6072,7 +6054,7 @@ msgstr "Липсват таблици от хранилището за конф #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Добавяне на %s" @@ -7945,7 +7927,7 @@ msgid "" msgstr "" "Определя дали прозорецът със заявката да остане екрана след изпращането му" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "Запазване отворен прозореца за заявки" @@ -8266,104 +8248,35 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Open Document Text" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "Листа с фаворитите е пълен!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Таблицата %s беше изчистена." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "Изглед %s беше изтрит" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "Таблицата %s беше изтрита" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "Листа с фаворитите е пълен!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "непознат" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "Няма избрана колона." - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "Колоните бяха преместени упешно." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "Таблицата %1$s беше променена." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "Грешка в заявката" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Промяна" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Индекс" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "Пространствен" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Пълнотекстово" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "Уникални стойности" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8379,6 +8292,14 @@ msgstr "" msgid "No data to display" msgstr "Няма данни" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "Таблицата %1$s беше променена." + #: libraries/controllers/table/TableRelationController.php:212 #, fuzzy #| msgid "Thread %s was successfully killed." @@ -8391,25 +8312,86 @@ msgstr "Нишка %s беше успешно спряна." msgid "Internal relations were successfully updated." msgstr "Добавена е вътрешна релация" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Table Search" msgid "Table search" msgstr "Търсене в таблица" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Range search" msgid "Zoom search" msgstr "Търсене в област" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "Hide find and replace criteria" msgid "Find and replace" msgstr "Скриване параметрите за търсене и заместване" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "Няма избрана колона." + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "Колоните бяха преместени упешно." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "Грешка в заявката" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Промяна" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Индекс" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "Пространствен" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Пълнотекстово" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "Уникални стойности" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8419,7 +8401,7 @@ msgstr "Разширението %s липсва. Проверете конфи msgid "possible deep recursion attack" msgstr "възможна атака чрез дълбока рекурсия" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Няма промяна" @@ -8494,7 +8476,7 @@ msgstr "Създаване" msgid "Create database:" msgstr "Създаване БД" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Без права" @@ -9202,69 +9184,69 @@ msgid "Dump has been saved to file %s." msgstr "Схемата беше запазена във файл %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL върна празен резултат (т.е. нула редове)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "Към БД: %s" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "Редактиране настройките на %s" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "Към таблица: %s" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "Структурата на %s" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "Създаване на индекс върху  %s колони" @@ -9287,70 +9269,70 @@ msgstr "Функция" msgid "Binary" msgstr "двоичен" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 #, fuzzy #| msgid "Because of its length,
this column might not be editable" msgid "Because of its length,
this column might not be editable." msgstr "Поради дължината си,
това поле може да е нередактируемо" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Двоично - не се редактира" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Или" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "директорията за upload на web сървъра" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "Редакция/Вмъкване" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "и след това" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Вмъкване като нов ред" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "Показване заявка за вмъкване" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Обратно към предната страница" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Вмъкване нов ред" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Връщане към тази страница" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Редакция на следващия ред" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9360,7 +9342,7 @@ msgstr "" "Използвайте клавиша TAB, за да премествате крурсора от стойност на стойност " "или CTRL+стрелка, за да премествате курсора в съответната посока" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9372,11 +9354,11 @@ msgstr "" msgid "Value" msgstr "Стойност" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9392,41 +9374,41 @@ msgstr "Няма" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table prefix:" msgstr "Замяна на представката на таблица" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Copy table with prefix" msgid "Copy table with prefix:" msgstr "Копиране на таблицата с представка" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "От" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Add table prefix" msgid "Add table prefix:" msgstr "Добавяне на представка на таблица" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "Добавяне на представка" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "Наистина ли искате да изпълните следната заявка?" @@ -9656,8 +9638,8 @@ msgstr "Процедури" msgid "Views:" msgstr "Изглед" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Показване" @@ -9699,10 +9681,9 @@ msgstr[0] "" msgstr[1] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "Filter databases by name" -msgid "Filter databases by name or regex" -msgstr "филтър по таблица" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -9711,12 +9692,6 @@ msgstr "филтър по таблица" msgid "Clear fast filter" msgstr "Изпращане" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "Filter tables by name" -msgid "Filter by name or regex" -msgstr "филтър по таблица" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -10139,7 +10114,7 @@ msgstr "Преименуване БД на" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10150,7 +10125,7 @@ msgstr "Не разполагате с права, за да се намират #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -10170,18 +10145,18 @@ msgstr "Изтриване БД" msgid "Drop the database (DROP)" msgstr "Изтриване на БД (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Само структурата" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Структурата и данните" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Само данните" @@ -10195,7 +10170,7 @@ msgstr "Копиране на БД в" msgid "CREATE DATABASE before copying" msgstr "Изпълняване на CREATE DATABASE преди копирането" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Добавяне ограничения" @@ -10235,163 +10210,163 @@ msgstr "Хранилище" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Копиране на таблица в (БД.таблица)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Превключване към копираната таблица" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Поддръжка на таблицата" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Анализиране на таблицата" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Проверка на таблицата" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Проверка на таблицата" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Дефрагментиране на таблица" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "Кеша на таблица %s беше изчистен." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "Изпразване кеша на таблицата (FLUSH)" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Оптимизация на таблицата" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Поправяне на таблицата" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "Изпразване на таблицата (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "Изтриване на таблицата (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Анализиране" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Проверка" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Оптимизиране" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Поправяне" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "Затваряне" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Проверка на интегритета на връзките:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Не може да се премести таблицата към себе си!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Не може да се копира таблицата към себе си!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Таблицата %s беше преместена към %s." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Таблица %s беше копирана в %s." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "Таблицата %s беше преместена към %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "Таблица %s беше копирана в %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Името на таблицата е празно!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "Този формат няма опции" @@ -10566,7 +10541,7 @@ msgstr "Опции при експортиране на данните" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Схема на данните от таблица" @@ -10590,21 +10565,21 @@ msgstr "Описание" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Структура на таблица" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10710,7 +10685,7 @@ msgid "Database:" msgstr "БД" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10817,7 +10792,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -10906,8 +10881,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10915,92 +10890,92 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Metadata Headers" msgid "Metadata" msgstr "Заглавки на метаданните" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, fuzzy, php-format #| msgid "Metadata Headers" msgid "Metadata for %s" msgstr "Заглавки на метаданните" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Създаване:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Последно обновяване:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Последна проверка:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "ползва се в момента" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Ограничения за дъмпнати таблици" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Ограничения за таблица" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Ограничения за дъмпнати таблици" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "В таблици:" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "Да не се използва AUTO_INCREMENT за нулеви стойности" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Добавяне AUTO_INCREMENT стойност" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "MIME ТИПОВЕ ЗА ТАБЛИЦА" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "РЕЛАЦИИ ЗА ТАБЛИЦА" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "Грешка при четене на данни:" @@ -11248,9 +11223,9 @@ msgstr "Релационна схема" msgid "Table of contents" msgstr "Съдържание" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Допълнително" @@ -11468,61 +11443,61 @@ msgstr "Форматира текст като SQL заявка със синт msgid "Formats text as XML with syntax highlighting." msgstr "Форматира текст като SQL заявка със синтактично оцветяване." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Грешка: Релацията вече съществува." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "FOREIGN KEY релация е добавена" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Грешка: Релацията не е добавена." -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "Грешка: Релацията е изключена!" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "Добавена е вътрешна релация" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "Грешка: Релацията не е добавена." -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "FOREIGN KEY релация е добавена" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Грешка: Релацията не е добавена." -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "Грешка: Релацията не е добавена." -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11578,76 +11553,76 @@ msgstr "" "Моля консултирайте се с документацията относно обновяването на вашата " "column_comments таблица." -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Отбелязана SQL заявка" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL-хронология" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "There are no recent tables" msgid "Persistent favorite tables" msgstr "Няма наскоро отваряни таблици" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "Потребителски предпочитания" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Configuration: %s" msgid "Configurable menus" msgstr "Настройка: %s" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Remember table's sorting" msgid "Remembering Designer Settings" msgstr "Запомняне сортирането на таблици" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "Невалиден тип експорт" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "Бързи стъпки за настройка на разширените свойства:" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -11655,22 +11630,22 @@ msgstr "" "Включване на допълнителните функции в конфигурационния файл (config." "inc.php), започнете с примера в config.sample.inc.php." -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "няма описание" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11678,14 +11653,14 @@ msgid "" "configuration storage there." msgstr "Липсват таблици от хранилището за конфигурация на phpMyAdmin" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Липсват таблици от хранилището за конфигурация на phpMyAdmin" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -11874,8 +11849,8 @@ msgstr "Потребителско име" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Потребителско име" @@ -11883,7 +11858,7 @@ msgstr "Потребителско име" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Парола" @@ -12552,7 +12527,7 @@ msgstr[1] "%1$ds БД бяха изтрити успешно." msgid "Plugin" msgstr "Праставка" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Версия" @@ -12560,99 +12535,95 @@ msgstr "Версия" msgid "Author" msgstr "Автор" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "Лиценз" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "изключено" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Няма права." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Дава всички права освен GRANT." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Позволява четене на данни." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Позволява вмъкване и заменяне на данни." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Позволява промяна на данни." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Позволява изтриване на данни." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Позволява създаване на нови БД и таблици." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Позволява изтриване на БД и таблици." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Позволява презареждане на настройките и изчистване на буфера на сървъра." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Позволява спиране на сървъра." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "Позволява импортиране на данни от и експортиране на данни във файлове." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "Няма ефект в тази версия на MySQL." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Позволява създаване и изтриване на индекси." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Позволява промяна на структурата на съществуващи таблици." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Дава достъп до пълния списък на базите данни." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12663,41 +12634,41 @@ msgstr "" "променливи или спиране на нишка на други потребители." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Позволява създаването на временни таблици." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Позволява заключване на таблици за текущата нишка." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Нужно за replication slaves." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "Дава правото на потребител да знае къде са slaves / masters." #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Позволява създаване на изгледи." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "Позволява създаване на събития за Диспечер на събитията" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 #, fuzzy #| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." @@ -12705,27 +12676,27 @@ msgstr "Позволява създаване и изтриване на три #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Позволява изпълнение на SHOW CREATE VIEW заявки." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Позволява създаване на съхранени процедури." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Позволява промяна и изтриване на съхранени процедури." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "Позволява създаване, изтриване и преименуване на потребителски сметки." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Позволява изпълнение на съхранени процедури." @@ -12737,8 +12708,8 @@ msgstr "Няма" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12783,14 +12754,14 @@ msgstr "" "Забележка: Установяването на тези опции с 0 (нула) премахва ограничението." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Ограничава броя на заявките, които потребителя може да изпрати към сървъра " "на час." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12799,22 +12770,22 @@ msgstr "" "даден потребител може да инициира за час." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Ограничава броя на новите връзки, които потребителя може да отвори за час." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Ограничава броя на едновременните връзки, които потребителят може да държи " "отворени." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12822,7 +12793,7 @@ msgid "Routine" msgstr "Процедури" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12843,14 +12814,14 @@ msgstr "Позволява изпълнение на съхранени проц #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Специфични за таблицата права" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -12862,7 +12833,7 @@ msgid "Administration" msgstr "Администрация" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Глобални права" @@ -12873,15 +12844,15 @@ msgid "Global" msgstr "глобален" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Специфични за БД права" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Позволява създаване на нови таблици." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Позволява изтриване на таблици." @@ -12904,7 +12875,7 @@ msgid "Native MySQL Authentication" msgstr "Удостоверяване чрез бисквитка" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Информация за логване" @@ -12929,8 +12900,8 @@ msgstr "Потребителско име" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Log name" msgid "Host name" @@ -12952,121 +12923,121 @@ msgstr "Удостоверяване" msgid "Password Hashing Method" msgstr "Хеширане на паролата" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "Паролата на %s беше променена успешно." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Вие отменихте правата на %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Нов потребител" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "БД за потребителя" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "Създаване на БД със същото име и даване на пълни права." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Даване на всички привилегии на име с маска (username\\_%)." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Даване на пълни права над БД \"%s\"." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Потребители с достъп до \"%s\"" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "Потребител беше добавен." -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Дадени" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "Няма потребител." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Всеки" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "глобален" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "специфични за БД" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "знак за заместване" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "специфични за БД" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Редакция" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Отменяне" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Редакция сървър" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… запазване на стария." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… изтриване на стария от таблицата с потребители." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… отмяна на всички права от стария и след това изтриване." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -13074,122 +13045,122 @@ msgstr "" "… изтриване на стария от таблицата с потребители и след това презареждане на " "правата." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Промяна информацията за вход / Копиране потребител" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Създаване нов потребител със същите права и …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Специфични за колоната права" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Отстраняване избраните потребители" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Отмяна на всички права на потребителите и след това изтриване." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "Изтриване на БД, които имат имена като тези на потребителите." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "Не за избрани потребители за изтриване!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Презареждане на правата" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Избраните потребители бяха изтрити успешно." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Вие променихте правата на %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "Изтриване на %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Правата бяха презаредени успешно." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "Потребител %s вече съществува!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "Права на %s" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Потребител" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 #, fuzzy #| msgid "New" msgctxt "Create new user" msgid "New" msgstr "Нов" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Редакция" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "Users" msgid "User account" msgstr "Потребители" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "Преглед потребители" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13202,7 +13173,7 @@ msgstr "" "правата които използва сървъра ако към него са направени промени на ръка. В " "този случай, трябва да %sпрезаредите правата%s преди да продължите." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13221,11 +13192,11 @@ msgstr "" "правата които използва сървъра ако към него са направени промени на ръка. В " "този случай, трябва да %sпрезаредите правата%s преди да продължите." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "Избраният потребител не беше открит в таблицата с права." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Вие добавихте нов потребител." @@ -13460,32 +13431,32 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 #, fuzzy #| msgid "Enable highlighting" msgid "Enable charts dragging" msgstr "Включване синтактичното оцветяване" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "Скорост на опресняване" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "Стойност по подразбиране" @@ -13553,7 +13524,7 @@ msgid "Statements" msgstr "Заявление" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "№" @@ -13578,7 +13549,7 @@ msgstr "Неформатирани стойности" msgid "Related links:" msgstr "Сродни връзки:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -13586,27 +13557,27 @@ msgstr "" "Броят връзки, които са прекъснати, защото клиентът е изчезнал без да затвори " "правилно връзките." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Броят неуспешни опити за връзка към MySQL сървъра." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13614,52 +13585,52 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "Броят създадени от mysqld временни файлове." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "Броят вмъкнати посредством INSERT DELAYED редове." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13670,26 +13641,26 @@ msgstr "" "индекса; например, SELECT col1 FROM foo, при условие, че col1 е индексирано " "поле." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13697,7 +13668,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13705,42 +13676,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "Брой заявки за обновяване на ред в таблица." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "Брой заявки за вмъкване на ред в таблица." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13748,33 +13719,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13783,195 +13754,195 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "Броят на заявки за запис в дневника." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "Броят изтрити редове от InnoDB таблици." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "Броят вмъкнати редове в InnoDB таблици." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "Броят прочетени редове от InnoDB таблици." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "Броят обновени редове в InnoDB таблици." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13979,11 +13950,11 @@ msgstr "" "Максималният брой едновременно използвани връзки от като е стартиран " "сървърът." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13991,38 +13962,38 @@ msgstr "" "Общ брой на отворените таблици. Ако тази стойност е голяма, вероятно имате " "прекалено малък кеш за таблиците (table_cache)." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "Броят отворени файлове." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "Броят отворени потоци (използва се главно за дневници)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "Броят отворени таблици." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "Количеството свободна памет за буфер за заявки." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "Броят попадения в кеш." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "Броят заявки добавени към буфера." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14030,99 +14001,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "Броят заявки регистрирани в буфера." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "Общият брой блокове в буфера за заявки." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Брой временни таблици отворени от подчинена SQL нишка." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "Броят сортирани редове." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14130,18 +14101,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "Брой текущо отворени връзки." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14149,11 +14120,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "Броят на нишките, които не са спящи." @@ -14162,77 +14133,77 @@ msgstr "Броят на нишките, които не са спящи." msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 #, fuzzy #| msgid "Users" msgid "User groups" msgstr "Потребители" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "Версия на сървъра" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Database server" msgid "Database level tabs" msgstr "БД сървър" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table comments" msgid "Table level tabs" msgstr "Коментари към таблицата" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy #| msgid "Views" msgid "View users" msgstr "Изглед" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "Нов потребител" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Няма права." -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Column names: " msgid "Group name:" msgstr "Имена на колони: " -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Версия на сървъра" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "БД сървър" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14296,21 +14267,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14381,132 +14348,132 @@ msgstr "Събитието %1$s беше създадено." msgid "Variable name was expected." msgstr "Шаблон за име на таблица" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "В началото на таблицата" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 #, fuzzy #| msgid "Unexpected characters on line %s." msgid "Unexpected token." msgstr "Неочаквани знаци на ред %s." -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 #, fuzzy #| msgid "The number of tables that are open." msgid "The name of the entity was expected." msgstr "Броят отворени таблици." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Редът беше изтрит" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "Файлове с данни" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Друго" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "Начало" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Общо време:" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Време" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Затваряне" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Време" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Отбелязване SQL заявката" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Label" msgid "Label:" msgstr "Етикет" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Всеки потребител да има достъп до тази белязка" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created!" msgstr "Белязка %s беше създадена" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "Показване като PHP-код" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -14519,7 +14486,7 @@ msgstr "" "редакция, отметката, връзките редактиране, копиране и изтриване може да не " "работят след запазване." -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -14532,7 +14499,7 @@ msgstr "" "редакция, отметката, връзките редактиране, копиране и изтриване може да не " "работят след запазване." -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем с индексите на таблица `%s`" @@ -14563,29 +14530,29 @@ msgstr "" msgid "Bind parameters" msgstr "Грешни параметри!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 #, fuzzy #| msgid "Bookmark this SQL query" msgid "Bookmark this SQL query:" msgstr "Отбелязване SQL заявката" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Замяна белязката със същото име" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Разделител" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Показване на заявката отново" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Само показване" @@ -14630,175 +14597,175 @@ msgstr "Изключване проследяването за %s" msgid "Deactivate now" msgstr "Изключване сега" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Създаден" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Актуализиран" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "Създаване на версия" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Доклад за следенето" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Моментна снимка на структурата" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "активен" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "неактивен" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "Няма данни" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "Изпълняване на SQL" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "Експорт като %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "Израз за манипулация на данни" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "Израз за дефиниране на данни" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Дата" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Потребителско име" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Няма" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Проследяването на %1$s беше включено във версия %2$s." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Проследяването на %1$s беше изключено във версия %2$s." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format #| msgid "Create version %1$s of %2$s" msgid "Version %1$s of %2$s was deleted." msgstr "Създаване на версия %1$s от %2$s" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Непроследявани таблици" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Следене на таблица" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Следени таблици" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Последна версия" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "Изтриване информацията за следене" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Версии" @@ -14806,11 +14773,11 @@ msgstr "Версии" msgid "Manage your settings" msgstr "Управление мои настройки" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "Конфигурацията е записана." -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14915,7 +14882,7 @@ msgstr "Няма БД" msgid "View dump (schema) of databases" msgstr "Преглед на схемата (дъмп) на БД" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14940,7 +14907,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin не можа да спре нишка %s. Вероятно вече е била затворена." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -15843,47 +15810,53 @@ msgstr "" msgid "Stacked" msgstr "Припокриващи се" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "Заглавие на диаграмата" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "Ос X:" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "Поредици:" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "Етикет на оста X:" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "Стойности на X" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "Етикет на оста Y:" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Стойности на Y" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside column:" msgid "Series column:" msgstr "В колона:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Values for column %s" msgid "Value Column:" msgstr "Стойности за колоната %s" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -15947,55 +15920,56 @@ msgstr "Коментар" msgid "Drag to reorder" msgstr "Завличане за промяна на подредбата" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +#, fuzzy +#| msgid "Foreign key constraint" +msgid "Foreign key constraints" +msgstr "Ограничение за външен ключ" + +#: templates/table/relation/common_form.phtml:9 +#, fuzzy +#| msgid "Action" +msgid "Actions" +msgstr "Действие" + +#: templates/table/relation/common_form.phtml:10 +#, fuzzy +#| msgid "Constraints for table" +msgid "Constraint properties" +msgstr "Ограничения за таблица" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "Ограничение за външен ключ" + +#: templates/table/relation/common_form.phtml:60 +#, fuzzy +#| msgid "Add constraints" +msgid "+ Add constraint" +msgstr "Добавяне ограничения" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "Вътрешни релации" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "Вътрешна релация" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Вътрешна релация не е необходима, при наличието на съответен FOREIGN KEY." -#: templates/table/relation/common_form.phtml:37 -#, fuzzy -#| msgid "Foreign key constraint" -msgid "Foreign key constraints" -msgstr "Ограничение за външен ключ" - -#: templates/table/relation/common_form.phtml:40 -#, fuzzy -#| msgid "Action" -msgid "Actions" -msgstr "Действие" - -#: templates/table/relation/common_form.phtml:41 -#, fuzzy -#| msgid "Constraints for table" -msgid "Constraint properties" -msgstr "Ограничения за таблица" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "Ограничение за външен ключ" - -#: templates/table/relation/common_form.phtml:83 -#, fuzzy -#| msgid "Add constraints" -msgid "+ Add constraint" -msgstr "Добавяне ограничения" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16148,7 +16122,7 @@ msgid "at beginning of table" msgstr "В началото на таблицата" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16193,7 +16167,7 @@ msgstr "Положение" msgid "Edit partitioning" msgstr "Редактиране" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "Изглед за редакция" @@ -17449,6 +17423,41 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert e 0" +#~ msgid "To filter all databases on server, press Enter after a search term" +#~ msgstr "" +#~ "За да филтрирате всички бази данни на сървъра, натиснете Enter, след като " +#~ "въведете филтър" + +#~ msgid "To filter all %s in database, press Enter after a search term" +#~ msgstr "" +#~ "За да филтрирате всички %s в базата данни, натиснете Enter, след като " +#~ "въведете филтър" + +#~ msgid "tables" +#~ msgstr "Таблици" + +#~ msgid "views" +#~ msgstr "Изглед" + +#~ msgid "procedures" +#~ msgstr "Процедури" + +#~ msgid "events" +#~ msgstr "събития" + +#~ msgid "functions" +#~ msgstr "Функции" + +#, fuzzy +#~| msgid "Filter databases by name" +#~ msgid "Filter databases by name or regex" +#~ msgstr "филтър по таблица" + +#, fuzzy +#~| msgid "Filter tables by name" +#~ msgid "Filter by name or regex" +#~ msgstr "филтър по таблица" + #, fuzzy #~| msgid "Tracking report" #~ msgid "Taking you to %s." diff --git a/po/bn.po b/po/bn.po index 10994bdbf3..61f22a9080 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:44+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Bengali Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "সহায়তা করুন" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "প্রাইমারি কী যোগ কর" -#: js/messages.php:430 +#: js/messages.php:431 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "%s একটি প্রাইমারি কী যোগ করা হয়েছে" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "ট্রেকিং প্রতিবেদন" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 #, fuzzy @@ -2071,252 +2083,252 @@ msgstr "" msgid "End of step" msgstr "লাইনের শেষ" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "সম্পন্ন" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "ডাটাবেইজ নিবার্চন করা হয়নি।" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 #, fuzzy #| msgid "Add privileges on the following table:" msgid "Create the following table" msgstr "নিচের টেবিল এ সুবিধাসমূহ যোগ কর:" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "ডাটাবেইজ নিবার্চন করা হয়নি।" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "সংরক্ষন" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "খোজাঁর শর্ত লুকাও" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "খোজাঁর শর্ত দেখাও" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Table Search" msgid "Range search" msgstr "টেবিলে খোজাঁ" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Column names: " msgid "Column maximum:" msgstr "স্তম্ভের নাম: " -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Column names: " msgid "Column minimum:" msgstr "স্তম্ভের নাম: " -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "টেবলের সর্বোচ্চ সংখ্যা" -#: js/messages.php:474 +#: js/messages.php:475 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "টেবলের সর্বোচ্চ সংখ্যা" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "পাওয়া এবং প্রতিস্থাপনের শর্ত লুকাও" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "পাওয়া এবং প্রতিস্থাপনের শর্ত দেখাও" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "প্রতিটি পয়েন্ট একটি তথ্য সারি।" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "একটি পয়েন্টের উপর মাউস আনলে তার লেবেল দেখাবে।" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "বড় করে দেখার জন্য, অংশটির একটি অংশ মাউজ দ্বারা নির্বাচন করন।" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "মুল অবস্থায় ফিরিয়ে নেওয়ার জন্য জুম রিসেট এ ক্লীক করুন।" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" "দেখার জন্য একটি তথ্য পয়েন্ট এ ক্লীক করুন এবং প্রয়োজনে তথ্য সারিটি সম্পাদনা করুন।" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "নীচের ডান কোণার দিকে টেনে এই অংশটির আকৃতি পরিবর্তন করা যাবে।" -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "দুইটি স্তম্ভ নির্বাচন করুন" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "ভিন্ন ভিন্ন দুইটি স্তম্ভ নির্বাচন করুন" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "প্রতিটি পয়েন্টের বিষয়" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "উপেক্ষা" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "প্রতিলিপি" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "পয়েন্ট" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "লাইনস্ট্রিং" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "পলি্গন (বহুভুজ)" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "জ্যামিতি" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "ভিতরের গোলক" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "আউটার রিং" -#: js/messages.php:516 +#: js/messages.php:517 #, fuzzy #| msgid "Do you want to import remaining settings?" msgid "Do you want to copy encryption key?" msgstr "আপনি কি অন্যান্য সেটিংস আমদানি করতে চান?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "রেফারেন্সড কী নির্বাচন করুন" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "ফরেন কী নির্বাচন করুন" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "অনুগ্রহ করে প্রাথমিক কী বা একটি অনন্য কী নির্বাচন করুন!" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "দেখানোর জন্য স্বম্ভ পছন্দ করেন" -#: js/messages.php:532 +#: js/messages.php:533 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?" @@ -2324,97 +2336,97 @@ msgstr "" "আপনি নকশার পরিবর্তন সংরক্ষন করেন নাই। সংরক্ষন না করলে ওগুলো নষ্ট হয়ে যাবে। আপনি " "কি এগুতে চান?" -#: js/messages.php:535 +#: js/messages.php:536 msgid "Page name" msgstr "পাতার নাম" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 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:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 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:539 +#: js/messages.php:540 #, fuzzy #| msgid "Select page" msgid "Delete page" msgstr "পাতা নির্বাচন" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "একক" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "সম্পাদনার জন্য একটি পাতা পছন্দ করেন" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid page name" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "আন্তসম্পর্কীয় গঠনের আকৃতি সম্পাদনা বা রফতানী কর" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "পরিবর্তন সংরক্ষন করা হয়েছে" -#: js/messages.php:550 +#: js/messages.php:551 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "স্তম্ভের জন্য একটি অপশন যোগ কর " -#: js/messages.php:551 +#: js/messages.php:552 #, fuzzy, php-format #| msgid "%d object(s) created" msgid "%d object(s) created." msgstr "%d অবজেক্ট তৈরী করা হয়েছে" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "জমা" -#: js/messages.php:555 +#: js/messages.php:556 #, fuzzy #| msgid "Press escape to cancel editing" msgid "Press escape to cancel editing." msgstr "সম্পাদনা বাতিল করতে এস্কেপ কী চাপুন" -#: js/messages.php:557 +#: js/messages.php:558 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?" @@ -2422,49 +2434,49 @@ msgstr "" "আপনি কিছু তথ্য সম্পাদনা করেছেন এবং ওগুলো সংরক্ষিত নয়। আপিন কি নিশ্চন্ত যে সংরক্ষনের " "পূর্বে আপনি পাতাটি ত্যাগ করতে চান?" -#: js/messages.php:560 +#: js/messages.php:561 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder." msgstr "পুনবিন্যাসের জন্য টানুন" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "চিহ্নিত/অচিহ্নিত করার জন্য ক্লীক করুন" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy #| msgid "Double-click to copy column name" msgid "Double-click to copy column name." msgstr "স্তম্ভের নাম প্রতিলিপ করার জন্য দুইবার ক্লীক করুন" -#: js/messages.php:570 +#: js/messages.php:571 #, 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:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "সব দেখাও" -#: js/messages.php:574 +#: js/messages.php:575 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." @@ -2472,167 +2484,128 @@ msgstr "" "এই টেবিলে কোন অনন্য স্তম্ভ নাই। সংরক্ষনের পরে সম্পাদনা, চেকবক্স, প্রতিলিপি এবং মুছার " "জন্য সংযোগগুলো কাজ করবে না।" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "প্রকৃত লেখা" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "বাতিল" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "বাতিলকৃত" -#: js/messages.php:589 +#: js/messages.php:590 #, fuzzy #| msgid "Success." msgid "Success" msgstr "সফল।" -#: js/messages.php:590 +#: js/messages.php:591 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "আমদানি সর্ম্পকিত স্বাভাবিক" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "লগ ফাইলের স্থান" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "টেবল নির্বাচন" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "আপনি প্রায় সমস্ত তথ্য দুই বার ক্লীক করে সরাসরি সম্পাদনা করতে পারবেন।" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "আপনি প্রায় তথ্য সরাসরি ক্লীক করে সম্পাদনা করতে পারবেন।" -#: js/messages.php:609 +#: js/messages.php:610 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "সংযোগে যাও" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Copy column name" msgid "Copy column name." msgstr "স্তম্ভের নাম প্রতিলিপি" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "স্তম্ভের নামটির উপর ডান ক্লীক করুন ওটা ক্লীপর্বোডে প্রতিলিপি করার জন্য।" -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "পাসওর্য়াড উৎপাদন কর" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "উৎপাদন কর" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "অধিক" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "প্যানেল দেখাও" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "ইনডেক্স প্যানেল" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Show logo in navigation panel" msgid "Show hidden navigation tree items." msgstr "চলাচল ফ্রেইমে লোগো দেখাও" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 #, fuzzy #| msgid "Customize main panel" msgid "Link with main panel" msgstr "প্রধান ফ্রেম পরিবর্তন" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 #, fuzzy #| msgid "Customize main panel" msgid "Unlink from main panel" msgstr "প্রধান ফ্রেম পরিবর্তন" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -#, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "টেবল" - -#: js/messages.php:633 -#, fuzzy -#| msgid "Views" -msgid "views" -msgstr "ভিউসমূহ" - -#: js/messages.php:634 -#, fuzzy -#| msgid "Procedures" -msgid "procedures" -msgstr "প্রোসিডিউরস" - -#: js/messages.php:635 -#, fuzzy -#| msgid "event" -msgid "events" -msgstr "ইভেন্ট" - -#: js/messages.php:636 -#, fuzzy -#| msgid "Functions" -msgid "functions" -msgstr "ফাংশনসমূহ" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "পাতাটি হিস্টোরীতে পাওয়া যায়নি, সম্ভবত নষ্ট হয়েগেছে।" -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2642,428 +2615,428 @@ msgstr "" "%s, বেরিয়েছে %s।" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", সর্বশেষ সুস্থিত সংস্করন:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "তারিখ পর্যন্ত" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "ভিউ তৈরী" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy #| msgid "Send error reports" msgid "Send error report" msgstr "ভুল সর্ম্পকিত প্রতিবেদন দাখিল কর" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "ভুলের প্রতিবেদন দাখিল" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "একটি মারাত্মক জাভা স্ত্রিপট ভুল হয়েছে। আপনি কি এর প্রতিবেদন পাঠাতে চান?" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "প্রতিবেদন সেটিংস পরিবর্তন" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "প্রতিবেদনের বিশদ দেখাও" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "উপেক্ষা" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "এই অনুসন্ধানটি আবার দেখাও" -#: js/messages.php:701 +#: js/messages.php:693 #, 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:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL query" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "টেবলের মন্তব্য" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "খোজাঁর ফলাফল লুকাও" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "পূর্ববর্তী" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "পরবর্তী" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "আজ" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "জানুয়ারী" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "ফেব্রুয়ারী" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "মার্চ" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "এপ্রিল" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "মে" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "জুন" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "জুলাই" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "অগাষ্ট" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "সেপ্টেম্বর" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "অক্টোবর" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "নভেম্বর" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "ডিসেম্বর" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "জান" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "ফেব" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "মার" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "এপ্রি" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "মে" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "জুন" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "জুল" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "আগ" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "সেপ" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "অক্ট" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "নভে" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "ডিসে" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "রবিবার" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "সোমবার" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "মঙ্গলবার" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "বুধবার" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "বৃহস্পতিবার" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "শুক্রবার" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "শনিবার" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "রবি" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "সোম" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "মঙ্গল" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "বৃধ" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "বৃহস্পতি" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "শুক্র" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "শনি" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "রবি" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "সোম" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "মঙ্গ" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "বুধ" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "বৃহ" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "শুক্র" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "শনি" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "সপ্তাহ" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "বর্ষপঞ্জি-মাস-বছর" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "- কিছু না -" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "ঘন্টা" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "মিনিট" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "সেকেন্ড" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "আক্ষরীক ক্ষেত্র ব্যবহার করুন" -#: js/messages.php:886 +#: js/messages.php:878 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid email address" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:887 +#: js/messages.php:879 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:889 +#: js/messages.php:883 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date ( ISO )" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:890 +#: js/messages.php:885 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:891 +#: js/messages.php:888 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:892 +#: js/messages.php:890 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" @@ -3075,53 +3048,53 @@ msgstr "একটি কার্যকর দৈর্ঘ্য দিন!" msgid "Please enter the same value again" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter at least {0} characters" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a value between {0} and {1}" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:898 +#: js/messages.php:917 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" msgstr "একটি কার্যকর দৈর্ঘ্য দিন!" -#: js/messages.php:899 +#: js/messages.php:922 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a value greater than or equal to {0}" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:901 +#: js/messages.php:928 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date or time" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:902 +#: js/messages.php:933 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "ভুল" @@ -3208,11 +3181,12 @@ msgstr "সহ-অনুসন্ধান" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3262,7 +3236,7 @@ msgstr "বর্তমান ভুলটি এড়িয়ে যাও" msgid "Explain" msgstr "SQL এর ব্যাখা" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "প্রোফাইলিং" @@ -3306,8 +3280,8 @@ msgid "History" msgstr "এসকিউএল ইতিহাস" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3495,31 +3469,31 @@ msgstr "" msgid "Switch to dark theme" msgstr "প্রতিলিপিকৃত টেবিলে যাও" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" "সার্ভারটি সাড়া দিচ্ছে না। (বা স্থানীয় সার্ভারটির সকেট সঠিকভাবে কনফিগার করা হয়নি)।" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "সার্ভারটি সাড়া দিচ্ছে না।" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "ডাটাবেইজ ডিরেক্টরির অধিকারসমূহ পরীক্ষা করুন।" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "বিশদ…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "নিয়ন্ত্রক ব্যবহারকারীর জন্য নির্ধারিত কনফিগারেশন সংযোগে ব্যার্থ হয়েছে।" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3529,8 +3503,8 @@ msgstr "নিয়ন্ত্রক ব্যবহারকারীর জন msgid "Ascending" msgstr "উর্ধ্ব মূখী" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3685,8 +3659,8 @@ msgstr[0] "%2$s মধ্যে %1$s মিল" msgstr[1] "%2$s মধ্যে %1$s গুলো মিল" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3730,125 +3704,126 @@ msgstr "সবগুলো অনির্বাচন" msgid "Inside column:" msgstr "স্তম্ভের ভিতরে:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "সম্পাদিত তথ্য সংরক্ষন কর" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "স্থম্ভের বিন্যাস ফিরিয়ে আনা" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 #, fuzzy #| msgid "Filters" msgid "Filter rows" msgstr "ফিল্টারসমূহ" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Search in database" msgid "Search this table" msgstr "ডাটাবেইজে খোঁজ" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "আরম্ভ" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "পূর্ববর্তী" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "পরবর্তী" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "শেষ" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "সবগুলো" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "রো সংখ্যা:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "কী দ্বারা গুছানো" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "আংশিক লেখা" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "সম্পুর্ন লেখা" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "সর্ম্পকের কী" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Display foreign key relationships" msgid "Display column for relations" msgstr "ফরেন কী সর্ম্পক দেখাও" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "বাইনারী লেখা দেখাও" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "BLOB লেখা দেখাও" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "ব্রাউজারের পরিবর্তন লুকাও" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "ভালভাবে জানা লেখা" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "ভালভাবে জানা বাইনারী" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "রো টি মুছা হয়েছে।" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "হত্যা" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "সম্ভবত আনুমানিক। [doc@faq3-11]FAQ 3.11[/doc] দেখুন।" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "আপনার SQL অনুসন্ধানটি সফলভাবে কাজ করেছে." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3856,40 +3831,40 @@ msgid "" msgstr "" "এই ভিউটির অন্তত পক্ষে এক সারি তথ্য রয়েছে। অনুগ্রহ করে %sdocumentation%s দেখুন।" -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "রো দেখাচ্ছে %1s - %2s" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "মোট %1$d, অনুসন্ধানে %2$d" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "%d মোট" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "অনুসন্ধানে %01.4f সেঃ লেগেছ." -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "নিবার্চিত গুলো নিয়ে:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3897,25 +3872,25 @@ msgstr "নিবার্চিত গুলো নিয়ে:" msgid "Check all" msgstr "সবগুলোতে টিক দাও" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "মুদ্রনের দেখা" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "অনুসন্ধান ফল" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "চিত্র দেখাও" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "জিআইএস তথ্য দেখা" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "সংযোগটি পাওয়া যায়নি!" @@ -4011,19 +3986,19 @@ msgstr "কোন ইনডেক্স তৈরী করা হয়নি!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "ইনডেক্সসমূহ" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -4032,24 +4007,24 @@ msgid "Action" msgstr "কর্ম" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "কী'র নাম" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "অনন্য" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "প্যাক্ড" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Cardinality" @@ -4057,8 +4032,8 @@ msgstr "Cardinality" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -4068,8 +4043,8 @@ msgid "Collation" msgstr "ভাষা" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -4085,15 +4060,15 @@ msgstr "প্রাথমিক কী মুছা হয়েছে।" msgid "Index %s has been dropped." msgstr "ইনডেক্স %s মুছা হয়েছে।" -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "মুছ" @@ -4130,12 +4105,13 @@ msgstr "দেখা" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4143,7 +4119,7 @@ msgstr "টেবল" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4152,8 +4128,8 @@ msgid "SQL" msgstr "এসকিউএল" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4161,41 +4137,41 @@ msgid "Search" msgstr "খোঁজা" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "ইনর্সাট" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "অধিকারসমূহ" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "কাজসমূহ" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "ট্রেকিং" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4206,16 +4182,16 @@ msgstr "ট্রিগারসমূহ" msgid "Database seems to be empty!" msgstr "ডাটাবেইজটি খালি মনে হয়!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "অনুসন্ধান" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "রুটিনসমূহ" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4223,22 +4199,22 @@ msgstr "রুটিনসমূহ" msgid "Events" msgstr "ইভেন্টসমূহ" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "নকশাকারী" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "Textarea columns" msgid "Central columns" msgstr "টেক্সএরিয়া স্তম্ভ" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "ডাটাবেইজ" @@ -4249,33 +4225,33 @@ msgid "User accounts" msgstr "ব্যবহারকারীর দল" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "বাইনারী লগ" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "অনুলিপি" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "চলকসমূহ" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "বর্ণরাশী" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "ব্যবস্থাসমূহ" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "প্লাগইন" @@ -4596,7 +4572,7 @@ msgstr "ইনডেক্সটি PRIMARY হিসাবে নাম কর msgid "No index parts defined!" msgstr "ইনডেক্সের অংশ দেওয়া হয়নি!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "%1$s এ ফরেন কী তৈরী করতে সমস্যা হচ্ছে (তথ্যের ধরন পরীক্ষা করুন)" @@ -5058,39 +5034,39 @@ msgstr "%s কার্যকারিতা একটি চিহ্নিত msgid "Click to toggle" msgstr "টোগল ক্লীক করুন" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "আপনার কম্পিউটারে দেখুন:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "ওয়েভ সার্ভারের আপলোড ডিরেক্টরি থেকে নির্বাচন করুন %s:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "আপলোড করার জন্য নির্ধারিত ডিরেক্টরীটি পাওয়া যাচ্ছে না।" -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 #, fuzzy #| msgid "There are no files to upload" msgid "There are no files to upload!" msgstr "আপলোড করার জন্য কোন ফাইল নাই" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "খালি" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "কর" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "প্রিন্ট" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "ব্যবহারকারী" @@ -5263,8 +5239,8 @@ msgid "Add new column" msgstr "স্বম্ভ যোগ করা" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5326,19 +5302,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "আপনি অবশ্যই %s %s বা পরের কোন সংস্করনে আপগ্রেড করবেন।" -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "ভুল: টোকেন মিলে নাই" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS পুন লিখনের চেষ্টা" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "সাম্ভাব্য বিপদের সুযোগ" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "সংখ্যা কী সনাক্ত করা গেছে" @@ -6217,7 +6193,7 @@ msgid "Remember file name template" msgstr "ফাইল নামের নকশা মনে রাখবে" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT যোগ কর" @@ -6258,7 +6234,7 @@ msgstr "phpMyAdmin কনফিগারেশনের storage table পাও #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "%s যোগ কর" @@ -8009,7 +7985,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "পেশ করার পর অনুসন্ধান বক্সটি পর্দায় থাকবে কিনা।" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "অনুসন্ধান বক্সটি রাখ" @@ -8313,103 +8289,33 @@ msgstr "মাইক্রোসফট ওর্য়াড ২০০০" msgid "OpenDocument Text" msgstr "ওপেন অফিস টেক্সট" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "টেবিল %s খালি করা হয়েছে।" -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "ভিউ %s মুছা হয়েছে।" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "টেবল %s মুছা হয়েছে।" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "অজানা" -#: libraries/controllers/TableStructureController.php:162 -#, fuzzy, php-format -#| msgid "The column name '%s' is a MySQL reserved keyword." -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "স্তম্ভের নাম '%s'টি MySQL'র সংরক্ষিত শব্দ।" -msgstr[1] "স্তম্ভের নাম '%s'টি MySQL'র সংরক্ষিত শব্দ।" - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "কোন স্তম্ভ নির্বাচন করা হয় নাই।" - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "স্তম্ভগুলো সফলভাবে সরানো হয়েছে।" - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "%1$s টেবিলটি সফলভাবে পরিবর্তন করা হয়েছে।" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "অনুসন্ধানে ভুল" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "পরিবর্তন" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "ইনডেক্স" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "স্পাটিয়াল" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "ফুলটেক্সট" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "স্বতন্ত্র মানগুলো" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8423,6 +8329,14 @@ msgstr "প্লটের জন্য টেবলে কোন গাণি msgid "No data to display" msgstr "প্রর্দশনের কোন তথ্য নাই" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "%1$s টেবিলটি সফলভাবে পরিবর্তন করা হয়েছে।" + #: libraries/controllers/table/TableRelationController.php:212 #, fuzzy #| msgid "Thread %s was successfully killed." @@ -8435,25 +8349,87 @@ msgstr "প্রক্রিয়া %s সফলভাবে ধ্বংস ক msgid "Internal relations were successfully updated." msgstr "আভ্যন্তরীন সম্পর্ক যোগ করা হয়েছে" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Table Search" msgid "Table search" msgstr "টেবিলে খোজাঁ" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Zoom Search" msgid "Zoom search" msgstr "খোজাঁ বড় কর" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "Find and Replace" msgid "Find and replace" msgstr "পাওয়া এবং প্রতিস্থাপন" +#: libraries/controllers/table/TableStructureController.php:163 +#, fuzzy, php-format +#| msgid "The column name '%s' is a MySQL reserved keyword." +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "স্তম্ভের নাম '%s'টি MySQL'র সংরক্ষিত শব্দ।" +msgstr[1] "স্তম্ভের নাম '%s'টি MySQL'র সংরক্ষিত শব্দ।" + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "কোন স্তম্ভ নির্বাচন করা হয় নাই।" + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "স্তম্ভগুলো সফলভাবে সরানো হয়েছে।" + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "অনুসন্ধানে ভুল" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "পরিবর্তন" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "ইনডেক্স" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "স্পাটিয়াল" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "ফুলটেক্সট" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "স্বতন্ত্র মানগুলো" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8463,7 +8439,7 @@ msgstr "%s সংযোজনক পাওয়া যাচ্ছে না। msgid "possible deep recursion attack" msgstr "সাম্ভাব্য গভীর পুনরাবৃত্তির (recursion)আক্রমন" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "পরিবর্তন নয়" @@ -8533,7 +8509,7 @@ msgstr "তৈরী" msgid "Create database:" msgstr "ডাটাবেজ় তৈরী কর:" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "কোন অধিকার নাই" @@ -9284,27 +9260,27 @@ msgid "Dump has been saved to file %s." msgstr "স্তুপকৃত তথ্য %s ফাইলে সংরক্ষন করা হয়েছে।" #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "মাইএসকিউএল কিছু পায়নি। (শুন্য তথ্য)।" -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "এই আকৃতিটি তৈরী করা বা পরিবর্তন করা হয়েছে। এখানে আপনি:" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 #, fuzzy #| msgid "View a structure's contents by clicking on its name" msgid "View a structure's contents by clicking on its name." msgstr "একটি আকৃতির বিশদ দেখুন তার নামে ক্লিক করে" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -9312,48 +9288,48 @@ msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "\"Options\" এ ক্লীক করে যে কোন সেটিংস পরিবর্তন করুন" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 #, fuzzy #| msgid "Edit structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link." msgstr "আকৃতি সম্পাদনা কর এই \"Structure\" সংযোগের দ্বারা" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "ডাটাবেইজ এ যাও: %s" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "%s এর সেটিংস সম্পাদনা" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "টেবল এ যাও: %s" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "%s এর আকৃতি" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "ভিউ এ যাও : %s" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr " %s  কলামসমূহে একটি ইনডেক্স তৈরী কর" @@ -9376,68 +9352,68 @@ msgstr "ফাংশন" msgid "Binary" msgstr "বাইনারী" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 #, fuzzy #| msgid "Because of its length,
this column might not be editable" msgid "Because of its length,
this column might not be editable." msgstr "দৈর্ঘ্যের জন্য এই স্বম্ভ সম্পাদন করা যাবে না" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Binary - সম্পাদন করবেন না" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "অথবা" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "ওয়েব সার্ভারের আপলোড ডিরেক্টরি:" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "সম্পাদন/নতুন" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "%s রোতে প্রবেশ করানো চলতে থাকবে" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "এবং তারপর" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "নতুন রো হিসাবে প্রবেশ করাও" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "নতুন রো হিসাবে প্রবেশ করাও এবং ভুলসমূহ উপেক্ষা কর" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "প্রবেশ করানোর অনুসন্ধান দেখাও" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "পূর্ববর্তী পাতায় যাও" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "অন্য আরেকটি নতুন রো প্রবেশ করাও" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "এই পাতাতেই ফিরে আস" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "পরবর্তী রো সম্পাদনা" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9447,7 +9423,7 @@ msgstr "" "ট্যাব কি দিয়ে মান থেকে মানে যাওয়া যাবে বা CTRL+arrows দিয়ে যে কোন জায়গায় " "যাওয়া যাবে।" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9459,11 +9435,11 @@ msgstr "" msgid "Value" msgstr "মান" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "এসকিউএল অনুসন্ধান দেখাচ্ছে" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "প্রবেশকৃত রো আইডি: %1$d" @@ -9479,37 +9455,37 @@ msgstr "কিছু না" msgid "Convert to Kana" msgstr "কানায় রুপান্তর কর" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 #, fuzzy #| msgid "Success." msgid "Success!" msgstr "সফল।" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "টেবিল পুর্বপদ প্রতিস্থাপন:" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "পুর্বপদ সহ টেবিলটি অনুলিপি করুন:" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "হইতে" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "প্রতি" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "টেবিলের পুর্বপদ দিন:" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "পূবাংশ যোগ" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "আপনি কি সত্যই নিন্মোক্ত অনুসন্ধান কার্যকর করতে চান?" @@ -9733,8 +9709,8 @@ msgstr "প্রোসিডিউরস:" msgid "Views:" msgstr "ভিউসমূহ:" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "দেখাও" @@ -9776,18 +9752,15 @@ msgstr[0] "%s টি অন্যান্য ফলাফল পাওয়াগ msgstr[1] "%s গুলো অন্যান্য ফলাফল পাওয়াগেছে" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" -msgstr "নাম বা regex অনুযায়ী ডাটাবেইজ ফিল্টার" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 msgid "Clear fast filter" msgstr "দ্রুত ফিল্টারটি সরাও" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "নাম বা regex অনুযায়ী ফিল্টার" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -10183,7 +10156,7 @@ msgstr "ডাটাবেজ পুনঃনামকরন" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10194,7 +10167,7 @@ msgstr "এই মূহুর্তে এখানে থাকার জন #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -10214,18 +10187,18 @@ msgstr "ডাটাবেইজটি মুছে ফেল" msgid "Drop the database (DROP)" msgstr "ডাটাবেইজটি মুছে ফেল (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "শুধুমাত্র গঠন" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "গঠন এবং তথ্য" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "শুধুমাত্র তথ্য" @@ -10237,7 +10210,7 @@ msgstr "ডাটাবেজ কপি কর" msgid "CREATE DATABASE before copying" msgstr "প্রতিলিপি তৈরীর পূর্বে ডাটাবেইজ তৈরী কর" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "নিয়মাবলী যোগ কর" @@ -10277,163 +10250,163 @@ msgstr "মজুদ ব্যবস্থা" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "(ডাটাবেইজ.টেবল)এ টেবিলটির প্রতিলিপ কর" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "প্রতিলিপিকৃত টেবিলে যাও" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "টেবিল রক্ষণাবেক্ষণ" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "টেবিল নিরীক্ষা করা" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "টেবল পরীক্ষা" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "টেবল পরীক্ষা" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "টেবল ডিফ্রেগমেন্ট" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "%s টেবিলটি ফ্লাশ করা হয়েছে." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "টেবিলটি ফ্লাশ কর (FLUSH)" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "টেবিল সর্বোচ্চ কার্যপযোগী কর" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "টেবিল মেরামত" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "তথ্য বা টেবিল মুছ" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "টেবিলটি খালি কর (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "টেবিলটি মুছ (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "নিরীক্ষা" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "পরীক্ষা" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "অপটিমাইজ" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "পুননির্মাণ" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "মেরামত" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "বন্ধ" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "খন্ড রক্ষণাবেক্ষন" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "খন্ড %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "খন্ড মুছ" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "রেফারেনসিয়াল ইন্টিগ্রিটি পরীক্ষা কর:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "একই ক্ষেত্রে টেবলটি সরানো যাবে না!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "একই ক্ষেত্রে টেবলটির অনুলিপি করা যাবে না!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "%s টেবিলটি %s এ সরানো হয়েছে।" -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "%s টেবিল টি %s এ প্রতিলিপি করা হয়েছে।" -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "%s টেবিলটি %s এ সরানো হয়েছে।" -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "%s টেবিল টি %s এ প্রতিলিপি করা হয়েছে।" -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "টেবিলের নামটি খালি!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "এই গঠনের কোন অপশন নাই" @@ -10605,7 +10578,7 @@ msgstr "তথ্য স্তুপের অপশন" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "টেবলের জন্য তথ্য স্তুপ করছি" @@ -10629,21 +10602,21 @@ msgstr "সংজ্ঞা" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "টেবলের জন্য টেবলের গঠন" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "ভিউ এর গঠন" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "দর্শনের বর্তমান গঠন" @@ -10733,7 +10706,7 @@ msgid "Database:" msgstr "ডাটাবেইজ:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "ডাটা:" @@ -10837,7 +10810,7 @@ msgid "Data creation options" msgstr "তথ্য তৈরীর অপশন" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "ইনার্সটের পুর্বে টেবল খালি কর" @@ -10922,8 +10895,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10931,84 +10904,84 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Missing data for %s" msgid "Metadata" msgstr "%s এর তথ্য নাই" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Metadata for %s" msgstr "%s এর তথ্য নাই" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "প্রস্তুত:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "সর্বশেষ আপডেট:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "সর্বশেষ যাচাই:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "ব্যবহৃত" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "স্তুপকৃত টেবলের সীমবদ্ধতা" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "টেবলের সীমবদ্ধতা" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "স্তুপকৃত টেবলের ইনডেক্স" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "টেবিলের ইনডেক্সসমুহ" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "স্তুপকৃত টেবলের জন্য স্বয়ক্রীয় বর্দ্ধিত মান (AUTO_INCREMENT)" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "টেবলের জন্য স্বয়ক্রীয় বর্দ্ধিত মান (AUTO_INCREMENT)" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "টেবিলের মাইমের ধরন" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "টেবিলের সর্ম্পক" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "ভিউ এর গঠন %s টেবলে রফতানী করা হয়েছে" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "তথ্য পড়ার ভুল:" @@ -11264,9 +11237,9 @@ msgstr "সর্ম্পকের রূপরেখা" msgid "Table of contents" msgstr "সুচিপত্র" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "বেশতী" @@ -11490,61 +11463,61 @@ msgstr "বাক্য চিহ্নিত করনসহ SQL অনুস msgid "Formats text as XML with syntax highlighting." msgstr "বাক্য চিহ্নিত করনসহ SQL অনুসন্ধান গঠন কর।" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "ভুল: সর্ম্পক পূর্ব থেকেই তৈরী আছে।" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "FOREIGN KEY সর্ম্পক যোগ করা হয়েছে" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "ভুল: সর্ম্পক যোগ করা হয়নি" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "ভুল: সর্ম্পক তৈরী অকার্যকর করা আছে!" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "আভ্যন্তরীন সম্পর্ক যোগ করা হয়েছে" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "ভুল: সর্ম্পক যোগ করা হয়নি" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "FOREIGN KEY সর্ম্পক যোগ করা হয়েছে" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "ভুল: সর্ম্পক যোগ করা হয়নি" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "ভুল: সর্ম্পক যোগ করা হয়নি" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11598,65 +11571,65 @@ msgstr "ব্রাউজারের রুপান্তর" msgid "Please see the documentation on how to update your column_info table. " msgstr "কিভাবে column_comments টেবল আপডেট করতে হবে তার জন্য সহায়িকা দেখুন।" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "বুকর্মাককৃত SQL অনুসন্ধান" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "এসকিউএল ইতিহাস" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "স্থায়ী সাম্প্রতিক ব্যবহৃত টেবলসমূহ" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "Persistent recently used tables" msgid "Persistent favorite tables" msgstr "স্থায়ী সাম্প্রতিক ব্যবহৃত টেবলসমূহ" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "Persistent tables' UI পছন্দ" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "ব্যবহারকারীর পছন্দ (preferences)" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "কনফিগার করারমত মেনু" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "চলাচল ফ্রেম লুকাও/দেখাও" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Remember table's sorting" msgid "Remembering Designer Settings" msgstr "টেবলের সজ্জা মনে রাখবে" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "রফতানীর ধরন সঠিক নয়" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "উন্নততর বিষয়গুলো দ্রুত সেটআপের পদক্ষেপসমূহ:" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, fuzzy, php-format #| msgid "" #| "Create the needed tables with the examples/create_tables.sql." @@ -11665,11 +11638,11 @@ msgstr "" "প্রয়োজনীয় টেবলসমূহ examples/create_tables.sql এর সাহায্যে তৈরী কর " "।" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "একটি PMA ব্যবহারকারী তৈরী কর এবং টেবিলসমূহে প্রবেশাধীকার দাও।" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -11677,22 +11650,22 @@ msgstr "" "কনফিগারেশন ফাইলে (config.inc.php) উন্নততর বিষয়গুলো কার্যকর কর, " "উদাহরণ স্বরুপ config.sample.inc.php থেকে শুরু কর।" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "আধুনিক কনফিগারেশন ফাইল লোড করার জন্য phpMyAdmin এ আবার লগইন করুন।" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "বণর্না নাই" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11700,14 +11673,14 @@ msgid "" "configuration storage there." msgstr "phpMyAdmin কনফিগারেশনের storage table পাওয়া যাচ্ছে না" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "phpMyAdmin কনফিগারেশনের storage table পাওয়া যাচ্ছে না" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -11900,8 +11873,8 @@ msgstr "ব্যাবহারকারীর নাম:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "ব্যবহারকারীর নাম" @@ -11909,7 +11882,7 @@ msgstr "ব্যবহারকারীর নাম" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "পাসওর্য়াড" @@ -12556,7 +12529,7 @@ msgstr[1] "%1$d টি ডাটাবেইজ সফলভাবে মুছ msgid "Plugin" msgstr "সাহায্যকারী" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "সংস্করন" @@ -12564,100 +12537,96 @@ msgstr "সংস্করন" msgid "Author" msgstr "প্রণেতা" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "অনুমোদন" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "অকার্যকর" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "কোন অধিকার নাই।" -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "GRANT ব্যাতিত সবগুলো অধিকার।" #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "তথ্য পড়ার অনুমোদন।" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "তথ্য যোগকরা এবং প্রতিস্থাপনের অনুমোদন।" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "তথ্য পরিবর্তনের অনুমোদন।" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "তথ্য মুছার অনুমোদন।" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "নতুন ডাটাবেজ এবং টেবল তৈরীর অনুমোদন।" #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "ডাটাবেজ এবং টেবল মুছার অনুমোদন।" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "সার্ভার সেটিংস এবং সার্ভারের সঞ্চয়কৃত তথ্যাবলী পরিবর্তনের অনুমোদন।" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "সার্ভার বন্ধ করার অনুমোদন।" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 #, fuzzy #| msgid "Allows viewing processes of all users" msgid "Allows viewing processes of all users." msgstr "সব ব্যবহারকারীর প্রসেস দেখার অনুমোদন" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "ফাইলে তথ্য আমদানি এবং রফতানীর অনুমোদন।" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "মাইএসকিউএলের এই ভার্সনে কোন প্রভাব নাই।" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "ইনডেক্স তৈরী এবং মুছার অনুমোদন।" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "তৈরীকৃত টেবিলের গঠন পরিবর্তনের অনুমোদন।" #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "ডাটা বেইজের তালিকা সম্পুর্ন করার অনুমোদন দেওয়া।" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12667,41 +12636,41 @@ msgstr "" "চলক নির্ধারন বা অন্য ব্যবহারকারীরর থ্রেড হত্যার জন্য প্রয়োজন।" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "অস্থায়ী টেবিল তৈরীর অনুমোদন।" #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "বর্তমান থ্রেড এর জন্য টেবল লক করার অনুমোদন।" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "সহায়তাকরী প্রতিলিপির জন্য প্রয়োজন।" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "সহায়তাকারী এবং প্রধানদের সম্পর্কে জিজ্ঞাসার অনুমোদন।" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "নতুন ভিউ তৈরীর অনুমোদন।" #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "ইভেন্ট সিডিউলারের জন্য ইভেন্ট নিধার্রন করার অনুমোদন" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 #, fuzzy #| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." @@ -12709,27 +12678,27 @@ msgstr "ট্রিগার তৈরী এবং মুছার অনু #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "SHOW CREATE VIEW কোয়ারীজ তৈরীর অনুমোদন।" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "মজুদ করার জন্য রুটিন তৈরীর অনুমোদন।" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "মজুদকৃত রুটিনসমূহ পরিবর্তন এবং মুছার অনুমোদন।" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "ব্যবহারকারীর একাউন্ট তৈরী, মুছা এবং নাম পরিবর্তনের অনুমোদন।" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "মজুদকৃত রুটিন ব্যবহারের অনুমোদন।" @@ -12741,8 +12710,8 @@ msgstr "কিছু না" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "ব্যাবহারকারীর দল" @@ -12786,12 +12755,12 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "টিকা: এটা ০ (শূন্য) দেওয়া থাকলে কোন সীমাবদ্ধতা থাকবে না।" #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "এই ব্যবহারকারীর প্রতি ঘন্টায় ব্যবহৃত অনুসন্ধান নির্ধারন করন।" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12800,20 +12769,20 @@ msgstr "" "পরিমান নির্ধারন করন।" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "এই ব্যবহারকারীর প্রতি ঘন্টায় ব্যবহার যোগ্য সংযোগ নির্ধারন করন।" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "এই ব্যবহারকারী একই সংগে কতগুলো সংযোগ ব্যবহার করতে পারবে তার পরিমান নির্ধারন করন।" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12821,7 +12790,7 @@ msgid "Routine" msgstr "রুটিনসমূহ" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "অধিকার টেবল রিলোড না করে ব্যবহারকারী এবং তাদের অধিকার যোগ করার অনুমোদন।" @@ -12840,14 +12809,14 @@ msgstr "মজুদকৃত রুটিন ব্যবহারের অন #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "টেবিলের নির্দিষ্ট অধিকার" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -12859,7 +12828,7 @@ msgid "Administration" msgstr "প্রশাসন" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "সর্বময় অধিকারসমূহ" @@ -12868,15 +12837,15 @@ msgid "Global" msgstr "সর্বময়" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "ডাটাবেইজ নির্ধারিত অধিকারসমূহ" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "নতুন টেবল তৈরীর অনুমোদন।" -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "টেবিল মুছার অনুমোদন।" @@ -12899,7 +12868,7 @@ msgid "Native MySQL Authentication" msgstr "কুকি প্রমাণীকরণ" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "লগইন তথ্যাবলী" @@ -12924,8 +12893,8 @@ msgstr "ব্যাবহারকারীর নাম:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Log name" msgid "Host name" @@ -12947,236 +12916,236 @@ msgstr "প্রমাণীকরণ" msgid "Password Hashing Method" msgstr "Password Hashing" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "%s এর পাসওর্য়াডটি সফলভাবে পরিবর্তন করা হয়েছে।" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "%s অধিকার সমূহ বাতিল করা হয়েছে।" -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add user group" msgid "Add user account" msgstr "ব্যবহারকারীর দল যোগ কর" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "ব্যবহারকারীর ডাটাবেইজ" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "একই নামে ডাটাবেইজ তৈরী কর এবং সব অধীকার দাও।" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "সমস্ত অধিকার সব ব্যবহারকারীকে দাও (username\\_%)।" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "\"%s\" ডাটাবেইজে সমস্ত অধিকার দাও।" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "ব্যবহারকারীরা \"%s\" প্রবেশাধীকার পাবে" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "ব্যবহারকারী যোগ করা হয়েছে।" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "অনুমোদন" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "ব্যবহারকারী নাই।" -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "যে কোন" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "সর্বময়" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "নির্দিষ্ট ডাটবেইজে" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "ওয়াইল্ডকার্ড" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "নির্দিষ্ট টেবলে" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "সুবিধাসমূহ সম্পাদনা:" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "বাতিল" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "ব্যবহারকারী দল সম্পাদনা" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… পুরাতনটি রাখ।" -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… ব্যবহারকারী টেবল থেকে পুরাতনটি মুছে ফেল।" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… পুরাতন সমস্ত অধিকার বাতিল কর এবং পরবর্তীগুলো মুছে ফেল।" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "পুরাতনটি ব্যবহারকারী টেবল থেকে মুছে ফেল এবং অধিকারগুলো পুনারায় চালু কর।" -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "লগইন তথ্য পরিবর্তন/ব্যবহারকারীর অনুলিপি" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "একই অধিকারসহ একজন নতুন ব্যবহারকারী তৈরী কর এবং…" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "স্বম্ভ সম্পকির্ত অধিকার" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "নির্বাচিত ব্যবহারকারীদের মুছ" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "এই ব্যবহারকারীদের অধিকার বাতিল কর এবং মুছে ফেল।" -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "এই ব্যবহারকারীর নামের সাথে মিল আছে এমন সব ডাটাবেইজ মুছে ফেল।" -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "মুছার জন্য কোন ব্যবহারকারী নির্বাচন করা হয়নি!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "অধিকারসমূহ পুনরায় পূর্ণ করা হয়েছে" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "নির্বাচিত ব্যবহরকারীগনকে সফলভাবে মুছা হয়েছে।" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "%s এর অধীকার সমূহ আধুনিকায়ন করা হয়েছে।" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "%s মুছছি" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "অধিকারসমূহ সফলভাবে পুনরায় পূর্ণকরা হয়েছে।" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "ব্যবহারকারী %s পূর্ব থেকেই আছে!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "%s এর অধিকারসমূহ" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "ব্যবহারকারী" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "নতুন" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "সুবিধাসমূহ সম্পাদনা:" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "User group" msgid "User account" msgstr "ব্যাবহারকারীর দল" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "একনজরে ব্যবহারকারীগণ" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13189,7 +13158,7 @@ msgstr "" "হতে পারে যদি তা পরিবর্তীত হয়ে থাকে। এরুপ ক্ষেত্রে %sreload the privileges%s করতে " "হবে।" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13208,11 +13177,11 @@ msgstr "" "হতে পারে যদি তা পরিবর্তীত হয়ে থাকে। এরুপ ক্ষেত্রে %sreload the privileges%s করতে " "হবে।" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "অধিকার টেবিলে এই ব্যবহারকারী সর্ম্পকে কোন তথ্য নাই।" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "একজন নতুন ব্যবহারকারী যোগ করেছেন।" @@ -13456,24 +13425,24 @@ msgstr "নির্দেশাবলী/সেটআপ" msgid "Done dragging (rearranging) charts" msgstr "চিত্র পুনবিন্যাস/সম্পাদনার কাজ শেষ" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "চিহ্নিতকরন কাযর্কর" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "রিফ্রেশ রেট" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "চিত্র স্তম্ভ" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "চিত্র বিন্যাস" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -13481,7 +13450,7 @@ msgstr "" "চিত্র সজ্বা ব্রাউজারের স্থানীয় মজুদব্যাবস্থায় সঞ্চিত হবে। আপনি এটা রফতানি করতে পারেন " "যদি একটি ভাল সেটআপ থাকে।" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "স্বাভাবিকে রিসেট কর" @@ -13543,7 +13512,7 @@ msgid "Statements" msgstr "প্রতিবেদন" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -13568,7 +13537,7 @@ msgstr "অবিন্নস্ত্য মানসমূহ দেখাও" msgid "Related links:" msgstr "সর্ম্পকিত সংযোগসমূহ:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -13576,11 +13545,11 @@ msgstr "" "যে সমস্ত সংযোগকারীর সংযোগ সঠিকভাবে বিচ্ছিন্ন না করায় সংযোগ বাতিল করা হয়েছে তার " "সংখ্যা।" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "মাইএসকিউএল সার্ভারের সংগে সংযোগ স্থাপনে ব্যর্থ্য প্রচেষ্টাসমূহের সংখ্যা।" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13589,16 +13558,16 @@ msgstr "" "সাময়িক বাইনারী লগ ব্যবহার করেছে এমন লেনদেন সংখ্যা কিন্ত যা binlog_cache_size " "অতিক্রম করেছে এবং লেনদেনের তথ্য রাখার জন্য সাময়িক ফাইল ব্যবহার করেছে।" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "লেনদেনে সাময়িক বাইনারি লগ ক্যাশ ব্যবহার করেছে তার সংখ্যা।" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "মাইএসকিউএল সার্ভারের সংগে সমস্ত সংযোগ প্রচেষ্টার সংখ্যা।" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13609,17 +13578,17 @@ msgstr "" "যদি Created_tmp_disk_tables বেশী হয়, তাহলে আপনি tmp_table_size এর মানটি " "বাড়ান যা ডিস্কের পরীবর্তে মেমোরিতে বেশী টেবিল তৈরী করবে।" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "mysqld কতগুলো সাময়িক ফাইল তৈরী করেছ।" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "কাজ করার সময় সার্ভার দ্বারা মেমোরীতে প্রস্তুতকৃত সাময়িক টেবিলের সংখ্যা।" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13627,7 +13596,7 @@ msgstr "" "INSERT DELAYED এর মাধ্যমে লেখা রো গুলোর জন্য কিছু ভুল হয়ে থাকতে পারে (probably " "duplicate key)।" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13635,23 +13604,23 @@ msgstr "" "INSERT DELAYED থ্রেডসমূহের তত্ত্বাবধানকারী ব্যবহৃত হচ্ছে। প্রতিটি INSERT DELAYED " "ব্যবহারকারী তার নিজস্ব থ্রেড ব্যবহার করছে।" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED রো'র সংখ্যা লেখা হয়েছে।" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "ব্যবহৃত FLUSH এর সংখ্যা।" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "আভ্যন্তরীন COMMIT এর সংখ্যা।" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "একটি রো একটি টেবিল থেকে কতবার মুছা হয়েছে তার সংখ্যা।" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13661,7 +13630,7 @@ msgstr "" "করতে পারে। একে ডিসকভারী বলে। Handler_discover টেবিলটি কতবার ডিসকভার করা " "হয়েছে তা দেখায়।" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13671,7 +13640,7 @@ msgstr "" "সার্ভার প্রচুর সম্পুর্ন ইনডেক্স স্ক্যান করছে; যেমন SELECT col1 FROM foo, ধারনা করা " "যায় col1 ইনডেক্স করা আছে।" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -13679,7 +13648,7 @@ msgstr "" "একটি key উপর ভিত্তি করে কত বার রো পড়ার চেষ্টা করা হয়েছে তার সংখ্যা। এটা যদি " "অনেক বেশী হয়, তাহলে তা টেবিল এবং অনুসন্ধানের ভালো ইনডেক্স হওয়ার ভাল লক্ষন।" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13688,7 +13657,7 @@ msgstr "" "পরবর্তী রো key order অনুযায়ী পড়ার চেষ্টার সংখ্যা। ইহা বাড়বে যদি আপনি ইনডেক্সড " "কলাম নির্দিষ্ট সীমার ভিতর অনুসন্ধান করেন বা ইনডেক্স স্ক্যান করেন।" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13696,7 +13665,7 @@ msgstr "" "পূর্ববর্তী রো key order অনুযায়ী পড়ার চেষ্টার সংখ্যা। পড়ার এই পদ্ধতীটি প্রধানত ORDER " "BY … DESC optimize করতে ব্যবহৃত হয়।" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13708,7 +13677,7 @@ msgstr "" "টেবিলটি স্কেন করে বা আপনি এমন ভাবে অন্য টেবিলে সংযোগ করেছেন যা keys সঠিক ভাবে " "ব্যবহার করছে না।" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13719,35 +13688,35 @@ msgstr "" "বেশী। মনে হয় আপনার টেবিলটি সঠিকভাবে ইনডেক্স করা হয়নি বা অনুসন্ধানগুলো ইনডেক্সের " "সুবিধা নেয়ার মত করে লেখা হয়নি।" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "internal ROLLBACK এর সংখ্যা।" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "একটি টেবিলে একটি রো আপডেট এর সংখ্যা।" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "একটি টেবিলে একটি রো প্রবেশ করানোর চেষ্টা।" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "তথ্য (পরিচ্ছন্ন বা অপরিচ্ছন্ন) আছে এমন পাতার সংখ্য।" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "অপরিচ্ছন্ন পাতার সংখ্যা।" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "মুছার চেষ্টা হয়েছে এমন buffer pool পাতার সংখ্যা।" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "খালি পাতার সংখ্যা।" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13756,7 +13725,7 @@ msgstr "" "InnoDB buffer pool এ থাকা পাতার সংখ্যা। এই পাতাগুলোতে কাজ করা হচ্ছে বা এখনো " "ডিস্কে রাখা হয়নি বা কোন কারনে মুছা হয়নি।" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13768,11 +13737,11 @@ msgstr "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data এর মাধ্যমেও " "পাওয়া যাবে।" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "বাফার পুলের মোট আকার, পাতায়।" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13780,7 +13749,7 @@ msgstr "" "InnoDB'র \"random\" পড়ার চেষ্টা করেছে তার সংখ্যা। যখন কোন অনুসন্ধান টেবলের একটি " "বড় অংশ random ভাবে স্ক্যন করে তখন ঘটে।" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13788,18 +13757,18 @@ msgstr "" "InnoDB'র ধারাবাহিকভাবে পড়ার চেষ্টা করেছে তার সংখ্যা। InnoDB যখন কোন টেবিলে " "ধারাবাহিকভাবে স্ক্যান করে তখন ঘটে।" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB'র যৌক্তিক পড়ার সংখ্যা।" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" "যা InnoDB buffer pool থেকে পড়তে পারেনি এবং একটি পাতা পড়তে হয়েছে তার সংখ্যা।" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13812,51 +13781,51 @@ msgstr "" "অপেক্ষা করতে হয়। এই গণকটি এই অপেক্ষার সংখ্যাটি গুনে রাখে। যদি বাফার পুল আকার " "সঠিকভাবে সেট করা হয়, এর মান কম হবে।" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB বাফার পুলে লেখার সংখ্যা।" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "fsync() কাজের সংখ্যা।" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "আটকে থাকা fsync() কাজের সংখ্যা।" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "আটকে থাকা পড়ার সংখ্যা।" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "আটকে থাকা লেখার সংখ্যা।" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "পাঠকৃত তথ্যের পরিমান, বাইটে।" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "পাঠকৃত তথ্যের মোট সংখ্যা।" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "লিখিত তথ্যের মোট সংখ্যা।" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "লিথিত তথ্যের পরিমান, বাইটে।" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "পাতার সংখ্যা যা ডাবলরাইটের জন্য লেখা হয়েছে।" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "সম্পন্ন করা হয়েছে এমন ডাবলরাইট কাজের সংখ্যা।" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13864,35 +13833,35 @@ msgstr "" "লগ বাফার খুব ছোট থাকায় কৃত অপেক্ষার সংখ্যা এবং ইহা মুছার পূর্ব পর্যন্ত আমাদের অপেক্ষা " "করতে হয়েছে।" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "লগ লেখার জন্য প্রচেষ্টার সংখ্যা।" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "লগে লেখার সংথ্যা।" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "লগে fsync() লেখার সংখ্যা।" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "লগে fsync লেখা আটকে আছে তার সংখ্যা।" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "লগে লেখা বাকি আছে।" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "লগে লেখা বাইটের সংখ্যা।" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "প্রস্তুতকৃত পাতার সংখ্যা।" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -13900,51 +13869,51 @@ msgstr "" "InnoDB কম্পাইল করার সময় স্বাভাবিক পাতার আকৃতিতে (16KB) থাকে। অনেক কিছুই পাতা " "হিসাবে গনা হয়; পাতার আকৃতি সহজেই বাইটে পরিবর্তন করা যায়।" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "পড়া পাতার সংখ্যা।" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "লিখিত পাতার সংখ্যা।" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "অপেক্ষারত রো লকের সংখ্যা।" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "একটি রো তে তালা দেওয়ার গড় সময়, মিলিসেকেন্ডে।" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "রো তালা দেওয়ার জন্য ব্যবহৃত মোট সময়, মিলিসেকেন্ডে।" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "একটি রো তে তালা দেওয়ার সর্বোচ্চ সময়, মিলিসেকেন্ডে।" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "একটি রো লক কতবার অপেক্ষা করতে হয়েছে তার সংখ্যা।" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB টেবিল থেকে মুছা রো'র সংখ্যা।" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB টেবিলে প্রবেশকৃত রো'র সংখ্যা।" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB টেবিল থেকে পড়া রো'র সংখ্যা।" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB টেবিলে আপডেটকৃত রো'র সংখ্যা।" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13952,7 +13921,7 @@ msgstr "" "কী ব্লকের সংখ্যা যা কী ক্যাশ পরিবর্তন করেছে কিন্ত এখনো ডিস্কে রাখা হয়নি। সাধারনত " "একে Not_flushed_key_blocks বলা হয়।" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -13960,7 +13929,7 @@ msgstr "" "কী ক্যাশে অব্যবহৃত ব্লকের সংখ্যা। কি পরিমান কী ক্যাশ ব্যবহৃত হচ্চে তা আপনি এর মাধ্যমে " "জানতে পারবেন।" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13969,15 +13938,15 @@ msgstr "" "কী ক্যাশে ব্যবহৃত ব্লকের সংখ্যা। এটি high-water mark যার দ্বারা একবারে ব্যবহৃত " "সর্বোচ্চ সংখ্যার পরিমান দেখায়।" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "কী ক্যাশ ব্যবহারের শতকরা হার (হিসাব করা)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "ক্যাশ থেকে কী ব্লক পড়ার চেষ্টার সংখ্যা।" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13987,26 +13956,26 @@ msgstr "" "এর মানটি সম্বভত অনেক ছোট। ক্যাশের মিসের হারটি পাওয়া যাবে Key_reads/" "Key_read_requests মাধ্যমে।" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "কী ক্যাশ পড়ার চেষ্টা এবং আসলে পড়ার হার ভুল হিসাব করিয়াছে (হিসাবকৃত মান)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "ক্যাশে কী ব্লক লেখার চেষ্টার সংখ্যা।" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "ডিস্কে কী ব্লক লেখার সংখ্যা।" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "লেখার চেষ্টার তুলনায় সত্যকারের লেখার হার (হিসাবকৃত মান)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -14016,36 +13985,36 @@ msgstr "" "বিভিন্ন ধরনের অনুসন্ধান পরিকল্পনার খরচ তুলনা উপকারি। এর মান ০ থাকা মানে কোন " "অনুসন্ধান এখনো অনুবাদ করা হয়নি।" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "সার্ভার আরম্ভ করার পর থেকে একই সময়ে স্থাপিত সংযোগের সংখ্যা।" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "অপেক্ষারত রো'র সংখ্যা যা INSERT DELAYED সারিতে আছে।" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" "খোলা টেবিলের সংখ্যা। যদি সংখ্যাটি বড় হয়, তবে আপনার টেবিল ক্যাশের মান খুবই ছোট।" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "খোলা ফাইলের সংখ্যা।" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "খোলা স্ট্রীম এর সংখ্যা (প্রধানত লগিং এর জন্য)।" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "খোলা টেবিলের সংখ্যা।" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -14054,19 +14023,19 @@ msgstr "" "অনুসন্ধান ক্যাশে উন্মুক্ত মেমরীর সংখ্যা। বড় সংখ্যা ফ্র্যাগমেন্টেশনের জন্য ঈঙ্গিত দেয়, যা " "FLUSH QUERY CACHE এর মাধ্যমে সমাধান করা যেতে পারে।" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "অনুসন্ধান ক্যাশের উন্মুক্ত মেমরীর পরিমান।" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "ক্যাশ কাজের সংখ্যা।" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "ক্যাশে সঞ্চিত অনুসন্ধানের সংখ্যা।" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14077,7 +14046,7 @@ msgstr "" "আপনার ক্যাশের আকার ঠিক করতে সাহায্য করবে। কোন অনুসন্ধানটি মুছতে হবে তা নির্ধারন " "করার জন্য অনুসন্ধান ক্যাশ least recently used (LRU) কৌশল অনুসরন করে।" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -14085,19 +14054,19 @@ msgstr "" "ক্যাশ করা হয়নি এমন অনুসন্ধানের সংখ্যা (ক্যাশ যোগ্য নয় বা query_cache_type setting " "এর জন্য)।" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "ক্যাশে রাখা হয়েছে এমন অনুসন্ধানের সংখ্যা।" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "অনুসন্ধান ক্যাশে থাকা ব্লকের মোট সংখ্যা।" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -14105,11 +14074,11 @@ msgstr "" "ইনডেক্স ব্যবহার করছে না এমন সংযোগের সংখ্যা। এই মানটি যদি ০ হয় তবে আপনার টেবিলের " "ইনডেক্সগুলো সর্তকভাবে পরীক্ষা করুন।" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "সংযোগের সংখ্যা যে গুলো reference table এ range search ব্যবহার করছে।" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -14117,7 +14086,7 @@ msgstr "" "কী বিহীন সংযোগের সংখ্যা যেগুলো প্রতিটি রো'র পর কী চায়। (এই মানটি যদি ০ না হয় " "তবে আপনার টেবিলের ইনডেক্সগুলো সর্তকভাবে পরীক্ষা করুন।)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -14125,60 +14094,60 @@ msgstr "" "সংযোগের সংখ্যা যা প্রথম টেবলে ranges ব্যবহার করেছে। (টেবল যদি অনেক বড়ও হয় তবুও " "তা বিপদজনক নয়।)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "সংযোগের সংখ্যা যেগুলো প্রথম টেবলে পুর্ণ স্ক্যান করে।" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "সহায়ক এসকিউএল থ্রেডের দ্বারা বর্তমানে খোলা সাময়িক টেবিলের সংখ্যা।" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "সহায়ক এসকিউএল থ্রেড (আরম্ভ থেকে) কতবার লেনদেন চেষ্টা করেছে তার মোট সংখ্যা।" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "ইহা ON হয় যদি এই সহায়ক সার্ভারটি মাষ্টারের সাথে সংযুক্ত থাকে।" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "থ্রেডের সংখ্যা যেগুলো তৈরী হতে slow_launch_time সেকেন্ড থেকে বেশী সময় নিয়েছে।" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "অনুন্ধানের সংখ্যা যেগুলো long_query_time সেকেন্ডের থেকে বেশী সময় নিয়েছে।" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "গুছানোর সংখ্যা যেগুলো সীমার মধে হয়েছে।" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "গুছানো রো'র সংখ্যা।" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "সর্টের সংখ্যা যেগুলো করতে টেবিল স্ক্যান করা হয়েছে।" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "কতবার টেবিলকে সংগে সংগে তালা দেয়াগেছে তার সংখ্যা।" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14189,7 +14158,7 @@ msgstr "" "বেশী হয় তবে সমস্যা আছে, প্রথমে আপনাকে অনুসন্ধান অপটিমাইজ করতে হবে এবং তারপড় টেবল " "খন্ড করতে হবে বা প্রতিলিপি ব্যবহার করতে হবে।" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -14198,11 +14167,11 @@ msgstr "" "খ্রেড ক্যাশে থ্রেডের সংখ্যা। এই সংখ্যাটি Threads_created/Connections এভাবে গণনা " "করা যাবে। এই সংখ্যাটি ছোট হলে আপনাকে thread_cache_size বাড়াতে হবে।" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "বর্তমানে ব্যবহৃত সংযোগের সংখ্যা।" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14212,11 +14181,11 @@ msgstr "" "সংযোগ ব্যবস্থাপনার জন্য তৈরীকৃত থ্রেডের সংখ্যা Threads_created যদি বেশী হয় তবে " "thread_cache_size বাড়াতে হবে।" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "থ্রেড ক্যাম হিটের হার" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "থ্রেডের সংখ্যা যা ঘুমন্ত নয়।" @@ -14225,57 +14194,57 @@ msgstr "থ্রেডের সংখ্যা যা ঘুমন্ত ন msgid "Users of '%s' user group" msgstr "ব্যবহারকারী দল '%s' এর ব্যবহারকারী" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "এই ব্যবহারকারী দলের কোন ব্যাবহারকারী পাওয়া যায়নি।" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "ব্যবহারকারীর দল" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "সার্ভার লেভেল ট্যাব" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "ডাটাবেইজ লেবেল ট্যাব" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "টেবলের লেভেল ট্যাব" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "ব্যাবহারকারীদের দেখাও" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "ব্যবহারকারীর দল যোগ কর" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "ব্যবহারকারীর দল সম্পাদনা কর: '%s'" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "ব্যবহারকারীর দলের মেনু নির্ধারন" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "দলের নাম:" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "সার্ভার লেভেল ট্যাব" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "ডাটাবেইজ লেভেল ট্যাব" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "টেবলের লেবেল ট্যাব" @@ -14337,21 +14306,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14422,115 +14387,115 @@ msgstr "ইভেন্ট %1$s তৈরী হয়েছে।" msgid "Variable name was expected." msgstr "টেবলের নামের নকশা" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "টেবিলের শুরুতে" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 #, fuzzy #| msgid "Unexpected characters on line %s." msgid "Unexpected token." msgstr "%s লাইনে অপ্রত্যাশিত চিহ্ন।" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 #, fuzzy #| msgid "The number of tables that are open." msgid "The name of the entity was expected." msgstr "খোলা টেবিলের সংখ্যা।" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "রো টি মুছা হয়েছে।" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "বিশদ রূপরেখা" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "বিন্যাস" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "অবস্থা" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "অবস্থানুযায়ী সারসংক্ষেপ" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "মোট সময়" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "সময় %" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "ডাকা" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "সময় ø" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "এই এসকিউএল অনুসন্ধানটি বুকর্মাক কর" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "লেবেল:" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "পূর্ববর্তী সব ব্যবহারকারী এই বুকমার্কটি ব্যবহার করেছে।" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 #, fuzzy #| msgid "Bookmark not created" msgid "Bookmark not created!" msgstr "বুকমার্ক %s তৈরী করা হয়েছে" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "বুকমার্ক \"%s\" দেখার জন্য স্বাভাবিক অনুসন্ধান হিসাবে ব্যবহৃত হচ্ছে।" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "পিএইছপি কোড দেখাচ্ছে" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, fuzzy, php-format #| msgid "" #| "Current selection does not contain a unique column. Grid edit, checkbox, " @@ -14542,7 +14507,7 @@ msgstr "" "এই নির্বাচনে কোন অনন্য স্তম্ভ নাই। সম্পাদনা, চেকবক্স, প্রতিলিপি এবং মুছার ব্যবস্থা কাজ " "করবে না।" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, fuzzy, php-format #| msgid "" #| "Current selection does not contain a unique column. Grid edit, checkbox, " @@ -14554,7 +14519,7 @@ msgstr "" "এই নির্বাচনে কোন অনন্য স্তম্ভ নাই। সম্পাদনা, চেকবক্স, প্রতিলিপি এবং মুছার ব্যবস্থা কাজ " "করবে না।" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "টেবল `%s` এর ইনডেক্সে সমস্যা আছে" @@ -14585,27 +14550,27 @@ msgstr "" msgid "Bind parameters" msgstr "প্যারামিটারগুলো খারপ!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "এই SQL query টি বুকমার্ক করুন:" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "একই নামের বুকমার্কটি প্রতিস্থাপন কর" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "সীমিত করন" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "এই অনুসন্ধানটি আবার দেখাও" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "শুধু দেখার জন্য" @@ -14650,179 +14615,179 @@ msgstr "%s এর জন্য ট্রেকিং বন্ধ কর" msgid "Deactivate now" msgstr "এখন বন্ধ কর" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "তৈরী হয়েছে" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "আধুনিকায়ন হয়েছে" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "সংস্করন তৈরী কর" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "ট্রেকিং প্রতিবেদন" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "গঠনের প্রতিচ্ছবি" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "কার্যকর" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "অকার্যকর" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "ট্রেকিং বিবরণী" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "প্রতিবেদনের রো থেকে ট্রেকিং তথ্য মুছে ফেল" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "কোন তথ্য নাই" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" "%2$s তারিখ থেকে %3$s তারিখ পযর্ন্ত ব্যবহারকারী %4$s %5$s অনুযায়ী %1$s তারিখসহ " "দেখাও" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "স্তুপকৃত এসকিউএল (ফাইল ডাউনলোড করুন)" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "স্তুপকৃত এসকিউএল" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "এই অপশনটি আপনার টেবল এবং এর তথ্য প্রতিস্থাপন (রিপ্লেস) করবে।" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "এসকিউএল সম্পাদন" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "%s মত রফতানী কর" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "তথ্য মেনিপুলেশন বিবরণী" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "তথ্য সংজ্ঞার বিবরণী" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "তারিখ" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "ব্যাবহারকারীর নাম" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "সংস্করন %s এর স্ন্যাপশট (SQL code)" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "কিছু না" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "ট্রেকিং তথ্যের বিবরণী সফলভাবে মুছা হয়েছে" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "ট্রেকিং তথ্যের মেনিপুলেশন সফলভাবে মুছা হয়েছে" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "আপনি একটি সাময়িক ডাটাবেইজ তৈরী ও ব্যবহার করে স্তুপটি নির্বাহ করতে পারেন।" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "প্রয়োজন না হলে এই দু'টো লাইনে কমেন্ট চিহ্ন দিয়ে রাখুন।" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL রফতানী করা হয়েছে। স্তুপটি প্রতিলিপ বা কার্যকর কর।" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "টেবল %s এর ট্রেকিং প্রতিবেদন" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "%1$s ট্রেকিং কার্যকর করা হয়েছে সংস্করন %2$s এ।" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "%1$s ট্রেকিং অকার্যকর করা হয়েছে %2$s সংস্করনে।" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format #| msgid "Create version %1$s of %2$s" msgid "Version %1$s of %2$s was deleted." msgstr "%1$s এর %2$s সংস্করন তৈরী কর" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "%1$s সংস্করন তৈরী করা হয়েছে, %2$s ট্রেকিং কার্য চলছে।" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "ট্রেকিং হয়নি যে টেবিলসমুহ" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "টেবিল ট্রেক" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "ট্রেক কৃত টেবিলসমূহ" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "শেষ সংস্করন" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "ট্রেকিং তথ্য মুচ্ছি" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "সংস্করন সমূহ" @@ -14830,11 +14795,11 @@ msgstr "সংস্করন সমূহ" msgid "Manage your settings" msgstr "আপনার সেটিংস রক্ষণাবেক্ষণ করুন" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "কনফিগারেশন সংরক্ষন করা হয়েছে।" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14941,7 +14906,7 @@ msgstr "কোন ডাটাবেইজ নাই" msgid "View dump (schema) of databases" msgstr "ডাটাবেইজের স্তুপ(আকৃতি) দেখাও" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14967,7 +14932,7 @@ msgid "" msgstr "" "phpMyAdmin %s প্রক্রিয়াটি ধ্বংস করতে পারে নাই। সম্ভবত ইহা পূর্বেই বন্ধ করা হয়েছে।" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -15868,47 +15833,53 @@ msgstr "" msgid "Stacked" msgstr "স্তুপীকৃত" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "চিত্রের নাম" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "X- অক্ষ:" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "ধারা:" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "X- অক্ষের মোড়ক:" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "X এর মান" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "Y-অক্ষের মোড়ক:" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Y এর মানসমূহ" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside column:" msgid "Series column:" msgstr "স্তম্ভের ভিতরে:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Values for column %s" msgid "Value Column:" msgstr "%s স্তম্ভের জন্য তথ্য" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -15969,54 +15940,55 @@ msgstr "মন্তব্য:" msgid "Drag to reorder" msgstr "পুনবিন্যাসের জন্য টানুন" -#: templates/table/relation/common_form.phtml:7 -msgid "Internal relations" -msgstr "অভ্যন্তরীন সর্ম্পক" - -#: templates/table/relation/common_form.phtml:11 -msgid "Internal relation" -msgstr "আভ্যন্তরীন রিলেশন" - -#: templates/table/relation/common_form.phtml:14 -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "যখন ফরেন কী সর্ম্পক থাকে তখন অভ্যন্তরীন সর্ম্পকটি প্রয়োজনীয় নয়।" - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 #, fuzzy #| msgid "Foreign key constraint" msgid "Foreign key constraints" msgstr "ফরেন কীর নিয়ম" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 #, fuzzy #| msgid "Action" msgid "Actions" msgstr "কর্ম" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 #, fuzzy #| msgid "Constraints for table" msgid "Constraint properties" msgstr "টেবলের সীমবদ্ধতা" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 msgid "Foreign key constraint" msgstr "ফরেন কীর নিয়ম" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "নিয়মাবলী যোগ কর" -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +msgid "Internal relations" +msgstr "অভ্যন্তরীন সর্ম্পক" + +#: templates/table/relation/common_form.phtml:80 +msgid "Internal relation" +msgstr "আভ্যন্তরীন রিলেশন" + +#: templates/table/relation/common_form.phtml:83 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "যখন ফরেন কী সর্ম্পক থাকে তখন অভ্যন্তরীন সর্ম্পকটি প্রয়োজনীয় নয়।" + +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "প্রদর্শনের জন্য স্তম্ভ পছন্দ কর:" @@ -16156,7 +16128,7 @@ msgid "at beginning of table" msgstr "টেবিলের শুরুতে" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16205,7 +16177,7 @@ msgstr "খন্ড করা হয়েছে" msgid "Edit partitioning" msgstr "খন্ড মুছ" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "সম্পাদনা ভিউ" @@ -17553,6 +17525,37 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert এর জন্য ০ নির্ধারন করা হয়েছে" +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "টেবল" + +#, fuzzy +#~| msgid "Views" +#~ msgid "views" +#~ msgstr "ভিউসমূহ" + +#, fuzzy +#~| msgid "Procedures" +#~ msgid "procedures" +#~ msgstr "প্রোসিডিউরস" + +#, fuzzy +#~| msgid "event" +#~ msgid "events" +#~ msgstr "ইভেন্ট" + +#, fuzzy +#~| msgid "Functions" +#~ msgid "functions" +#~ msgstr "ফাংশনসমূহ" + +#~ msgid "Filter databases by name or regex" +#~ msgstr "নাম বা regex অনুযায়ী ডাটাবেইজ ফিল্টার" + +#~ msgid "Filter by name or regex" +#~ msgstr "নাম বা regex অনুযায়ী ফিল্টার" + #, fuzzy #~| msgid "Tracking report" #~ msgid "Taking you to %s." diff --git a/po/br.po b/po/br.po index 705c2f6b9f..ac8ced3ccf 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2014-03-28 11:07+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Breton 1;\n" "X-Generator: Weblate 1.9-dev\n" -#: changelog.php:37 license.php:30 +#: changelog.php:37 license.php:33 #, php-format msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " @@ -44,7 +44,7 @@ msgstr "Klikañ evit diuzañ" msgid "Showing rows %1$s - %2$s." msgstr "Arventennoù pouezus all" -#: db_create.php:61 +#: db_create.php:62 #, php-format msgid "Database %1$s has been created." msgstr "Krouet eo bet an diaz roadennoù %1$s." @@ -53,13 +53,13 @@ msgstr "Krouet eo bet an diaz roadennoù %1$s." msgid "Database comment" msgstr "Evezhiadenn diwar-benn an diaz roadennoù :" -#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:601 +#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:599 #: templates/columns_definitions/column_definitions_form.phtml:84 msgid "Table comments:" msgstr "Evezhiadennoù diwar-benn an daolenn :" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1568 +#: libraries/insert_edit.lib.php:1575 #: libraries/navigation/nodes/NodeColumn.php:34 #: libraries/plugins/export/ExportHtmlword.php:288 #: libraries/plugins/export/ExportHtmlword.php:384 @@ -69,13 +69,14 @@ msgstr "Evezhiadennoù diwar-benn an daolenn :" #: libraries/plugins/export/ExportTexytext.php:282 #: libraries/plugins/export/ExportTexytext.php:373 #: libraries/plugins/export/PMA_ExportPdf.php:472 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:882 libraries/tracking.lib.php:978 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 +#: libraries/tracking.lib.php:892 libraries/tracking.lib.php:990 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:10 -#: templates/table/relation/common_form.phtml:43 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:27 +#: templates/table/relation/common_form.phtml:79 #: templates/table/relation/foreign_key_row.phtml:176 #: templates/table/relation/foreign_key_row.phtml:188 #: templates/table/relation/internal_relational_row.phtml:73 @@ -95,14 +96,14 @@ msgstr "Bann" #: libraries/plugins/export/ExportTexytext.php:283 #: libraries/plugins/export/ExportTexytext.php:374 #: libraries/plugins/export/PMA_ExportPdf.php:474 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 #: libraries/rte/rte_list.lib.php:78 libraries/rte/rte_list.lib.php:106 #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2606 libraries/tracking.lib.php:883 -#: libraries/tracking.lib.php:975 +#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -112,7 +113,7 @@ msgstr "Seurt" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:709 -#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1577 +#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1584 #: libraries/plugins/export/ExportHtmlword.php:294 #: libraries/plugins/export/ExportHtmlword.php:390 #: libraries/plugins/export/ExportLatex.php:517 @@ -121,9 +122,9 @@ msgstr "Seurt" #: libraries/plugins/export/ExportTexytext.php:284 #: libraries/plugins/export/ExportTexytext.php:375 #: libraries/plugins/export/PMA_ExportPdf.php:476 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 -#: libraries/tracking.lib.php:885 libraries/tracking.lib.php:981 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/tracking.lib.php:895 libraries/tracking.lib.php:993 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 @@ -140,9 +141,9 @@ msgstr "Null" #: libraries/plugins/export/ExportTexytext.php:285 #: libraries/plugins/export/ExportTexytext.php:376 #: libraries/plugins/export/PMA_ExportPdf.php:478 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 -#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:886 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:896 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 @@ -154,8 +155,8 @@ msgstr "Dre ziouer" #: libraries/plugins/export/ExportOdt.php:488 #: libraries/plugins/export/ExportTexytext.php:378 #: libraries/plugins/export/PMA_ExportPdf.php:487 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:640 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:663 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 msgid "Links to" msgstr "Liammet ouzh" @@ -166,37 +167,38 @@ msgstr "Liammet ouzh" #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:381 #: libraries/plugins/export/PMA_ExportPdf.php:494 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:651 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:664 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:649 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 #: templates/columns_definitions/table_fields_definitions.phtml:65 msgid "Comments" msgstr "Evezhiadennoù" -#: db_datadict.php:155 libraries/controllers/TableStructureController.php:1189 -#: libraries/controllers/TableStructureController.php:1194 -#: libraries/tracking.lib.php:925 +#: db_datadict.php:155 +#: libraries/controllers/table/TableStructureController.php:1197 +#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:79 +#: templates/table/structure/display_structure.phtml:80 msgid "Primary" msgstr "" -#: db_datadict.php:165 js/messages.php:370 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:371 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 -#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:403 -#: libraries/mult_submits.lib.php:417 +#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:408 +#: libraries/mult_submits.lib.php:422 #: libraries/plugins/export/ExportHtmlword.php:654 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:710 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2971 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3620 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1013 libraries/tracking.lib.php:1018 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2973 +#: libraries/server_privileges.lib.php:2993 +#: libraries/server_privileges.lib.php:3631 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -205,32 +207,32 @@ msgstr "" msgid "No" msgstr "Ket" -#: db_datadict.php:165 js/messages.php:515 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:516 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 #: libraries/config/FormDisplay.tpl.php:280 -#: libraries/controllers/TableStructureController.php:770 -#: libraries/controllers/TableStructureController.php:1440 -#: libraries/controllers/TableStructureController.php:1449 -#: libraries/controllers/TableStructureController.php:1454 -#: libraries/controllers/TableStructureController.php:1459 -#: libraries/controllers/TableStructureController.php:1464 -#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:199 -#: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 -#: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 +#: libraries/controllers/table/TableStructureController.php:771 +#: libraries/controllers/table/TableStructureController.php:1448 +#: libraries/controllers/table/TableStructureController.php:1457 +#: libraries/controllers/table/TableStructureController.php:1462 +#: libraries/controllers/table/TableStructureController.php:1467 +#: libraries/controllers/table/TableStructureController.php:1472 +#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:200 +#: libraries/mult_submits.lib.php:344 libraries/mult_submits.lib.php:377 +#: libraries/mult_submits.lib.php:406 libraries/mult_submits.lib.php:420 #: libraries/plugins/export/ExportHtmlword.php:655 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:788 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:711 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2968 -#: libraries/server_privileges.lib.php:2989 -#: libraries/server_privileges.lib.php:3617 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1011 libraries/tracking.lib.php:1016 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2970 +#: libraries/server_privileges.lib.php:2991 +#: libraries/server_privileges.lib.php:3628 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -243,8 +245,8 @@ msgstr "Ya" msgid "View dump (schema) of database" msgstr "Gwelet un ezporzhiadenn (chema) eus an diaz roadennoù" -#: db_export.php:51 db_tracking.php:102 export.php:382 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:176 +#: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 +#: libraries/controllers/DatabaseStructureController.php:157 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "N'eus bet kavet taolenn ebet en diaz roadennoù." @@ -261,7 +263,7 @@ msgstr "Taolennoù" #: db_export.php:66 libraries/Menu.php:320 libraries/Menu.php:427 #: libraries/Util.php:3407 libraries/Util.php:3417 libraries/Util.php:3423 -#: libraries/Util.php:3702 libraries/Util.php:4339 libraries/Util.php:4356 +#: libraries/Util.php:3703 libraries/Util.php:4340 libraries/Util.php:4357 #: libraries/central_columns.lib.php:729 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:320 @@ -269,10 +271,10 @@ msgstr "Taolennoù" #: libraries/config/user_preferences.forms.php:218 #: libraries/config/user_preferences.forms.php:259 #: libraries/config/user_preferences.forms.php:285 -#: libraries/import.lib.php:1299 libraries/navigation/nodes/NodeColumn.php:44 +#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:44 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 -#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:877 +#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:887 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -324,13 +326,13 @@ msgstr "" "Diweredekaet eo bet ar stokañ kefluniadurioù evit phpMyAdmin. Evit gouzout " "perak klikañ %samañ%s." -#: db_qbe.php:135 +#: db_qbe.php:136 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to choose at least one column to display!" msgstr "Ret eo deoc'h dibab da nebeutañ ur bann da vezañ diskwelet" -#: db_qbe.php:152 +#: db_qbe.php:154 #, php-format msgid "Switch to %svisual builder%s" msgstr "Cheñch evit ar %ssavour gwelet%s" @@ -360,7 +362,7 @@ msgstr "" msgid "No tables selected." msgstr "N'eus bet diuzet linenn ebet" -#: db_tracking.php:146 +#: db_tracking.php:149 msgid "Database Log" msgstr "Marilh an diaz roadennoù" @@ -398,7 +400,7 @@ msgstr "C'hoant hoc'h eus da freskaat ar bajenn marteze a-walc'h." msgid "Bad type!" msgstr "Seurt faziek !" -#: export.php:276 +#: export.php:278 msgid "Bad parameters!" msgstr "Arventennoù fall !" @@ -406,102 +408,102 @@ msgstr "Arventennoù fall !" msgid "Invalid export type" msgstr "Seurt ezporzhiadenn direizh" -#: gis_data_editor.php:119 +#: gis_data_editor.php:117 #, php-format msgid "Value for the column \"%s\"" msgstr "Talvoud evit ar bann \"%s\"" -#: gis_data_editor.php:147 +#: gis_data_editor.php:145 #: templates/table/gis_visualization/gis_visualization.phtml:37 msgid "Use OpenStreetMaps as Base Layer" msgstr "Ober gant OpenStreetMaps evit ar gwiskad diazez" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:169 +#: gis_data_editor.php:167 msgid "SRID:" msgstr "SRID :" -#: gis_data_editor.php:192 +#: gis_data_editor.php:190 #, php-format msgid "Geometry %d:" msgstr "Mentoniezh %d :" -#: gis_data_editor.php:214 +#: gis_data_editor.php:212 msgid "Point:" msgstr "Poent :" -#: gis_data_editor.php:215 gis_data_editor.php:242 gis_data_editor.php:298 -#: gis_data_editor.php:371 js/messages.php:504 +#: gis_data_editor.php:213 gis_data_editor.php:240 gis_data_editor.php:296 +#: gis_data_editor.php:369 js/messages.php:505 msgid "X" msgstr "X" -#: gis_data_editor.php:218 gis_data_editor.php:246 gis_data_editor.php:302 -#: gis_data_editor.php:377 js/messages.php:505 +#: gis_data_editor.php:216 gis_data_editor.php:244 gis_data_editor.php:300 +#: gis_data_editor.php:375 js/messages.php:506 msgid "Y" msgstr "Y" -#: gis_data_editor.php:240 gis_data_editor.php:296 gis_data_editor.php:369 -#: js/messages.php:507 +#: gis_data_editor.php:238 gis_data_editor.php:294 gis_data_editor.php:367 +#: js/messages.php:508 #, php-format msgid "Point %d" msgstr "Poent %d" -#: gis_data_editor.php:253 gis_data_editor.php:309 gis_data_editor.php:387 -#: js/messages.php:513 +#: gis_data_editor.php:251 gis_data_editor.php:307 gis_data_editor.php:385 +#: js/messages.php:514 msgid "Add a point" msgstr "Ouzhpennañ ur poent" -#: gis_data_editor.php:270 +#: gis_data_editor.php:268 #, php-format msgid "Linestring %d:" msgstr "Aradennad linennoù %d :" -#: gis_data_editor.php:273 gis_data_editor.php:350 +#: gis_data_editor.php:271 gis_data_editor.php:348 #, fuzzy #| msgid "Outer Ring:" msgid "Outer ring:" msgstr "Kelc'h diavaez :" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:273 gis_data_editor.php:350 #, fuzzy, php-format #| msgid "Inner Ring" msgid "Inner ring %d:" msgstr "Kelc'h diabarzh" -#: gis_data_editor.php:312 +#: gis_data_editor.php:310 msgid "Add a linestring" msgstr "Ouzhpennañ un aradennad linennoù" -#: gis_data_editor.php:313 gis_data_editor.php:392 js/messages.php:514 +#: gis_data_editor.php:311 gis_data_editor.php:390 js/messages.php:515 msgid "Add an inner ring" msgstr "Ouzhpennañ ur c'helc'h diabarzh" -#: gis_data_editor.php:334 +#: gis_data_editor.php:332 #, fuzzy, php-format #| msgid "Polygon" msgid "Polygon %d:" msgstr "Lieskorneg" -#: gis_data_editor.php:398 +#: gis_data_editor.php:396 msgid "Add a polygon" msgstr "Ouzhpennañ ul lieskorneg" -#: gis_data_editor.php:404 +#: gis_data_editor.php:402 msgid "Add geometry" msgstr "Ouzhpennañ mentoniezh" -#: gis_data_editor.php:410 js/messages.php:345 libraries/DbSearch.php:462 -#: libraries/DisplayResults.php:1783 libraries/browse_foreigners.lib.php:142 +#: gis_data_editor.php:408 js/messages.php:346 libraries/DbSearch.php:462 +#: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:151 #: libraries/display_export.lib.php:404 libraries/display_export.lib.php:410 -#: libraries/display_import.lib.php:403 libraries/index.lib.php:42 -#: libraries/insert_edit.lib.php:1547 libraries/insert_edit.lib.php:1584 +#: libraries/display_import.lib.php:403 libraries/index.lib.php:45 +#: libraries/insert_edit.lib.php:1554 libraries/insert_edit.lib.php:1591 #: libraries/normalization.lib.php:168 libraries/normalization.lib.php:825 #: libraries/operations.lib.php:47 libraries/operations.lib.php:114 #: libraries/operations.lib.php:266 libraries/operations.lib.php:309 #: libraries/operations.lib.php:806 libraries/operations.lib.php:877 -#: libraries/operations.lib.php:926 libraries/operations.lib.php:1336 -#: libraries/operations.lib.php:1653 +#: libraries/operations.lib.php:926 libraries/operations.lib.php:1339 +#: libraries/operations.lib.php:1656 #: libraries/plugins/auth/AuthenticationCookie.php:239 #: libraries/replication_gui.lib.php:124 libraries/replication_gui.lib.php:163 #: libraries/replication_gui.lib.php:328 libraries/replication_gui.lib.php:465 @@ -510,12 +512,12 @@ msgstr "Ouzhpennañ mentoniezh" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2343 -#: libraries/server_privileges.lib.php:3114 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_user_groups.lib.php:285 -#: libraries/sql_query_form.lib.php:369 libraries/sql_query_form.lib.php:429 -#: libraries/tracking.lib.php:536 libraries/tracking.lib.php:656 +#: libraries/server_privileges.lib.php:2345 +#: libraries/server_privileges.lib.php:3116 +#: libraries/server_privileges.lib.php:3735 +#: libraries/server_user_groups.lib.php:290 +#: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 +#: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 #: prefs_manage.php:280 prefs_manage.php:358 #: templates/columns_definitions/column_definitions_form.phtml:64 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 @@ -528,11 +530,11 @@ msgstr "Ouzhpennañ mentoniezh" msgid "Go" msgstr "Mont" -#: gis_data_editor.php:413 +#: gis_data_editor.php:411 msgid "Output" msgstr "Disoc'h" -#: gis_data_editor.php:416 +#: gis_data_editor.php:414 #, fuzzy #| msgid "" #| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " @@ -550,7 +552,7 @@ msgstr "" msgid "Succeeded" msgstr "Moned nac'het !" -#: import.php:59 js/messages.php:588 +#: import.php:59 js/messages.php:589 msgid "Failed" msgstr "" @@ -618,7 +620,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "Dibosupl enporzhiañ an adveziantoù. Gwiriit ho staliadur !" -#: import.php:669 libraries/sql.lib.php:744 libraries/sql.lib.php:1468 +#: import.php:669 libraries/sql.lib.php:754 libraries/sql.lib.php:1485 #, fuzzy, php-format #| msgid "Bookmark %s created" msgid "Bookmark %s has been created." @@ -654,7 +656,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "" -#: import_status.php:111 js/messages.php:444 libraries/Util.php:797 +#: import_status.php:111 js/messages.php:445 libraries/Util.php:797 #: libraries/export.lib.php:523 #: libraries/plugins/schema/ExportRelationSchema.php:301 user_password.php:268 msgid "Back" @@ -678,7 +680,7 @@ msgstr "" msgid "General settings" msgstr "Kemmañ an arventennoù" -#: index.php:191 js/messages.php:617 +#: index.php:191 js/messages.php:618 #: libraries/display_change_password.lib.php:54 #: libraries/display_change_password.lib.php:57 user_password.php:262 msgid "Change password" @@ -798,7 +800,11 @@ msgstr "" msgid "List of changes" msgstr "" -#: index.php:453 +#: index.php:438 libraries/server_plugins.lib.php:83 +msgid "License" +msgstr "" + +#: index.php:460 msgid "" "You are connected as 'root' with no password, which corresponds to the " "default MySQL privileged account. Your MySQL server is running with this " @@ -806,21 +812,21 @@ msgid "" "by setting a password for user 'root'." msgstr "" -#: index.php:470 +#: index.php:477 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: index.php:485 +#: index.php:492 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: index.php:502 +#: index.php:509 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than " @@ -828,17 +834,17 @@ msgid "" "expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:521 +#: index.php:528 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:537 +#: index.php:544 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: index.php:550 +#: index.php:557 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. It is strongly recommended to remove it " @@ -846,7 +852,7 @@ msgid "" "may be compromised by unauthorized people downloading your configuration." msgstr "" -#: index.php:566 +#: index.php:573 #, fuzzy, php-format #| msgid "" #| "The phpMyAdmin configuration storage has been deactivated. To find out " @@ -858,19 +864,19 @@ msgstr "" "Diweredekaet eo bet ar stokañ kefluniadurioù evit phpMyAdmin. Evit gouzout " "perak klikañ %samañ%s." -#: index.php:573 +#: index.php:580 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" -#: index.php:619 +#: index.php:626 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: index.php:647 +#: index.php:654 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -891,7 +897,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "Ha sur oc'h e fell deoc'h " -#: js/messages.php:45 libraries/mult_submits.lib.php:397 +#: js/messages.php:45 libraries/mult_submits.lib.php:402 msgid "You are about to DESTROY a complete database!" msgstr "Emaoc'h war-nes DISTRUJ un diaz roadennoù klok !" @@ -1049,7 +1055,7 @@ msgid "Save & close" msgstr "Enrollañ evel restr" #: js/messages.php:109 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1551 prefs_manage.php:364 +#: libraries/insert_edit.lib.php:1558 prefs_manage.php:364 #: prefs_manage.php:375 msgid "Reset" msgstr "Adderaouekaat" @@ -1124,10 +1130,10 @@ msgstr "Ouzhpennañ/Diverkañ bannoù" msgid "You have to add at least one column." msgstr "" -#: js/messages.php:129 libraries/insert_edit.lib.php:1549 +#: js/messages.php:129 libraries/insert_edit.lib.php:1556 #: templates/columns_definitions/column_definitions_form.phtml:159 #: templates/table/index_form.phtml:237 -#: templates/table/relation/common_form.phtml:108 +#: templates/table/relation/common_form.phtml:127 msgid "Preview SQL" msgstr "" @@ -1178,8 +1184,8 @@ msgstr "Ne glot ket ar gerioù-tremen !" msgid "Removing Selected Users" msgstr "O lemel kuit an implijerien diuzet" -#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:461 -#: libraries/tracking.lib.php:831 +#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:471 +#: libraries/tracking.lib.php:841 msgid "Close" msgstr "Serriñ" @@ -1206,7 +1212,7 @@ msgstr "Diverket eo bet ar sined." #. l10n: Other, small valued, queries #: js/messages.php:155 libraries/ServerStatusData.php:130 -#: libraries/server_status_queries.lib.php:148 +#: libraries/server_status_queries.lib.php:150 msgid "Other" msgstr "Udb all" @@ -1383,7 +1389,7 @@ msgstr "Goulennoù" msgid "Traffic" msgstr "Tremenerezh" -#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4330 +#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4331 #: libraries/server_status_monitor.lib.php:258 msgid "Settings" msgstr "Arventennoù" @@ -1398,9 +1404,9 @@ msgstr "Ouzhpennañ ur grafik d'ar gael" msgid "Please add at least one variable to the series!" msgstr "Ouzhpennit da nebeutañ unan eus an argemennoù d'an heuliad" -#: js/messages.php:216 libraries/DisplayResults.php:1477 +#: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1517,7 +1523,7 @@ msgstr "Kemmañ an arventennoù" msgid "Current settings" msgstr "Arventennoù zo bremañ" -#: js/messages.php:253 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:253 msgid "Chart title" msgstr "" @@ -1608,21 +1614,21 @@ msgstr "O tilesa…" msgid "Explain output" msgstr "Displegañ SQL" -#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4326 +#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4327 #: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:396 #: libraries/rte/rte_list.lib.php:104 -#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:282 -#: libraries/tracking.lib.php:1623 +#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:284 +#: libraries/tracking.lib.php:1639 msgid "Status" msgstr "Statud" -#: js/messages.php:289 js/messages.php:870 +#: js/messages.php:289 js/messages.php:862 #: libraries/plugins/export/ExportHtmlword.php:484 #: libraries/plugins/export/ExportOdt.php:600 #: libraries/plugins/export/ExportTexytext.php:445 #: libraries/plugins/export/PMA_ExportPdf.php:314 #: libraries/rte/rte_list.lib.php:93 -#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:239 +#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:243 msgid "Time" msgstr "" @@ -1711,10 +1717,10 @@ msgid "" msgstr "" #: js/messages.php:322 libraries/Menu.php:355 libraries/Menu.php:457 -#: libraries/Menu.php:578 libraries/Util.php:4329 libraries/Util.php:4344 -#: libraries/Util.php:4361 libraries/config/messages.inc.php:260 +#: libraries/Menu.php:578 libraries/Util.php:4330 libraries/Util.php:4345 +#: libraries/Util.php:4362 libraries/config/messages.inc.php:260 #: libraries/display_import.lib.php:108 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:241 +#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:241 #: setup/frames/menu.inc.php:26 msgid "Import" msgstr "Enporzhiañ" @@ -1781,7 +1787,13 @@ msgstr "" msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 libraries/server_variables.lib.php:159 +#: js/messages.php:343 +#, fuzzy +#| msgid "Bad parameters!" +msgid "No parameters found!" +msgstr "Arventennoù fall !" + +#: js/messages.php:347 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 @@ -1792,71 +1804,71 @@ msgstr "" msgid "Cancel" msgstr "Nullañ" -#: js/messages.php:349 libraries/Header.php:457 +#: js/messages.php:350 libraries/Header.php:457 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "Kemmañ an arventennoù" -#: js/messages.php:350 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:351 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:353 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:354 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:124 msgid "Loading…" msgstr "O kargañ…" -#: js/messages.php:354 +#: js/messages.php:355 msgid "Request aborted!!" msgstr "" -#: js/messages.php:355 +#: js/messages.php:356 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "O plediñ gant ar reked" -#: js/messages.php:356 +#: js/messages.php:357 #, fuzzy #| msgid "Query \"%s\" failed" msgid "Request failed!!" msgstr "C'hwitet eo bet ar reked \"%s\"" -#: js/messages.php:357 +#: js/messages.php:358 #, fuzzy #| msgid "Error in processing request" msgid "Error in processing request" msgstr "Fazi en ur seveniñ ar reked" -#: js/messages.php:358 +#: js/messages.php:359 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:359 +#: js/messages.php:360 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:360 libraries/db_common.inc.php:73 +#: js/messages.php:361 libraries/db_common.inc.php:73 #: libraries/db_table_exists.lib.php:33 libraries/server_databases.lib.php:462 msgid "No databases selected." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "Diverkañ ar bann" -#: js/messages.php:362 +#: js/messages.php:363 #, fuzzy #| msgid "Adding Primary Key" msgid "Adding primary key" msgstr "Ouzhpennañ un alc'hwez kentidik" -#: js/messages.php:363 +#: js/messages.php:364 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1866,485 +1878,485 @@ msgstr "Ouzhpennañ un alc'hwez kentidik" msgid "OK" msgstr "Mat eo" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:367 +#: js/messages.php:368 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "Oc'h adenvel an diaz roadennoù" -#: js/messages.php:368 +#: js/messages.php:369 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "Oc'h eilañ an diaz roadennoù" -#: js/messages.php:369 +#: js/messages.php:370 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "O cheñch ar strobad arouezennoù" -#: js/messages.php:373 libraries/Util.php:3289 +#: js/messages.php:374 libraries/Util.php:3289 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Diweredekaat ar gwiriañ alc'hwezioù estren" -#: js/messages.php:376 +#: js/messages.php:377 #, fuzzy #| msgid "Failed to fetch headers" msgid "Failed to get real row count." msgstr "Dibosupl tapout an talbennoù" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Searching" msgstr "O klask" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide search results" msgstr "Kuzhat disoc'hoù an enklask" -#: js/messages.php:381 +#: js/messages.php:382 msgid "Show search results" msgstr "Diskouez disoc'hoù an enklask" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Browsing" msgstr "O furchal" -#: js/messages.php:383 +#: js/messages.php:384 msgid "Deleting" msgstr "O tiverkañ" -#: js/messages.php:387 +#: js/messages.php:388 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:388 libraries/DisplayResults.php:4832 -#: libraries/DisplayResults.php:5091 libraries/Menu.php:347 -#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3709 -#: libraries/Util.php:3710 libraries/Util.php:4328 libraries/Util.php:4343 -#: libraries/Util.php:4360 libraries/config/messages.inc.php:254 +#: js/messages.php:389 libraries/DisplayResults.php:4850 +#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 +#: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 +#: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2448 -#: libraries/server_privileges.lib.php:2527 -#: libraries/server_privileges.lib.php:2873 -#: libraries/server_privileges.lib.php:3532 -#: libraries/server_status_monitor.lib.php:321 prefs_manage.php:306 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2875 +#: libraries/server_privileges.lib.php:3543 +#: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 msgid "Export" msgstr "Ezporzhiañ" -#: js/messages.php:391 libraries/rte/rte_routines.lib.php:742 +#: js/messages.php:392 libraries/rte/rte_routines.lib.php:742 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:392 +#: js/messages.php:393 #, fuzzy, php-format #| msgid "Values for the column \"%s\"" msgid "Values for column %s" msgstr "Talvoudoù evit ar bann \"%s\"" -#: js/messages.php:393 +#: js/messages.php:394 #, fuzzy #| msgid "Values for the column \"%s\"" msgid "Values for a new column" msgstr "Talvoudoù evit ar bann \"%s\"" -#: js/messages.php:394 +#: js/messages.php:395 #, 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:395 +#: js/messages.php:396 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:399 +#: js/messages.php:400 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:403 +#: js/messages.php:404 msgid "Hide query box" msgstr "Kuzhat ar voest rekedoù SQL" -#: js/messages.php:404 +#: js/messages.php:405 msgid "Show query box" msgstr "Diskouez ar voest rekedoù SQL" -#: js/messages.php:405 libraries/Console.php:88 libraries/Console.php:217 -#: libraries/DisplayResults.php:3457 libraries/DisplayResults.php:4816 +#: js/messages.php:406 libraries/Console.php:88 libraries/Console.php:217 +#: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4834 #: libraries/Index.php:721 libraries/Util.php:727 libraries/Util.php:1238 -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:119 +#: libraries/server_user_groups.lib.php:121 #: libraries/server_variables.lib.php:242 #: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 msgid "Edit" msgstr "Kemmañ" -#: js/messages.php:406 libraries/Console.php:89 libraries/DbSearch.php:360 -#: libraries/DisplayResults.php:3526 libraries/DisplayResults.php:4800 +#: js/messages.php:407 libraries/Console.php:89 libraries/DbSearch.php:360 +#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4818 #: libraries/central_columns.lib.php:854 #: libraries/central_columns.lib.php:1200 libraries/display_export.lib.php:227 -#: libraries/server_user_groups.lib.php:129 -#: libraries/sql_query_form.lib.php:416 libraries/tracking.lib.php:480 +#: libraries/server_user_groups.lib.php:131 +#: libraries/sql_query_form.lib.php:417 libraries/tracking.lib.php:490 #: setup/frames/index.inc.php:187 setup/frames/index.inc.php:295 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Diverkañ" -#: js/messages.php:407 libraries/DisplayResults.php:915 -#: libraries/DisplayResults.php:923 +#: js/messages.php:408 libraries/DisplayResults.php:919 +#: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:408 -#: libraries/controllers/table/TableSearchController.php:435 -#: libraries/controllers/table/TableSearchController.php:920 -#: libraries/sql.lib.php:193 tbl_change.php:159 +#: js/messages.php:409 +#: libraries/controllers/table/TableSearchController.php:432 +#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "" -#: js/messages.php:409 +#: js/messages.php:410 msgid "No auto-saved query" msgstr "" -#: js/messages.php:410 +#: js/messages.php:411 #, fuzzy, php-format #| msgid "Disable %s" msgid "Variable %d:" msgstr "Diweredekaat %s" -#: js/messages.php:413 libraries/normalization.lib.php:889 +#: js/messages.php:414 libraries/normalization.lib.php:889 msgid "Pick" msgstr "" -#: js/messages.php:414 +#: js/messages.php:415 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "N'eus bet diuzet linenn ebet" -#: js/messages.php:415 +#: js/messages.php:416 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Klask en diaz roadennoù" -#: js/messages.php:417 +#: js/messages.php:418 #, 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:420 +#: js/messages.php:421 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "Memor vak" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Are you sure?" msgstr "" -#: js/messages.php:423 +#: js/messages.php:424 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Edit routine" msgid "Continue" msgstr "Kemmañ un argerzh" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 #, fuzzy #| msgid "The primary key has been dropped." msgid "Primary key added." msgstr "Diverket eo bet an alc'hwez kentidik." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Danevell heuliañ" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Graet" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 #, fuzzy #| msgid "Check privileges for database \"%s\"." msgid "Create the following table" msgstr "Gwiriañ ar gwirioù evit an diaz roadennoù \"%s\"." -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "No rows selected" msgid "No dependencies selected!" msgstr "N'eus bet diuzet linenn ebet" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Enrollañ" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Kuzhat an dezverkoù klask" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Diskouez an dezverkoù enklask" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Klask" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Column" msgid "Column maximum:" msgstr "Bann" -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Column" msgid "Column minimum:" msgstr "Bann" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "Kuzhat an dezverkoù klask" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "Diskouez an dezverkoù enklask" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 #, fuzzy #| msgid "Add/Delete columns" msgid "Select two columns" msgstr "Ouzhpennañ/Diverkañ bannoù" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Na ober van" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Poent" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Aradennad linennoù" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Lieskorneg" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Mentoniezh" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Kelc'h diabarzh" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Outer Ring:" msgid "Outer ring" msgstr "Kelc'h diavaez :" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Diuzit an alc'hwez daveet" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Diuzit an alc'hwez estren" -#: js/messages.php:529 +#: js/messages.php:530 #, 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:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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:532 +#: js/messages.php:533 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?" @@ -2352,294 +2364,255 @@ 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:535 +#: js/messages.php:536 msgid "Page name" msgstr "" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 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:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 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:539 +#: js/messages.php:540 #, fuzzy #| msgid "Delete" msgid "Delete page" msgstr "Diverkañ" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 #, 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:542 +#: js/messages.php:543 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "Niverenn borzh direizh" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Embann pe ezporzhiañ ur chema kar" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:550 +#: js/messages.php:551 #, 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:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Diskouez pep tra" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Linestring" msgid "Original length" msgstr "Aradennad linennoù" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Nullañ" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "Talvoudoù enporzhiañ dre ziouer" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "Diuzañ pep tra" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 #, fuzzy #| msgid "Set value: %s" msgid "Go to link:" msgstr "Lakaat an talvoud da %s" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "No rows selected" msgid "Copy column name." msgstr "N'eus bet diuzet linenn ebet" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Genel ur ger-tremen" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Genel" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "Muioc'h" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Diskouez pep tra" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Hide indexes" msgid "Hide panel" msgstr "Kuzhat menegerioù" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "Diskouez al logo er banell verdeiñ gleiz" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "Personelaat ar framm pennañ" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "Personelaat ar framm pennañ" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -#, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "Taolennoù" - -#: js/messages.php:633 -#, fuzzy -#| msgid "View" -msgid "views" -msgstr "Gwelet" - -#: js/messages.php:634 -#, fuzzy -#| msgid "Processes" -msgid "procedures" -msgstr "Argerzhioù" - -#: js/messages.php:635 -#, fuzzy -#| msgid "Reset" -msgid "events" -msgstr "Adderaouekaat" - -#: js/messages.php:636 -#, fuzzy -#| msgid "Connections" -msgid "functions" -msgstr "Kevreadennoù" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2649,133 +2622,133 @@ msgstr "" "hizivaat ho hini. Setu ar stumm nevesañ %s, embannet eo bet d'an %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", stumm stabil diwezhañ :" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "hizivaet" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "Kemmañ an arventennoù" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Show all" msgid "Show report details" msgstr "Diskouez pep tra" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Na ober van" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 #, fuzzy #| msgid "Issued queries" msgid "Execute this query again?" msgstr "Rekedoù resevet" -#: js/messages.php:701 +#: js/messages.php:693 #, 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:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Evezhiadennoù diwar-benn an daolenn" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Kuzhat disoc'hoù an enklask" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Kent" -#: js/messages.php:748 +#: js/messages.php:740 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2783,149 +2756,149 @@ msgid "Next" msgstr "War-lerc'h" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Hiziv" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "Genver" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "C'hwevrer" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "Meurzh" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "Ebrel" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Mae" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "Mezheven" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "Gouere" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "Eost" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "Gwengolo" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "Here" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "Du" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "Kerzu" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "C'hwe" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Meu" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Ebr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "Mae" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Mezh" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Goue" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Eost" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Gwen" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Here" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Du" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Kzu" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "Sul" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "Lun" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "Meurzh" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "Merc'her" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "Yaou" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "Gwener" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "Sadorn" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2933,149 +2906,149 @@ msgid "Sun" msgstr "Sul" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Meu" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Yaou" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Gwe" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Sad" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "L" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "Mz" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "Mc" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "Y" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "G" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "Sizh." #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Hini" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Eur" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Munut" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Eilenn" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Text fields" msgid "Please fix this field" msgstr "Maeziennoù testenn" -#: js/messages.php:886 +#: js/messages.php:878 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "Niverenn borzh direizh" -#: js/messages.php:887 +#: js/messages.php:879 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "Niverenn borzh direizh" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "Niverenn borzh direizh" -#: js/messages.php:889 +#: js/messages.php:883 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "Niverenn borzh direizh" -#: js/messages.php:890 +#: js/messages.php:885 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "Niverenn borzh direizh" -#: js/messages.php:891 +#: js/messages.php:888 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "Niverenn borzh direizh" -#: js/messages.php:892 +#: js/messages.php:890 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" @@ -3087,53 +3060,53 @@ msgstr "Niverenn borzh direizh" msgid "Please enter the same value again" msgstr "Niverenn borzh direizh" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "Niverenn borzh direizh" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "Niverenn borzh direizh" -#: js/messages.php:898 +#: js/messages.php:917 #, 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:899 +#: js/messages.php:922 #, 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:901 +#: js/messages.php:928 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "Niverenn borzh direizh" -#: js/messages.php:902 +#: js/messages.php:933 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "Niverenn borzh direizh" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Fazi" @@ -3221,11 +3194,12 @@ msgstr "Reked SQL" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3273,7 +3247,7 @@ msgstr "" msgid "Explain" msgstr "Displegañ SQL" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "O profilañ" @@ -3317,8 +3291,8 @@ msgid "History" msgstr "Kadarnataer SQL" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3507,30 +3481,30 @@ msgstr "" msgid "Switch to dark theme" msgstr "Mont d'an diaz roadennoù eilet" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3540,8 +3514,8 @@ msgstr "" msgid "Ascending" msgstr "War gresk" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3710,8 +3684,8 @@ msgstr[0] "%s glotadenn en daolenn %s" msgstr[1] "%s klotadenn en daolenn %s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3755,28 +3729,28 @@ msgstr "Diziuzañ pep tra" msgid "Inside column:" msgstr "Er bann :" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "" # verb pe ak. ? -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 #, fuzzy #| msgid "Filter" msgid "Filter rows" msgstr "Silañ" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Search in database" msgid "Search this table" msgstr "Klask en diaz roadennoù" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 #, fuzzy #| msgid "Begin" @@ -3784,7 +3758,7 @@ msgctxt "First page" msgid "Begin" msgstr "Kregiñ" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 #, fuzzy @@ -3793,7 +3767,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Kent" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 #, fuzzy @@ -3802,7 +3776,7 @@ msgctxt "Next page" msgid "Next" msgstr "War-lerc'h" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 #, fuzzy #| msgid "End" @@ -3810,78 +3784,78 @@ msgctxt "Last page" msgid "End" msgstr "Fin" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Display direction for altering/creating columns" msgid "Display column for relations" msgstr "Durc'hadur an diskwel evit kemmañ/krouiñ bannoù" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "The bookmark has been deleted." msgid "The row has been deleted." msgstr "Diverket eo bet ar sined." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" "Fazi en ur zilec'hiañ ar restr pellgarget; gwelet [doc@faq1-11]FAQ 1.11[/doc]" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -3889,7 +3863,8 @@ msgstr "" msgid "Your SQL query has been executed successfully." msgstr "Sevenet eo bet ho reked SQL ervat" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3898,42 +3873,42 @@ msgstr "" "Da nebeutañ emañ an niver a linennoù-mañ er Gweled-mañ. Sellit ouzh an " "%steulioù titouriñ%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, fuzzy, php-format #| msgid "%s table" #| msgid_plural "%s tables" msgid "%d total" msgstr "%s daolenn" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Evit ar re zo diuzet :" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3941,25 +3916,25 @@ msgstr "Evit ar re zo diuzet :" msgid "Check all" msgstr "Askañ pep tra" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Stumm da voullañ" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 #, fuzzy #| msgid "Theme %s not found!" msgid "Link not found!" @@ -4064,19 +4039,19 @@ msgstr "N'eus bet termenet meneger ebet !" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Menegerioù" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -4085,24 +4060,24 @@ msgid "Action" msgstr "Oberiadenn" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Anv ar meneger" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Dibar" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Gwasket" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Kardinalegezh" @@ -4110,8 +4085,8 @@ msgstr "Kardinalegezh" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -4121,8 +4096,8 @@ msgid "Collation" msgstr "Etrerummadiñ" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -4138,15 +4113,15 @@ msgstr "Diverket eo bet an alc'hwez kentidik." msgid "Index %s has been dropped." msgstr "Diverket eo bet ar meneger %s." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Dilezel" @@ -4185,12 +4160,13 @@ msgstr "Gwelet" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4198,7 +4174,7 @@ msgstr "Taolenn" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4207,8 +4183,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4216,41 +4192,41 @@ msgid "Search" msgstr "Klask" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Ensoc'hañ" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Oberiadennoù" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4261,16 +4237,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4278,22 +4254,22 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "CHAR textarea columns" msgid "Central columns" msgstr "Bannoù evit an takadoù skrid CHAR" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Diazoù roadennoù" @@ -4302,33 +4278,33 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Eilañ" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4647,7 +4623,7 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5076,39 +5052,39 @@ msgstr "Direizhet eo an arc'hwel %s gant un draen anavezet, sellit ouzh %s" msgid "Click to toggle" msgstr "Klikañ evit gwintañ" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Furchal en hoc'h urzhiataer :" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Diuzit e-mesk kavlec'h pellgargañ ar servijer web %s :" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Ar c'havlec'h treuzkas n'hall ket bezañ diraezet." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 #, fuzzy #| msgid "There are no files to upload" msgid "There are no files to upload!" msgstr "N'eus restr ebet da enporzhiañ" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Goullonderiñ" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "Seveniñ" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Moullañ" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "" @@ -5281,8 +5257,8 @@ msgid "Add new column" msgstr "Ouzhpennañ/Diverkañ bannoù" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5352,19 +5328,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "Ret e vefe deoc'h ober gant ar stumm %s %s pe unan nevesoc'h c'hoazh." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -6262,7 +6238,7 @@ msgid "Remember file name template" msgstr "Derc'hel soñj eus patrom anv ar restr" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Ouzhpennañ talvoud an AUTO_INCREMENT" @@ -6309,7 +6285,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Ouzhpennañ %s" @@ -8049,7 +8025,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 #, fuzzy #| msgid "Hide query box" msgid "Retain query box" @@ -8351,110 +8327,35 @@ msgstr "" msgid "OpenDocument Text" msgstr "Testenn Open Document" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Goullonderet eo bet an daolenn %s." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "Diverket eo bet ar Gweled %s" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "Diverket eo bet an daolenn %s" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" - -#: libraries/controllers/TableStructureController.php:250 -#, fuzzy -#| msgid "No rows selected" -msgid "No column selected." -msgstr "N'eus bet diuzet linenn ebet" - -#: libraries/controllers/TableStructureController.php:484 -#, 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.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Kemmañ" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1201 -#, fuzzy -#| msgid "Use this value" -msgid "Distinct values" -msgstr "Ober gant an talvoud-mañ" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8470,6 +8371,14 @@ msgstr "" msgid "No data to display" msgstr "Dibab ar bann da ziskouez" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "" + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "" @@ -8480,25 +8389,92 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr "Diverket eo bet ar sined." -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Search" msgid "Table search" msgstr "Klask" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Search" msgid "Zoom search" msgstr "Klask" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "Hide search criteria" msgid "Find and replace" msgstr "Kuzhat an dezverkoù klask" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" + +#: libraries/controllers/table/TableStructureController.php:251 +#, fuzzy +#| msgid "No rows selected" +msgid "No column selected." +msgstr "N'eus bet diuzet linenn ebet" + +#: libraries/controllers/table/TableStructureController.php:485 +#, fuzzy +#| msgid "Database %s has been dropped." +msgid "The columns have been moved successfully." +msgstr "Diverket eo bet an diaz roadennoù %s." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Kemmañ" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1209 +#, fuzzy +#| msgid "Use this value" +msgid "Distinct values" +msgstr "Ober gant an talvoud-mañ" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8508,7 +8484,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8579,7 +8555,7 @@ msgstr "" msgid "Create database:" msgstr "Krouiñ un daolenn" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "" @@ -9295,73 +9271,73 @@ msgid "Dump has been saved to file %s." msgstr "Enrollet eo bet ar restr ezporzhiañ e%s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "Distroet ez eus un disoc'h goullo gant MySQL (linenn ebet)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, fuzzy, php-format #| msgid "Jump to database" msgid "Go to database: %s" msgstr "Mont d'an diaz roadennoù" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Roadennoù a vank evit %s" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, fuzzy, php-format #| msgid "Set value: %s" msgid "Go to table: %s" msgstr "Lakaat an talvoud da %s" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Ar framm hepken" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "" @@ -9384,75 +9360,75 @@ msgstr "" msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Pe" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 #, fuzzy #| msgid "Select from the web server upload directory %s:" msgid "web server upload directory:" msgstr "Diuzit e-mesk kavlec'h pellgargañ ar servijer web %s :" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Ensoc'hañ" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9464,11 +9440,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9484,41 +9460,41 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table prefix:" msgstr "Erlec'hiañ rakger an daolenn" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Copy table with prefix" msgid "Copy table with prefix:" msgstr "Eilañ an daolenn enni ur rakger" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Replace table prefix" msgid "Add table prefix:" msgstr "Erlec'hiañ rakger an daolenn" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -9746,8 +9722,8 @@ msgstr "Argerzhioù" msgid "Views:" msgstr "Gwelet" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Diskouez" @@ -9789,10 +9765,9 @@ msgstr[0] "" msgstr[1] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "Invalid table name" -msgid "Filter databases by name or regex" -msgstr "Anv taolenn direizh" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -9801,12 +9776,6 @@ msgstr "Anv taolenn direizh" msgid "Clear fast filter" msgstr "Enrollañ evel restr" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "Invalid table name" -msgid "Filter by name or regex" -msgstr "Anv taolenn direizh" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -10206,7 +10175,7 @@ msgstr "Cheñch anv an diaz roadennoù hag e envel" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -10215,7 +10184,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Reloading Privileges" @@ -10235,18 +10204,18 @@ msgstr "Dilemel an diaz roadennoù" msgid "Drop the database (DROP)" msgstr "Diverkañ an diaz roadennoù (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Ar framm hepken" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Ar framm hag ar roadennoù ennañ" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Ar roadennoù hepken" @@ -10260,7 +10229,7 @@ msgstr "Eilañ an diaz roadennoù war" msgid "CREATE DATABASE before copying" msgstr "KROUIÑ AN DIAZ ROADENNOÙ a-raok eilañ" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Ouzhpennañ ar strishadurioù" @@ -10300,163 +10269,163 @@ msgstr "" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Dielfennañ an daolenn" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Gwiriañ an daolenn" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Gwiriañ an daolenn" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Lakaat an daolenn diouzh ar gwellañ" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Dresañ an daolenn" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "Serriñ" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Routine %1$s has been modified." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Kemmet eo bet an argerzh %1$s." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Routine %1$s has been modified." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Kemmet eo bet an argerzh %1$s." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "" @@ -10635,7 +10604,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -10659,21 +10628,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10777,7 +10746,7 @@ msgid "Database:" msgstr "Diaz roadennoù" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10886,7 +10855,7 @@ msgid "Data creation options" msgstr "Dibarzhioù diskwel an diazoù roadennoù" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -10955,8 +10924,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10964,92 +10933,92 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Missing data for %s" msgid "Metadata" msgstr "Roadennoù a vank evit %s" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Metadata for %s" msgstr "Roadennoù a vank evit %s" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Krouiñ :" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Hizivadenn ziwezhañ :" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Gwiriet da ziwezhañ :" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "en implij" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for dumped tables" msgstr "E diabarzh an taolennoù :" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "E diabarzh an taolennoù :" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "Arabat ober gant AUTO_INCREMENT evit an talvoudoù par da mann" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Ouzhpennañ talvoud an AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "" @@ -11299,9 +11268,9 @@ msgstr "" msgid "Table of contents" msgstr "" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "" @@ -11465,59 +11434,59 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "N'haller ket lenn ar restr" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "The bookmark has been deleted." msgid "Internal relation has been added." msgstr "Diverket eo bet ar sined." -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be added!" msgstr "N'haller ket lenn ar restr" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "The bookmark has been deleted." msgid "FOREIGN KEY relation has been removed." msgstr "Diverket eo bet ar sined." -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "N'haller ket lenn ar restr" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be removed!" msgstr "N'haller ket lenn ar restr" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "The bookmark has been deleted." msgid "Internal relation has been removed." @@ -11568,95 +11537,95 @@ msgstr "" msgid "Please see the documentation on how to update your column_info table. " msgstr "" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "There are no recent tables" msgid "Persistent favorite tables" msgstr "N'eus taolenn nevez ebet" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Configuration file" msgid "Configurable menus" msgstr "Restr gefluniañ" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "Seurt ezporzhiadenn direizh" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, fuzzy, php-format #| msgid "" #| "Tracking of changes made in database. Requires the phpMyAdmin " @@ -11668,13 +11637,13 @@ msgstr "" "Heuliañ ar c'hemmoù graet en diaz roadennoù. Rekis eo kaout ar stokañ " "kefluniadurioù phpMyAdmin." -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, fuzzy, php-format #| msgid "" #| "Tracking of changes made in database. Requires the phpMyAdmin " @@ -11855,8 +11824,8 @@ msgstr "Anv implijer :" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "" @@ -11864,7 +11833,7 @@ msgstr "" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "" @@ -12546,7 +12515,7 @@ msgstr[1] "Diverket eo bet an diaz roadennoù %s." msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "" @@ -12554,100 +12523,96 @@ msgstr "" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Diweredekaet" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "" #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "" #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "" #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12655,65 +12620,65 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "" #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "" #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -12725,8 +12690,8 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12770,31 +12735,31 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Edit routine" @@ -12802,7 +12767,7 @@ msgid "Routine" msgstr "Kemmañ un argerzh" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12817,14 +12782,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -12834,7 +12799,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "" @@ -12843,15 +12808,15 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "" @@ -12874,7 +12839,7 @@ msgid "Native MySQL Authentication" msgstr "Dilesadur" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "" @@ -12899,8 +12864,8 @@ msgstr "Anv implijer :" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Add constraints" msgid "Host name" @@ -12922,229 +12887,229 @@ msgstr "Dilesadur" msgid "Password Hashing Method" msgstr "Ger-tremen :" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Ouzhpennañ un implijer" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Databases display options" msgid "Database for user account" msgstr "Dibarzhioù diskwel an diazoù roadennoù" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Reloading Privileges" msgid "Edit privileges" msgstr "Oc'h adkargañ an dreistgwirioù" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Check Privileges" msgid "Routine-specific privileges" msgstr "Gwiriañ ar gwirioù" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Removing Selected Users" msgid "Remove selected user accounts" msgstr "O lemel kuit an implijerien diuzet" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, fuzzy, php-format #| msgid "Check Privileges" msgid "Privileges for %s" msgstr "Gwiriañ ar gwirioù" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Reloading Privileges" msgid "Edit privileges:" msgstr "Oc'h adkargañ an dreistgwirioù" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13153,7 +13118,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -13162,11 +13127,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "" @@ -13406,34 +13371,34 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Freskaat" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 #, fuzzy #| msgid "CHAR textarea columns" msgid "Chart columns" msgstr "Bannoù evit an takadoù skrid CHAR" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" @@ -13495,7 +13460,7 @@ msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -13520,33 +13485,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13554,78 +13519,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13633,7 +13598,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13641,42 +13606,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13684,33 +13649,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13719,244 +13684,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Furmad ar restr enporzhiañ" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13964,99 +13929,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14064,18 +14029,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14083,13 +14048,13 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "N'eo ket oberiant an heuliañ." -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -14098,72 +14063,72 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Last version" msgid "Server level tabs" msgstr "Stumm diwezhañ" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Databases" msgid "Database level tabs" msgstr "Diazoù roadennoù" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table comments" msgid "Table level tabs" msgstr "Evezhiadennoù diwar-benn an daolenn" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy msgid "View users" msgstr "Ouzhpennañ un implijer" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "Ouzhpennañ un implijer" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Username:" msgid "Group name:" msgstr "Anv implijer :" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Last version" msgid "Server-level tabs" msgstr "Stumm diwezhañ" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Databases" msgid "Database-level tabs" msgstr "Diazoù roadennoù" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14227,21 +14192,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No rows selected" msgid "An alias was expected." @@ -14306,139 +14267,139 @@ msgstr "Krouet eo bet an argerzh %1s." msgid "Variable name was expected." msgstr "Patrom anv taolenn" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "Number of inserted rows" msgid "Unexpected beginning of statement." msgstr "Niver a linennoù da ensoc'hañ" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The bookmark has been deleted." msgid "At least one column definition was expected." msgstr "Diverket eo bet ar sined." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Udb all" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy #| msgid "Startup" msgid "State" msgstr "Pajenn deraouiñ" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total:" msgid "Total Time" msgstr "Hollad :" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Theme" msgid "% Time" msgstr "Tem" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Serriñ" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Theme" msgid "ø Time" msgstr "Tem" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Label key" msgid "Label:" msgstr "Alc'hwez an dikedenn" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created!" msgstr "Krouet eo bet ar sined %s" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -14469,27 +14430,27 @@ msgstr "" msgid "Bind parameters" msgstr "Arventennoù fall !" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "" @@ -14537,179 +14498,179 @@ msgstr "Diverkañ ar roadennoù heuliañ evit an daolenn-mañ" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Krouet" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Hizivaet" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Last version" msgid "Delete version" msgstr "Stumm diwezhañ" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Danevell heuliañ" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Gwel prim eus ar framm" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "oberiant" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "dizoberiant" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Oberiant eo an heuliañ." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Oberiant eo an heuliañ." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format #| msgid "Other core settings" msgid "Version %1$s of %2$s was deleted." msgstr "Arventennoù pouezus all" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Taolennoù n'int ket heuliet" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Heuliañ an daolenn" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Taolennoù heuliet-pizh" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Stumm diwezhañ" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "O tiverkañ ar roadennoù heuliañ" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Stummoù" @@ -14717,11 +14678,11 @@ msgstr "Stummoù" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14820,7 +14781,7 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14845,7 +14806,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -15728,47 +15689,53 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart Title" +msgid "Chart title:" +msgstr "Titl ar grafik" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside column:" msgid "Series column:" msgstr "Er bann :" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Values for the column \"%s\"" msgid "Value Column:" msgstr "Talvoudoù evit ar bann \"%s\"" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -15829,56 +15796,57 @@ msgstr "Evezhiadenn" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 -#, fuzzy -#| msgid "The bookmark has been deleted." -msgid "Internal relations" -msgstr "Diverket eo bet ar sined." - -#: templates/table/relation/common_form.phtml:11 -msgid "Internal relation" -msgstr "" - -#: templates/table/relation/common_form.phtml:14 -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "" - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 #, fuzzy #| msgid "Foreign key limit" msgid "Foreign key constraints" msgstr "Bevenn evit an alc'hwezioù estren" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 #, fuzzy #| msgid "Action" msgid "Actions" msgstr "Oberiadenn" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 #, fuzzy #| msgid "Add constraints" msgid "Constraint properties" msgstr "Ouzhpennañ ar strishadurioù" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Ouzhpennañ ar strishadurioù" -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +#, fuzzy +#| msgid "The bookmark has been deleted." +msgid "Internal relations" +msgstr "Diverket eo bet ar sined." + +#: templates/table/relation/common_form.phtml:80 +msgid "Internal relation" +msgstr "" + +#: templates/table/relation/common_form.phtml:83 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "" + +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16033,7 +16001,7 @@ msgid "at beginning of table" msgstr "Niver a linennoù da ensoc'hañ" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Relations" msgid "Partitions" @@ -16078,7 +16046,7 @@ msgstr "Darempredoù" msgid "Edit partitioning" msgstr "Mod aozañ" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -17364,6 +17332,41 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "Taolennoù" + +#, fuzzy +#~| msgid "View" +#~ msgid "views" +#~ msgstr "Gwelet" + +#, fuzzy +#~| msgid "Processes" +#~ msgid "procedures" +#~ msgstr "Argerzhioù" + +#, fuzzy +#~| msgid "Reset" +#~ msgid "events" +#~ msgstr "Adderaouekaat" + +#, fuzzy +#~| msgid "Connections" +#~ msgid "functions" +#~ msgstr "Kevreadennoù" + +#, fuzzy +#~| msgid "Invalid table name" +#~ msgid "Filter databases by name or regex" +#~ msgstr "Anv taolenn direizh" + +#, fuzzy +#~| msgid "Invalid table name" +#~ msgid "Filter by name or regex" +#~ msgstr "Anv taolenn direizh" + #, fuzzy #~| msgid "Tracking report" #~ msgid "Taking you to %s." diff --git a/po/brx.po b/po/brx.po index 0aea1582dd..226fc55953 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-09-04 09:33+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Bodo Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 msgid "Page name" msgstr "" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:550 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:551 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:552 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "" -#: js/messages.php:623 +#: js/messages.php:624 msgid "Show panel" msgstr "" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -msgid "tables" -msgstr "" - -#: js/messages.php:633 -msgid "views" -msgstr "" - -#: js/messages.php:634 -msgid "procedures" -msgstr "" - -#: js/messages.php:635 -msgid "events" -msgstr "" - -#: js/messages.php:636 -msgid "functions" -msgstr "" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2333,396 +2314,396 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr "" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "" -#: js/messages.php:660 +#: js/messages.php:652 msgid "Show report details" msgstr "" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 msgid "Show arguments" msgstr "" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "" @@ -2730,41 +2711,41 @@ msgstr "" msgid "Please enter the same value again" msgstr "" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "" @@ -2849,11 +2830,12 @@ msgstr "" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -2895,7 +2877,7 @@ msgstr "" msgid "Explain" msgstr "" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "" @@ -2929,8 +2911,8 @@ msgid "History" msgstr "" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3075,30 +3057,30 @@ msgstr "" msgid "Switch to dark theme" msgstr "" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3108,8 +3090,8 @@ msgstr "" msgid "Ascending" msgstr "" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3252,8 +3234,8 @@ msgstr[0] "" msgstr[1] "" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3295,183 +3277,184 @@ msgstr "" msgid "Inside column:" msgstr "" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 msgid "Display column for relations" msgstr "" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 msgid "Check all" msgstr "" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "" @@ -3563,19 +3546,19 @@ msgstr "" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3584,24 +3567,24 @@ msgid "Action" msgstr "" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "" @@ -3609,8 +3592,8 @@ msgstr "" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3620,8 +3603,8 @@ msgid "Collation" msgstr "" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3637,15 +3620,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "" @@ -3682,12 +3665,13 @@ msgstr "" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3695,7 +3679,7 @@ msgstr "" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3704,8 +3688,8 @@ msgid "SQL" msgstr "" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3713,41 +3697,41 @@ msgid "Search" msgstr "" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3758,16 +3742,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3775,20 +3759,20 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "" @@ -3797,33 +3781,33 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4114,7 +4098,7 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4523,37 +4507,37 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "" @@ -4712,8 +4696,8 @@ msgid "Add new column" msgstr "" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -4772,19 +4756,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -5550,7 +5534,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -5589,7 +5573,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "" @@ -7129,7 +7113,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "" @@ -7401,101 +7385,33 @@ msgstr "" msgid "OpenDocument Text" msgstr "" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "" - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "" - -#: libraries/controllers/TableStructureController.php:967 -#, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "" - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -7509,6 +7425,14 @@ msgstr "" msgid "No data to display" msgstr "" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "" + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "" @@ -7517,19 +7441,79 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr "" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:975 +#, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -7539,7 +7523,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7604,7 +7588,7 @@ msgstr "" msgid "Create database:" msgstr "" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "" @@ -8266,69 +8250,69 @@ msgid "Dump has been saved to file %s." msgstr "" #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "" @@ -8351,71 +8335,71 @@ msgstr "" msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -8427,11 +8411,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -8447,35 +8431,35 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "" @@ -8693,8 +8677,8 @@ msgstr "" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "" @@ -8732,7 +8716,8 @@ msgstr[0] "" msgstr[1] "" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" msgstr "" #: libraries/navigation/NavigationTree.php:1371 @@ -8740,10 +8725,6 @@ msgstr "" msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -9116,7 +9097,7 @@ msgstr "" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9125,7 +9106,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "" @@ -9143,18 +9124,18 @@ msgstr "" msgid "Drop the database (DROP)" msgstr "" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "" @@ -9166,7 +9147,7 @@ msgstr "" msgid "CREATE DATABASE before copying" msgstr "" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "" @@ -9206,157 +9187,157 @@ msgstr "" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 msgid "Checksum table" msgstr "" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "" @@ -9521,7 +9502,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -9545,21 +9526,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -9649,7 +9630,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "" @@ -9741,7 +9722,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -9810,8 +9791,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9819,81 +9800,81 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 msgid "Metadata" msgstr "" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "" @@ -10122,9 +10103,9 @@ msgstr "" msgid "Table of contents" msgstr "" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "" @@ -10288,47 +10269,47 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 msgid "Error: Internal relation could not be added!" msgstr "" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 msgid "FOREIGN KEY relation has been removed." msgstr "" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 msgid "Error: Internal relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "" @@ -10373,102 +10354,102 @@ msgstr "" msgid "Please see the documentation on how to update your column_info table. " msgstr "" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 msgid "Persistent favorite tables" msgstr "" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 msgid "Saving export templates" msgstr "" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -10640,8 +10621,8 @@ msgstr "" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "" @@ -10649,7 +10630,7 @@ msgstr "" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "" @@ -11261,7 +11242,7 @@ msgstr[1] "" msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "" @@ -11269,98 +11250,94 @@ msgstr "" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "" #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "" #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "" #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -11368,65 +11345,65 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "" #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "" #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -11438,8 +11415,8 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -11479,37 +11456,37 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -11524,14 +11501,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11541,7 +11518,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "" @@ -11550,15 +11527,15 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "" @@ -11575,7 +11552,7 @@ msgid "Native MySQL Authentication" msgstr "" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "" @@ -11598,8 +11575,8 @@ msgstr "" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 msgid "Host name" msgstr "" @@ -11615,216 +11592,216 @@ msgstr "" msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 msgid "Database for user account" msgstr "" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 msgid "Remove selected user accounts" msgstr "" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11833,7 +11810,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11842,11 +11819,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "" @@ -12068,30 +12045,30 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -12145,7 +12122,7 @@ msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -12170,33 +12147,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12204,78 +12181,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12283,7 +12260,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12291,42 +12268,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12334,33 +12311,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12369,242 +12346,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12612,99 +12589,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12712,18 +12689,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12731,11 +12708,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -12744,57 +12721,57 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "" @@ -12854,21 +12831,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 msgid "An alias was expected." msgstr "" @@ -12924,119 +12897,119 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 msgid "At least one column definition was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -13064,27 +13037,27 @@ msgstr "" msgid "Bind parameters" msgstr "" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "" @@ -13128,172 +13101,172 @@ msgstr "" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 msgid "Delete version" msgstr "" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "" @@ -13301,11 +13274,11 @@ msgstr "" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -13404,7 +13377,7 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -13429,7 +13402,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -14209,43 +14182,47 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +msgid "Chart title:" +msgstr "" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 msgid "Value Column:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "" @@ -14298,46 +14275,47 @@ msgstr "" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +msgid "Foreign key constraints" +msgstr "" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "" + +#: templates/table/relation/common_form.phtml:10 +msgid "Constraint properties" +msgstr "" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "" + +#: templates/table/relation/common_form.phtml:60 +msgid "+ Add constraint" +msgstr "" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:37 -msgid "Foreign key constraints" -msgstr "" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "" - -#: templates/table/relation/common_form.phtml:41 -msgid "Constraint properties" -msgstr "" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "" - -#: templates/table/relation/common_form.phtml:83 -msgid "+ Add constraint" -msgstr "" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "" @@ -14463,7 +14441,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 msgid "Partitions" msgstr "" @@ -14496,7 +14474,7 @@ msgstr "" msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "" diff --git a/po/bs.po b/po/bs.po index 43750e3f1e..aa1dc74d2e 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:31+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Bosnian =20) ? 1 : 2;\n" "X-Generator: Weblate 2.5-dev\n" -#: changelog.php:37 license.php:30 +#: changelog.php:37 license.php:33 #, php-format msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " @@ -37,7 +37,7 @@ msgstr "" msgid "Showing rows %1$s - %2$s." msgstr "Prikaz zapisa" -#: db_create.php:61 +#: db_create.php:62 #, php-format msgid "Database %1$s has been created." msgstr "Baza %1$s je kreirana." @@ -46,7 +46,7 @@ msgstr "Baza %1$s je kreirana." msgid "Database comment" msgstr "Komentar baze" -#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:601 +#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:599 #: templates/columns_definitions/column_definitions_form.phtml:84 #, fuzzy #| msgid "Table comments" @@ -54,7 +54,7 @@ msgid "Table comments:" msgstr "Komentari tabele" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1568 +#: libraries/insert_edit.lib.php:1575 #: libraries/navigation/nodes/NodeColumn.php:34 #: libraries/plugins/export/ExportHtmlword.php:288 #: libraries/plugins/export/ExportHtmlword.php:384 @@ -64,13 +64,14 @@ msgstr "Komentari tabele" #: libraries/plugins/export/ExportTexytext.php:282 #: libraries/plugins/export/ExportTexytext.php:373 #: libraries/plugins/export/PMA_ExportPdf.php:472 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:882 libraries/tracking.lib.php:978 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 +#: libraries/tracking.lib.php:892 libraries/tracking.lib.php:990 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:10 -#: templates/table/relation/common_form.phtml:43 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:27 +#: templates/table/relation/common_form.phtml:79 #: templates/table/relation/foreign_key_row.phtml:176 #: templates/table/relation/foreign_key_row.phtml:188 #: templates/table/relation/internal_relational_row.phtml:73 @@ -90,14 +91,14 @@ msgstr "Kolona" #: libraries/plugins/export/ExportTexytext.php:283 #: libraries/plugins/export/ExportTexytext.php:374 #: libraries/plugins/export/PMA_ExportPdf.php:474 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 #: libraries/rte/rte_list.lib.php:78 libraries/rte/rte_list.lib.php:106 #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2606 libraries/tracking.lib.php:883 -#: libraries/tracking.lib.php:975 +#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -107,7 +108,7 @@ msgstr "Tip" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:709 -#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1577 +#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1584 #: libraries/plugins/export/ExportHtmlword.php:294 #: libraries/plugins/export/ExportHtmlword.php:390 #: libraries/plugins/export/ExportLatex.php:517 @@ -116,9 +117,9 @@ msgstr "Tip" #: libraries/plugins/export/ExportTexytext.php:284 #: libraries/plugins/export/ExportTexytext.php:375 #: libraries/plugins/export/PMA_ExportPdf.php:476 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 -#: libraries/tracking.lib.php:885 libraries/tracking.lib.php:981 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/tracking.lib.php:895 libraries/tracking.lib.php:993 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 @@ -135,9 +136,9 @@ msgstr "Null" #: libraries/plugins/export/ExportTexytext.php:285 #: libraries/plugins/export/ExportTexytext.php:376 #: libraries/plugins/export/PMA_ExportPdf.php:478 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 -#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:886 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:896 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 @@ -149,8 +150,8 @@ msgstr "Podrazumjevano" #: libraries/plugins/export/ExportOdt.php:488 #: libraries/plugins/export/ExportTexytext.php:378 #: libraries/plugins/export/PMA_ExportPdf.php:487 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:640 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:663 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 msgid "Links to" msgstr "Veze ka" @@ -161,37 +162,38 @@ msgstr "Veze ka" #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:381 #: libraries/plugins/export/PMA_ExportPdf.php:494 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:651 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:664 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:649 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 #: templates/columns_definitions/table_fields_definitions.phtml:65 msgid "Comments" msgstr "Komentari" -#: db_datadict.php:155 libraries/controllers/TableStructureController.php:1189 -#: libraries/controllers/TableStructureController.php:1194 -#: libraries/tracking.lib.php:925 +#: db_datadict.php:155 +#: libraries/controllers/table/TableStructureController.php:1197 +#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:79 +#: templates/table/structure/display_structure.phtml:80 msgid "Primary" msgstr "Primarni" -#: db_datadict.php:165 js/messages.php:370 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:371 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 -#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:403 -#: libraries/mult_submits.lib.php:417 +#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:408 +#: libraries/mult_submits.lib.php:422 #: libraries/plugins/export/ExportHtmlword.php:654 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:710 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2971 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3620 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1013 libraries/tracking.lib.php:1018 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2973 +#: libraries/server_privileges.lib.php:2993 +#: libraries/server_privileges.lib.php:3631 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -200,32 +202,32 @@ msgstr "Primarni" msgid "No" msgstr "Ne" -#: db_datadict.php:165 js/messages.php:515 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:516 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 #: libraries/config/FormDisplay.tpl.php:280 -#: libraries/controllers/TableStructureController.php:770 -#: libraries/controllers/TableStructureController.php:1440 -#: libraries/controllers/TableStructureController.php:1449 -#: libraries/controllers/TableStructureController.php:1454 -#: libraries/controllers/TableStructureController.php:1459 -#: libraries/controllers/TableStructureController.php:1464 -#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:199 -#: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 -#: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 +#: libraries/controllers/table/TableStructureController.php:771 +#: libraries/controllers/table/TableStructureController.php:1448 +#: libraries/controllers/table/TableStructureController.php:1457 +#: libraries/controllers/table/TableStructureController.php:1462 +#: libraries/controllers/table/TableStructureController.php:1467 +#: libraries/controllers/table/TableStructureController.php:1472 +#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:200 +#: libraries/mult_submits.lib.php:344 libraries/mult_submits.lib.php:377 +#: libraries/mult_submits.lib.php:406 libraries/mult_submits.lib.php:420 #: libraries/plugins/export/ExportHtmlword.php:655 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:788 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:711 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2968 -#: libraries/server_privileges.lib.php:2989 -#: libraries/server_privileges.lib.php:3617 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1011 libraries/tracking.lib.php:1016 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2970 +#: libraries/server_privileges.lib.php:2991 +#: libraries/server_privileges.lib.php:3628 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -238,8 +240,8 @@ msgstr "Da" msgid "View dump (schema) of database" msgstr "Prikaži sadržaj (shemu) baze" -#: db_export.php:51 db_tracking.php:102 export.php:382 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:176 +#: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 +#: libraries/controllers/DatabaseStructureController.php:157 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "Tabele nisu pronađene u bazi." @@ -256,7 +258,7 @@ msgstr "Tabele" #: db_export.php:66 libraries/Menu.php:320 libraries/Menu.php:427 #: libraries/Util.php:3407 libraries/Util.php:3417 libraries/Util.php:3423 -#: libraries/Util.php:3702 libraries/Util.php:4339 libraries/Util.php:4356 +#: libraries/Util.php:3703 libraries/Util.php:4340 libraries/Util.php:4357 #: libraries/central_columns.lib.php:729 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:320 @@ -264,10 +266,10 @@ msgstr "Tabele" #: libraries/config/user_preferences.forms.php:218 #: libraries/config/user_preferences.forms.php:259 #: libraries/config/user_preferences.forms.php:285 -#: libraries/import.lib.php:1299 libraries/navigation/nodes/NodeColumn.php:44 +#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:44 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 -#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:877 +#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:887 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -317,13 +319,13 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "phpMyAdmin konfiguracijski spremnik je isključen. %sSaznaj više%s." -#: db_qbe.php:135 +#: db_qbe.php:136 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to choose at least one column to display!" msgstr "Morate izabrati bar jednu kolonu za prikaz" -#: db_qbe.php:152 +#: db_qbe.php:154 #, php-format msgid "Switch to %svisual builder%s" msgstr "Pređi na %svizualni graditelj%s" @@ -353,7 +355,7 @@ msgstr "" msgid "No tables selected." msgstr "Nije izabrana ni jedna baza." -#: db_tracking.php:146 +#: db_tracking.php:149 #, fuzzy msgid "Database Log" msgstr "Baza podataka" @@ -387,7 +389,7 @@ msgstr "" msgid "Bad type!" msgstr "Vrsta upita" -#: export.php:276 +#: export.php:278 #, fuzzy #| msgid "Add new field" msgid "Bad parameters!" @@ -398,107 +400,107 @@ msgstr "Dodaj novo polje" msgid "Invalid export type" msgstr "Nema tabela" -#: gis_data_editor.php:119 +#: gis_data_editor.php:117 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:147 +#: gis_data_editor.php:145 #: templates/table/gis_visualization/gis_visualization.phtml:37 msgid "Use OpenStreetMaps as Base Layer" msgstr "" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:169 +#: gis_data_editor.php:167 msgid "SRID:" msgstr "" -#: gis_data_editor.php:192 +#: gis_data_editor.php:190 #, php-format msgid "Geometry %d:" msgstr "" -#: gis_data_editor.php:214 +#: gis_data_editor.php:212 msgid "Point:" msgstr "" -#: gis_data_editor.php:215 gis_data_editor.php:242 gis_data_editor.php:298 -#: gis_data_editor.php:371 js/messages.php:504 +#: gis_data_editor.php:213 gis_data_editor.php:240 gis_data_editor.php:296 +#: gis_data_editor.php:369 js/messages.php:505 msgid "X" msgstr "" -#: gis_data_editor.php:218 gis_data_editor.php:246 gis_data_editor.php:302 -#: gis_data_editor.php:377 js/messages.php:505 +#: gis_data_editor.php:216 gis_data_editor.php:244 gis_data_editor.php:300 +#: gis_data_editor.php:375 js/messages.php:506 msgid "Y" msgstr "" -#: gis_data_editor.php:240 gis_data_editor.php:296 gis_data_editor.php:369 -#: js/messages.php:507 +#: gis_data_editor.php:238 gis_data_editor.php:294 gis_data_editor.php:367 +#: js/messages.php:508 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:253 gis_data_editor.php:309 gis_data_editor.php:387 -#: js/messages.php:513 +#: gis_data_editor.php:251 gis_data_editor.php:307 gis_data_editor.php:385 +#: js/messages.php:514 #, fuzzy #| msgid "Add new field" msgid "Add a point" msgstr "Dodaj novo polje" -#: gis_data_editor.php:270 +#: gis_data_editor.php:268 #, fuzzy, php-format #| msgid "Lines terminated by" msgid "Linestring %d:" msgstr "Linije se završavaju sa" -#: gis_data_editor.php:273 gis_data_editor.php:350 +#: gis_data_editor.php:271 gis_data_editor.php:348 msgid "Outer ring:" msgstr "" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:273 gis_data_editor.php:350 #, php-format msgid "Inner ring %d:" msgstr "" -#: gis_data_editor.php:312 +#: gis_data_editor.php:310 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Dodaj novog korisnika" -#: gis_data_editor.php:313 gis_data_editor.php:392 js/messages.php:514 +#: gis_data_editor.php:311 gis_data_editor.php:390 js/messages.php:515 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Dodaj novog korisnika" -#: gis_data_editor.php:334 +#: gis_data_editor.php:332 #, fuzzy, php-format msgid "Polygon %d:" msgstr "Dodaj novo polje" -#: gis_data_editor.php:398 +#: gis_data_editor.php:396 #, fuzzy msgid "Add a polygon" msgstr "Dodaj novo polje" -#: gis_data_editor.php:404 +#: gis_data_editor.php:402 #, fuzzy msgid "Add geometry" msgstr "Dodaj novog korisnika" -#: gis_data_editor.php:410 js/messages.php:345 libraries/DbSearch.php:462 -#: libraries/DisplayResults.php:1783 libraries/browse_foreigners.lib.php:142 +#: gis_data_editor.php:408 js/messages.php:346 libraries/DbSearch.php:462 +#: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:151 #: libraries/display_export.lib.php:404 libraries/display_export.lib.php:410 -#: libraries/display_import.lib.php:403 libraries/index.lib.php:42 -#: libraries/insert_edit.lib.php:1547 libraries/insert_edit.lib.php:1584 +#: libraries/display_import.lib.php:403 libraries/index.lib.php:45 +#: libraries/insert_edit.lib.php:1554 libraries/insert_edit.lib.php:1591 #: libraries/normalization.lib.php:168 libraries/normalization.lib.php:825 #: libraries/operations.lib.php:47 libraries/operations.lib.php:114 #: libraries/operations.lib.php:266 libraries/operations.lib.php:309 #: libraries/operations.lib.php:806 libraries/operations.lib.php:877 -#: libraries/operations.lib.php:926 libraries/operations.lib.php:1336 -#: libraries/operations.lib.php:1653 +#: libraries/operations.lib.php:926 libraries/operations.lib.php:1339 +#: libraries/operations.lib.php:1656 #: libraries/plugins/auth/AuthenticationCookie.php:239 #: libraries/replication_gui.lib.php:124 libraries/replication_gui.lib.php:163 #: libraries/replication_gui.lib.php:328 libraries/replication_gui.lib.php:465 @@ -507,12 +509,12 @@ msgstr "Dodaj novog korisnika" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2343 -#: libraries/server_privileges.lib.php:3114 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_user_groups.lib.php:285 -#: libraries/sql_query_form.lib.php:369 libraries/sql_query_form.lib.php:429 -#: libraries/tracking.lib.php:536 libraries/tracking.lib.php:656 +#: libraries/server_privileges.lib.php:2345 +#: libraries/server_privileges.lib.php:3116 +#: libraries/server_privileges.lib.php:3735 +#: libraries/server_user_groups.lib.php:290 +#: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 +#: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 #: prefs_manage.php:280 prefs_manage.php:358 #: templates/columns_definitions/column_definitions_form.phtml:64 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 @@ -525,11 +527,11 @@ msgstr "Dodaj novog korisnika" msgid "Go" msgstr "Kreni" -#: gis_data_editor.php:413 +#: gis_data_editor.php:411 msgid "Output" msgstr "" -#: gis_data_editor.php:416 +#: gis_data_editor.php:414 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -541,7 +543,7 @@ msgstr "" msgid "Succeeded" msgstr "Ulaz nije dozvoljen!" -#: import.php:59 js/messages.php:588 +#: import.php:59 js/messages.php:589 msgid "Failed" msgstr "" @@ -598,7 +600,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:669 libraries/sql.lib.php:744 libraries/sql.lib.php:1468 +#: import.php:669 libraries/sql.lib.php:754 libraries/sql.lib.php:1485 #, fuzzy, php-format msgid "Bookmark %s has been created." msgstr "Tabela %s je odbačena" @@ -625,7 +627,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "" -#: import_status.php:111 js/messages.php:444 libraries/Util.php:797 +#: import_status.php:111 js/messages.php:445 libraries/Util.php:797 #: libraries/export.lib.php:523 #: libraries/plugins/schema/ExportRelationSchema.php:301 user_password.php:268 msgid "Back" @@ -650,7 +652,7 @@ msgstr "" msgid "General settings" msgstr "Opšte osobine relacija" -#: index.php:191 js/messages.php:617 +#: index.php:191 js/messages.php:618 #: libraries/display_change_password.lib.php:54 #: libraries/display_change_password.lib.php:57 user_password.php:262 msgid "Change password" @@ -774,7 +776,11 @@ msgstr "" msgid "List of changes" msgstr "Nema izmjena" -#: index.php:453 +#: index.php:438 libraries/server_plugins.lib.php:83 +msgid "License" +msgstr "" + +#: index.php:460 #, fuzzy #| msgid "" #| "Your configuration file contains settings (root with no password) that " @@ -792,21 +798,21 @@ msgstr "" "ovim podešavanjima, otvoren je za hakovanje, i zaista treba da ispravite " "ovaj sigurnosni rizik." -#: index.php:470 +#: index.php:477 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: index.php:485 +#: index.php:492 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: index.php:502 +#: index.php:509 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than " @@ -814,17 +820,17 @@ msgid "" "expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:521 +#: index.php:528 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:537 +#: index.php:544 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Konfiguraciona datoteka zahtjeva tajnu lozinku (blowfish_secret)." -#: index.php:550 +#: index.php:557 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. It is strongly recommended to remove it " @@ -832,7 +838,7 @@ msgid "" "may be compromised by unauthorized people downloading your configuration." msgstr "" -#: index.php:566 +#: index.php:573 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -844,19 +850,19 @@ msgstr "" "Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste " "saznali zašto, kliknite %sovde%s." -#: index.php:573 +#: index.php:580 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" -#: index.php:619 +#: index.php:626 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: index.php:647 +#: index.php:654 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -877,7 +883,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "Da li stvarno hoćete da " -#: js/messages.php:45 libraries/mult_submits.lib.php:397 +#: js/messages.php:45 libraries/mult_submits.lib.php:402 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1037,7 +1043,7 @@ msgid "Save & close" msgstr "Sačuvaj kao datoteku" #: js/messages.php:109 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1551 prefs_manage.php:364 +#: libraries/insert_edit.lib.php:1558 prefs_manage.php:364 #: prefs_manage.php:375 msgid "Reset" msgstr "Resetuj" @@ -1112,10 +1118,10 @@ msgstr "Dodaj novo polje" msgid "You have to add at least one column." msgstr "Morate izabrati bar jednu kolonu za prikaz" -#: js/messages.php:129 libraries/insert_edit.lib.php:1549 +#: js/messages.php:129 libraries/insert_edit.lib.php:1556 #: templates/columns_definitions/column_definitions_form.phtml:159 #: templates/table/index_form.phtml:237 -#: templates/table/relation/common_form.phtml:108 +#: templates/table/relation/common_form.phtml:127 msgid "Preview SQL" msgstr "" @@ -1168,8 +1174,8 @@ msgstr "Lozinke nisu identične!" msgid "Removing Selected Users" msgstr "Ukloni izabrane korisnike" -#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:461 -#: libraries/tracking.lib.php:831 +#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:471 +#: libraries/tracking.lib.php:841 msgid "Close" msgstr "" @@ -1196,7 +1202,7 @@ msgstr "Red je obrisan" #. l10n: Other, small valued, queries #: js/messages.php:155 libraries/ServerStatusData.php:130 -#: libraries/server_status_queries.lib.php:148 +#: libraries/server_status_queries.lib.php:150 msgid "Other" msgstr "" @@ -1376,7 +1382,7 @@ msgstr "Operacije" msgid "Traffic" msgstr "Saobraćaj" -#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4330 +#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4331 #: libraries/server_status_monitor.lib.php:258 #, fuzzy #| msgid "General relation features" @@ -1391,9 +1397,9 @@ msgstr "" msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:216 libraries/DisplayResults.php:1477 +#: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1510,7 +1516,7 @@ msgstr "Opšte osobine relacija" msgid "Current settings" msgstr "Opšte osobine relacija" -#: js/messages.php:253 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:253 #, fuzzy #| msgid "Import files" msgid "Chart title" @@ -1598,21 +1604,21 @@ msgstr "" msgid "Explain output" msgstr "Objasni SQL" -#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4326 +#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4327 #: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:396 #: libraries/rte/rte_list.lib.php:104 -#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:282 -#: libraries/tracking.lib.php:1623 +#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:284 +#: libraries/tracking.lib.php:1639 msgid "Status" msgstr "Status" -#: js/messages.php:289 js/messages.php:870 +#: js/messages.php:289 js/messages.php:862 #: libraries/plugins/export/ExportHtmlword.php:484 #: libraries/plugins/export/ExportOdt.php:600 #: libraries/plugins/export/ExportTexytext.php:445 #: libraries/plugins/export/PMA_ExportPdf.php:314 #: libraries/rte/rte_list.lib.php:93 -#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:239 +#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:243 msgid "Time" msgstr "Vrijeme" @@ -1708,10 +1714,10 @@ msgid "" msgstr "" #: js/messages.php:322 libraries/Menu.php:355 libraries/Menu.php:457 -#: libraries/Menu.php:578 libraries/Util.php:4329 libraries/Util.php:4344 -#: libraries/Util.php:4361 libraries/config/messages.inc.php:260 +#: libraries/Menu.php:578 libraries/Util.php:4330 libraries/Util.php:4345 +#: libraries/Util.php:4362 libraries/config/messages.inc.php:260 #: libraries/display_import.lib.php:108 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:241 +#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:241 #: setup/frames/menu.inc.php:26 #, fuzzy msgid "Import" @@ -1775,7 +1781,13 @@ msgstr "" msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 libraries/server_variables.lib.php:159 +#: js/messages.php:343 +#, fuzzy +#| msgid "Add new field" +msgid "No parameters found!" +msgstr "Dodaj novo polje" + +#: js/messages.php:347 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 @@ -1786,70 +1798,70 @@ msgstr "" msgid "Cancel" msgstr "" -#: js/messages.php:349 libraries/Header.php:457 +#: js/messages.php:350 libraries/Header.php:457 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" msgstr "Opšte osobine relacija" -#: js/messages.php:350 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:351 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:353 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:354 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:124 #, fuzzy msgid "Loading…" msgstr "Lokalni" -#: js/messages.php:354 +#: js/messages.php:355 msgid "Request aborted!!" msgstr "" -#: js/messages.php:355 +#: js/messages.php:356 #, fuzzy #| msgid "Processes" msgid "Processing request" msgstr "Procesi" -#: js/messages.php:356 +#: js/messages.php:357 #, fuzzy msgid "Request failed!!" msgstr "Vrsta upita" -#: js/messages.php:357 +#: js/messages.php:358 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Procesi" -#: js/messages.php:358 +#: js/messages.php:359 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:359 +#: js/messages.php:360 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:360 libraries/db_common.inc.php:73 +#: js/messages.php:361 libraries/db_common.inc.php:73 #: libraries/db_table_exists.lib.php:33 libraries/server_databases.lib.php:462 msgid "No databases selected." msgstr "Nije izabrana ni jedna baza." -#: js/messages.php:361 +#: js/messages.php:362 #, fuzzy #| msgid "Inside table(s):" msgid "Dropping column" msgstr "Unutar tabela:" -#: js/messages.php:362 +#: js/messages.php:363 #, fuzzy msgid "Adding primary key" msgstr "Dodaj novo polje" -#: js/messages.php:363 +#: js/messages.php:364 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1859,232 +1871,232 @@ msgstr "Dodaj novo polje" msgid "OK" msgstr "U redu" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:367 +#: js/messages.php:368 #, fuzzy msgid "Renaming databases" msgstr "Promjeni ime tabele u " -#: js/messages.php:368 +#: js/messages.php:369 #, fuzzy msgid "Copying database" msgstr "Baza ne postoji" -#: js/messages.php:369 +#: js/messages.php:370 #, fuzzy #| msgid "Charset" msgid "Changing charset" msgstr "Karakter set" -#: js/messages.php:373 libraries/Util.php:3289 +#: js/messages.php:374 libraries/Util.php:3289 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:379 +#: js/messages.php:380 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Pretraživanje" -#: js/messages.php:380 +#: js/messages.php:381 #, fuzzy msgid "Hide search results" msgstr "SQL upit" -#: js/messages.php:381 +#: js/messages.php:382 #, fuzzy msgid "Show search results" msgstr "SQL upit" -#: js/messages.php:382 +#: js/messages.php:383 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Pregled" -#: js/messages.php:383 +#: js/messages.php:384 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Brišem %s" -#: js/messages.php:387 +#: js/messages.php:388 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:388 libraries/DisplayResults.php:4832 -#: libraries/DisplayResults.php:5091 libraries/Menu.php:347 -#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3709 -#: libraries/Util.php:3710 libraries/Util.php:4328 libraries/Util.php:4343 -#: libraries/Util.php:4360 libraries/config/messages.inc.php:254 +#: js/messages.php:389 libraries/DisplayResults.php:4850 +#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 +#: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 +#: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2448 -#: libraries/server_privileges.lib.php:2527 -#: libraries/server_privileges.lib.php:2873 -#: libraries/server_privileges.lib.php:3532 -#: libraries/server_status_monitor.lib.php:321 prefs_manage.php:306 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2875 +#: libraries/server_privileges.lib.php:3543 +#: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 msgid "Export" msgstr "Izvoz" -#: js/messages.php:391 libraries/rte/rte_routines.lib.php:742 +#: js/messages.php:392 libraries/rte/rte_routines.lib.php:742 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:392 +#: js/messages.php:393 #, fuzzy, php-format #| msgid "Number of rows per page" msgid "Values for column %s" msgstr "Broj redova po strani" -#: js/messages.php:393 +#: js/messages.php:394 msgid "Values for a new column" msgstr "" -#: js/messages.php:394 +#: js/messages.php:395 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:395 +#: js/messages.php:396 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Dodaj novog korisnika" -#: js/messages.php:399 +#: js/messages.php:400 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:403 +#: js/messages.php:404 #, fuzzy msgid "Hide query box" msgstr "SQL upit" -#: js/messages.php:404 +#: js/messages.php:405 #, fuzzy msgid "Show query box" msgstr "SQL upit" -#: js/messages.php:405 libraries/Console.php:88 libraries/Console.php:217 -#: libraries/DisplayResults.php:3457 libraries/DisplayResults.php:4816 +#: js/messages.php:406 libraries/Console.php:88 libraries/Console.php:217 +#: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4834 #: libraries/Index.php:721 libraries/Util.php:727 libraries/Util.php:1238 -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:119 +#: libraries/server_user_groups.lib.php:121 #: libraries/server_variables.lib.php:242 #: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 msgid "Edit" msgstr "Promeni" -#: js/messages.php:406 libraries/Console.php:89 libraries/DbSearch.php:360 -#: libraries/DisplayResults.php:3526 libraries/DisplayResults.php:4800 +#: js/messages.php:407 libraries/Console.php:89 libraries/DbSearch.php:360 +#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4818 #: libraries/central_columns.lib.php:854 #: libraries/central_columns.lib.php:1200 libraries/display_export.lib.php:227 -#: libraries/server_user_groups.lib.php:129 -#: libraries/sql_query_form.lib.php:416 libraries/tracking.lib.php:480 +#: libraries/server_user_groups.lib.php:131 +#: libraries/sql_query_form.lib.php:417 libraries/tracking.lib.php:490 #: setup/frames/index.inc.php:187 setup/frames/index.inc.php:295 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Obriši" -#: js/messages.php:407 libraries/DisplayResults.php:915 -#: libraries/DisplayResults.php:923 +#: js/messages.php:408 libraries/DisplayResults.php:919 +#: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:408 -#: libraries/controllers/table/TableSearchController.php:435 -#: libraries/controllers/table/TableSearchController.php:920 -#: libraries/sql.lib.php:193 tbl_change.php:159 +#: js/messages.php:409 +#: libraries/controllers/table/TableSearchController.php:432 +#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "Pregledaj strane vrijednosti" -#: js/messages.php:409 +#: js/messages.php:410 msgid "No auto-saved query" msgstr "" -#: js/messages.php:410 +#: js/messages.php:411 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Promjenljiva" -#: js/messages.php:413 libraries/normalization.lib.php:889 +#: js/messages.php:414 libraries/normalization.lib.php:889 msgid "Pick" msgstr "" -#: js/messages.php:414 +#: js/messages.php:415 #, fuzzy #| msgid "No databases selected." msgid "Column selector" msgstr "Nije izabrana ni jedna baza." -#: js/messages.php:415 +#: js/messages.php:416 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Pretraživanje baze" -#: js/messages.php:417 +#: js/messages.php:418 #, 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:420 +#: js/messages.php:421 msgid "See more" msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Are you sure?" msgstr "" -#: js/messages.php:423 +#: js/messages.php:424 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Atributi" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Osnovni ključ je upravo dodan %s." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 #, fuzzy #| msgid "Change" msgid "Taking you to next step…" msgstr "Promijeni" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 #, fuzzy @@ -2092,285 +2104,285 @@ msgstr "" msgid "End of step" msgstr "Na kraju tabele" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 #, fuzzy #| msgid "None" msgid "Done" msgstr "nema" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Nije izabrana ni jedna baza." -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Dodaj privilegije na slijedećoj tabeli" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Nije izabrana ni jedna baza." -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Sačuvaj" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy msgid "Hide search criteria" msgstr "SQL upit" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy msgid "Show search criteria" msgstr "SQL upit" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Pretraživanje" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Imena kolona" -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Imena kolona" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy msgid "Hide find and replace criteria" msgstr "SQL upit" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy msgid "Show find and replace criteria" msgstr "SQL upit" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Dodaj/obriši kolonu" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Table of contents" msgid "Data point content" msgstr "Sadržaj" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignoriši" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "" -#: js/messages.php:508 +#: js/messages.php:509 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Linije se završavaju sa" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Add a new User" msgid "Inner ring" msgstr "Dodaj novog korisnika" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Linije se završavaju sa" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Broj strane:" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 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:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgctxt "PDF" @@ -2378,266 +2390,231 @@ msgstr "Izaberi sve" msgid "Open page" msgstr "Zauzeće" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "Izaberi sve" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Izaberite stranu koju menjate" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 #, fuzzy #| msgid "Relational schema" msgid "Export relational schema" msgstr "Relaciona shema" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Izmjene su sačuvane" -#: js/messages.php:550 +#: js/messages.php:551 #, fuzzy, php-format #| msgid "Number of rows per page" msgid "Add an option for column \"%s\"." msgstr "Broj redova po strani" -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Pošalji" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Imena kolona" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Prikaži sve" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Lines terminated by" msgid "Original length" msgstr "Linije se završavaju sa" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Prekinuto" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 #, fuzzy msgid "Import status" msgstr "Uvoz fajlova" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Izaberi tabele" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 #, fuzzy msgid "Go to link:" msgstr "Baza ne postoji" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Imena kolona" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Promeni lozinku" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 #, fuzzy msgid "Generate" msgstr "Generirao" -#: js/messages.php:620 +#: js/messages.php:621 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pon" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Prikaži sve" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "Dodaj novo polje" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Prikaži mrežu" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 #, fuzzy msgid "Link with main panel" msgstr "Opcije za izvoz baze" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 #, fuzzy msgid "Unlink from main panel" msgstr "Opcije za izvoz baze" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 #, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "Tabele" - -#: js/messages.php:633 -#, fuzzy -msgid "views" -msgstr "Polja" - -#: js/messages.php:634 -#, fuzzy -msgid "procedures" -msgstr "Procesi" - -#: js/messages.php:635 -#, fuzzy -msgid "events" -msgstr "Poslato" - -#: js/messages.php:636 -#, fuzzy -msgid "functions" -msgstr "Funkcija" - -#: js/messages.php:640 -#, 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:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2645,135 +2622,135 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr "" -#: js/messages.php:649 +#: js/messages.php:641 #, fuzzy msgid "up to date" msgstr "Baza ne postoji" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 #, fuzzy msgid "Create view" msgstr "Verzija servera" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy msgid "Send error report" msgstr "Izbor servera" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy msgid "Submit error report" msgstr "Izbor servera" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Opšte osobine relacija" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy msgid "Show report details" msgstr "Prikaži tabele" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignoriši" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Prikaži ponovo ovaj upit" -#: js/messages.php:701 +#: js/messages.php:693 #, 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:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL upit" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Komentari tabele" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy msgid "Hide arguments" msgstr "SQL upit" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Prethodna" -#: js/messages.php:748 +#: js/messages.php:740 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2781,96 +2758,96 @@ msgid "Next" msgstr "Slijedeći" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ukupno" -#: js/messages.php:755 +#: js/messages.php:747 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binarni" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:749 #, fuzzy #| msgid "Mar" msgid "March" msgstr "mar" -#: js/messages.php:758 +#: js/messages.php:750 #, fuzzy #| msgid "Apr" msgid "April" msgstr "apr" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "maj" -#: js/messages.php:760 +#: js/messages.php:752 #, fuzzy #| msgid "Jun" msgid "June" msgstr "jun" -#: js/messages.php:761 +#: js/messages.php:753 #, fuzzy #| msgid "Jul" msgid "July" msgstr "jul" -#: js/messages.php:762 +#: js/messages.php:754 #, fuzzy #| msgid "Aug" msgid "August" msgstr "aug" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:756 #, fuzzy #| msgid "Oct" msgid "October" msgstr "okt" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2878,78 +2855,78 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "dec" -#: js/messages.php:801 +#: js/messages.php:793 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ned" -#: js/messages.php:802 +#: js/messages.php:794 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pon" -#: js/messages.php:803 +#: js/messages.php:795 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Uto" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:798 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pet" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2957,157 +2934,157 @@ msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Sri" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ned" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Uto" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sri" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Čet" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pet" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "nema" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:864 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "se koristi" -#: js/messages.php:873 +#: js/messages.php:865 #, fuzzy #| msgid "per second" msgid "Second" msgstr "u sekundi" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Koristi tekst polje" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Please select a database" msgid "Please enter a valid date" msgstr "Izaberite bazu" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "" @@ -3115,43 +3092,43 @@ msgstr "" msgid "Please enter the same value again" msgstr "" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:901 +#: js/messages.php:928 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please enter a valid date or time" msgstr "Izaberite stranu koju menjate" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Greška" @@ -3238,11 +3215,12 @@ msgstr "u upitu" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3291,7 +3269,7 @@ msgstr "" msgid "Explain" msgstr "Objasni SQL" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "" @@ -3331,8 +3309,8 @@ msgid "History" msgstr "SQL istorijat" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3513,30 +3491,30 @@ msgstr "" msgid "Switch to dark theme" msgstr "Pređi na kopiranu tabelu" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3546,8 +3524,8 @@ msgstr "" msgid "Ascending" msgstr "Rastući" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3720,8 +3698,8 @@ msgstr[0] "%s pogodaka unutar tabele %s" msgstr[1] "%s pogodaka unutar tabele %s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3772,28 +3750,28 @@ msgstr "ništa" msgid "Inside column:" msgstr "Unutar tabela:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "Dodaj/obriši kolonu" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 #, fuzzy msgid "Filter rows" msgstr "Polja" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Search in database" msgid "Search this table" msgstr "Pretraživanje baze" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 #, fuzzy #| msgid "Begin" @@ -3801,7 +3779,7 @@ msgctxt "First page" msgid "Begin" msgstr "Početak" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 #, fuzzy @@ -3810,7 +3788,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Prethodna" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 #, fuzzy @@ -3819,7 +3797,7 @@ msgctxt "Next page" msgid "Next" msgstr "Slijedeći" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 #, fuzzy #| msgid "End" @@ -3827,84 +3805,84 @@ msgctxt "Last page" msgid "End" msgstr "Kraj" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Sve" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of rows per page" msgid "Number of rows:" msgstr "Broj redova po strani" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Dio teksta" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Pun tekst" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 #, fuzzy msgid "Relational key" msgstr "Relaciona shema" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display column for relations" msgstr "Prikazujem komentare kolone" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Tranformacije čitača" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Red je obrisan" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Obustavi" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -3912,50 +3890,51 @@ msgstr "" msgid "Your SQL query has been executed successfully." msgstr "Vaš SQL upit je uspešno izvršen" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Prikaz zapisa" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "ukupno" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "Upit je trajao %01.4f sekundi" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Označeno:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3963,27 +3942,27 @@ msgstr "Označeno:" msgid "Check all" msgstr "Označi sve" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Za štampu" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Prikaži PDF shemu" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 #, fuzzy #| msgid "Link not found" msgid "Link not found!" @@ -4082,19 +4061,19 @@ msgstr "Ključ nije definisan!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Ključevi" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -4103,24 +4082,24 @@ msgid "Action" msgstr "Akcija" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Ime ključa" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Jedinstveni" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Kardinalnost" @@ -4128,8 +4107,8 @@ msgstr "Kardinalnost" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -4139,8 +4118,8 @@ msgid "Collation" msgstr "Sortiranje" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -4157,15 +4136,15 @@ msgstr "Primarni ključ je obrisan." msgid "Index %s has been dropped." msgstr "Ključ %s je obrisan." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Odbaci" @@ -4202,12 +4181,13 @@ msgstr "" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4215,7 +4195,7 @@ msgstr "Tabela" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4224,8 +4204,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4233,41 +4213,41 @@ msgid "Search" msgstr "Pretraživanje" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Novi zapis" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilegije" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Operacije" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4278,16 +4258,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Upit po primeru" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4295,22 +4275,22 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Dodaj/obriši kolonu" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Baze" @@ -4321,13 +4301,13 @@ msgid "User accounts" msgstr "Korisnik" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 #, fuzzy msgid "Binary log" msgstr "Binarni" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 #, fuzzy @@ -4335,21 +4315,21 @@ msgid "Replication" msgstr "Relacije" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Promjenljive" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Kodne strane" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4673,7 +4653,7 @@ msgstr "Ne mogu da promenim ključ u PRIMARY (primarni) !" msgid "No index parts defined!" msgstr "Dijelovi ključa nisu definisani!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5099,38 +5079,38 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "direkcija za slanje web servera " -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Direkcija koju ste izabrali za slanje nije dostupna." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Isprazni" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Štampaj" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 #, fuzzy #| msgid "User" msgid "Users" @@ -5308,8 +5288,8 @@ msgid "Add new column" msgstr "Dodaj novo polje" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5375,19 +5355,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -6220,7 +6200,7 @@ msgid "Remember file name template" msgstr "Šablon imena datoteke" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj AUTO_INCREMENT vrijednost" @@ -6264,7 +6244,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "" @@ -7933,7 +7913,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 #, fuzzy msgid "Retain query box" msgstr "SQL upit" @@ -8222,110 +8202,34 @@ msgstr "" msgid "OpenDocument Text" msgstr "Dokumentacija" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Tabela %s je ispražnjena." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format msgid "View %s has been dropped." msgstr "Polje %s je obrisano" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "Tabela %s je odbačena" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "nepoznat" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: libraries/controllers/TableStructureController.php:250 -#, fuzzy -#| msgid "No databases selected." -msgid "No column selected." -msgstr "Nije izabrana ni jedna baza." - -#: libraries/controllers/TableStructureController.php:484 -#, 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.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, fuzzy, php-format -msgid "Table %1$s has been altered successfully." -msgstr "Izabrani korisnici su uspješno obrisani." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -#, fuzzy -#| msgid "Query type" -msgid "Query error" -msgstr "Vrsta upita" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Promijeni" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Ključ" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Tekst ključ" - -#: libraries/controllers/TableStructureController.php:1201 -#, fuzzy -msgid "Distinct values" -msgstr "Pregledaj strane vrijednosti" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8341,6 +8245,14 @@ msgstr "" msgid "No data to display" msgstr "Baza ne postoji" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, fuzzy, php-format +msgid "Table %1$s has been altered successfully." +msgstr "Izabrani korisnici su uspješno obrisani." + #: libraries/controllers/table/TableRelationController.php:212 #, fuzzy #| msgid "Thread %s was successfully killed." @@ -8352,24 +8264,92 @@ msgstr "Proces %s je uspješno prekinut." msgid "Internal relations were successfully updated." msgstr "Opšte osobine relacija" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Search" msgid "Table search" msgstr "Pretraživanje" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Search" msgid "Zoom search" msgstr "Pretraživanje" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy msgid "Find and replace" msgstr "SQL upit" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: libraries/controllers/table/TableStructureController.php:251 +#, fuzzy +#| msgid "No databases selected." +msgid "No column selected." +msgstr "Nije izabrana ni jedna baza." + +#: libraries/controllers/table/TableStructureController.php:485 +#, 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/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +#, fuzzy +#| msgid "Query type" +msgid "Query error" +msgstr "Vrsta upita" + +#: libraries/controllers/table/TableStructureController.php:975 +#, fuzzy, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "Izabrani korisnici su uspješno obrisani." + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Promijeni" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Ključ" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Tekst ključ" + +#: libraries/controllers/table/TableStructureController.php:1209 +#, fuzzy +msgid "Distinct values" +msgstr "Pregledaj strane vrijednosti" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8379,7 +8359,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Nema izmjena" @@ -8452,7 +8432,7 @@ msgstr "Napravi" msgid "Create database:" msgstr "Napravi novu bazu podataka" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Nema privilegija" @@ -9187,70 +9167,70 @@ msgid "Dump has been saved to file %s." msgstr "Sadržaj baze je sačuvan u fajl %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan rezultat (nula redova)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Baza ne postoji" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Baza ne postoji" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Samo struktura" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" @@ -9274,78 +9254,78 @@ msgstr "Funkcija" msgid "Binary" msgstr "Binarni" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "Zbog njehove veličine, polje
možda nećete moći da izmenite" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Binarni - ne mijenjaj" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "ili" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "direkcija za slanje web servera" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Novi zapis" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Unesi kao novi red" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Nazad na prethodnu stranu" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Dodaj još jedan novi red" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 #, fuzzy msgid "Go back to this page" msgstr "Nazad na prethodnu stranu" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9357,11 +9337,11 @@ msgstr "" msgid "Value" msgstr "Vrijednost" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9379,45 +9359,45 @@ msgstr "nema" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix:" msgstr "Zamijeni podatke u tabeli sa podatcima iz datoteke" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix:" msgstr "Zamijeni podatke u tabeli sa podatcima iz datoteke" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Pet" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Add new field" msgid "Add table prefix:" msgstr "Dodaj novo polje" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 #, fuzzy #| msgid "Add new field" msgid "Add prefix" msgstr "Dodaj novo polje" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -9648,8 +9628,8 @@ msgstr "Procesi" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Prikaži" @@ -9690,10 +9670,9 @@ msgstr[1] "" msgstr[2] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "Alter table order by" -msgid "Filter databases by name or regex" -msgstr "Promijeni redoslijed u tabeli" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -9702,12 +9681,6 @@ msgstr "Promijeni redoslijed u tabeli" msgid "Clear fast filter" msgstr "Sačuvaj kao datoteku" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "Alter table order by" -msgid "Filter by name or regex" -msgstr "Promijeni redoslijed u tabeli" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -10106,7 +10079,7 @@ msgstr "Promjeni ime tabele u " #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10117,7 +10090,7 @@ msgstr "Nije Vam dozvoljeno da budete ovdje!" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -10139,18 +10112,18 @@ msgstr "Promjeni ime tabele u " msgid "Drop the database (DROP)" msgstr "Baza ne postoji" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Samo struktura" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Struktura i podatci" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Samo podaci" @@ -10163,7 +10136,7 @@ msgstr "Baza ne postoji" msgid "CREATE DATABASE before copying" msgstr "" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "" @@ -10204,63 +10177,63 @@ msgstr "" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Kopiraj tabelu u (baza.tabela)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Pređi na kopiranu tabelu" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Radnje na tabeli" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Analiziraj tabelu" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Provjeri tabelu" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Provjeri tabelu" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "Tabela %s je osvežena." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Osvježi tabelu (\"FLUSH\")" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Optimiziraj tabelu" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Popravi tabelu" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 #, fuzzy @@ -10268,106 +10241,106 @@ msgstr "Popravi tabelu" msgid "Delete data or table" msgstr "Prikaz podataka tabele" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 #, fuzzy msgid "Delete the table (DROP)" msgstr "Baza ne postoji" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 #, fuzzy msgid "Check" msgstr "Češki" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 #, fuzzy msgid "Repair" msgstr "Popravi tabelu" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy msgid "Coalesce" msgstr "Nema tabela" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 #, fuzzy msgid "Partition maintenance" msgstr "Radnje na tabeli" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Proveri referencijalni integritet:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Ne mogu da premjestim tabelu u samu sebe!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Ne mogu da kopiram tabelu u samu sebe!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabela %s je pomjerena u %s." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabela %s je kopirana u %s." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabela %s je pomjerena u %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s je kopirana u %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Ima tabele je prazno!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10553,7 +10526,7 @@ msgstr "Opcije za izvoz baze" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Prikaz podataka tabele" @@ -10580,14 +10553,14 @@ msgstr "Opis" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Struktura tabele" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 #, fuzzy msgid "Structure for view" @@ -10595,7 +10568,7 @@ msgstr "Samo struktura" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10707,7 +10680,7 @@ msgid "Database:" msgstr "Baza podataka" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10820,7 +10793,7 @@ msgid "Data creation options" msgstr "Opcije transformacije" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -10889,8 +10862,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10898,97 +10871,97 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Export" msgid "Metadata" msgstr "Izvoz" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 #, fuzzy #| msgid "Creation" msgid "Creation:" msgstr "Napravljeno" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 #, fuzzy #| msgid "Last update" msgid "Last update:" msgstr "Posljednja izmjena" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 #, fuzzy #| msgid "Last check" msgid "Last check:" msgstr "Posljednja provjera" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "se koristi" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for dumped tables" msgstr "Unutar tabela:" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "Unutar tabela:" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Dodaj AUTO_INCREMENT vrijednost" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Dodaj AUTO_INCREMENT vrijednost" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Samo struktura" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11241,9 +11214,9 @@ msgstr "Relaciona shema" msgid "Table of contents" msgstr "Sadržaj" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Dodatno" @@ -11454,60 +11427,60 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been added." msgstr "Izmjene su sačuvane" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Datoteku nije moguće pročitati" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy msgid "Internal relation has been added." msgstr "Opšte osobine relacija" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be added!" msgstr "Datoteku nije moguće pročitati" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been removed." msgstr "Izmjene su sačuvane" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Datoteku nije moguće pročitati" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be removed!" msgstr "Datoteku nije moguće pročitati" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy msgid "Internal relation has been removed." msgstr "Opšte osobine relacija" @@ -11563,108 +11536,108 @@ msgid "Please see the documentation on how to update your column_info table. " msgstr "" "Molimo pogledajte u dokumentaciji kako se ažurira tabela Column_comments." -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Obilježen SQL-upit" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL istorijat" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy msgid "Persistent favorite tables" msgstr "Vrsta upita" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Modifications have been saved" msgid "Configurable menus" msgstr "Izmjene su sačuvane" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Rename table to" msgid "Remembering Designer Settings" msgstr "Promjeni ime tabele u " -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy msgid "Saving export templates" msgstr "Nema tabela" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "nema opisa" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11846,8 +11819,8 @@ msgstr "Ime korisnika" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Ime korisnika" @@ -11855,7 +11828,7 @@ msgstr "Ime korisnika" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Lozinka" @@ -12545,7 +12518,7 @@ msgstr[1] "%s baza je uspješno odbačena." msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 #, fuzzy msgid "Version" msgstr "verzija PHP-a" @@ -12554,101 +12527,97 @@ msgstr "verzija PHP-a" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Onemogućeno" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Nema privilegija." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Uključuje sve privilegije osim GRANT." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Dozvoljava čitanje podataka." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Dozvoljava umetanje i zamjenu podataka." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Dozvoljava izmenu podataka." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Dozvoljava brisanje podataka." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Dozvoljava kreiranje novih baza i tabela." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Dozvoljava odbacivanje baza i tabela." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Dozvoljava ponovno učitavanje podešavanja servera i pražnjenje keša servera." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Dozvoljava gašenje servera." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "Dozvoljava uvoz podataka i njihov izvoz u datoteke." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "Nema efekta u ovoj verziji MySQL-a." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Dozvoljava kreiranje i brisanje ključeva." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Dozvoljava izmjenu struktura postojećih tabela." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Daje pristup kompletnoj listi baza." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12659,71 +12628,71 @@ msgstr "" "promenljivih ili prekidanje procesa ostalih korisnika." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Dozvoljava kreiranje privremenih tabela.." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Dozvoljava zaključavanje tabela tekućim procesima." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Potrebno zbog pomoćnih servera za replikaciju." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "Daje pravo korisniku da pita gde su glavni/pomoćni serveri." #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 #, fuzzy msgid "Allows creating new views." msgstr "Dozvoljava kreiranje novih tabela." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 #, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Allows to set up events for the event scheduler." msgstr "Dozvoljava zaključavanje tabela tekućim procesima." #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 #, fuzzy msgid "Allows creating and dropping triggers." msgstr "Dozvoljava kreiranje i brisanje ključeva." #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 #, fuzzy msgid "Allows creating stored routines." msgstr "Dozvoljava kreiranje novih tabela." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Dozvoljava kreiranje i brisanje ključeva." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -12737,8 +12706,8 @@ msgstr "nema" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12782,12 +12751,12 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Napomena: Postavljanje ovih opcija na 0 (nulu) uklanja limite." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Ograničava broj upita koje korisnik može da uputi serveru za sat." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12796,20 +12765,20 @@ msgstr "" "izvrši na sat." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Add new field" @@ -12817,7 +12786,7 @@ msgid "Routine" msgstr "Dodaj novo polje" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12836,14 +12805,14 @@ msgstr "Dozvoljava kreiranje novih tabela." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Privilegije vezane za tabele" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -12855,7 +12824,7 @@ msgid "Administration" msgstr "Administracija" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Globalne privilegije" @@ -12866,15 +12835,15 @@ msgid "Global" msgstr "globalno" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Privilegije vezane za bazu" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Dozvoljava kreiranje novih tabela." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Dozvoljava odbacivanje tabela." @@ -12897,7 +12866,7 @@ msgid "Native MySQL Authentication" msgstr "Dokumentacija" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Podatci o prijavi" @@ -12922,8 +12891,8 @@ msgstr "Ime korisnika" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Column names" msgid "Host name" @@ -12945,242 +12914,242 @@ msgstr "Dokumentacija" msgid "Password Hashing Method" msgstr "Lozinka:" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "Lozinka za %s je uspješno promjenjena." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Zabranili ste privilegije za %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Bilo koji korisnik" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database export options" msgid "Database for user account" msgstr "Opcije za izvoz baze" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, fuzzy, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Provjeri privilegije za bazu \"%s\"." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Korisnici koji imaju pristup \"%s\"" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 #, fuzzy msgid "User has been added." msgstr "Polje %s je obrisano" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Omogući" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Korisnik nije nađen." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Bilo koji" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "globalno" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "Specifično za bazu" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "Džoker" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Specifično za bazu" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Promijeni privilegije" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Zabrani" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… sačuvaj stare." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… obriši stare iz tabela korisnika." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… obustavi sve privilegije starog korisnika i zatim ga obriši." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… obriši starog iz tabele korisnika i zatim ponovo učitaj privilegije." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Promeni informacije o prijavi / Kopiraj korisnika" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Napravi novog korisnika sa istim privilegijama i …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Privilegije vezane za kolone" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Ukloni izabrane korisnike" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Obustavi sve aktivne privilegije korisnika i zatim ih obriši." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "Odbaci baze koje se zovu isto kao korisnici." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Ponovo učitavam privilegije" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Izabrani korisnici su uspješno obrisani." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Ažurirali ste privilegije za %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "Brišem %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspešno ponovo učitane." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "Korisnik %s već postoji!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilegije" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Korisnik" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Promijeni privilegije" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "User" msgid "User account" msgstr "Korisnik" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Pregled korisnika" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13193,7 +13162,7 @@ msgstr "" "server koristi ako su izvršene ručne izmjene. U tom slučaju %sponovo " "učitajte privilegije%s pre nego što nastavite." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13212,11 +13181,11 @@ msgstr "" "server koristi ako su izvršene ručne izmjene. U tom slučaju %sponovo " "učitajte privilegije%s pre nego što nastavite." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Dodali ste novog korisnika." @@ -13458,33 +13427,33 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 #, fuzzy msgid "Refresh rate" msgstr "Generirao" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Dodaj/obriši kolonu" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -13551,7 +13520,7 @@ msgid "Statements" msgstr "Ime" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -13582,34 +13551,34 @@ msgstr "Prikaži tabele" msgid "Related links:" msgstr "Relacije" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13617,78 +13586,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13696,7 +13665,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13704,42 +13673,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13747,33 +13716,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13782,243 +13751,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Karakter set datoteke:" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14026,99 +13995,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14126,18 +14095,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14145,12 +14114,12 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "Vrsta upita" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -14159,76 +14128,76 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 #, fuzzy #| msgid "User" msgid "User groups" msgstr "Korisnik" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "Verzija servera" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Databases" msgid "Database level tabs" msgstr "Baze" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table comments" msgid "Table level tabs" msgstr "Komentari tabele" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy msgid "View users" msgstr "Bilo koji korisnik" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Any user" msgid "Add user group" msgstr "Bilo koji korisnik" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Nema privilegija." -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "Imena kolona" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Verzija servera" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Databases" msgid "Database-level tabs" msgstr "Baze" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14292,21 +14261,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14369,133 +14334,133 @@ msgstr "Tabela %s je odbačena" msgid "Variable name was expected." msgstr "Šablon imena datoteke" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Na početku tabele" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Red je obrisan" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 #, fuzzy msgid "Detailed profile" msgstr "Samo podaci" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy msgid "State" msgstr "Status" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Ukupno" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Vrijeme" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Vrijeme" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Obilježi SQL-upit" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Label" msgid "Label:" msgstr "Naziv" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -14526,29 +14491,29 @@ msgstr "" msgid "Bind parameters" msgstr "Dodaj novo polje" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 #, fuzzy #| msgid "Bookmark this SQL query" msgid "Bookmark this SQL query:" msgstr "Obilježi SQL-upit" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Prikaži ponovo ovaj upit" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Vidi samo" @@ -14593,106 +14558,106 @@ msgstr "" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Kreirano" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy msgid "Delete version" msgstr "Verzija servera" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 #, fuzzy msgid "Structure snapshot" msgstr "Samo struktura" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Dozvoljava umetanje i zamjenu podataka." -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Baza ne postoji" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 #, fuzzy msgid "Date" msgstr "Podaci" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 #, fuzzy msgid "Username" msgstr "Korisničko ime:" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -14700,78 +14665,78 @@ msgctxt "None for default" msgid "None" msgstr "nema" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Verzija servera" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 #, fuzzy msgid "Track table" msgstr "Provjeri tabelu" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking" msgstr "Dozvoljava umetanje i zamjenu podataka." -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Verzije" @@ -14781,13 +14746,13 @@ msgstr "Verzije" msgid "Manage your settings" msgstr "Opšte osobine relacija" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." msgstr "Izmjene su sačuvane" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14888,7 +14853,7 @@ msgstr "Baza ne postoji" msgid "View dump (schema) of databases" msgstr "Prikaži sadržaj (shemu) baze" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14914,7 +14879,7 @@ msgid "" msgstr "" "phpMyAdmin nije mogao da prekine proces %s. Vjerovatno je već zatvoren." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -15852,52 +15817,58 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Import files" +msgid "Chart title:" +msgstr "Uvoz fajlova" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 #, fuzzy msgid "Series:" msgstr "SQL upit" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Vrijednost" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Vrijednost" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside table(s):" msgid "Series column:" msgstr "Unutar tabela:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Number of rows per page" msgid "Value Column:" msgstr "Broj redova po strani" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -15961,52 +15932,53 @@ msgstr "Komentari" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 -#, fuzzy -msgid "Internal relations" -msgstr "Opšte osobine relacija" - -#: templates/table/relation/common_form.phtml:11 -#, fuzzy -msgid "Internal relation" -msgstr "Opšte osobine relacija" - -#: templates/table/relation/common_form.phtml:14 -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "" - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 msgid "Foreign key constraints" msgstr "" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 msgid "Actions" msgstr "Akcija" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 #, fuzzy #| msgid "Column names" msgid "Constraint properties" msgstr "Imena kolona" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 #, fuzzy #| msgid "Add a new User" msgid "+ Add constraint" msgstr "Dodaj novog korisnika" -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +#, fuzzy +msgid "Internal relations" +msgstr "Opšte osobine relacija" + +#: templates/table/relation/common_form.phtml:80 +#, fuzzy +msgid "Internal relation" +msgstr "Opšte osobine relacija" + +#: templates/table/relation/common_form.phtml:83 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "" + +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -16160,7 +16132,7 @@ msgid "at beginning of table" msgstr "Na početku tabele" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Relations" msgid "Partitions" @@ -16205,7 +16177,7 @@ msgstr "Relacije" msgid "Edit partitioning" msgstr "Dodaj novo polje" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -17449,6 +17421,37 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "Tabele" + +#, fuzzy +#~ msgid "views" +#~ msgstr "Polja" + +#, fuzzy +#~ msgid "procedures" +#~ msgstr "Procesi" + +#, fuzzy +#~ msgid "events" +#~ msgstr "Poslato" + +#, fuzzy +#~ msgid "functions" +#~ msgstr "Funkcija" + +#, fuzzy +#~| msgid "Alter table order by" +#~ msgid "Filter databases by name or regex" +#~ msgstr "Promijeni redoslijed u tabeli" + +#, fuzzy +#~| msgid "Alter table order by" +#~ msgid "Filter by name or regex" +#~ msgstr "Promijeni redoslijed u tabeli" + #, fuzzy #~| msgid "Change" #~ msgid "Taking you to %s." diff --git a/po/ca.po b/po/ca.po index f294ecb6a2..5cfa0e27d2 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-09-28 16:49+0200\n" "Last-Translator: Xavier Navarro \n" "Language-Team: Catalan Are you sure you " "want to continue?" @@ -1957,51 +1969,51 @@ msgstr "" "Aquesta acció pot canviar la definició d'algunes columnes.
Estàs segur " "de voler continuar?" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "Continua" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "Afegir clau principal" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "S'ha afegit una clau principal." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "Portant-te al següent pas…" -#: js/messages.php:433 +#: js/messages.php:434 #, 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:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "Fi de pas" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "Segon pas de normalització (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Fet" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "Confirmar dependències parcials" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "Les dependències parcials seleccionades són:" -#: js/messages.php:440 +#: js/messages.php:441 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2009,20 +2021,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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "No s'han triat dependències parcials!" -#: js/messages.php:446 +#: js/messages.php:447 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:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "Amaga la llista de dependències parcials" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2030,167 +2042,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:452 +#: js/messages.php:453 msgid "Step" msgstr "Pas" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "Les següents accions es faràn:" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "Eliminar columnes %s de la taula %s" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "Crea la següent taula" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "Tercer pas de la normalització (3NF)" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "Confirmar dependències transitives" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "Les dependències seleccionades són:" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "No s'han triat dependències!" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Desa" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Amaga el criteri de cerca" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Mostrar criteri de cerca" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "Interval de cerca" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "Màxim de columna:" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "Mínim de columna:" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "Valor mínim:" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "Valor màxim:" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "Amaga el criteri de cerca i reemplaça" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "Mostrar el criteri de cerca i reemplaça" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "Cada punt representa una fila de dades." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "Situant el cursor sobre un punt es mostrarà la seva etiqueta." -#: js/messages.php:486 +#: js/messages.php:487 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:488 +#: js/messages.php:489 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:490 +#: js/messages.php:491 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:492 +#: js/messages.php:493 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:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "selecciona dues columnes" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "Selecciona dues columnes diferents" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "Contingut del punter de dades" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignora" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Còpia" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Punt" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Cadena de línies" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Polígon" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "Cercle interior" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "Cercle exterior" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "Vols copiar la clau de xifratge?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "Clau d'encriptació" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2198,24 +2210,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:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Tria la clau referenciada" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Tria una clau externa" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "Tria la clau principal o una clau única!" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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:532 +#: js/messages.php:533 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 +2235,77 @@ msgstr "" "No has desat els canvis en el disseny. Es perdran si no els deses. Vols " "continuar?" -#: js/messages.php:535 +#: js/messages.php:536 msgid "Page name" msgstr "Nom de pàgina" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 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:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 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:539 +#: js/messages.php:540 msgid "Delete page" msgstr "esborra la pàgina" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Sense títol" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "Tria una pàgina per continuar" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "Entra un nom de pàgina vàlid" -#: js/messages.php:544 +#: js/messages.php:545 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:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "Pàgina esborrada correctament" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "Exporta l'esquema relacional" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Les modificacions han estat desades" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "Afegeix una opció per a la columna \"%s\"." -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "%d objecte(s) creat(s)." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Envia" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "Prem la tecla escape per cancel·lar la edició." -#: js/messages.php:557 +#: js/messages.php:558 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 +2313,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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "Arrossega per reordenar." -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "Cliqueu per ordenar els resultats segons aquest columna." -#: js/messages.php:563 +#: js/messages.php:564 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 " @@ -2320,28 +2332,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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "Prem per marcar/desmarcar." -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "Feu doble clic per copiar el nom de columna." -#: js/messages.php:570 +#: js/messages.php:571 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:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Mostra tot" -#: js/messages.php:574 +#: js/messages.php:575 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." @@ -2350,13 +2362,13 @@ msgstr "" "l'edició de quadrícula, checkbox, Editar, Copiar i Esborrar enllaços poden " "no funcionar després de desar." -#: js/messages.php:578 +#: js/messages.php:579 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:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2364,127 +2376,95 @@ msgstr "" "De veritat vols veure totes les files? Una taula gran pot fer fallar el " "navegador." -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "Longitud inicial" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "Cancel.lar" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Avortat" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "Correcte" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "Importar l'estat" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Deixa anar els arxius aquí" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "Tria primer la base de dades" -#: js/messages.php:598 +#: js/messages.php:599 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:603 +#: js/messages.php:604 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:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "Vés a l'enllaç:" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "Copia el nom de la columna." -#: js/messages.php:612 +#: js/messages.php:613 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:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Genera una contrasenya" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Genera" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "Més" -#: js/messages.php:623 +#: js/messages.php:624 msgid "Show panel" msgstr "Mostra el panell" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "Amagar el panell" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "Mostra l'arbre d'ítems amagat." -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "Enllaç amb el panell principal" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "Desenllaça amb el panell principal" -#: js/messages.php:629 -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:631 -#, 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:632 -msgid "tables" -msgstr "taules" - -#: js/messages.php:633 -msgid "views" -msgstr "vistes" - -#: js/messages.php:634 -msgid "procedures" -msgstr "procediments" - -#: js/messages.php:635 -msgid "events" -msgstr "esdeveniments" - -#: js/messages.php:636 -msgid "functions" -msgstr "funcions" - -#: js/messages.php:640 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:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2494,42 +2474,42 @@ msgstr "" "actualitzar-la. La nova versió és la %s, alliberada el %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", darrera versió estable:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "actualitzat" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "Crea una vista" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "Enviar informe d'error" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "Presentar informe d'error" -#: js/messages.php:657 +#: js/messages.php:649 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:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "Canviar les configuracions de l'informe" -#: js/messages.php:660 +#: js/messages.php:652 msgid "Show report details" msgstr "Mostra el detall de l'informe" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2537,7 +2517,7 @@ msgstr "" "La vostra exportació és incomplerta degut al límit de temps d'execució massa " "baix a nivell de PHP!" -#: js/messages.php:667 +#: js/messages.php:659 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2546,59 +2526,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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "Detectats alguns errors al servidor!" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "Mira al peu d'aquesta finestra." -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "Ignora tot" -#: js/messages.php:689 +#: js/messages.php:681 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:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "Executar aquesta consulta de nou?" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "Realment vols esborrar aquesta marca?" -#: js/messages.php:703 +#: js/messages.php:695 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:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s consultes executades %s vegades en %s segons." -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "%s argument(s) correctes" -#: js/messages.php:707 +#: js/messages.php:699 msgid "Show arguments" msgstr "Mostra els arguments" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "Amaga els arguments" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "Temps dedicat:" -#: js/messages.php:711 +#: js/messages.php:703 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 " @@ -2609,291 +2589,291 @@ msgstr "" "correctament. En Safari, aixó pot estar causat pel \"Mode de Navegació " "Privada\"." -#: js/messages.php:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "Mes anterior" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "Mes següent" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Avui" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "Gener" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "Febrer" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "Març" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "Abril" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Maig" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "Juny" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "Juliol" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "Agost" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "Setembre" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "Octubre" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "Novembre" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "Desembre" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Des" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "Diumenge" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "Dilluns" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "Dimarts" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "Dimecres" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "Dijous" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "Divendres" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "Dissabte" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "Diu" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Dll" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Dma" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Dcr" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Dij" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Div" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Dis" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "Dg" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "Dl" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "Dm" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "Dc" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "Dj" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "Dv" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "Ds" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "Se" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "calendari-mes-any" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "Sufix de l'any" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Hora" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Minut" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Segon" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "Aquest camp és obligatori" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "Corregeix aquest camp" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "Entra una adreça de correu electrònic vàlida" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "Entra una URL vàlida" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "Entra una data vàlida" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "Entra una data vàlida (ISO)" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "Entra un numero vàlid" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "Entra un numero vàlid de targeta de crèdit" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "Entra només digits" @@ -2901,41 +2881,41 @@ msgstr "Entra només digits" msgid "Please enter the same value again" msgstr "Entra el mateix valor un altre cop" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "Entra no més de {0} caracters" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "Entra al menys {0} caracters" -#: js/messages.php:896 +#: js/messages.php:907 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:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "Entra un valor entre {0} i {1}" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "Entra un valor menor o igual a {0}" -#: js/messages.php:899 +#: js/messages.php:922 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:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "Entra una hora o data vàlida" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "Entra valor HEX correcte" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Error" @@ -3026,11 +3006,12 @@ msgstr "Re-consulta" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3072,7 +3053,7 @@ msgstr "Durant la sessió actual" msgid "Explain" msgstr "Explica" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Perfils" @@ -3106,8 +3087,8 @@ msgid "History" msgstr "Historial" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3254,7 +3235,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Canvia al tema <>" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3262,26 +3243,26 @@ msgstr "" "El servidor no està responent (o el sòcol del servidor local MySQL no està " "configurat correctament)." -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "El servidor no respon." -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "Comprova els permisos del directori que conté la base de dades." -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Detalls…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "La connexió de l'usuari de control ha fallat, tal com està definida ara a la " "configuració." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3291,8 +3272,8 @@ msgstr "" msgid "Ascending" msgstr "Ascendent" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3435,8 +3416,8 @@ msgstr[0] "%1$s resultat a %2$s" msgstr[1] "%1$s resultats a %2$s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3478,119 +3459,120 @@ msgstr "Desmarca tot" msgid "Inside column:" msgstr "Dins la columna:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "Desar dades editades" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "Reataurar ordre de columnes" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "Filtrar files" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "Cerca aquesta taula" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "Inici" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "Pàgina anterior" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "Pàgina següent" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "Darrera pàgina" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Tot" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Nombre de files:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Classifica per la clau" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "Textos parcials" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "Textos sencers" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Clau relacional" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 msgid "Display column for relations" msgstr "Mostra columna per a relacions" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "Mostra continguts binaris" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "Mostra contingut BLOB" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "Amagar transformació del navegador" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "Text conegut" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "Binari conegut" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "S'ha esborrat la fila." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Finalitzar" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Pot ser aproximat. Veieu [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "La vostra comanda SQL ha estat executada amb èxit." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3598,64 +3580,64 @@ msgid "" msgstr "" "Aquesta vista té al menys aques nombre de files. Consulta %sdocumentation%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "Mostrant registres %1s - %2s" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d en total, %2$d a la consulta" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "%d total" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "La consulta tarda %01.4f segons." -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Amb marca:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 msgid "Check all" msgstr "Marcar-ho tot" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Imprimeix vista" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Operacions de resultats de consultes" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Mostra el gràfic" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "Visualitzar dades GIS" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "No s'ha trobat l'enllaç!" @@ -3750,19 +3732,19 @@ msgstr "No s'ha definit l'índex!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Indexos" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3771,24 +3753,24 @@ msgid "Action" msgstr "Acció" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Nom de clau" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Única" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Comprimit" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Cardinalitat" @@ -3796,8 +3778,8 @@ msgstr "Cardinalitat" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3807,8 +3789,8 @@ msgid "Collation" msgstr "Ordenació" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3824,15 +3806,15 @@ msgstr "S'ha esborrat la clau principal." msgid "Index %s has been dropped." msgstr "S'ha esborrat l'índex %s." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Elimina" @@ -3873,12 +3855,13 @@ msgstr "Vista" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3886,7 +3869,7 @@ msgstr "Taula" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3895,8 +3878,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3904,41 +3887,41 @@ msgid "Search" msgstr "Cerca" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Insereix" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Permisos" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Operacions" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Seguiment" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3949,16 +3932,16 @@ msgstr "Disparadors" msgid "Database seems to be empty!" msgstr "La base de dades sembla buida!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Consulta segons exemple" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rutines" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3966,20 +3949,20 @@ msgstr "Rutines" msgid "Events" msgstr "Esdeveniments" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Dissenyador" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "Columnes centrals" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Bases de dades" @@ -3988,33 +3971,33 @@ msgid "User accounts" msgstr "Comptes d'usuaris" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Registre binari" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replicació" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Variables" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Jocs de caràcters" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Motors" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "Complements" @@ -4312,7 +4295,7 @@ msgstr "No pots canviar el nom d'un índex a PRIMARY!" msgid "No index parts defined!" msgstr "No s'han definit parts de l'índex!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4788,38 +4771,38 @@ msgstr "La funcionalitat %s es veu afectada per un error conegut, veieu %s" msgid "Click to toggle" msgstr "Prem per canviar" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Navega al teu ordinador:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" "Selecciona des del directori de pujada d'arxius del servidor web %s:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "No està disponible el directori indicat per pujar arxius." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "No hi ha files per pujar!" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Buida" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "Executar" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Imprimeix" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "Usuaris" @@ -4982,8 +4965,8 @@ msgid "Add new column" msgstr "Afegir una nova columna" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5051,19 +5034,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "Es necessari actualitzar a %s %s o posterior." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "Error: No coincideix un «token»" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "intent de sobreescriure la variable GLOBALS" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "possible aprofitament" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "detectat teclat numéric" @@ -5908,7 +5891,7 @@ msgid "Remember file name template" msgstr "Recorda la plantilla del nom d'arxiu" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Afegeix valor AUTO_INCREMENT" @@ -5949,7 +5932,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Afegeix %s" @@ -7674,7 +7657,7 @@ msgstr "" "Defineix si el quadre de consulta ha de romandre a la pantalla després de la " "seva presentació." -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "Mantenir el quadre de consultes" @@ -7980,101 +7963,33 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Texte OpenDocument" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "La llista de preferits és plena!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "S'ha buidat la taula %s." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "Vista %s esborrada." -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "S'ha esborrat la taula %s." -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "La llista de preferits és plena!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "desconegut" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -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.php:250 -msgid "No column selected." -msgstr "No s'han triat columnes." - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "Les columnes s'han mogut correctament." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "S'ha modificat la taula %1$s correctament." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "Error de consulta" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Canvi" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Índex" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "Espacial" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Text sencer" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "Valors diferents" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8088,6 +8003,14 @@ msgstr "No existeixen columnes numèriques a la taula per fer el gràfic." msgid "No data to display" msgstr "No hi ha dades per mostrar" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "S'ha modificat la taula %1$s correctament." + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "Columna de visualització actualitzada correctament." @@ -8096,19 +8019,79 @@ msgstr "Columna de visualització actualitzada correctament." msgid "Internal relations were successfully updated." msgstr "Relacions internes actualitzades correctament." -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "Cerca de taula" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "Cerca de zoom" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Troba i substitueix" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +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/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "No s'han triat columnes." + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "Les columnes s'han mogut correctament." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "Error de consulta" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Canvi" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Índex" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "Espacial" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Text sencer" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "Valors diferents" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8118,7 +8101,7 @@ msgstr "No es troba l'extensió %s. Comprova la configuració de PHP." msgid "possible deep recursion attack" msgstr "possible atac de recursivitat profunda" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Sense canvis" @@ -8189,7 +8172,7 @@ msgstr "Crea" msgid "Create database:" msgstr "Crear base de dades:" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Sense permisos" @@ -8925,65 +8908,65 @@ msgid "Dump has been saved to file %s." msgstr "El bolcat s'ha desat amb el nom d'arxiu %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ha retornat un conjunt buit (p.e. cap fila)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "[S'ha produït un ROLLBACK.]" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Les següents estructures han estat creades o bé alterades. Aquí pots:" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "Veure el contingut d'una estructura prement sobre el seu nom." -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Canviar qualsevol dels seus ajustaments fent clic al corresponents enllaç " "\"Opcions\"." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "Editar estructura seguint l'enllaç \"Estructura\"." -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "Anar a la base de dades %s" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "Editar configuració de %s" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "Anar a la taula: %s" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "Estructura de %s" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "Anar a la vista: %s" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "Només es poden simular consultes UPDATE i DELETE sobre una sola taula." -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8991,7 +8974,7 @@ msgstr "" "Només es poden desfer (-rollback-) consultes SQL INSERT, UPDATE, DELETE i " "REPLACE que continguin taules de motors transaccionals." -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "Crea un índex de %s columnes" @@ -9014,67 +8997,67 @@ msgstr "Funció" msgid "Binary" msgstr "Binari" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "" "A causa de la seva longitud,
aquesta columna podria no ser editable." -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Binari - no editeu" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "O" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "directori de pujada d'arxius del servidor web:" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "Edita/Insereix" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "Continua l'inserció amb %s files" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "i llavors" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Insereix com a nova fila" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "Insereix com a nova fila i ignora els errors" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "Mostra la consulta d'inserció" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Torna" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Insereix un nou registre" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Torna a aquesta pàgina" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Edita el següent registre" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9084,7 +9067,7 @@ msgstr "" "Usa la tecla TAB per moure't de valor en valor, o CTRL+fletxes per moure't " "on vulguis" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9096,11 +9079,11 @@ msgstr "" msgid "Value" msgstr "Valor" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "Mostrant consulta SQL" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "Id de la fila inserida: %1$d" @@ -9116,35 +9099,35 @@ msgstr "Cap" msgid "Convert to Kana" msgstr "Converteix a Kana" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Correcte!" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "Canvia el prefix de la taula:" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "Copia la taula amb prefix:" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "De" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "A" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "Afegir prefix de taula:" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "Afegir prefix" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "Realment vols executar la següent consulta?" @@ -9362,8 +9345,8 @@ msgstr "Procediments:" msgid "Views:" msgstr "Vistes:" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Mostra" @@ -9404,18 +9387,15 @@ msgstr[0] "%s resultat trobat" msgstr[1] "%s resultats trobats" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" -msgstr "filtrar bases de dades pel nom o expresió regular" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 msgid "Clear fast filter" msgstr "Buidar filtre ràpid" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "Filtrar pel nom o expresió regular" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "Col.lapsar tots" @@ -9841,7 +9821,7 @@ msgstr "Reanomena base de dades a" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9852,7 +9832,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Ajusta els permisos" @@ -9870,18 +9850,18 @@ msgstr "Elimina la base de dades" msgid "Drop the database (DROP)" msgstr "Esborra la base de dades (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Només l'estructura" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Estructura i dades" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Només dades" @@ -9893,7 +9873,7 @@ msgstr "Còpia base de dades a" msgid "CREATE DATABASE before copying" msgstr "Inclou CREATE DATABASE abans de copiar" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Afegeix restriccions" @@ -9933,157 +9913,157 @@ msgstr "Motor d'emmagatzematge" msgid "Change all column collations" msgstr "Canviar totes les intercalacions de columna" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Còpia taula a (base-de-dades.taula)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Canvia a una taula copiada" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Manteniment de la taula" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Analitza la taula" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Verifica la taula" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 msgid "Checksum table" msgstr "Taula de suma de comprovació" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Desfragmenta la taula" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "S'ha buidat la memòria cau de la taula %s." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "Buida la memòria cau de la taula (FLUSH)" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Optimitza la taula" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Repara la taula" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "Esborra les dades o la taula" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "Buida la taula (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "Esborra la taula (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Analitza" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Comprova" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Optimitza" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Reconstrueix" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Repara" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "Truncar" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 msgid "Coalesce" msgstr "Fusionar" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "Manteniment de particions" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "Partició %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "Elimina particionament" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Comprova la integritat referencial:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "No es pot moure la taula sobre ella mateixa!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "No es pot copiar la taula sobre ella mateixa!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Taula %s moguda a %s. Els permisos s'han ajustat." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "La taula %s s'ha copiat a %s. Els permisos s'han ajustat." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "Taula %s moguda a %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "La taula %s s'ha copiat a %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "El nom de la taula és buit!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "Aquest format no té opcions" @@ -10256,7 +10236,7 @@ msgstr "Opcions de bolcat de dades" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Bolcant dades de la taula" @@ -10280,21 +10260,21 @@ msgstr "Definició" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Estructura de la taula" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Estructura per a vista" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Estructura de suport per a vistes" @@ -10385,7 +10365,7 @@ msgid "Database:" msgstr "Base de dades:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "Dades:" @@ -10486,7 +10466,7 @@ msgid "Data creation options" msgstr "Opcions de creació de dades" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "Truncar taula abans d'inserir" @@ -10569,8 +10549,8 @@ msgstr "Sembla que la teva base de dades fa servir procediments;" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "exportar els àlies podria no funcionar correctament en tots els casos." @@ -10578,81 +10558,81 @@ msgstr "exportar els àlies podria no funcionar correctament en tots els casos." msgid "It appears your database uses functions;" msgstr "Sembla que la teva base de dades fa servir funcions;" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 msgid "Metadata" msgstr "Metadades" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "Metadades per a %s" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Creació:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Darrera actualització:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Darrera comprovació:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "en ús" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "Sembla que la teva base de dades fa servir vistes;" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Restriccions per taules bolcades" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Restriccions per la taula" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "Indexos per taules bolcades" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "Index de la taula" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT per les taules bolcades" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT per la taula" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "TIPUS MIME PER LA TAULA" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "RELACIONS DE LA TAULA" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "Sembla que la teva base de dades fa servir disparadors (-triggers-);" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, 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.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "Error llegint dades:" @@ -10894,9 +10874,9 @@ msgstr "Esquema relacional" msgid "Table of contents" msgstr "Taula de continguts" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Extra" @@ -11130,47 +11110,47 @@ msgstr "Formateig del text com a JSON amb resaltat de sintaxi." msgid "Formats text as XML with syntax highlighting." msgstr "Formateig del text com a XML amb resaltat de sintaxi." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Error: la relació ja existeix." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "S'ha afegit una relació de CLAU EXTERNA." -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Error: La relació de CLAU EXTERNA no s'ha afegit!" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "Error. Índex no trobat en columna (es)." -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "Error: Funcionalitats relacionals desactivades!" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "Afegida relació interna." -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 msgid "Error: Internal relation could not be added!" msgstr "Error: La relació interna no s'ha pogut afegir!" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 msgid "FOREIGN KEY relation has been removed." msgstr "Eliminada la relació de CLAU EXTERNA." -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Error: La relació de CLAU EXTERNA no es pot eliminar!" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 msgid "Error: Internal relation could not be removed!" msgstr "Error: La relació interna no es pot eliminar!" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "Relació interna eliminada." @@ -11215,68 +11195,68 @@ msgstr "Transformació del navegador" msgid "Please see the documentation on how to update your column_info table. " msgstr "Mira a la documentació cóm actualitzar la teva taula column_info. " -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Consulta SQL desada" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "Historial SQL" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "Taules persistents usades recentment" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 msgid "Persistent favorite tables" msgstr "Taules persistents favorites" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "Preferències de la interfície de taules persistents" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "Preferències d'usuari" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "Menus configurables" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "Amaga/mostra els elements de navegació" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "Desant cerques de Consulta-Per-Exemple" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "Gestió de la llista central de columnes" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "Recordant configuració de disseny" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 msgid "Saving export templates" msgstr "Desant exportació de plantilles" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "Passos ràpids per a activar les característiques avançades:" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "Crea les taules necessàries amb %screate_tables.sql." -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "Crea un usuari pma i dona-li accés a aquestes taules." -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -11285,16 +11265,16 @@ msgstr "" "(config.inc.php), partint, per exemple, de l'arxiu config." "sample.inc.php." -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Re-entra a phpMyAdmin per a carregar l'arxiu de configuració actualitzat." -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "sense descripció" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11304,7 +11284,7 @@ msgstr "" "d'anar a la pestanya 'Operacions' de qualsevol base de dades per establir la " "configuració d'enmagatzemament de phpMyAdmin allí." -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11313,7 +11293,7 @@ msgstr "" "%sCrea%s una base de dades de nom 'phpmyadmin' i estableix la configuració " "d'enmagatzemament de phpMyAdmin aqui." -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." @@ -11321,7 +11301,7 @@ msgstr "" "%sCrea%s la configuració d'enmagatzemamant de phpMyAdmin a la base de dades " "actual." -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11515,8 +11495,8 @@ msgstr "Nom d'usuari:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Nom d'usuari" @@ -11524,7 +11504,7 @@ msgstr "Nom d'usuari" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Contrasenya" @@ -12153,7 +12133,7 @@ msgstr[1] "S'han esborrat %1$d bases de dades correctament." msgid "Plugin" msgstr "Complement" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Versió" @@ -12161,100 +12141,96 @@ msgstr "Versió" msgid "Author" msgstr "Autor" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "Licència" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "desactivat" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Sense permisos." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Inclou tots els permisos excepte GRANT -atorgar-." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Permet llegir dades." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Permet inserir i modificar dades." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Permet canviar dades." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Permet esborrar dades." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Permet crear noves bases de dades i taules." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Permet eliminar bases de dades i taules." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permet recarregar les configuracions del servidor i buidar les seves " "memòries cau." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Permet parar el servidor." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "Permet veure processos de tots els usuaris." #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "Permet importar i exportar dades amb arxius externs." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "No té efecte en aquesta versió de MySQL." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Permet crear i eliminar indexs." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Permet alterar l'estructura de taules existents." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Dona accés a la llista completa de bases de dades." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12265,22 +12241,22 @@ msgstr "" "variables globals o bé cancel.lar fils d'execució d'altres usuaris." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Permet crear taules temporals." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Permet bloquejar taules per l'actual fil d'execució." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Es necessari per a la replicació en servidors esclaus." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Dona el dret a l'usuari de preguntar quins servidors mestres / esclaus hi ha." @@ -12288,43 +12264,43 @@ msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Permet crear noves vistes." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "Permet establir events per al planificador d'events." #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "Permet crear i eliminar disparadors -triggers-." #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permet fer consultes de tipus SHOW CREATE VIEW." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Permet crear rutines enmgatzemades." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Permet alterar i esborrar rutines enmagatzemades." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permet crear, esborrar i reanomenar comptes d'usuari." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Permet executar rutines enmagatzemades." @@ -12336,8 +12312,8 @@ msgstr "Cap" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Grup d'usuari" @@ -12382,13 +12358,13 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Nota: Es treu el limit establint aquestes opcions a 0 (zero) ." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limita el numero de consultes que pot enviar l'usuari al servidor per hora." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12397,25 +12373,25 @@ msgstr "" "o base de dades per hora." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "Limita el numero de noves connexions que pot obrir l'usuari per hora." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "Límita el nombre de connexions simultànies que l'usuari pot tenir." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Rutina" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12432,14 +12408,14 @@ msgstr "Permet executar aquesta rutina." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Permisos especifics de taula" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Nota: Els noms dels privilegis del MySQL són en idioma anglès." @@ -12449,7 +12425,7 @@ msgid "Administration" msgstr "Administració" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Permisos generals" @@ -12458,15 +12434,15 @@ msgid "Global" msgstr "Global" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Permisos específics de base de dades" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Permet crear noves taules." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Permet eliminar taules." @@ -12489,7 +12465,7 @@ msgid "Native MySQL Authentication" msgstr "Autenticació per cookies" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Informació d'Identificació" @@ -12514,8 +12490,8 @@ msgstr "Nom de servidor:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 msgid "Host name" msgstr "Nom de servidor" @@ -12533,201 +12509,201 @@ msgstr "Complement d'autenticació" msgid "Password Hashing Method" msgstr "Contrasenya Hashing:" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "La contrasenya per %s s'ha canviat correctament." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Has tret els permisos per %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 msgid "Add user account" msgstr "Afegir compte d'usuari" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 msgid "Database for user account" msgstr "Base de dades per al compte d'usuari" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "Crea una base de dades amb el mateix nom i atorga tots els permisos." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Atorga tots els permisos en un nom comodí (nomusuari\\_%)." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Atorga tots els permisos a la base de dades \"%s\"." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Usuaris amb accés a \"%s\"" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "Usuari afegit." -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Atorga" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "Permisos insuficients per veure usuaris." -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "No s'han trobat usuaris." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Qualsevol" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "específic de la base de dades" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "comodins" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "específic de la taula" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 msgid "Edit privileges" msgstr "Edita permisos" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Treu" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "Editar grup d'usuari" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… respecta l'antic." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… esborra l'antic de les taules d'usuaris." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… treu tots els permisos actius de l'antic i esborra'l després." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… esborra l'antic de les taules d'usuaris i recarrega els permisos després." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "Canvi d'Informació de connexió / Copiar el compte d'usuari" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "Crea un nou compte d'usuari amb els mateixos permisos i …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Permisos específics de rutina" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 msgid "Remove selected user accounts" msgstr "Treu els comptes d'usuaris triats" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Treu tots els permisos actius dels usuaris i els esborra després." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" "Esborra les bases de dades que tenen els mateixos noms que els usuaris." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "No s'han triat usuaris per esborrar!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Recarregant permisos" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "S'han esborrat correctament els usuaris triats." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Heu actualitzat els permisos de %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "Esborrant %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Els permisos s'han recarregat correctament." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "L'usuari %s ja existeix!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "Permisos per a %s" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Usuari" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "Nou" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 msgid "Edit privileges:" msgstr "Edita permisos:" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "Compte d'usuari" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12735,11 +12711,11 @@ msgstr "" "Nota: estàs intentant editar els permisos de l'usuari amb el que has iniciat " "la sessió actual." -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "Vista global de comptes d'usuari" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " @@ -12749,7 +12725,7 @@ msgstr "" "connectar-se. Això evita que altres usuaris es connectin si la part del host " "del seu compte permet una connexió des de qualsevol host (%)." -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12762,7 +12738,7 @@ msgstr "" "permisos que utilitza el servidor si s'han fet canvis manualment. En aquest " "cas, es necessari %srecarregar els permisos%s abans de continuar." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12776,11 +12752,11 @@ msgstr "" "cas, es necessari recarregar els permisos però, actualment, tu no tens el " "permís de RELOAD." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "No s'ha trobat l'usuari triat a la taula de permisos." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Has afegit un usuari nou." @@ -13043,24 +13019,24 @@ msgstr "Instruccions/configuració" msgid "Done dragging (rearranging) charts" msgstr "Arrosegament (reorganització) de gràfics acabada" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "Activa l'arrosegament de gràfics" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "Velocitat de refresc" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "Columnes del gràfic" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "Ordenació del gràfic" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -13068,7 +13044,7 @@ msgstr "" "La disposició dels gràfics s'emmagatzema en l'emmagatzematge local dels " "navegadors. Pots voler exportar-ho, si tens una configuració prou complicada." -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "Restaura el valor per defecte" @@ -13124,7 +13100,7 @@ msgid "Statements" msgstr "Sentències" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "#" @@ -13149,7 +13125,7 @@ msgstr "Mostra valors sense format" msgid "Related links:" msgstr "Enllaços relacionats:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -13157,11 +13133,11 @@ msgstr "" "El nombre de connexions que van ser avortades pel fet que el client va morir " "sense tancar la connexió correctament." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "La quantitat d'intents fallits de connexió al servidor MySQL." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13171,17 +13147,17 @@ msgstr "" "però que excedeixen el valor de binlog_cache_size i usen un arxiu temporal " "per desar elements de la transacció." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "El nombre de transaccions que han fet servir el registre binari temporal." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "El nombre d'intents de connexió (amb èxit o no) amb el servidor MySQL." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13193,11 +13169,11 @@ msgstr "" "incrementar el valor de tmp_table_size per fer que les taules temporals " "treballin en memòria en lloc de treballar en disc." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "Arxius temporals creats per mysqld." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13205,7 +13181,7 @@ msgstr "" "El nombre de taules temporals creades en memòria per el servidor mentre " "executa instruccions." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13213,7 +13189,7 @@ msgstr "" "El nombre de files escrites amb INSERT DELAYED en les que s'ha detectat " "quelcom error (possile clau duplicada)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13221,23 +13197,23 @@ msgstr "" "El nombre de gestors de fils de INSERT DELAYED en ús. Cada taula diferent ón " "s'usa INSERT DELAYED té el seu propi fil." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "El nombre de files escrites amb INSERT DELAYED." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "El nombre d'instruccions FLUSH executades." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "El nombre d'instruccions COMMIT internes." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "El nombre de vegades que s'ha esborrat una fila d'una taula." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13247,7 +13223,7 @@ msgstr "" "coneix quelcom taula amb el nom especificat. Aixó s'anomena descobriment. " "Handler_discover indica el nombre de taules descobertes." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13257,7 +13233,7 @@ msgstr "" "és alt, suggereix que el servidor està fent moltes cerques d'índex complet; " "per exemple, SELECT col1 FROM taula, assumint que col1 és indexat." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -13266,7 +13242,7 @@ msgstr "" "és una bona indicació de que les consultes i taules estàn indexades " "acuradament." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13276,7 +13252,7 @@ msgstr "" "Aixó s'incrementa si s'està consultant una columna d'index amb limitació de " "rang o si s'està fent una cerca d'index." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13285,7 +13261,7 @@ msgstr "" "Aquest mètode de lectura s'utilitza principalment per optimizar ORDER BY … " "DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13297,7 +13273,7 @@ msgstr "" "Probablement tens moltes consultes que fan que MySQL cerqui les taules " "senceres o bé hi ha joins que no fan servir les claus acuradament." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13309,37 +13285,37 @@ msgstr "" "taules no estàn indexades acuradament o bé les consultes no estàn fetes per " "aprofitar les avantatges dels índexos definits." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "El nombre d'instruccions ROLLBACK." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "El nombre de peticions per a actualitzar una fila en una taula." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "El nombre de peticions per a insertar una fila en una taula." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "El nombre de pàgines contenint dades (brutes o netes)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "El nombre de pàgines actualment brutes." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "El nombre de pàgines a la memòria cau que s'han demanat per ser " "actualitzades." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "El nombre de pàgines lliures." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13349,7 +13325,7 @@ msgstr "" "pàgines s'estàn llegint o escrivint actualment o no es poden actualitzar o " "esborrar per qualsevol altra raó." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13361,11 +13337,11 @@ msgstr "" "Aquest valor es pot calcular com Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "Tamany total de la memòria cau, en pàgines." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13373,7 +13349,7 @@ msgstr "" "El nombre de lectures aleatòries d'InnoDB iniciades. Aixó passa quan una " "consulta cerca en una gran part de una taula però en ordre aleatori." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13381,11 +13357,11 @@ msgstr "" "El nombre de lectures secuencials d'InnoDB iniciades. Aixó passa quan InnoDB " "fa una cerca secuencial a la taula sencera." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "El nombre de peticions de lectures lògiques que InnoDB ha fet." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13393,7 +13369,7 @@ msgstr "" "El nombre de peticions de lectures lògiques que InnoDB no pot satisfer de la " "memòria cau i ha de fer lectures de pàgines individuals." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13407,55 +13383,55 @@ msgstr "" "comptador mostra instàncies d'aquestes esperes. Si el tamany de la memòria " "cau és adequat, aquest valor sól ser petit." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "El nombre d'escriptures fetes a la memòria cau d'InnoDB." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "El nombre d'operacions fsync() aproximades." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "El nombre actual d'operacions fsync() pendents." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "El nombre actual de lectures pendents." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "El nombre actual d'escritures pendents." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "La quantitat aproximada de dades llegides, en bytes." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "El nombre total de dades llegides." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "El nombre total de dades escrites." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "La quantitat aproximada de dades escrites, en bytes." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "El nombre de dobles escriptures realitzades i el nombre de pàgines escrites " "per a aquest propòsit." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" "El nombre de dobles escriptures realitzades i el nombre de pàgines escrites " "per a aquest propòsit." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13463,35 +13439,35 @@ msgstr "" "El nombre d'esperes fetes degut al petit tamany de la memòria intermèdia del " "registre i a esperar a que s'actualitzés abans de continuar." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "El nombre de peticions d'escriptura al registre." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "El nombre d'escriptures físiques a l'arxiu de registre." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "El nombre d'escriptures fsync() fetes a l'arxiu de registre." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "El nombre d'operacions fsync pendents a l'arxiu de registre." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "Escriptures pendents a l'arxiu de registre." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "El nombre de bytes escrits a l'arxiu de registre." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "El nombre de pàgines creades." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -13500,51 +13476,51 @@ msgstr "" "comptabilitzen en pàgines; el tamany de pàgina permet convertir-lo fàcilment " "a bytes." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "El nombre de pàgines llegides." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "El nombre de pàgines escrites." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "El nombre de bloquejos de files actualment en espera." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "El temps promig en fer un bloqueig de fila, en milisegons." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "El temps total emprat en fer bloquejos de files, en milisegons." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "El temps màxim en fer un bloqueig de fila, en milisegons." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "El nombre de vegades que un bloqueig de fila ha estat en espera." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "El nombre de files esborrades de taules InnoDB." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "El nombre de files afegides a taules InnoDB." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "El nombre de files llegides de taules InnoDB." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "El nombre de files actualitzades en taules InnoDB." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13553,7 +13529,7 @@ msgstr "" "però que encara no han estat actualitzades a disc. Es coneix com a " "Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -13561,7 +13537,7 @@ msgstr "" "El nombre de blocs no usats a la memòria cau de les claus. Aquest valor es " "pot fer servir per saber quànta memòria cau de les claus s'utilitza." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13570,15 +13546,15 @@ msgstr "" "El nombre de blocs usats a la memòria cau de les claus. Aquest valor és la " "marca indicativa del màxim nombre de blocs usats mai a l'hora." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "Percentatge utilitzat de memòria cau de clau (valor calculat)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "El nombre de peticions de lectura d'un bloc de clau de la memòria cau." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13588,7 +13564,7 @@ msgstr "" "gran, llavors el valor de key_buffer_size probablement és massa petit. El " "rati de la memòria cau es pot calcular com Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13596,23 +13572,23 @@ msgstr "" "Els errors al cau de claus es calculen como la taxa de lectures físiques " "comparades amb les peticions de lectura (valor calculat)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" "El nombre de peticions d'escriptura d'un bloc de clau a la memòria cau." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "El nombre d'escriptures físiques d'un bloc de clau a disc." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Percentatge d'escriptures físiques comparades amb peticions d'escriptura " "(valor calculat)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13623,7 +13599,7 @@ msgstr "" "de consulta per a la mateixa consulta. El valor 0 vol dr que encara no s'ha " "compilat cap consulta." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13631,11 +13607,11 @@ msgstr "" "El nombre màxim de connexions que han estat en ús a la vegada des de que el " "servidor s'ha iniciat." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "El nombre de files esperant a ser escrites en cues INSERT DELAYED." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13643,20 +13619,20 @@ msgstr "" "El nombre de taules que han estat obertes. Si el nombre de taules obertes és " "gran, probablement el valor de memòria cau de taula és massa petit." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "El nombre d'arxius que estàn oberts." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "El nombre de fluxes que estàn oberts (usats principalment per a registre)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "El nombre de taules que estàn obertes." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13666,19 +13642,19 @@ msgstr "" "números alts poden indicar problemes de fragmentació, que poden ser resolts " "mitjançant una ordre FLUSH QUERY CACHE." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "La quantitat de memòria liure per a memòria cau de consultes." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "El nombre d'encerts a memòria cau." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "El nombre de consultes afegides a la memòria cau." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13691,7 +13667,7 @@ msgstr "" "l'estratègia menys recentment usada(least recently used - LRU) per decidir " "quines consultes treure de la memòria cau." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13699,19 +13675,19 @@ msgstr "" "El nombre de consultes no enviades a la memòria cau (no enviables, o no " "enviades degut al paràmetre query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "El nombre de consultes registrades a la memòria cau." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "El nombre total de blocs a la memòria cau de consultes." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "L'estat de la replicació a prova d'errades (no implementat encara)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -13719,12 +13695,12 @@ msgstr "" "El nombre de joins que no usen indexs. Si aquest valor no és 0, s'haurien de " "comprovar acuradament els indexs de les taules." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" "El nombre de joins que han usat un rang de cerca en una taula de referència." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -13733,7 +13709,7 @@ msgstr "" "cada fila. (Si aquiest valor no és 0, s'haurien de comprovar acuradament els " "indexs de les taules.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13741,16 +13717,16 @@ msgstr "" "El nombre de joins que han usat rangs a la primera taula. (Normalment no és " "crític si el valor no és molt gran.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "El nombre de joins que han fet una cerca a la primera taula sencera." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "El nombre de taules temporals obertes actualment pel fil esclau de SQL." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13758,25 +13734,25 @@ msgstr "" "Nombre total (des de l'arrencada) de vegades que el fil esclau de replicació " "de SQL ha recuperat transaccions." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Aixó és ACTIU -ON- si aquest servidor és un esclau que està connectat a un " "mestre." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "El nombre de fils que han tardat més que slow_launch_time segons a crear." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "El nombre de consultes que han tardat més que long_query_time segons." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13786,23 +13762,23 @@ msgstr "" "hagut de fer. Si aquest valor és gran, s'hauria de considerar incrementar el " "valor de la variable de sistema sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "El nombre de classificacions fetes amb rangs." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "El nombre de files classificades." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "El nombre de classificacions fetes cercant la taula." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "El nombre de vegades que un bloqueig de taula s'ha fet immediatament." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13815,7 +13791,7 @@ msgstr "" "consultes, o també dividir la taula o taules en vàries o bé utilitzar la " "replicació." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13825,11 +13801,11 @@ msgstr "" "comptar com Threads_created/Connections. Si aquest valor és vermell s'hauria " "d'augmentar el valor de thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "El nombre de connexions obertes simultàniament." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13840,11 +13816,11 @@ msgstr "" "gran, pots voler augmentar el valor de thread_cache_size. (Normalment això " "no dóna una millora de rendiment notable si es té una bona aplicació de fil.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "Taxa d'encerts del cau de fils (valor calculat)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "El nombre de fils que no estàn dormint." @@ -13853,57 +13829,57 @@ msgstr "El nombre de fils que no estàn dormint." msgid "Users of '%s' user group" msgstr "Usuaris del grup d'usuaris '%s'" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "No s'han trobat usuaris que pertanyin a aquest grup." -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "Grups d'usuaris" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "Pestanyes a nivell de servidor" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "Pestanyes a nivell de base de dades" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "Pestanyes a nivell de taula" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "Veure usuaris" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "Afegir grup d'usuaris" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "Editar grup d'usuaris: '%s'" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "Menu d'assignacions de grup d'usuaris" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "Nom de grup:" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "Pestanyes a nivell de servidor" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "Pestanyes a nivell de base de dades" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "Pestanyes a nivell de taula" @@ -13963,21 +13939,17 @@ msgstr "S'esperava un claudàtor de tancament." msgid "Unrecognized data type." msgstr "Tipus de dades desconegut." -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "Claudàtor de tancament inesperat." - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "S'ha trobat un àlies anteriorment." -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "Punt inesperat." -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 msgid "An alias was expected." msgstr "S'esperava un àlies." @@ -14033,107 +14005,107 @@ msgstr "S'esperava una cometa de tancament %1$s." msgid "Variable name was expected." msgstr "S'esperava un nom de variable." -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 msgid "Unexpected beginning of statement." msgstr "Inici no esperat de declaració." -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "Tipus de declaració no reconegut." -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "No s'ha iniciat cap transacció anteriorment." -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "Símbol (token) no esperat." -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "Aquest tipus de clàusula s'ha analitzat anteriorment." -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" "S'ha trobat una nova declaració, però no hi ha cap delimitador entre aquesta " "i la anterior." -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "Paraula clau no reconeguda." -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "S'esperava el nom de l'entitat." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 msgid "At least one column definition was expected." msgstr "S'esperava al menys la definició d'una columna." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "S'esperava una paraula clau \"RETURNS\"." -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "Perfil detallat" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "Ordre" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "Estat" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "Resum per estat" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "Temps total" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "% de Temps" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "Crides" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "ø de Temps" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Desa aquesta consulta SQL" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "Etiqueta:" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Deixa accedir a cada usuari a aquesta consulta desada" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "No s'ha creat el marcador!" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Usar el preferit \"%s\" com a pàgina de cerca per defecte." -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "Mostrant com a codi PHP" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " @@ -14143,7 +14115,7 @@ msgstr "" "graella, checkbox, Editar, Copiar i Esborrar enllaços no estan disponibles. " "%s" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " @@ -14153,7 +14125,7 @@ msgstr "" "graella, Editar, Copiar i Esborrar poden resultar en un comportament no " "desitjat. %s" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemes amb els indexs de la taula `%s`" @@ -14181,27 +14153,27 @@ msgstr "Obtenir consulta auto desada" msgid "Bind parameters" msgstr "Enllaçar paràmetres" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "Desa aquesta consulta SQL:" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Reemplaça una consulta desada ja existent amb el mateix nom" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Separador" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Mostra aquesta consulta de nou" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "Desfer (-rollback-) al acabar" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Només mirar" @@ -14245,112 +14217,112 @@ msgstr "Desactiva el seguiment per %s" msgid "Deactivate now" msgstr "Desactiva ara" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Creat" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Actualitzat" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 msgid "Delete version" msgstr "Esborra versió" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Informe de seguiment" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Instantània de l'estructura" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "actiu" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "no actiu" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "Seguiment de declaracions" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "Esborra les dades de seguiment de l'informe" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "No hi ha dades" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Mostra %1$s amb dates des de %2$s fins a %3$s per l'usuari %4$s %5$s" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "Bolcat SQL (descàrrega d'arxiu)" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "Bolcat SQL" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "Aquesta opció substituirà la taula i les dades contingudes." -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "Execució SQL" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "Exporta com %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "Declaració de manipulació de dades" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "Declaració de definició de dades" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Data" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Nom d'usuari" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Instantània de la versió %s (codi SQL)" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Cap" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "Definició de seguiment de dades eliminat correctament" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "manipulació de seguiment de dades eliminat correctament" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14358,61 +14330,61 @@ msgstr "" "Pots executar el bolcat mitjançant la creació i utilització d'una base de " "dades temporal. Si us plau, assegura't que tens els permisos per fer-ho." -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "Comenta aquestes dues línies si no les necessites." -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Declaracions SQL exportades. Copia el bolcat o executa'l." -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "Informe de seguiment per la taula `%s`" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "S'ha activat el seguiment de %1$s a la versió %2$s." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Desactivat el seguiment per %1$s a la versió %2$s." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Versió %1$s de %2$s esborrada." -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "S'ha creat la versió %1$s, activat el seguiment per %2$s." -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Taules no seguides" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Segueix taula" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Taules seguides" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Darrera versió" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "Esborra seguiment" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Versions" @@ -14420,11 +14392,11 @@ msgstr "Versions" msgid "Manage your settings" msgstr "Gestiona els teus paràmetres" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "S'a desat la configuració." -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14529,7 +14501,7 @@ msgstr "No hi ha bases de dades" msgid "View dump (schema) of databases" msgstr "Veure volcat (esquema) de les bases de dades" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14554,7 +14526,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin no pot cancel.lar el fil %s. Probablement, ja és tancat." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "Permisos insuficients per veure estadístiques de consultes." @@ -15371,43 +15343,49 @@ msgstr "Dispersió" msgid "Stacked" msgstr "Apilat" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "Títol del gràfic" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "Eix X:" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "Series:" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "Etiqueta de l'eix X:" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "Valors X" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "Etiqueta de l'eix Y:" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Valors Y" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "Els noms de les series hi són en una columna" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "Columna de series:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 msgid "Value Column:" msgstr "Valor de columna:" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "Desa el gràfic com a imatge" @@ -15462,15 +15440,41 @@ msgstr "Comentari:" msgid "Drag to reorder" msgstr "Arrossega per reordenar" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +msgid "Foreign key constraints" +msgstr "Restriccions de clau externa" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "Accions" + +#: templates/table/relation/common_form.phtml:10 +msgid "Constraint properties" +msgstr "Propietats de la restricció" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "Només es mostraran columnes amb índex. Pots definir un índex a sota." + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "Límit de clau externa" + +#: templates/table/relation/common_form.phtml:60 +msgid "+ Add constraint" +msgstr "+ Afegeix restricció" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "Relacions internes" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "Relació interna" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15478,32 +15482,7 @@ msgstr "" "No es necessita una relació interna quan existeix una relació corresponent " "de FOREIGN KEY." -#: templates/table/relation/common_form.phtml:37 -msgid "Foreign key constraints" -msgstr "Restriccions de clau externa" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "Accions" - -#: templates/table/relation/common_form.phtml:41 -msgid "Constraint properties" -msgstr "Propietats de la restricció" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "Només es mostraran columnes amb índex. Pots definir un índex a sota." - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "Límit de clau externa" - -#: templates/table/relation/common_form.phtml:83 -msgid "+ Add constraint" -msgstr "+ Afegeix restricció" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "Tria la columna a mostrar:" @@ -15631,7 +15610,7 @@ msgid "at beginning of table" msgstr "a l'inici de la taula" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 msgid "Partitions" msgstr "Particions" @@ -15670,7 +15649,7 @@ msgstr "Partició per:" msgid "Edit partitioning" msgstr "Elimina particionament" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "Editar vista" @@ -17111,6 +17090,40 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "{concurrent_insert} està establert a 0" +#~ 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" + +#~ 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" + +#~ msgid "tables" +#~ msgstr "taules" + +#~ msgid "views" +#~ msgstr "vistes" + +#~ msgid "procedures" +#~ msgstr "procediments" + +#~ msgid "events" +#~ msgstr "esdeveniments" + +#~ msgid "functions" +#~ msgstr "funcions" + +#~ msgid "Filter databases by name or regex" +#~ msgstr "filtrar bases de dades pel nom o expresió regular" + +#~ msgid "Filter by name or regex" +#~ msgstr "Filtrar pel nom o expresió regular" + +#~ msgid "Unexpected closing bracket." +#~ msgstr "Claudàtor de tancament inesperat." + #~ msgid "Username and hostname didn't change." #~ msgstr "El nom d'usuari i de servidor no s'han canviat." diff --git a/po/ckb.po b/po/ckb.po index e8742ac825..dbad0c5b4e 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-09-14 09:27+0200\n" "Last-Translator: muhammad \n" "Language-Team: Kurdish Sorani Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "بەردەوامبوون" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "زۆرکردنی نرخی سەرەکیی" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "نرخی سەرەکیی زۆر کرا." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "هەنگاوی داهاتووت…" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "کۆتایی هەنگاو" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "تەواو" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "هیچ بنکەیەکی زانیاری هەڵنەبژێراوە." -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "هەنگاو" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "سڕینەوەی خانەکانی %s لە خشتەی %s" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "خشتەکانی خوارەوە درووست بکە" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "هیچ بنکەیەکی زانیاری هەڵنەبژێراوە." -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "پاشەکەوتکردن" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "شاردنەوەی پێوانەکانی گەڕان" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "پێشاندانی پێوانەکانی گەڕان" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Table Search" msgid "Range search" msgstr "گەڕانی خشتە" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Column" msgid "Column maximum:" msgstr "ستون" -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Column" msgid "Column minimum:" msgstr "ستون" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "شاردنەوەی پێوانەکانی گەڕان" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "پێشاندانی پێوانەکانی گەڕان" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "هەر خاڵێک ڕیزە زانیاریەک دەنوێنێ." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "خستنەسەری سەر خاڵێک پێناسەکەی پێشان دەدات." -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "دوو ستون هەڵبژێرە" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "دوو ستونی جیا هەڵبژێرە" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "ناوەڕۆکی زانیاری خاڵ" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "فەرامۆشکردن" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "لەبەرگرتنەوە" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "خاڵ" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "ڕیزبه‌ندی هێڵی" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "فرە گۆشە" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "ئەندازەزانی" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "ئەڵقەی ناوەکی" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "ئەڵقەی دەرەکی:" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 msgid "Page name" msgstr "" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "پاشەکەوتکردنی پەڕە" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "کردنەوەی پەڕە" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "سڕینەوەی پەڕە" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "بێناو" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "تکایە پەڕەیەک هەڵبژێرە بۆ بەردەوامبوون" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "تکایە ناوێکی درووست بۆ پەڕە بنووسە" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "ئایا دەتەوێت گۆڕانکارییەکان پاشەکەوت بکەیت بۆ پەڕەی ئێستا؟" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "پەڕە بە سەرکەوتوویی سڕایەوە" -#: js/messages.php:546 +#: js/messages.php:547 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "دەستکاری کردن یان هەناردنی پەیوەندی نەخشە" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "گۆڕانکارییەکان پاشەکەوت کران" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "هەڵبژاردەیەک زۆر بکە بۆ خانەی \"%s\"." -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "%d یەکە درووست کران." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "escape داگرە بۆ پاشگەزبوونەوە لە گۆڕین." -#: js/messages.php:557 +#: js/messages.php:558 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?" @@ -2309,191 +2321,154 @@ msgstr "" "تۆ چەند زانیاریەکت دەستکاری کردووە و پاشەکەوت نەکراون. تۆ دڵنیای لە دەرچوونت " "لەم پەڕە پێش پاشەکەوتکردنی زانیاریەکان؟" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "ڕایکێشە بۆ ڕیزکردنەوە." -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "کرتە بکە بۆ ڕیزکردنی ئەنجام لەسەر بنەمای ئەم خانە." -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "کرتە بکە بۆ نیشانکردن / لابردنی نیشانکردن." -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "دوو کرتە بکە بۆ ڕوونووسکردنی ناوی ستون." -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "هه‌مووی ببینه‌" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Linestring" msgid "Original length" msgstr "ڕیزبه‌ندی هێڵی" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "واژلێهێنان" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "پووچەڵ کرایەوە" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "سەرکەوتووبوو" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "ئاستی هێنان" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "پەڕگەکانت لە ئێرە دابنێ" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "بنکەیەکی دراوە هەڵبژێرە لە پێشدا" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "بڕۆ بۆ بەستەر:" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "ڕوونووسکردنی ناوی بەستەر." -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "کرتەی ڕاست لەسەر ناوی ستون بکە بۆ لەبەرگرتنەوەی بۆ ناو کلیپ بۆرد." -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "دروستکردنی تێپەڕە وشە" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "دروستکردن" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "زیاتر" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "هەمووی پێشاندە" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Hide indexes" msgid "Hide panel" msgstr "شاردنەوەی نیشاندەرەکان" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Show indexes" msgid "Show hidden navigation tree items." msgstr "پێشاندانی نیشاندەرەکان" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 #, fuzzy #| msgid "Hide indexes" msgid "Link with main panel" msgstr "شاردنەوەی نیشاندەرەکان" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 #, fuzzy #| msgid "Hide indexes" msgid "Unlink from main panel" msgstr "شاردنەوەی نیشاندەرەکان" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -msgid "tables" -msgstr "خشتەکان" - -#: js/messages.php:633 -#, fuzzy -#| msgid "View" -msgid "views" -msgstr "نیشاندان" - -#: js/messages.php:634 -#, fuzzy -#| msgid "Processes" -msgid "procedures" -msgstr "پڕۆسەکان" - -#: js/messages.php:635 -#, fuzzy -#| msgid "Events" -msgid "events" -msgstr "چالاکیەکان" - -#: js/messages.php:636 -#, fuzzy -#| msgid "Function" -msgid "functions" -msgstr "فرمان" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2501,31 +2476,31 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr "، دوایین وەشانی جێگیر:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "نوێترینە" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy #| msgid "Send Error Report" msgid "Send error report" msgstr "ناردنی ڕاپۆرتی هەڵە" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "ناردنی ڕاپۆرتی هەڵە" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2533,390 +2508,390 @@ msgstr "" "هەڵەیەکی گەورەی JavaScript هاتە پێش، دەتەوێت لە ڕوودانی ئەو هەڵەیە " "ئاگادارمان بکەیتەوە؟" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "گۆڕینی ڕێکخستنەکانی ڕاپۆرت" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "وردە زانیارییەکانی ڕاپۆرت" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "تکایە چاو لە بەشی خوارەوەی ئەم پەنجەرە بکە." -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "لە بیرکردنی هەموو" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "ئایا دڵنیایت کە دەتەوێت ئەو Bookmark‌ ـە بسڕیتەوە؟" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "تێبینیەکانی خشتە" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "شاردنەوەی ئەنجامەکانی گەڕان" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "پێشتر" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "دواتر" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "ئەمڕۆ" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "کانونی دووەم" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "شوبات" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "مارت" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "نیسان" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "مایس" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "حوزەیران" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "تەموز" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "ئاب" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "ئەیلول" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "تشرینی یەکەم" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "تشرینی دووەم" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "کانونی یەکەم" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "کانوونی دووەم" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "شوبات" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "مارت" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "نیسان" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "مایس" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "حوزیران" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "تەموز" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "ئاب" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "ئەیلول" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "تشرینی یەکەم" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "تشرینی دووەم" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "کانوونی یەکەم" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "یەک شەم" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "دوو شەم" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "سێ شەم" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "چوار شەم" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "پێنج شەم" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "هەینی" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "شەممە" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "یەک شەم" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "دوو شەم" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "سێ شەم" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "چوار شەم" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "پێنج شەم" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "هەینی" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "شەممە" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "یەک شەم" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "دوو شەم" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "سێ شەم" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "چوار شەم" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "پێنج شەم" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "هەینی" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "شەممە" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "هەفتە" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "ڕۆژژمێر-مانگ-ساڵ" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "هیچ" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "كاتژمێر" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "خولەک" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "چرکە" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:878 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid email address" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:887 +#: js/messages.php:879 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid URL" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:889 +#: js/messages.php:883 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date ( ISO )" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:890 +#: js/messages.php:885 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:891 +#: js/messages.php:888 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid credit card number" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:892 +#: js/messages.php:890 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" @@ -2928,53 +2903,53 @@ msgstr "%d ژمارەی ڕیزی نادروستە." msgid "Please enter the same value again" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter at least {0} characters" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value between {0} and {1}" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:898 +#: js/messages.php:917 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value less than or equal to {0}" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:899 +#: js/messages.php:922 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value greater than or equal to {0}" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:901 +#: js/messages.php:928 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date or time" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:902 +#: js/messages.php:933 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid HEX input" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "هەڵە" @@ -3061,11 +3036,12 @@ msgstr "داواکاری" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3113,7 +3089,7 @@ msgstr "" msgid "Explain" msgstr "ڕوونکردنەوەی سیكوێڵ" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "" @@ -3155,8 +3131,8 @@ msgid "History" msgstr "" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3336,30 +3312,30 @@ msgstr "" msgid "Switch to dark theme" msgstr "بڕۆ بۆ بنکەی دراوەی ڕوونووس کراو" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3369,8 +3345,8 @@ msgstr "" msgid "Ascending" msgstr "لە سەرەتاوە بۆ کۆتایی" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3537,8 +3513,8 @@ msgstr[0] "" msgstr[1] "" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3583,121 +3559,121 @@ msgstr "هەلنەبژاردنی هەموو" msgid "Inside column:" msgstr "لە نێو خشتەی:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "پاشەکەوتکردنی زانیاری گۆڕاو" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "گەڕانەوەی ڕێزبەندی ستون" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 #, fuzzy #| msgid "Filter" msgid "Filter rows" msgstr "پاڵێو" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Search in database" msgid "Search this table" msgstr "گەڕان لە بنکەی دراو" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "دەسپێکردن" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "پێشتر" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "دواتر" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "کۆتایی" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "ڕیزکردنی بە پێی کلیل" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "تێکستە لاوەکیەکان" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "تێکستە تەواوەکان" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Inside column:" msgid "Display column for relations" msgstr "لە نێو خشتەی:" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "ڕیزەکە سڕایەوە" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "ڕایگرە" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -3705,7 +3681,8 @@ msgstr "" msgid "Your SQL query has been executed successfully." msgstr "سیكوێڵ کیوریەکەت بەسەرکەوتوویی ئەنجامدرا" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3714,43 +3691,43 @@ msgstr "" "لەم تێڕوانیینە بەلایەنی کەم ئەم ژمارە دێڕە بوونی هەیە.تکایە سەردانی " "%sبەڵگەسازی%s بکە ." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "ڕیزە پێشاندراوەکان" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "سەرجەم" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "داواکاریەکە %01.4f چرکەی خایاند" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "لەگەڵ پەڕگەی دەستنیشانکراو:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3758,25 +3735,25 @@ msgstr "لەگەڵ پەڕگەی دەستنیشانکراو:" msgid "Check all" msgstr "هەڵبژاردنی هەموو" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "پێشاندان بۆ چاپکردن" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "کردارەکانی ئەنجامی داواکاری" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "پێشاندانی هێلکاری" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 #, fuzzy #| msgid "Link not found" msgid "Link not found!" @@ -3876,19 +3853,19 @@ msgstr "هیچ نیشاندەرێک پێناسە نەکراوە‌!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "نیشاندەرەکان" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3897,24 +3874,24 @@ msgid "Action" msgstr "کردار" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "کلیلەناو" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "بێهاوتا" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "" @@ -3922,8 +3899,8 @@ msgstr "" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3933,8 +3910,8 @@ msgid "Collation" msgstr "ڕێکخستن" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3950,15 +3927,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "فڕیدان" @@ -3995,12 +3972,13 @@ msgstr "نیشاندان" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4008,7 +3986,7 @@ msgstr "خشتە" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4017,8 +3995,8 @@ msgid "SQL" msgstr "سیكوێڵ" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4026,41 +4004,41 @@ msgid "Search" msgstr "گەڕان" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "تێخستن" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "تایبەتمەندێتیەکان" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "کارەکان" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4071,16 +4049,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "پێدەچێت بنکە زانیاریەکە بەتاڵ بێت!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "داواکاری" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "ڕۆتینەکان" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4088,22 +4066,22 @@ msgstr "ڕۆتینەکان" msgid "Events" msgstr "چالاکیەکان" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "شێوەساز" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "Add columns" msgid "Central columns" msgstr "ستونەکان زیادبکە" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "بنکە زانیاریەکان" @@ -4114,33 +4092,33 @@ msgid "User accounts" msgstr "بەکارهێنەرەکان" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "تۆماری دوودانەیی" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "دووپاتکاری" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "گۆڕاوەکان" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "گورزەپیتەکان" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "بزوێنەرەکان" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "پێوەکراوەکان" @@ -4458,7 +4436,7 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4875,39 +4853,39 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 #, fuzzy #| msgid "There are no recent tables" msgid "There are no files to upload!" msgstr "هیچ خشتەیەکی تازە نیە" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "بەتاڵ" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "بەکارهێنەرەکان" @@ -5080,8 +5058,8 @@ msgid "Add new column" msgstr "زیادکردن/سڕینەوەی ستونەکان" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5143,19 +5121,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -5943,7 +5921,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "زۆرکردنی نرخی زۆربوونی خۆکارانە" @@ -5982,7 +5960,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "زیادکردن %s" @@ -7587,7 +7565,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "" @@ -7867,105 +7845,35 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "به‌ڵگه‌سازی" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "لیستی دڵخوازەکان پڕە!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "خشتەی %s خاڵی کرا." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "%s سڕایەوە" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "خشتەی %s سڕایەوە" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "لیستی دڵخوازەکان پڕە!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "نەناسراوە" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" - -#: libraries/controllers/TableStructureController.php:250 -#, fuzzy -#| msgid "No rows selected" -msgid "No column selected." -msgstr "هیچ ڕیزێک هەڵنەبژێراوە" - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "" - -#: libraries/controllers/TableStructureController.php:967 -#, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "" - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "گۆڕین" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -7981,6 +7889,14 @@ msgstr "" msgid "No data to display" msgstr "هیچ زانیاریەک نەدۆزراوە" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "" + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "" @@ -7991,25 +7907,87 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr "ڕیزەکە سڕایەوە" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Table Search" msgid "Table search" msgstr "گەڕانی خشتە" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Zoom Search" msgid "Zoom search" msgstr "زوومکردنی گەڕان" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "Hide search criteria" msgid "Find and replace" msgstr "شاردنەوەی پێوانەکانی گەڕان" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" + +#: libraries/controllers/table/TableStructureController.php:251 +#, fuzzy +#| msgid "No rows selected" +msgid "No column selected." +msgstr "هیچ ڕیزێک هەڵنەبژێراوە" + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:975 +#, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "گۆڕین" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8019,7 +7997,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8090,7 +8068,7 @@ msgstr "" msgid "Create database:" msgstr "سڕینەوەی بنکەی دراوە" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "" @@ -8788,69 +8766,69 @@ msgid "Dump has been saved to file %s." msgstr "زانیاری وەدەست هاتوو لە فایلی %s پاشەکەوت کرا." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "" @@ -8873,71 +8851,71 @@ msgstr "فرمان" msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "یان" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "گۆڕین/تێخستن" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -8949,11 +8927,11 @@ msgstr "" msgid "Value" msgstr "نرخ" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -8969,41 +8947,41 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table prefix:" msgstr "گۆڕینی پێشگری خشتە" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Copy table with prefix" msgid "Copy table with prefix:" msgstr "لەبەرگرتنەوەی خشتە لەگەڵ پێشگر" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Replace table prefix" msgid "Add table prefix:" msgstr "گۆڕینی پێشگری خشتە" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "" @@ -9231,8 +9209,8 @@ msgstr "پڕۆسەکان" msgid "Views:" msgstr "نیشاندان" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "پیشاندان" @@ -9274,22 +9252,15 @@ msgstr[0] "" msgstr[1] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "Database name" -msgid "Filter databases by name or regex" -msgstr "ناوی بنکەی دراو" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "Filter queries by word/regexp:" -msgid "Filter by name or regex" -msgstr "پاڵاوتنی داواکاریەکان بە word/regexp:" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -9685,7 +9656,7 @@ msgstr "ناوی بنکەی دراوە بگۆڕە بۆ" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9694,7 +9665,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Privileges" @@ -9714,18 +9685,18 @@ msgstr "سڕینەوەی بنکەی دراوە" msgid "Drop the database (DROP)" msgstr "سڕینەوەی بنکەی دراوە (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "تەنیا بنچینە" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "بنچینە و زانیاری" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "تەنیا زانیاری" @@ -9739,7 +9710,7 @@ msgstr "لە ڕوونووسینەوەی بنکەی دراوە بۆ" msgid "CREATE DATABASE before copying" msgstr "بنکەی دراوە درووست بکە پێش ڕوونووسکردن" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "زیادکردنی مەرج" @@ -9779,161 +9750,161 @@ msgstr "" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "شیکردنەوەى خشتە" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "پشکنینی خشتە" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "پشکنینی خشتە" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "چاکسازی خشتە" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "چاکردنی خشتە" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "داخستن" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "" @@ -10102,7 +10073,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -10126,21 +10097,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10238,7 +10209,7 @@ msgid "Database:" msgstr "بنکەی دراو" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Database" msgid "Data:" @@ -10339,7 +10310,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -10408,8 +10379,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10417,89 +10388,89 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Static data" msgid "Metadata" msgstr "زانیاری نەجوڵاو" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "درووستکردن:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "دواترین نوێکردنەوە:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "دواین پشکنین:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "بەکار دەبرێت" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy msgid "Indexes for dumped tables" msgstr "لەناو خشتە:\n" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy msgid "Indexes for table" msgstr "لەناو خشتە:\n" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "زۆرکردنی نرخی زۆربوونی خۆکارانە" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "زۆرکردنی نرخی زۆربوونی خۆکارانە" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "" @@ -10745,9 +10716,9 @@ msgstr "" msgid "Table of contents" msgstr "" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "" @@ -10911,59 +10882,59 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "ناتوانیت پەڕگە بخوێنیتەوە" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "The row has been deleted." msgid "Internal relation has been added." msgstr "ڕیزەکە سڕایەوە" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be added!" msgstr "ناتوانیت پەڕگە بخوێنیتەوە" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "The row has been deleted." msgid "FOREIGN KEY relation has been removed." msgstr "ڕیزەکە سڕایەوە" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "ناتوانیت پەڕگە بخوێنیتەوە" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be removed!" msgstr "ناتوانیت پەڕگە بخوێنیتەوە" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "The row has been deleted." msgid "Internal relation has been removed." @@ -11010,106 +10981,106 @@ msgstr "" msgid "Please see the documentation on how to update your column_info table. " msgstr "" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "There are no recent tables" msgid "Persistent favorite tables" msgstr "هیچ خشتەیەکی تازە نیە" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "هەناردنی ئەم جۆرە ڕێگەپێدراو نییە" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11285,8 +11256,8 @@ msgstr "ناوی بەکارهێنەر" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "" @@ -11294,7 +11265,7 @@ msgstr "" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "وشەی نهێنی" @@ -11916,7 +11887,7 @@ msgstr[1] "" msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "" @@ -11924,98 +11895,94 @@ msgstr "" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "" #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "" #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "" #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12023,65 +11990,65 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "" #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "" #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -12093,8 +12060,8 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12138,31 +12105,31 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12170,7 +12137,7 @@ msgid "Routine" msgstr "ڕۆتینەکان" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12185,14 +12152,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -12202,7 +12169,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "" @@ -12211,15 +12178,15 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "" @@ -12238,7 +12205,7 @@ msgid "Native MySQL Authentication" msgstr "" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "" @@ -12263,8 +12230,8 @@ msgstr "ناوی بەکارهێنەر" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Contribute" msgid "Host name" @@ -12286,230 +12253,230 @@ msgstr "ڕێکخستنەکانی هەنووکە" msgid "Password Hashing Method" msgstr "وشەی نهێنی" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "زیادکردنی بەکارهێنەر" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database client version" msgid "Database for user account" msgstr "وەشانی ڕاژەخوازی بنکەی دراوە" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Privileges" msgid "Edit privileges" msgstr "تایبەتمەندێتیەکان" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Privileges" msgid "Routine-specific privileges" msgstr "تایبەتمەندێتیەکان" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Removing Selected Users" msgid "Remove selected user accounts" msgstr "سڕینەوەی بەکارهێنەرە دەست نیشانکراوەکان" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "بەکارهێنەر" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Privileges" msgid "Edit privileges:" msgstr "تایبەتمەندێتیەکان" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "Users" msgid "User account" msgstr "بەکارهێنەرەکان" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12518,7 +12485,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12527,11 +12494,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "" @@ -12757,30 +12724,30 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -12842,7 +12809,7 @@ msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -12867,33 +12834,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12901,78 +12868,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12980,7 +12947,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12988,42 +12955,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13031,33 +12998,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13066,242 +13033,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13309,99 +13276,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13409,18 +13376,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13428,11 +13395,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -13441,75 +13408,75 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 #, fuzzy #| msgid "Users" msgid "User groups" msgstr "بەکارهێنەرەکان" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "وەشانی ڕاژە" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Database server" msgid "Database level tabs" msgstr "ڕاژەکاری بکنەی دراوە" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table comments" msgid "Table level tabs" msgstr "تێبینیەکانی خشتە" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy #| msgid "in use" msgid "View users" msgstr "بەکار دەبرێت" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "زیادکردنی بەکارهێنەر" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Username" msgid "Group name:" msgstr "ناوی بەکارهێنەر" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "وەشانی ڕاژە" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "ڕاژەکاری بکنەی دراوە" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -13573,21 +13540,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -13649,137 +13612,137 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "Number of rows" msgid "Unexpected beginning of statement." msgstr "ژمارەی ڕیزەکان" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "ڕیزەکە سڕایەوە" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 #, fuzzy #| msgid "Other" msgid "Order" msgstr "هیتر" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy #| msgid "Sat" msgid "State" msgstr "شەممە" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "هەموو کاتەکان:" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "کات" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "داخستن" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "کات" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created!" msgstr "شوێندۆز %s دروستکرا" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -13810,27 +13773,27 @@ msgstr "" msgid "Bind parameters" msgstr "ڕادە هەڵەکان!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "" @@ -13875,174 +13838,174 @@ msgstr "" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "دروستکراوە" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "بارکراوە" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Last version" msgid "Delete version" msgstr "وەشانی کۆتا" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "ڕاپۆرتە شوێنکەتووەکان" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "وێنەی پێکهاتە" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "چالاک" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "ناچالاکە" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "ناوی بەکارهێنەر" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "خشتە شوێن نەکەوتوەکان" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "شوێنکەوتنی خشتە" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "شوێنکەوتەی خشتە" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "وەشانی کۆتا" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "سڕینەوەی لێکۆڵینەوە" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "وەشانەکان" @@ -14050,11 +14013,11 @@ msgstr "وەشانەکان" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14153,7 +14116,7 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14178,7 +14141,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -15033,47 +14996,53 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart Title" +msgid "Chart title:" +msgstr "ناونیشانی هێلکاری" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "نرخەکانی Y" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside column:" msgid "Series column:" msgstr "لە نێو خشتەی:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Values for column %s" msgid "Value Column:" msgstr "نرخەکانی ستونی %s" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "" @@ -15134,56 +15103,57 @@ msgstr "لێدوان" msgid "Drag to reorder" msgstr "ڕایکێشە بۆ ڕیزکردنەوە" -#: templates/table/relation/common_form.phtml:7 -#, fuzzy -#| msgid "The row has been deleted." -msgid "Internal relations" -msgstr "ڕیزەکە سڕایەوە" - -#: templates/table/relation/common_form.phtml:11 -msgid "Internal relation" -msgstr "" - -#: templates/table/relation/common_form.phtml:14 -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "" - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 #, fuzzy #| msgid "Add constraints" msgid "Foreign key constraints" msgstr "زیادکردنی مەرج" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 #, fuzzy #| msgid "Action" msgid "Actions" msgstr "کردار" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 #, fuzzy #| msgid "Contribute" msgid "Constraint properties" msgstr "بەشداری کردن" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "زیادکردنی مەرج" -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +#, fuzzy +#| msgid "The row has been deleted." +msgid "Internal relations" +msgstr "ڕیزەکە سڕایەوە" + +#: templates/table/relation/common_form.phtml:80 +msgid "Internal relation" +msgstr "" + +#: templates/table/relation/common_form.phtml:83 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "" + +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "Choose column to display:" @@ -15330,7 +15300,7 @@ msgid "at beginning of table" msgstr "ژمارەی ڕیزەکان" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Partial texts" msgid "Partitions" @@ -15375,7 +15345,7 @@ msgstr "تێکستە لاوەکیەکان" msgid "Edit partitioning" msgstr "چاکردنی نیشاندەر" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "" @@ -16559,6 +16529,39 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "نرخی concurrent_insert ڕێکخراوە بۆ 0" +#~ msgid "tables" +#~ msgstr "خشتەکان" + +#, fuzzy +#~| msgid "View" +#~ msgid "views" +#~ msgstr "نیشاندان" + +#, fuzzy +#~| msgid "Processes" +#~ msgid "procedures" +#~ msgstr "پڕۆسەکان" + +#, fuzzy +#~| msgid "Events" +#~ msgid "events" +#~ msgstr "چالاکیەکان" + +#, fuzzy +#~| msgid "Function" +#~ msgid "functions" +#~ msgstr "فرمان" + +#, fuzzy +#~| msgid "Database name" +#~ msgid "Filter databases by name or regex" +#~ msgstr "ناوی بنکەی دراو" + +#, fuzzy +#~| msgid "Filter queries by word/regexp:" +#~ msgid "Filter by name or regex" +#~ msgstr "پاڵاوتنی داواکاریەکان بە word/regexp:" + #, fuzzy #~| msgid "Tracking report" #~ msgid "Taking you to %s." diff --git a/po/cs.po b/po/cs.po index d61e927b46..8e2e9a1287 100644 --- a/po/cs.po +++ b/po/cs.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-11-12 10:29+0000\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Czech " -"\n" +"Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,7 +17,7 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 2.5-dev\n" -#: changelog.php:37 license.php:30 +#: changelog.php:37 license.php:33 #, php-format msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " @@ -39,7 +39,7 @@ msgstr "Klikněte pro seřazení." msgid "Showing rows %1$s - %2$s." msgstr "Zobrazeny záznamy %1$s - %2$s." -#: db_create.php:61 +#: db_create.php:62 #, php-format msgid "Database %1$s has been created." msgstr "Byla vytvořena databáze %1$s." @@ -48,13 +48,13 @@ msgstr "Byla vytvořena databáze %1$s." msgid "Database comment" msgstr "Komentář k databázi" -#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:601 +#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:599 #: templates/columns_definitions/column_definitions_form.phtml:84 msgid "Table comments:" msgstr "Komentář k tabulce:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1568 +#: libraries/insert_edit.lib.php:1575 #: libraries/navigation/nodes/NodeColumn.php:34 #: libraries/plugins/export/ExportHtmlword.php:288 #: libraries/plugins/export/ExportHtmlword.php:384 @@ -64,13 +64,14 @@ msgstr "Komentář k tabulce:" #: libraries/plugins/export/ExportTexytext.php:282 #: libraries/plugins/export/ExportTexytext.php:373 #: libraries/plugins/export/PMA_ExportPdf.php:472 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:882 libraries/tracking.lib.php:978 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 +#: libraries/tracking.lib.php:892 libraries/tracking.lib.php:990 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:10 -#: templates/table/relation/common_form.phtml:43 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:27 +#: templates/table/relation/common_form.phtml:79 #: templates/table/relation/foreign_key_row.phtml:176 #: templates/table/relation/foreign_key_row.phtml:188 #: templates/table/relation/internal_relational_row.phtml:73 @@ -90,14 +91,14 @@ msgstr "Pole" #: libraries/plugins/export/ExportTexytext.php:283 #: libraries/plugins/export/ExportTexytext.php:374 #: libraries/plugins/export/PMA_ExportPdf.php:474 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 #: libraries/rte/rte_list.lib.php:78 libraries/rte/rte_list.lib.php:106 #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2606 libraries/tracking.lib.php:883 -#: libraries/tracking.lib.php:975 +#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -107,7 +108,7 @@ msgstr "Typ" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:709 -#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1577 +#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1584 #: libraries/plugins/export/ExportHtmlword.php:294 #: libraries/plugins/export/ExportHtmlword.php:390 #: libraries/plugins/export/ExportLatex.php:517 @@ -116,9 +117,9 @@ msgstr "Typ" #: libraries/plugins/export/ExportTexytext.php:284 #: libraries/plugins/export/ExportTexytext.php:375 #: libraries/plugins/export/PMA_ExportPdf.php:476 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 -#: libraries/tracking.lib.php:885 libraries/tracking.lib.php:981 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/tracking.lib.php:895 libraries/tracking.lib.php:993 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 @@ -135,9 +136,9 @@ msgstr "Nulový" #: libraries/plugins/export/ExportTexytext.php:285 #: libraries/plugins/export/ExportTexytext.php:376 #: libraries/plugins/export/PMA_ExportPdf.php:478 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 -#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:886 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:896 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 @@ -149,8 +150,8 @@ msgstr "Výchozí" #: libraries/plugins/export/ExportOdt.php:488 #: libraries/plugins/export/ExportTexytext.php:378 #: libraries/plugins/export/PMA_ExportPdf.php:487 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:640 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:663 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 msgid "Links to" msgstr "Odkazuje na" @@ -161,37 +162,38 @@ msgstr "Odkazuje na" #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:381 #: libraries/plugins/export/PMA_ExportPdf.php:494 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:651 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:664 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:649 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 #: templates/columns_definitions/table_fields_definitions.phtml:65 msgid "Comments" msgstr "Komentáře" -#: db_datadict.php:155 libraries/controllers/TableStructureController.php:1189 -#: libraries/controllers/TableStructureController.php:1194 -#: libraries/tracking.lib.php:925 +#: db_datadict.php:155 +#: libraries/controllers/table/TableStructureController.php:1197 +#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:79 +#: templates/table/structure/display_structure.phtml:80 msgid "Primary" msgstr "Primární" -#: db_datadict.php:165 js/messages.php:370 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:371 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 -#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:403 -#: libraries/mult_submits.lib.php:417 +#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:408 +#: libraries/mult_submits.lib.php:422 #: libraries/plugins/export/ExportHtmlword.php:654 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:710 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2971 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3620 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1013 libraries/tracking.lib.php:1018 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2973 +#: libraries/server_privileges.lib.php:2993 +#: libraries/server_privileges.lib.php:3631 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -200,32 +202,32 @@ msgstr "Primární" msgid "No" msgstr "Ne" -#: db_datadict.php:165 js/messages.php:515 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:516 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 #: libraries/config/FormDisplay.tpl.php:280 -#: libraries/controllers/TableStructureController.php:770 -#: libraries/controllers/TableStructureController.php:1440 -#: libraries/controllers/TableStructureController.php:1449 -#: libraries/controllers/TableStructureController.php:1454 -#: libraries/controllers/TableStructureController.php:1459 -#: libraries/controllers/TableStructureController.php:1464 -#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:199 -#: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 -#: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 +#: libraries/controllers/table/TableStructureController.php:771 +#: libraries/controllers/table/TableStructureController.php:1448 +#: libraries/controllers/table/TableStructureController.php:1457 +#: libraries/controllers/table/TableStructureController.php:1462 +#: libraries/controllers/table/TableStructureController.php:1467 +#: libraries/controllers/table/TableStructureController.php:1472 +#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:200 +#: libraries/mult_submits.lib.php:344 libraries/mult_submits.lib.php:377 +#: libraries/mult_submits.lib.php:406 libraries/mult_submits.lib.php:420 #: libraries/plugins/export/ExportHtmlword.php:655 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:788 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:711 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2968 -#: libraries/server_privileges.lib.php:2989 -#: libraries/server_privileges.lib.php:3617 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1011 libraries/tracking.lib.php:1016 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2970 +#: libraries/server_privileges.lib.php:2991 +#: libraries/server_privileges.lib.php:3628 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -238,8 +240,8 @@ msgstr "Ano" msgid "View dump (schema) of database" msgstr "Zobrazit výpis (schéma) databáze" -#: db_export.php:51 db_tracking.php:102 export.php:382 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:176 +#: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 +#: libraries/controllers/DatabaseStructureController.php:157 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "V databázi nebyly nalezeny žádné tabulky." @@ -256,7 +258,7 @@ msgstr "Tabulky" #: db_export.php:66 libraries/Menu.php:320 libraries/Menu.php:427 #: libraries/Util.php:3407 libraries/Util.php:3417 libraries/Util.php:3423 -#: libraries/Util.php:3702 libraries/Util.php:4339 libraries/Util.php:4356 +#: libraries/Util.php:3703 libraries/Util.php:4340 libraries/Util.php:4357 #: libraries/central_columns.lib.php:729 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:320 @@ -264,10 +266,10 @@ msgstr "Tabulky" #: libraries/config/user_preferences.forms.php:218 #: libraries/config/user_preferences.forms.php:259 #: libraries/config/user_preferences.forms.php:285 -#: libraries/import.lib.php:1299 libraries/navigation/nodes/NodeColumn.php:44 +#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:44 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 -#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:877 +#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:887 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -311,11 +313,11 @@ msgid "" msgstr "" "Některé z rozšířených funkcí phpMyAdmina nelze používat. %sZjistěte proč%s." -#: db_qbe.php:135 +#: db_qbe.php:136 msgid "You have to choose at least one column to display!" msgstr "Musíte zvolit alespoň jedno pole, které si přejete zobrazit!" -#: db_qbe.php:152 +#: db_qbe.php:154 #, php-format msgid "Switch to %svisual builder%s" msgstr "Přepnout na %svizuálního návrháře%s" @@ -342,7 +344,7 @@ msgstr "" msgid "No tables selected." msgstr "Nebyly vybrány žádné tabulky." -#: db_tracking.php:146 +#: db_tracking.php:149 msgid "Database Log" msgstr "Záznam databáze" @@ -376,7 +378,7 @@ msgstr "Možná budete potřebovat obnovit tuto stránku." msgid "Bad type!" msgstr "Chybný typ!" -#: export.php:276 +#: export.php:278 msgid "Bad parameters!" msgstr "Chybné parametry!" @@ -384,98 +386,98 @@ msgstr "Chybné parametry!" msgid "Invalid export type" msgstr "Chybný typ exportu" -#: gis_data_editor.php:119 +#: gis_data_editor.php:117 #, php-format msgid "Value for the column \"%s\"" msgstr "Hodnota pro sloupec „%s“" -#: gis_data_editor.php:147 +#: gis_data_editor.php:145 #: templates/table/gis_visualization/gis_visualization.phtml:37 msgid "Use OpenStreetMaps as Base Layer" msgstr "Použít OpenStreetMap jako základní vrstvu" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:169 +#: gis_data_editor.php:167 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:192 +#: gis_data_editor.php:190 #, php-format msgid "Geometry %d:" msgstr "Geometrie %d:" -#: gis_data_editor.php:214 +#: gis_data_editor.php:212 msgid "Point:" msgstr "Bod:" -#: gis_data_editor.php:215 gis_data_editor.php:242 gis_data_editor.php:298 -#: gis_data_editor.php:371 js/messages.php:504 +#: gis_data_editor.php:213 gis_data_editor.php:240 gis_data_editor.php:296 +#: gis_data_editor.php:369 js/messages.php:505 msgid "X" msgstr "X" -#: gis_data_editor.php:218 gis_data_editor.php:246 gis_data_editor.php:302 -#: gis_data_editor.php:377 js/messages.php:505 +#: gis_data_editor.php:216 gis_data_editor.php:244 gis_data_editor.php:300 +#: gis_data_editor.php:375 js/messages.php:506 msgid "Y" msgstr "Y" -#: gis_data_editor.php:240 gis_data_editor.php:296 gis_data_editor.php:369 -#: js/messages.php:507 +#: gis_data_editor.php:238 gis_data_editor.php:294 gis_data_editor.php:367 +#: js/messages.php:508 #, php-format msgid "Point %d" msgstr "Bod %d" -#: gis_data_editor.php:253 gis_data_editor.php:309 gis_data_editor.php:387 -#: js/messages.php:513 +#: gis_data_editor.php:251 gis_data_editor.php:307 gis_data_editor.php:385 +#: js/messages.php:514 msgid "Add a point" msgstr "Přidat bod" -#: gis_data_editor.php:270 +#: gis_data_editor.php:268 #, php-format msgid "Linestring %d:" msgstr "Linka %d:" -#: gis_data_editor.php:273 gis_data_editor.php:350 +#: gis_data_editor.php:271 gis_data_editor.php:348 msgid "Outer ring:" msgstr "Vnější obrys:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:273 gis_data_editor.php:350 #, php-format msgid "Inner ring %d:" msgstr "Vnitřní obrys %d:" -#: gis_data_editor.php:312 +#: gis_data_editor.php:310 msgid "Add a linestring" msgstr "Přidat linku" -#: gis_data_editor.php:313 gis_data_editor.php:392 js/messages.php:514 +#: gis_data_editor.php:311 gis_data_editor.php:390 js/messages.php:515 msgid "Add an inner ring" msgstr "Přidat vnitřní obrys" -#: gis_data_editor.php:334 +#: gis_data_editor.php:332 #, php-format msgid "Polygon %d:" msgstr "Mnohoúhelník %d:" -#: gis_data_editor.php:398 +#: gis_data_editor.php:396 msgid "Add a polygon" msgstr "Přidat mnohoúhelník" -#: gis_data_editor.php:404 +#: gis_data_editor.php:402 msgid "Add geometry" msgstr "Přidat geometrii" -#: gis_data_editor.php:410 js/messages.php:345 libraries/DbSearch.php:462 -#: libraries/DisplayResults.php:1783 libraries/browse_foreigners.lib.php:142 +#: gis_data_editor.php:408 js/messages.php:346 libraries/DbSearch.php:462 +#: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:151 #: libraries/display_export.lib.php:404 libraries/display_export.lib.php:410 -#: libraries/display_import.lib.php:403 libraries/index.lib.php:42 -#: libraries/insert_edit.lib.php:1547 libraries/insert_edit.lib.php:1584 +#: libraries/display_import.lib.php:403 libraries/index.lib.php:45 +#: libraries/insert_edit.lib.php:1554 libraries/insert_edit.lib.php:1591 #: libraries/normalization.lib.php:168 libraries/normalization.lib.php:825 #: libraries/operations.lib.php:47 libraries/operations.lib.php:114 #: libraries/operations.lib.php:266 libraries/operations.lib.php:309 #: libraries/operations.lib.php:806 libraries/operations.lib.php:877 -#: libraries/operations.lib.php:926 libraries/operations.lib.php:1336 -#: libraries/operations.lib.php:1653 +#: libraries/operations.lib.php:926 libraries/operations.lib.php:1339 +#: libraries/operations.lib.php:1656 #: libraries/plugins/auth/AuthenticationCookie.php:239 #: libraries/replication_gui.lib.php:124 libraries/replication_gui.lib.php:163 #: libraries/replication_gui.lib.php:328 libraries/replication_gui.lib.php:465 @@ -484,12 +486,12 @@ msgstr "Přidat geometrii" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2343 -#: libraries/server_privileges.lib.php:3114 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_user_groups.lib.php:285 -#: libraries/sql_query_form.lib.php:369 libraries/sql_query_form.lib.php:429 -#: libraries/tracking.lib.php:536 libraries/tracking.lib.php:656 +#: libraries/server_privileges.lib.php:2345 +#: libraries/server_privileges.lib.php:3116 +#: libraries/server_privileges.lib.php:3735 +#: libraries/server_user_groups.lib.php:290 +#: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 +#: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 #: prefs_manage.php:280 prefs_manage.php:358 #: templates/columns_definitions/column_definitions_form.phtml:64 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 @@ -502,11 +504,11 @@ msgstr "Přidat geometrii" msgid "Go" msgstr "Proveď" -#: gis_data_editor.php:413 +#: gis_data_editor.php:411 msgid "Output" msgstr "Výstup" -#: gis_data_editor.php:416 +#: gis_data_editor.php:414 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -517,7 +519,7 @@ msgstr "" msgid "Succeeded" msgstr "Úspěch" -#: import.php:59 js/messages.php:588 +#: import.php:59 js/messages.php:589 msgid "Failed" msgstr "Chyba" @@ -580,7 +582,7 @@ msgid "Could not load import plugins, please check your installation!" msgstr "" "Nepodařilo se nahrát pluginy pro import, zkontrolujte prosím vaší instalaci!" -#: import.php:669 libraries/sql.lib.php:744 libraries/sql.lib.php:1468 +#: import.php:669 libraries/sql.lib.php:754 libraries/sql.lib.php:1485 #, php-format msgid "Bookmark %s has been created." msgstr "Byl vytvořen oblíbený dotaz %s." @@ -612,7 +614,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "Nelze zjistit průběh importu." -#: import_status.php:111 js/messages.php:444 libraries/Util.php:797 +#: import_status.php:111 js/messages.php:445 libraries/Util.php:797 #: libraries/export.lib.php:523 #: libraries/plugins/schema/ExportRelationSchema.php:301 user_password.php:268 msgid "Back" @@ -636,7 +638,7 @@ msgstr "" msgid "General settings" msgstr "Obecná nastavení" -#: index.php:191 js/messages.php:617 +#: index.php:191 js/messages.php:618 #: libraries/display_change_password.lib.php:54 #: libraries/display_change_password.lib.php:57 user_password.php:262 msgid "Change password" @@ -736,7 +738,11 @@ msgstr "Získejte podporu" msgid "List of changes" msgstr "Seznam změn" -#: index.php:453 +#: index.php:438 libraries/server_plugins.lib.php:83 +msgid "License" +msgstr "Licence" + +#: index.php:460 msgid "" "You are connected as 'root' with no password, which corresponds to the " "default MySQL privileged account. Your MySQL server is running with this " @@ -747,7 +753,7 @@ msgstr "" "privilegovaného uživatele v MySQL. Doporučujeme nastavit heslo pro uživatele " "„root“ a tím podstatně zvýšit zabezpečení vašeho serveru." -#: index.php:470 +#: index.php:477 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -756,7 +762,7 @@ msgstr "" "V nastavení PHP máte zapnuto mbstring.func_overload. Toto nastavení není " "kompatibilní s phpMyAdminem a může způsobit poškození dat!" -#: index.php:485 +#: index.php:492 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -766,7 +772,7 @@ msgstr "" "bajtovou znakovou sadu. Bez rozšíření mbstring neumí phpMyAdmin správně " "rozdělovat řetězce a proto to může mít nečekané následky." -#: index.php:502 +#: index.php:509 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than " @@ -778,7 +784,7 @@ msgstr "" "než platnost cookie nastavená v phpMyAdminovi. Z tohoto důvodu bude vaše " "přilášení neplatné dříve, než jak je nastaveno v phpMyAdminovi." -#: index.php:521 +#: index.php:528 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -787,13 +793,13 @@ msgstr "" "phpMyAdminovi. Z tohoto důvodu vaše přihlášení vyprší dříve než je nastavené " "v phpMyAdminovi." -#: index.php:537 +#: index.php:544 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Nastavte klíč pro šifrování cookies (blowfish_secret) v konfiguračním " "souboru (config.inc.php)." -#: index.php:550 +#: index.php:557 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. It is strongly recommended to remove it " @@ -805,7 +811,7 @@ msgstr "" "phpMyAdmin nastaven. Pokud tak neučiníte, může být váš server ohrožen cizími " "lidmi přistupujícími k vašemu nastavení." -#: index.php:566 +#: index.php:573 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -814,14 +820,14 @@ msgstr "" "Úložiště nastavení phpMyAdmina není plně dostupné, některé z rozšířených " "funkcí phpMyAdmina nelze používat. %sZjistěte proč%s. " -#: index.php:573 +#: index.php:580 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "Nebo alternativně jděte do oddílu 'Operace' u jakékoli databáze, kde je " "možné rovněž toto nastavit." -#: index.php:619 +#: index.php:626 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -830,7 +836,7 @@ msgstr "" "Používaný MySQL modul v PHP je kompilován pro MySQL %s a server používá " "verzi %s. Používání různých verzí může způsobit problémy." -#: index.php:647 +#: index.php:654 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -852,7 +858,7 @@ msgstr "Potvrzení" msgid "Do you really want to execute \"%s\"?" msgstr "Opravdu si přejete provést „%s“?" -#: js/messages.php:45 libraries/mult_submits.lib.php:397 +#: js/messages.php:45 libraries/mult_submits.lib.php:402 msgid "You are about to DESTROY a complete database!" msgstr "Chystáte se ZRUŠIT celou databázi!" @@ -946,7 +952,6 @@ msgid "Do you really want to remove partitioning?" msgstr "Opravdu si přejete ZKRÁTIT vybrané oddíly?" #: js/messages.php:83 -#| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to RESET SLAVE?" msgstr "Opravdu si přejete obnovit podřízený server (RESET SLAVE)?" @@ -992,7 +997,7 @@ msgid "Save & close" msgstr "Uložit a zavřít" #: js/messages.php:109 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1551 prefs_manage.php:364 +#: libraries/insert_edit.lib.php:1558 prefs_manage.php:364 #: prefs_manage.php:375 msgid "Reset" msgstr "Původní" @@ -1050,10 +1055,10 @@ msgstr "Prosím zvolte které pole chcete přidat do klíče." msgid "You have to add at least one column." msgstr "Musíte přidat alespoň jedno pole." -#: js/messages.php:129 libraries/insert_edit.lib.php:1549 +#: js/messages.php:129 libraries/insert_edit.lib.php:1556 #: templates/columns_definitions/column_definitions_form.phtml:159 #: templates/table/index_form.phtml:237 -#: templates/table/relation/common_form.phtml:108 +#: templates/table/relation/common_form.phtml:127 msgid "Preview SQL" msgstr "Náhled SQL" @@ -1096,8 +1101,8 @@ msgstr "Hesla nejsou stejná!" msgid "Removing Selected Users" msgstr "Odstraňuji vybrané uživatele" -#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:461 -#: libraries/tracking.lib.php:831 +#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:471 +#: libraries/tracking.lib.php:841 msgid "Close" msgstr "Ukončit" @@ -1119,7 +1124,7 @@ msgstr "Šablona byla smazána." #. l10n: Other, small valued, queries #: js/messages.php:155 libraries/ServerStatusData.php:130 -#: libraries/server_status_queries.lib.php:148 +#: libraries/server_status_queries.lib.php:150 msgid "Other" msgstr "Ostatní" @@ -1285,7 +1290,7 @@ msgstr "Dotazy" msgid "Traffic" msgstr "Provoz" -#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4330 +#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4331 #: libraries/server_status_monitor.lib.php:258 msgid "Settings" msgstr "Nastavení" @@ -1298,9 +1303,9 @@ msgstr "Přidat graf do mřížky" msgid "Please add at least one variable to the series!" msgstr "Prosím přidejte do série alespoň jednu hodnotu!" -#: js/messages.php:216 libraries/DisplayResults.php:1477 +#: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1415,7 +1420,7 @@ msgstr "Změnit nastavení" msgid "Current settings" msgstr "Aktuální nastavení" -#: js/messages.php:253 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:253 msgid "Chart title" msgstr "Název grafu" @@ -1504,21 +1509,21 @@ msgstr "Analyzuji…" msgid "Explain output" msgstr "Vysvětlení dotazu" -#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4326 +#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4327 #: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:396 #: libraries/rte/rte_list.lib.php:104 -#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:282 -#: libraries/tracking.lib.php:1623 +#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:284 +#: libraries/tracking.lib.php:1639 msgid "Status" msgstr "Stav" -#: js/messages.php:289 js/messages.php:870 +#: js/messages.php:289 js/messages.php:862 #: libraries/plugins/export/ExportHtmlword.php:484 #: libraries/plugins/export/ExportOdt.php:600 #: libraries/plugins/export/ExportTexytext.php:445 #: libraries/plugins/export/PMA_ExportPdf.php:314 #: libraries/rte/rte_list.lib.php:93 -#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:239 +#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:243 msgid "Time" msgstr "Čas" @@ -1604,10 +1609,10 @@ msgstr "" "nastavení…" #: js/messages.php:322 libraries/Menu.php:355 libraries/Menu.php:457 -#: libraries/Menu.php:578 libraries/Util.php:4329 libraries/Util.php:4344 -#: libraries/Util.php:4361 libraries/config/messages.inc.php:260 +#: libraries/Menu.php:578 libraries/Util.php:4330 libraries/Util.php:4345 +#: libraries/Util.php:4362 libraries/config/messages.inc.php:260 #: libraries/display_import.lib.php:108 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:241 +#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:241 #: setup/frames/menu.inc.php:26 msgid "Import" msgstr "Import" @@ -1664,7 +1669,13 @@ msgstr "Kontrola" msgid "Formatting SQL…" msgstr "Formátuji SQL…" -#: js/messages.php:346 libraries/server_variables.lib.php:159 +#: js/messages.php:343 +#, fuzzy +#| msgid "Bad parameters!" +msgid "No parameters found!" +msgstr "Chybné parametry!" + +#: js/messages.php:347 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 @@ -1675,59 +1686,59 @@ msgstr "Formátuji SQL…" msgid "Cancel" msgstr "Zrušit" -#: js/messages.php:349 libraries/Header.php:457 +#: js/messages.php:350 libraries/Header.php:457 msgid "Page-related settings" msgstr "Nastavení stránky" -#: js/messages.php:350 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:351 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Použít" -#: js/messages.php:353 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:354 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:124 msgid "Loading…" msgstr "Nahrávám…" -#: js/messages.php:354 +#: js/messages.php:355 msgid "Request aborted!!" msgstr "Požadavek byl přerušen!" -#: js/messages.php:355 +#: js/messages.php:356 msgid "Processing request" msgstr "Probíhá zpracování požadavku" -#: js/messages.php:356 +#: js/messages.php:357 msgid "Request failed!!" msgstr "Požadavek se nezdařil!" -#: js/messages.php:357 +#: js/messages.php:358 msgid "Error in processing request" msgstr "Chyba při zpracování požadavku" -#: js/messages.php:358 +#: js/messages.php:359 #, php-format msgid "Error code: %s" msgstr "Číslo chyby: %s" -#: js/messages.php:359 +#: js/messages.php:360 #, php-format msgid "Error text: %s" msgstr "Popis chyby: %s" -#: js/messages.php:360 libraries/db_common.inc.php:73 +#: js/messages.php:361 libraries/db_common.inc.php:73 #: libraries/db_table_exists.lib.php:33 libraries/server_databases.lib.php:462 msgid "No databases selected." msgstr "Nebyla vybrána žádná databáze." -#: js/messages.php:361 +#: js/messages.php:362 msgid "Dropping column" msgstr "Odstraňuji sloupec" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Adding primary key" msgstr "Přidávám primární klíč" -#: js/messages.php:363 +#: js/messages.php:364 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1737,164 +1748,164 @@ msgstr "Přidávám primární klíč" msgid "OK" msgstr "OK" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Click to dismiss this notification" msgstr "Klikněte pro schování této zprávy" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Renaming databases" msgstr "Přejmenovávám databáze" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Copying database" msgstr "Kopíruji databázi" -#: js/messages.php:369 +#: js/messages.php:370 msgid "Changing charset" msgstr "Měním znakovou sadu" -#: js/messages.php:373 libraries/Util.php:3289 +#: js/messages.php:374 libraries/Util.php:3289 msgid "Enable foreign key checks" msgstr "Zapnout kontrolu cizích klíčů" -#: js/messages.php:376 +#: js/messages.php:377 msgid "Failed to get real row count." msgstr "Chyba při čtení skutečného počtu řádek." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Searching" msgstr "Vyhledávám" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide search results" msgstr "Skrýt výsledky vyhledávání" -#: js/messages.php:381 +#: js/messages.php:382 msgid "Show search results" msgstr "Zobrazit výsledky vyhledávání" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Browsing" msgstr "Procházím" -#: js/messages.php:383 +#: js/messages.php:384 msgid "Deleting" msgstr "Odstraňuji" -#: js/messages.php:387 +#: js/messages.php:388 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:388 libraries/DisplayResults.php:4832 -#: libraries/DisplayResults.php:5091 libraries/Menu.php:347 -#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3709 -#: libraries/Util.php:3710 libraries/Util.php:4328 libraries/Util.php:4343 -#: libraries/Util.php:4360 libraries/config/messages.inc.php:254 +#: js/messages.php:389 libraries/DisplayResults.php:4850 +#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 +#: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 +#: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2448 -#: libraries/server_privileges.lib.php:2527 -#: libraries/server_privileges.lib.php:2873 -#: libraries/server_privileges.lib.php:3532 -#: libraries/server_status_monitor.lib.php:321 prefs_manage.php:306 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2875 +#: libraries/server_privileges.lib.php:3543 +#: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 msgid "Export" msgstr "Export" -#: js/messages.php:391 libraries/rte/rte_routines.lib.php:742 +#: js/messages.php:392 libraries/rte/rte_routines.lib.php:742 msgid "ENUM/SET editor" msgstr "Upravit ENUM/SET" -#: js/messages.php:392 +#: js/messages.php:393 #, php-format msgid "Values for column %s" msgstr "Hodnoty pro sloupec %s" -#: js/messages.php:393 +#: js/messages.php:394 msgid "Values for a new column" msgstr "Hodnoty pro nový sloupec" -#: js/messages.php:394 +#: js/messages.php:395 msgid "Enter each value in a separate field." msgstr "Zadejte každou hodnotu do samostatného pole." -#: js/messages.php:395 +#: js/messages.php:396 #, php-format msgid "Add %d value(s)" msgstr "Přidat %d hodnot" -#: js/messages.php:399 +#: js/messages.php:400 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:403 +#: js/messages.php:404 msgid "Hide query box" msgstr "Skrýt pole pro dotaz" -#: js/messages.php:404 +#: js/messages.php:405 msgid "Show query box" msgstr "Zobrazit pole pro dotaz" -#: js/messages.php:405 libraries/Console.php:88 libraries/Console.php:217 -#: libraries/DisplayResults.php:3457 libraries/DisplayResults.php:4816 +#: js/messages.php:406 libraries/Console.php:88 libraries/Console.php:217 +#: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4834 #: libraries/Index.php:721 libraries/Util.php:727 libraries/Util.php:1238 -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:119 +#: libraries/server_user_groups.lib.php:121 #: libraries/server_variables.lib.php:242 #: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 msgid "Edit" msgstr "Upravit" -#: js/messages.php:406 libraries/Console.php:89 libraries/DbSearch.php:360 -#: libraries/DisplayResults.php:3526 libraries/DisplayResults.php:4800 +#: js/messages.php:407 libraries/Console.php:89 libraries/DbSearch.php:360 +#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4818 #: libraries/central_columns.lib.php:854 #: libraries/central_columns.lib.php:1200 libraries/display_export.lib.php:227 -#: libraries/server_user_groups.lib.php:129 -#: libraries/sql_query_form.lib.php:416 libraries/tracking.lib.php:480 +#: libraries/server_user_groups.lib.php:131 +#: libraries/sql_query_form.lib.php:417 libraries/tracking.lib.php:490 #: setup/frames/index.inc.php:187 setup/frames/index.inc.php:295 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Odstranit" -#: js/messages.php:407 libraries/DisplayResults.php:915 -#: libraries/DisplayResults.php:923 +#: js/messages.php:408 libraries/DisplayResults.php:919 +#: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d není platné číslo řádku." -#: js/messages.php:408 -#: libraries/controllers/table/TableSearchController.php:435 -#: libraries/controllers/table/TableSearchController.php:920 -#: libraries/sql.lib.php:193 tbl_change.php:159 +#: js/messages.php:409 +#: libraries/controllers/table/TableSearchController.php:432 +#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "Projít hodnoty cizích klíčů" -#: js/messages.php:409 +#: js/messages.php:410 msgid "No auto-saved query" msgstr "Není automaticky ukládaný dotaz" -#: js/messages.php:410 +#: js/messages.php:411 #, php-format msgid "Variable %d:" msgstr "Proměnná %d:" -#: js/messages.php:413 libraries/normalization.lib.php:889 +#: js/messages.php:414 libraries/normalization.lib.php:889 msgid "Pick" msgstr "Zvolit" -#: js/messages.php:414 +#: js/messages.php:415 msgid "Column selector" msgstr "Vybrat sloupec" -#: js/messages.php:415 +#: js/messages.php:416 msgid "Search this list" msgstr "Vyhledávání v tomto seznamu" -#: js/messages.php:417 +#: js/messages.php:418 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1903,15 +1914,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:420 +#: js/messages.php:421 msgid "See more" msgstr "Zobrazit více" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Are you sure?" msgstr "Jste si jistý?" -#: js/messages.php:423 +#: js/messages.php:424 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1919,51 +1930,51 @@ msgstr "" "Tato akce může změnit některé definice sloupců.
Jste si jisti, že chcete " "pokračovat?" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "Pokračovat" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "Přidat primární klíč" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "Byl přidán primární klíč." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "Přesměrovávám na další krok…" -#: js/messages.php:433 +#: js/messages.php:434 #, 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:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "Konec kroku" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "Druhý krok normalizace (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Hotovo" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "Potvrzení částečných závislostí" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "Byly zvoleny následující částečné závislosti:" -#: js/messages.php:440 +#: js/messages.php:441 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1971,19 +1982,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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "Nebyly vybrány žádné částečné závislosti!" -#: js/messages.php:446 +#: js/messages.php:447 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:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "Skrýt seznam částečných závislostí" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -1991,165 +2002,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:452 +#: js/messages.php:453 msgid "Step" msgstr "Krok" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "Budou provedeny následující úpravy:" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "ODSTRANIT sloupce %s z tabulky %s" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "Vytvořit následující tabulku" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "Třetí krok normalizace (3NF)" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "Potvrzení tranzitivních závislostí" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "Byly zvoleny následující závislosti:" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "Nebyly vybrány žádné závislosti!" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Uložit" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Skrýt parametry vyhledávání" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Zobrazit parametry vyhledávání" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "Vyhledávání rozsahu" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "Největší hodnota sloupce:" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "Nejmenší hodnota sloupce:" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "Nejmenší hodnota:" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "Největší hodnota:" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "Skrýt parametry vyhledávání a nahrazování" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "Zobrazit parametry vyhledávání a nahrazování" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "Každý bod reprezentuje řádek dat." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "Najetí myší nad bod ukáže jeho název." -#: js/messages.php:486 +#: js/messages.php:487 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:488 +#: js/messages.php:489 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:490 +#: js/messages.php:491 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:492 +#: js/messages.php:493 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:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "Zvolte dva sloupce" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "Zvolte dva odlišné sloupce" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "Obsah datového bodu" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignorovat" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Kopírovat" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Bod" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Linka" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Mnohoúhelník" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometrie" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "Vnitřní obrys" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "Vnější obrys" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "Přejete si zkopírovat šifrovací klíč?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "Šifrovací klíč" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2157,24 +2168,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:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Zvolte odkazovaný klíč" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Zvolte cizí klíč" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "Prosím zvolte primární nebo unikátní klíč!" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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:532 +#: js/messages.php:533 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 +2193,91 @@ msgstr "" "Neuložili jste změny ve schématu. Pokud je neuložíte, budou ztraceny. " "Přejete si pokračovat?" -#: js/messages.php:535 +#: js/messages.php:536 msgid "Page name" msgstr "Jméno stránky" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 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:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 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:539 +#: js/messages.php:540 msgid "Delete page" msgstr "Odstranit stránku" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Beze jména" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "Prosím vyberte stránku pro pokračování" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "Prosím zadejte platný název stránky" -#: js/messages.php:544 +#: js/messages.php:545 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:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "Stránka byla odstraněna" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "Exportovat relační schéma" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Změny byly uloženy" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "Přidat paramer pro sloupec „%s“." -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "Bylo vytvořeno %d objektů." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Provést" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "Klávesou Esc ukončíte editaci." -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "Uspořádejte přetažením." -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "Klikněte pro seřazení výsledků podle tohoto sloupce." -#: js/messages.php:563 +#: js/messages.php:564 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 +2287,26 @@ msgstr "" "
- Control+Kliknutí nebo Alt+Kliknutí(MAC: Shift+Option+Kliknutí) " "sloupec odstraní z ORDER BY podmínky" -#: js/messages.php:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "Klikněte pro označení." -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "Poklepejte pro zkopírování jména pole." -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Klikněte na šipku
pro vybrání sloupců." -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Zobrazit vše" -#: js/messages.php:574 +#: js/messages.php:575 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 +2315,12 @@ msgstr "" "editování v mřížce, zaškrtávací políčka nebo odkazy na editaci a mazání " "fungovat." -#: js/messages.php:578 +#: js/messages.php:579 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:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2317,126 +2328,94 @@ msgstr "" "Opravdu si přejete zobrazit všechny řádky? U velké tabulky by mohlo dojít ke " "spadnutí prohlížeče." -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "Původní délka" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "zrušit" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Přerušené" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "Úspěch" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "Stav importu" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Přetáhněte sem soubory" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "Nejdříve zvolte databázi" -#: js/messages.php:598 +#: js/messages.php:599 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:603 +#: js/messages.php:604 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:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "Přejít na odkaz:" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "Zkopírovat název pole." -#: js/messages.php:612 +#: js/messages.php:613 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:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Vytvořit heslo" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Vytvořit" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "Více" -#: js/messages.php:623 +#: js/messages.php:624 msgid "Show panel" msgstr "Zobrazit panel" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "Skrýt panel" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "Zobrazit skryté položky navigačního panelu." -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "Spojit s hlavním panelem" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "Odpojit od hlavního panelu" -#: js/messages.php:629 -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:631 -#, 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:632 -msgid "tables" -msgstr "tabulky" - -#: js/messages.php:633 -msgid "views" -msgstr "pohledy" - -#: js/messages.php:634 -msgid "procedures" -msgstr "procedury" - -#: js/messages.php:635 -msgid "events" -msgstr "události" - -#: js/messages.php:636 -msgid "functions" -msgstr "funkce" - -#: js/messages.php:640 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:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2446,48 +2425,48 @@ msgstr "" "je %s a byla vydána %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", poslední stabilní verze:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "aktuální" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "Vytvořit pohled" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "Odeslat chybové hlášení" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "Odeslat chybové hlášení" -#: js/messages.php:657 +#: js/messages.php:649 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:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "Změnit nastavení hlášení" -#: js/messages.php:660 +#: js/messages.php:652 msgid "Show report details" msgstr "Zobrazit podrobnosti hlášení" -#: js/messages.php:663 +#: js/messages.php:655 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:667 +#: js/messages.php:659 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2496,58 +2475,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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "Na serveru došlo byly zjištěny chyby!" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "Prosím podívejte se na spodní část okna." -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "Ignorovat vše" -#: js/messages.php:689 +#: js/messages.php:681 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:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "Spustit tento dotaz znovu?" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "Opravdu si přejete odstranit tuto záložku?" -#: js/messages.php:703 +#: js/messages.php:695 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:705 +#: js/messages.php:697 #, 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:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "Zadáno %s argumentů" -#: js/messages.php:707 +#: js/messages.php:699 msgid "Show arguments" msgstr "Zobrazit argumenty" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "Skrýt argumenty" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "Doba běhu:" -#: js/messages.php:711 +#: js/messages.php:703 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 " @@ -2557,291 +2536,291 @@ 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "Předchozí" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "Následující" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Dnešek" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "leden" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "únor" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "březen" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "duben" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "květen" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "červen" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "červenec" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "srpen" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "září" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "říjen" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "listopad" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "prosinec" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "led" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "úno" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "bře" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "dub" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "kvě" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "čen" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "čec" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "srp" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "zář" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "říj" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "lis" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "pro" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "Neděle" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "Pondělí" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "Úterý" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "Středa" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "Čtvrtek" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "Pátek" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "Sobota" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Úte" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Stř" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Čtv" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Pát" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Sob" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "Ne" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "Po" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "Út" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "St" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "Čt" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "Pá" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "So" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "Týd" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Hodiny" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Minuty" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Sekundy" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "Toto pole je povinné" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "Prosím opravte hodnotu v tomto poli" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "Prosím zadejte platný e-mail" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "Prosím zadejte platnou adresu URL" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "Prosím zadejte platné datum" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "Prosím zadejte platné datum dle ISO8601" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "Prosím zadejte platné číslo" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "Prosím zadejte platné číslo platební karty" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "Prosím zadávejte pouze číslice" @@ -2849,41 +2828,41 @@ msgstr "Prosím zadávejte pouze číslice" msgid "Please enter the same value again" msgstr "Prosím zadejte stejnou hodnotu znovu" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "Prosím nezadávejte více než {0} znaků" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "Prosím zadejte více než {0} znaků" -#: js/messages.php:896 +#: js/messages.php:907 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:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "Prosím zadejte hodnotu mezi {0} a {1}" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "Prosím zadejte číslo menší nebo rovno {0}" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "Prosím zadejte číslo větší nebo rovno {0}" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "Prosím zadejte platné datum nebo čas" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "Prosím zadejte platné hexadecimalní číslo" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Chyba" @@ -2973,11 +2952,12 @@ msgstr "Znovu" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3020,7 +3000,7 @@ msgstr "Během aktuální relace" msgid "Explain" msgstr "Vysvětlit" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Profilování" @@ -3054,8 +3034,8 @@ msgid "History" msgstr "Historie" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3202,33 +3182,33 @@ msgstr "" msgid "Switch to dark theme" msgstr "Přepnout na tmavý motiv" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" "Server neodpovídá (nebo není správně nastaven lokální socket MySQL serveru)." -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "Server neodpovídá." -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" "Prosím zkontrolujte přístupová práva u adresáře obsahujícího tuto databázi." -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Podrobnosti…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Nepodařilo se připojit jako controluser, který je nadefinován v nastaveních." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3238,8 +3218,8 @@ msgstr "" msgid "Ascending" msgstr "Vzestupně" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3384,8 +3364,8 @@ msgstr[1] "%1$s odpovídající záznamy v %2$s" msgstr[2] "%1$s odpovídajících záznamů v %2$s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3427,120 +3407,120 @@ msgstr "Odznačit vše" msgid "Inside column:" msgstr "Uvnitř pole:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "Uložit upravovaná data" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "Obnovit pořadí sloupců" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "Filtrovat řádky" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "Vyhledávání v této tabulce" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "První" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "Předchozí" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "Následující" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "Poslední" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Všechno" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Počet řádků:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Seřadit podle klíče" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "Zkrácené texty" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "Celé texty" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Relační klíč" -#: libraries/DisplayResults.php:1728 -#| msgid "Display foreign key relationships" +#: libraries/DisplayResults.php:1735 msgid "Display column for relations" msgstr "Zobrazit sloupec pro relace" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "Zobrazit binární obsah" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "Zobrazit obsah BLOBu" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "Nepoužít při prohlížení transformace" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "Text (WKT)" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "Binární (WKB)" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "Řádek byl smazán." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Ukončit" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Počet nemusí být přesný, viz [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "Váš SQL-dotaz byl úspěšně vykonán." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3548,64 +3528,64 @@ msgid "" msgstr "" "Tento pohled má alespoň tolik řádek. Podrobnosti naleznete v %sdokumentaci%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "Zobrazeny záznamy %1s - %2s" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d celkem, %2$d v dotazu" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "%d celkem" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "Dotaz trval %01.4f sekund." -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Zaškrtnuté:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 msgid "Check all" msgstr "Zaškrtnout vše" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Náhled pro tisk" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Operace s výsledky dotazu" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Zobrazit graf" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "Zobrazit data GIS" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "Odkaz nebyl nalezen!" @@ -3701,19 +3681,19 @@ msgstr "Není definován žádný klíč!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Klíče" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3722,24 +3702,24 @@ msgid "Action" msgstr "Operace" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Název klíče" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Unikátní" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Zabaleno" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Mohutnost" @@ -3747,8 +3727,8 @@ msgstr "Mohutnost" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3758,8 +3738,8 @@ msgid "Collation" msgstr "Porovnávání" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3775,15 +3755,15 @@ msgstr "Primární klíč byl odstraněn." msgid "Index %s has been dropped." msgstr "Klíč %s byl odstraněn." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Odstranit" @@ -3824,12 +3804,13 @@ msgstr "Pohled" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3837,7 +3818,7 @@ msgstr "Tabulka" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3846,8 +3827,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3855,41 +3836,41 @@ msgid "Search" msgstr "Vyhledávání" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Vložit" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Oprávnění" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Úpravy" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Sledování" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3900,16 +3881,16 @@ msgstr "Spouště" msgid "Database seems to be empty!" msgstr "Databáze se zdá být prázdná!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Dotaz" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rutiny" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3917,20 +3898,20 @@ msgstr "Rutiny" msgid "Events" msgstr "Události" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Návrhář" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "Centrální sloupce" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Databáze" @@ -3939,33 +3920,33 @@ msgid "User accounts" msgstr "Uživatelské účty" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Binární log" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikace" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Proměnné" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Znakové sady" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Úložiště" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "Rozšíření" @@ -4265,7 +4246,7 @@ msgstr "Klíč nelze přejmenovat na „PRIMARY“!" msgid "No index parts defined!" msgstr "Nebyla zadána žádná část klíče!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Chyba při vytváření cizího klíče na %1$s (zkotrolujte typ pole)" @@ -4683,7 +4664,6 @@ msgid "Submit query" msgstr "Provést dotaz" #: libraries/Util.php:1275 libraries/config/messages.inc.php:898 -#| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Vytvořit PHP kód" @@ -4727,37 +4707,37 @@ msgstr "Funkčnost %s je omezena známou chybou, viz %s" msgid "Click to toggle" msgstr "Klikněte pro přepnutí" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Procházet váš počítač:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Zvolte soubor z adresáře pro upload na serveru %s:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Adresář určený pro upload souborů nemohl být otevřen." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "Nebyl zvolen žádný soubor pro nahrání!" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Vyprázdnit" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "Spustit" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Vytisknout" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "Uživatelé" @@ -4830,7 +4810,6 @@ msgid "Check privileges for database \"%s\"." msgstr "Zkontrolovat oprávnění pro databázi „%s“." #: libraries/build_html_for_db.lib.php:187 -#| msgid "Check Privileges" msgid "Check privileges" msgstr "Zkontrolovat oprávnění" @@ -4919,8 +4898,8 @@ msgid "Add new column" msgstr "Přidat nový sloupec" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -4986,19 +4965,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "Měli byste aktualizovat %s na verzi %s nebo vyšší." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "Chyba: neplatný token" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "Pokus o přepsání GLOBALS" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "možný pokus o exploit" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "detekován číselný klíč" @@ -5837,7 +5816,7 @@ msgid "Remember file name template" msgstr "Pamatovat si vzor pro jména souborů" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Přidat hodnotu AUTO_INCREMENT" @@ -5876,7 +5855,7 @@ msgstr "Exportovat související metadata z úložiště konfigurace phpMyAdmin" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Přidat %s" @@ -6529,8 +6508,8 @@ msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]-1[/kbd] for no limit and [kbd]0[/kbd] for no change)." msgstr "" -"Počet bytů, které si může skript alokovat, např. [kbd]32M[/kbd] " -"([kbd]-1[/kbd] pro neomezené a [kbd]0[/kbd] pro žádnou změnu)." +"Počet bytů, které si může skript alokovat, např. [kbd]32M[/kbd] ([kbd]-1[/" +"kbd] pro neomezené a [kbd]0[/kbd] pro žádnou změnu)." #: libraries/config/messages.inc.php:468 msgid "Memory limit" @@ -7505,7 +7484,6 @@ msgstr "" "Zobrazit nebo skrýt sloupec zobrazující čas vytvoření pro všechny tabulky." #: libraries/config/messages.inc.php:853 -#| msgid "Show Creation timestamp" msgid "Show creation timestamp" msgstr "Zobrazit čas vytvoření" @@ -7517,7 +7495,6 @@ msgstr "" "tabulky." #: libraries/config/messages.inc.php:857 -#| msgid "Show Last update timestamp" msgid "Show last update timestamp" msgstr "Zobrazit čas poslední změny" @@ -7529,7 +7506,6 @@ msgstr "" "tabulky." #: libraries/config/messages.inc.php:861 -#| msgid "Show Last check timestamp" msgid "Show last check timestamp" msgstr "Zobrazit čas poslední kontroly" @@ -7590,7 +7566,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "Určuje zda má pole pro zadání dotazu zůstat zobrazeno i po odeslání." -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "Zachovat pole pro dotaz" @@ -7894,102 +7870,33 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Text OpenDocument" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "Seznam oblíbených je plný!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Tabulka %s byla vyprázdněna." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "Pohled %s byl odstraněn." -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "Tabulka %s byla odstraněna." -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "Seznam oblíbených je plný!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "neznámý" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -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.php:250 -msgid "No column selected." -msgstr "Nebyl vybrán žádný sloupec." - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "Vybraná pole byla úspěšně přesunuta." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "Tabulka %1$s byla úspěšně změněna." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "Chyba dotazu" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Změnit" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Klíč" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "Prostorový" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Fulltext" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "Odlišné hodnoty" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8003,6 +7910,14 @@ msgstr "Ve zvolené tabulce nejsou žádná číselná pole pro vykreslení do g msgid "No data to display" msgstr "Nebyla nalezena žádná data" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "Tabulka %1$s byla úspěšně změněna." + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "Zobrazený sloupec byl aktualizován." @@ -8011,19 +7926,80 @@ msgstr "Zobrazený sloupec byl aktualizován." msgid "Internal relations were successfully updated." msgstr "Interní relace byla úspěšně změněna." -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "Vyhledávání v tabulce" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "Zoom vyhledávání" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Vyhledat a nahradit" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +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/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "Nebyl vybrán žádný sloupec." + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "Vybraná pole byla úspěšně přesunuta." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "Chyba dotazu" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Změnit" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Klíč" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "Prostorový" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Fulltext" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "Odlišné hodnoty" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8033,7 +8009,7 @@ msgstr "Chybí rozšíření %s. Prosím zkontrolujte nastavení PHP." msgid "possible deep recursion attack" msgstr "možný útok rekurzí" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Žádná změna" @@ -8103,7 +8079,7 @@ msgstr "Vytvořit" msgid "Create database:" msgstr "Vytvořit databázi:" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Nemáte oprávnění" @@ -8378,7 +8354,6 @@ msgstr "" "Například: .sql.zip" #: libraries/display_import.lib.php:227 -#| msgid "File to Import:" msgid "File to import:" msgstr "Soubor pro importování:" @@ -8391,7 +8366,6 @@ msgid "File uploads are not allowed on this server." msgstr "Upload souborů není na tomto serveru povolen." #: libraries/display_import.lib.php:287 -#| msgid "Partial Import:" msgid "Partial import:" msgstr "Částečný import:" @@ -8422,7 +8396,6 @@ msgstr "" "počínaje od:" #: libraries/display_import.lib.php:349 -#| msgid "Other Options:" msgid "Other options:" msgstr "Další možnosti:" @@ -8831,63 +8804,63 @@ msgid "Dump has been saved to file %s." msgstr "Výpis byl uložen do souboru %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL vrátil prázdný výsledek (tj. nulový počet řádků)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "[ROLLBACK nastal]" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Následující tabulky byly vytvořeny nebo změněny. Teď můžete:" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "Obsah struktury se zobrazí po kliknutí na její jméno." -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "Změnit jakákoliv její nastavení kliknutím na odkaz „Nastavení“." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "Strukturu upravíte kliknutím na odkaz „Struktura“." -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "Přejít na databázi: %s" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "Upravit nastavení pro %s" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "Přejít na tabulku: %s" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "Struktura %s" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "Přejít na pohled: %s" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "Dotazy UPDATE nebo DELETE mohou být simulovány pouze na jedné tabulce." -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8895,7 +8868,7 @@ msgstr "" "Pouze INSERT, UPDATE, DELETE nebo REPLACE SQL dotazy používající tabulky " "podporující transakce mohou být navráceny." -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "Vytvořit klíč na  %s polích" @@ -8918,66 +8891,66 @@ msgstr "Funkce" msgid "Binary" msgstr "Binární" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "Toto pole možná nepůjde
kvůli délce upravit." -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Binární - neupravujte" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Nebo" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "soubor z adresáře pro upload:" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "Upravit/Vložit" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "Pokračovat ve vkládání s %s řádky" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "a poté" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Vložit jako nový řádek" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "Vložit jako nový řádek a ignorovat chyby" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "Zobrazit dotaz pro vložení" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Návrat na předchozí stránku" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Vložit další řádek" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Návrat na tuto stránku" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Upravit následující řádek" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -8987,7 +8960,7 @@ msgstr "" "Použijte klávesu TAB pro pohyb mezi hodnotami nebo CTRL+šipky po pohyb všemi " "směry" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -8999,11 +8972,11 @@ msgstr "" msgid "Value" msgstr "Hodnota" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "Zobrazuji SQL dotaz" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "ID vloženého řádku: %1$d" @@ -9019,35 +8992,35 @@ msgstr "Žádná" msgid "Convert to Kana" msgstr "Převést na Kanu" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Úspěch!" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "Změnit tabulce předponu:" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "Zkopírovat tabulku s předponou:" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "Z" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "Na" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "Přidat tabulce předponu:" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "Přidat předponu" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "Opravdu si přejete vykonat následující příkaz?" @@ -9266,8 +9239,8 @@ msgstr "Procedury:" msgid "Views:" msgstr "Pohledy:" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Zobrazit" @@ -9308,18 +9281,15 @@ msgstr[1] "nalezeny %s výsledky" msgstr[2] "nalezeno %s výsledků" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" -msgstr "Filtrovat databáze podle jména nebo regexu" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 msgid "Clear fast filter" msgstr "Vymazat filtr" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "Filtrovat položky podle jména nebo regexu" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "Sbalit vše" @@ -9656,7 +9626,6 @@ msgstr "Třetí krok normalizace je dokončený." #: libraries/normalization.lib.php:679 #, php-format -#| msgid "Selected target tables have been synchronized with source tables." msgid "Selected repeating group has been moved to the table '%s'" msgstr "Vybraná opakující se skupina byla přesunuta do tabulky '%s'" @@ -9727,9 +9696,8 @@ msgstr "Přejmenovat databázi na" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 -#| msgid "You don't have sufficient privileges to be here right now!" msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" @@ -9739,9 +9707,8 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 -#| msgid "Adjust Privileges" msgid "Adjust privileges" msgstr "Upravit oprávnění" @@ -9758,18 +9725,18 @@ msgstr "Odstranit databázi" msgid "Drop the database (DROP)" msgstr "Odstranit databázi (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Pouze strukturu" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Strukturu a data" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Jen data" @@ -9781,7 +9748,7 @@ msgstr "Zkopírovat databázi na" msgid "CREATE DATABASE before copying" msgstr "Vytvořit databázi před kopírováním (CREATE DATABASE)" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Přidat integritní omezení" @@ -9818,164 +9785,162 @@ msgid "Storage Engine" msgstr "Úložiště" #: libraries/operations.lib.php:1087 -#| msgid "Make all columns atomic" msgid "Change all column collations" msgstr "Změnit kódování všech sloupců" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Kopírovat tabulku do (databáze.tabulka)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Přepnout na zkopírovanou tabulku" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Údržba tabulky" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Analyzovat tabulku" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Zkontrolovat tabulku" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 -#| msgid "Check table" msgid "Checksum table" msgstr "Tabulka kontrolních součtů" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Opravit rozdrobení tabulky" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "Vyrovnávací paměť pro tabulku %s byla vyprázdněna." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "Vyprázdnit vyrovnávací paměť pro tabulku („FLUSH“)" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Optimalizovat tabulku" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Opravit tabulku" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "Odstranit data nebo tabulku" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "Vyprázdnit tabulku (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "Odstranit tabulku (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Analyzovat" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Zkontrolovat" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Optimalizovat" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Přestavět" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Opravit" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "Vyprázdnit" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Collapse" msgid "Coalesce" msgstr "Vyhledat první platný záznam" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "Údržba oddílů" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "Oddíl %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "Zrušit dělení" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Zkontrolovat integritu odkazů:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Nelze přesunout tabulku na sebe samu!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Nelze kopírovat tabulku na sebe samu!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabulka %s byla přesunuta do %s. Práva byla upravena." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabulka %s byla zkopírována do %s. Práva byla upravena." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabulka %s byla přesunuta do %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabulka %s byla zkopírována do %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Jméno tabulky je prázdné!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "Tento formát nemá žádná nastavení" @@ -10148,7 +10113,7 @@ msgstr "Nastavení výpisu dat" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Vypisuji data pro tabulku" @@ -10172,21 +10137,21 @@ msgstr "Definice" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Struktura tabulky" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Struktura pro pohled" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Zástupná struktura pro pohled" @@ -10276,7 +10241,7 @@ msgid "Database:" msgstr "Databáze:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "Data:" @@ -10377,7 +10342,7 @@ msgid "Data creation options" msgstr "Možnosti vytváření dat" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "Vyprázdnit tabulku před vkládáním" @@ -10460,8 +10425,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10469,81 +10434,81 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 msgid "Metadata" msgstr "Metadata" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "Metadata pro %s" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Vytvořeno:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Poslední změna:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Poslední kontrola:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "právě se používá" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Omezení pro exportované tabulky" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Omezení pro tabulku" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "Klíče pro exportované tabulky" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "Klíče pro tabulku" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT pro tabulky" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT pro tabulku" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPY PRO TABULKU" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "RELACE PRO TABULKU" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "Struktura pro pohled %s exportovaná jako tabulka" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "Chyba při čtení dat:" @@ -10782,9 +10747,9 @@ msgstr "Relační schéma" msgid "Table of contents" msgstr "Obsah" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Další" @@ -11003,47 +10968,47 @@ msgstr "Zobrazí text jako JSON se zvýrazňováním syntaxe." msgid "Formats text as XML with syntax highlighting." msgstr "Zobrazí text jako XML se zvýrazňováním syntaxe." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Chyba: Relace již existuje." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "Relace FOREIGN KEY byla vytvořena." -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Chyba: Relace cizího klíče nemohla být přidána!" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "Chyba: Funkce relací jsou vypnuté!" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "Interní relace byla vytvořena." -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 msgid "Error: Internal relation could not be added!" msgstr "Chyba: Interní relace nemohla být přidána!" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 msgid "FOREIGN KEY relation has been removed." msgstr "Relace FOREIGN KEY byla odstraněna." -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Chyba: Relace FOREGN KEY nemohla být odstraněna!" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 msgid "Error: Internal relation could not be removed!" msgstr "Chyba: Itenrní relace nemohla být odstraněna!" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "Interní relace byla odstraněna." @@ -11090,71 +11055,71 @@ msgstr "" "Podívejte se prosím do dokumentace, jak aktualizovat informace o polích v " "tabulce column_info. " -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Oblíbený SQL dotaz" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL historie" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "Trvalé nedávné tabulky" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 msgid "Persistent favorite tables" msgstr "Trvalé oblíbené tabulky" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "Trvalé nastavení procházení" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "Uživatelská nastavení" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "Nastavitelná nabídka" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "Zobrazit nebo skrýt položky z navigace" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "Ukládání dotazů" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Remember table's sorting" msgid "Remembering Designer Settings" msgstr "Pamatovat si řazení u tabulkek" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 msgid "Saving export templates" msgstr "Ukládání exportních šablon" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "Stručný návod pro zapnutí rozšířených funkcí:" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" "Vytvořte potřebné tabulky pomocí skriptu %screate_tables.sql." -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "Vytvořte uživatele pma a přidělte mu oprávnění na tyto tabulky." -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -11162,23 +11127,23 @@ msgstr "" "Zapněte rozšířené funkce v konfiguračním souboru (config.inc.php), můžete se inspirovat v config.sample.inc.php." -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Prosím přihlašte se znovu , aby se projevily změny v konfiguračním souboru." -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "žádný popisek" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11186,14 +11151,14 @@ msgid "" "configuration storage there." msgstr "Chybějící tabulky v úložišti nastavení phpMyAdmina" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Chybějící tabulky v úložišti nastavení phpMyAdmina" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -11391,8 +11356,8 @@ msgstr "Jméno uživatele:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Jméno uživatele" @@ -11400,7 +11365,7 @@ msgstr "Jméno uživatele" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Heslo" @@ -12028,7 +11993,7 @@ msgstr[2] "%1$d databází bylo úspěšně zrušeno." msgid "Plugin" msgstr "Rozšíření" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Verze" @@ -12036,100 +12001,96 @@ msgstr "Verze" msgid "Author" msgstr "Autor" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "Licence" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "vypnuto" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Žádná oprávnění." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Všechna oprávnění kromě GRANT." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Umožňuje vybírat data." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Umožňuje vkládat a přepisovat data." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Umožňuje měnit data." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Umožňuje mazat data." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Umožňuje vytvářet nové databáze a tabulky." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Umožňuje odstranit databáze a tabulky." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Umožňuje znovu načíst nastavení a vyprázdnění vyrovnávacích pamětí MySQL " "serveru." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Umožňuje vypnout server." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "Umožňuje prohlížet procesy všech uživatelů." #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "Umožňuje importovat a exportovat data z/do souborů na serveru." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "Nemá žádný vliv v této verzi MySQL." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Umožňuje vytvářet a odstraňovat klíče." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Umožňuje měnit strukturu existujících tabulek." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Umožňuje přístup k úplnému seznamu databází." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12140,65 +12101,65 @@ msgstr "" "proměnných a zabíjení vláken jiných uživatelů." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Umožňuje vytvářet dočasné tabulky." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Umožňuje zamknout tabulku pro aktuální vlákno." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Potřebné pro replikaci pomocných serverů." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "Umožní uživateli zjistit, kde je hlavní / pomocný server." #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Umožňuje vytvářet nové pohledy." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "Umožňuje plánovat úlohy pomocí plánovače." #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "Umožňuje vytváření a mazání spouští." #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Umožňuje spuštění dotazu SHOW CREATE VIEW." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Umožňuje vytvářet uložené procedury." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Umožňuje měnit a rušit uložené procedury." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "Umožňuje vytvářet, rušit a přejmenovávat účty uživatelů." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Umožňuje spouštět uložené procedury." @@ -12210,8 +12171,8 @@ msgstr "Žádná" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Skupina uživatele" @@ -12253,12 +12214,12 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Poznámka: Nastavení těchto parametrů na 0 (nulu) odstraní omezení." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Omezuje, kolik dotazů může uživatel odeslat serveru za hodinu." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12267,20 +12228,20 @@ msgstr "" "spustit za hodinu." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Omezuje počet nových připojení, která může uživatel vytvořit za hodinu." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "Omezuje počet současných připojení uživatele." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12288,7 +12249,7 @@ msgid "Routine" msgstr "Rutiny" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12309,14 +12270,14 @@ msgstr "Umožňuje spouštět uložené procedury." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Oprávnění pro jednotlivé tabulky" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Poznámka: Názvy oprávnění MySQL jsou uváděny anglicky." @@ -12326,7 +12287,7 @@ msgid "Administration" msgstr "Správa" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Globální oprávnění" @@ -12335,15 +12296,15 @@ msgid "Global" msgstr "Globální" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Oprávnění pro jednotlivé databáze" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Umožňuje vytvářet nové tabulky." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Umožňuje odstranit tabulky." @@ -12366,7 +12327,7 @@ msgid "Native MySQL Authentication" msgstr "Přihlašování přes cookie" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Přihlašování" @@ -12390,8 +12351,8 @@ msgstr "Název počítače:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 msgid "Host name" msgstr "Název počítače" @@ -12409,218 +12370,218 @@ msgstr "Rozšíření pro přihlašování" msgid "Password Hashing Method" msgstr "Hašovací funkce pro heslo:" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "Heslo pro %s bylo úspěšně změněno." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Byla zrušena práva pro %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 msgid "Add user account" msgstr "Přidat uživatele" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 msgid "Database for user account" msgstr "Databáze pro uživatele" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "Vytvořit databázi stejného jména a přidělit všechna oprávnění." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Přidělit všechna oprávnění na jméno odpovídající masce (uživatel\\_%)." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Přidělit všechna oprávnění na databázi „%s“." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Uživatelé mající přístup k „%s“" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "Uživatel byl přidán." -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Přidělování" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "Nebyl nalezen žádný uživatel." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Jakýkoliv" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "globální" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "závislé na databázi" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "maska" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "závislé na tabulce" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 msgid "Edit privileges" msgstr "Upravit oprávnění" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Zrušit" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "Upravit skupinu" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… zachovat původního uživatele." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… smazat původního uživatele ze všech tabulek." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… odebrat všechna oprávnění původnímu uživateli a poté ho smazat." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… smazat uživatele a poté znovu načíst oprávnění." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "Změnit informace o uživateli / Kopírovat uživatele" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "Vytvořit nového uživatele se stejnými oprávněními a …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Oprávnění pro jednotlivá pole" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 msgid "Remove selected user accounts" msgstr "Odstranit vybrané uživatele" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Odebrat uživatelům veškerá oprávnění a poté je odstranit z tabulek." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "Odstranit databáze se stejnými jmény jako uživatelé." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "Musíte vybrat uživatele, které si přejete odstranit!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Načítám oprávnění" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Vybraní uživatelé byli úspěšně odstraněni." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Byla aktualizována oprávnění pro %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "Odstraňuji %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Oprávnění byla načtena úspěšně." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "Uživatel %s již existuje!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "Oprávnění pro %s" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Uživatel" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "Nový" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 msgid "Edit privileges:" msgstr "Upravit oprávnění:" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "Uživatel" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "Přehled uživatelů" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12633,7 +12594,7 @@ msgstr "" "tyto tabulky upravovány. V tomto případě je vhodné provést %snové načtení " "oprávnění%s před pokračováním." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -12652,11 +12613,11 @@ msgstr "" "tyto tabulky upravovány. V tomto případě je vhodné provést %snové načtení " "oprávnění%s před pokračováním." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "Zvolený uživatel nebyl nalezen v tabulce oprávnění." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Uživatel byl přidán." @@ -12912,24 +12873,24 @@ msgstr "Návod/Nastavení" msgid "Done dragging (rearranging) charts" msgstr "Ukončit přesouvání grafů" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "Povolit přesouvání grafů" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "Obnovovací frekvence" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "Sloupce grafu" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "Uspořádání grafů" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -12937,7 +12898,7 @@ msgstr "" "Uspořádání grafů je uloženo ve vašem prohlížeči. Pokud máte komplikovanější " "nastavení, můžete ho chtít exportovat a zálohovat." -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "Obnovit na výchozí hodnotu" @@ -12997,7 +12958,7 @@ msgid "Statements" msgstr "Údaj" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "#" @@ -13022,18 +12983,18 @@ msgstr "Zobrazit neformátované hodnoty" msgid "Related links:" msgstr "Související odkazy:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" "Počet spojení, která byla ukončena bez korektního ukončení ze strany klienta." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Počet chybných připojení k MySQL serveru." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13043,16 +13004,16 @@ msgstr "" "binlog_cache_size a musely použít dočasný soubor pro uložení příkazů " "transakce." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "Počet transakcí, které využily dočasnou mezipaměť binárního záznamu." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Celkový počet připojení (i chybných) k MySQL serveru." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13063,18 +13024,18 @@ msgstr "" "Pokud je tato hodnota velká, můžete zvětšit parametr tmp_table_size a MySQL " "bude používat větší dočasné tabulky v paměti." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "Počet vytvořených dočasných souborů." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" "Počet dočasných tabulek vytvořených serverem v paměti při provádění dotazů." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13082,7 +13043,7 @@ msgstr "" "Počet řádků provedených pomocí INSERT DELAYED, u kterých se vyskytla chyba " "(pravděpodobně duplicitní klíč)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13090,23 +13051,23 @@ msgstr "" "Počet vláken používaných pro INSERT DELAYED. Každá tabulka na které je " "použit INSERT DEKAYED má přiděleno jedno vlákno." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "Počet řádků zapsaných pomocí INSERT DELAYED." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "Počet provedených příkazů FLUSH." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "Počet interních příkazů COMMIT." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "Počet požadavků na smazání řádku." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13115,7 +13076,7 @@ msgstr "" "Počet zjišťování tabulek. Tímto se nazývá dotaz NDB clusteru, jestli ví o " "tabulce daného jména." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13125,7 +13086,7 @@ msgstr "" "provádí mnoho kompletních procházení klíčů. Na příklad SELECT col1 FROM foo, " "pokud je col1 v klíči." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -13133,7 +13094,7 @@ msgstr "" "Počet požadavků na přečtení řádku vycházející z klíče. Vysoká hodnota " "znamená, že dotazy správně využívají klíče." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13143,7 +13104,7 @@ msgstr "" "zvětšuje pokud provádíte dotaz na sloupec s klíčem s omezením rozsahu nebo " "prohledáváte klíč." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13151,7 +13112,7 @@ msgstr "" "Počet požadavků na přečtení předchozího řádku z klíče. Používané pro " "optimalizaci dotazů ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13163,7 +13124,7 @@ msgstr "" "Pravděpodobně používáte mnoho dotazů, které vyžadují prohlížení celé tabulky " "nebo používáte spojení tabulek, která nevyužívají klíčů." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13173,35 +13134,35 @@ msgstr "" "Počet požadavků na přečtení dalšího řádku ze souboru. Tato hodnota je vysoká " "pokud dotazy procházejí celé tabulky, pravděpodobně tedy nemají vhodné klíče." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "Počet interních příkazů ROLLBACK." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "Počet požadavků na aktualizaci řádku." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "Počet požadavků na vložení řádku." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "Počet stránek obsahujících data (změněné i nezměněné)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "Počet změněných stránek." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Počet stránek, na které je požadavek na vyprázdnění." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "Počet volných stránek." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13210,7 +13171,7 @@ msgstr "" "Počet zamčených stránek, tzn. stránek, které jsou právě zapisovány nebo " "čteny nebo nemohou být odstraněny z jakéhokoliv důvodu." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13222,11 +13183,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "Celková velikost InnoDB bufferů, ve stránkách." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13234,7 +13195,7 @@ msgstr "" "Počet provedených „náhodných“ dopředných čtení. Tato situace nastává pokud " "dotaz prochází velkou část tabulky v náhodném pořadí." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13242,11 +13203,11 @@ msgstr "" "Počet provedených sekvenčních dopředných čtení. Toto nastává pokud InnoDB " "musí procházet celou tabulku." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "Počet provedených logických čtení." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13254,7 +13215,7 @@ msgstr "" "Počet logických čtení, které nemohly být uspokojeny z bufferu, ale bylo " "nutné přečíst stránku ze souboru." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13267,55 +13228,55 @@ msgstr "" "k dispozici, musí se čekat. Pokud je velikost bufferů nastavena správně, " "měla by tato hodnota být malá." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "Počet zápisů provedených do InnoDB bufferu." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "Počet provedených synchronizací fsync()." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "Počet nevyřízených synchronizací fsync()." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "Počet nevyřízených čtení." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "Počet nevyřízených zápisů." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "Velikost přečtených dat, v bajtech." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "Počet provedených čtení dat." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "Počet provedených zápisů dat." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "Velikost zapsaných dat, v bajtech." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Počet provedených dvojitých zapsání a počet stránek, které byly takto " "zapsány." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" "Počet provedených dvojitých zapsání a počet stránek, které byly takto " "zapsány." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13323,35 +13284,35 @@ msgstr "" "Počet čekání kvůli plnému bufferu logu, který musel být vyprázdněn před " "pokračováním." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "Počet požadavků na zápis do logovacího souboru." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "Počet skutečných zápisů do logovacího souboru." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "Počet synchronizací fsync() provedených na logovacích souborech." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "Počet nevyřízených synchronizací logovacích souborů." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "Počet nevyřízených zápisů do logovacích souborů." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "Počet bajtů zapsaných do logovacího souboru." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "Počet vytvořených stránek." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -13359,51 +13320,51 @@ msgstr "" "Zakompilovaná velikost stránky InnoDB (výchozí je 16 kB). Mnoho hodnot je " "uváděno ve stránkách, pomocí této hodnoty je můžete přepočítat na velikost." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "Počet přečtených stránek." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "Počet zapsaných stránek." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "Počet zámků řádku, na které se v současné době čeká." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Průměrný čas potřebný pro získání zámku řádku, v milisekundách." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Celkový čas strávený čekáním na zámek řádku, v milisekundách." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maximální čas potřebný pro získání zámku řádku, v milisekundách." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "Kolikrát se muselo čekat na zámek řádku." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "Počet řádků odstraněných z InnoDB tabulek." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "Počet řádků vložených do InnoDB tabulek." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "Počet řádků přečtených z InnoDB tabulek." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "Počet řádků aktualizovaných v InnoDB tabulkách." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13411,7 +13372,7 @@ msgstr "" "Počet bloků ve mezipaměti klíčů, které byly změněny, ale nebyly zapsány na " "disk. Dříve se tato hodnota jmenovala Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -13419,7 +13380,7 @@ msgstr "" "Počet nepoužitých bloků ve mezipaměti klíčů. Pomocí této hodnoty poznáte jak " "moc je mezipaměť využitá." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13428,15 +13389,15 @@ msgstr "" "Počet použitých bloků v mezipaměti klíčů. Tato hodnota určuje maximum bloků, " "které kdy byly obsazeny najednou." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "Procento využití mezipaměti klíčů (vypočítaná hodnota)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "Počet požadavků na přečtení klíče z mezipaměti." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13446,7 +13407,7 @@ msgstr "" "pravděpodobně máte malou mezipaměť (key_buffer_size). Úspěšnost mezipaměti " "můžete spočítat jako Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13454,22 +13415,22 @@ msgstr "" "Úspěšnost mezipaměti klíčů spočítaná jako poměr skutečných a požadovaných " "čtení (vypočítaná hodnota)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "Počet požadavků na zápis bloku klíče do mezipaměti." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "Počet skutečných zápisů bloku klíče na disk." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Procento skutečných zápisů v porovnání s požadavky na zápis (vypočítaná " "hodnota)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13479,17 +13440,17 @@ msgstr "" "dotazů. Užitečné pro porovnání různých dotazů. Výchozí hodnota 0 znamená, že " "žádný dotaz ještě nebyl kompilován." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "Maximální počet současně používaných připojení od spuštění serveru." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Počet řádků čekajících na zapsání ve frontě INSERT DELAYED." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13497,19 +13458,19 @@ msgstr "" "Celkem otevřených tabulek. Pokud je tato hodnota příliš vysoká, " "pravděpodobně máte malou mezipaměť pro tabulky." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "Počet otevřených souborů." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "Počet otevřených streamů (používané převážně pro logování)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "Počet aktuálně otevřených tabulek." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13519,19 +13480,19 @@ msgstr "" "problém s jejím rozdrobením, která může být vyřešena spuštěním příkazu FLUSH " "QUERY CACHE." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "Volná paměť v mezipaměti dotazů." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "Počet zásahů mezipaměti dotazů." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "Počet dotazů přidaných do mezipaměti dotazů." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13542,7 +13503,7 @@ msgstr "" "Tato hodnota může pomoci v nastavení velikosti mezipaměti. Mezipaměť používá " "strategii LRU (nejdéle nepoužité) pro vyřazování dotazů." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13550,19 +13511,19 @@ msgstr "" "Počet necachovaných dotazů (necachovatelných nebo necachovaných kvůli " "nastavení query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "Počet dotazů v mezipaměti dotazů." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "Celkový počet bloků v mezipaměti dotazů." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stav failsafe replikace." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -13570,12 +13531,12 @@ msgstr "" "Počet spojení, které nevyužívaly klíče. Pokud tato hodnota není 0, měli " "byste zkontrolovat klíče tabulek." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" "Počet spojení, které používaly intervalové vyhledávání na referenční tabulce." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -13583,7 +13544,7 @@ msgstr "" "Počet spojení bez klíčů, které kontrolovaly použití klíčů po každém řádku. " "(Pokud tato hodnota není 0, měli byste zkontrolovat klíče tabulek.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13591,38 +13552,38 @@ msgstr "" "Počet spojení, které používaly intervalové vyhledávání na první tabulce. " "(Tato hodnota obvykle není kritická i když je vysoká.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "Počet spojení, které prováděly kompletní procházení první tabulky." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Počet dočasných tabulek v současné době otevřených podřízeným serverem." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "Celkový počet, kolikrát musel podřízený server opakovat transakce." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Tato položka je zapnutá, pokud server pracuje jako podřízený." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "Počet vláken jejichž vytvoření trvalo déle než slow_launch_time sekund." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Počet dotazů, které trvaly déle než long_query_time sekund." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13631,23 +13592,23 @@ msgstr "" "Počet průchodů slučování, které musel provést řadicí algoritmus. Při příliš " "vysoké hodnotě zvažte zvýšení sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "Počet řazení, které byly omezeny rozsahem." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "Počet seřazených řádek." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "Počet řazení provedených procházením tabulky." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "Počet okamžitých získání zámku tabulky." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13658,7 +13619,7 @@ msgstr "" "problémy s výkonem, měli byste optimalizovat dotazy a případně rozdělit " "tabulky nebo použít replikaci." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13668,11 +13629,11 @@ msgstr "" "Threads_created/Connections. Pokud je tato hodnota červená, měli byste " "zvýšit thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "Počet aktuálně otevřených připojení." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13683,11 +13644,11 @@ msgstr "" "velká, můžete zvětšit parametr thread_cache_size. (Na platformách, které " "mají dobrou implementaci vláken však toto nemá příliš velký vliv.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "Úspěšnost mezipaměti vláken (vypočítaná hodnota)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "Počet vláken, která nespí." @@ -13696,57 +13657,57 @@ msgstr "Počet vláken, která nespí." msgid "Users of '%s' user group" msgstr "Uživatelé ze skupiny '%s'" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "V této skupině nebyli nalezeni žádní uživatelé." -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "Skupiny" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "Záložky pro práci se serverem" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "Záložky pro práci s databází" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "Záložky pro práci s tabulkou" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "Zobrazit uživatele" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "Přidat skupinu" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "Upravit skupinu: '%s'" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "Přiřazení nabídky pro skupinu uživatelů" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "Název skupiny:" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "Záložky pro práci se serverem" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "Záložky pro práci s databází" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "Záložky pro práci s tabulkou" @@ -13810,21 +13771,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -13895,113 +13852,113 @@ msgstr "Byla vytvořena událost %1$s." msgid "Variable name was expected." msgstr "Vzor pro jméno tabulky" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "at beginning of table" msgid "Unexpected beginning of statement." msgstr "na začátku tabulky" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 #, fuzzy #| msgid "Unexpected characters on line %s." msgid "Unexpected token." msgstr "Neočekávané znaky na řádku %s." -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 #, fuzzy #| msgid "The number of tables that are open." msgid "The name of the entity was expected." msgstr "Počet aktuálně otevřených tabulek." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "Template was deleted." msgid "At least one column definition was expected." msgstr "Šablona byla smazána." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "Podrobné profilování" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "Pořadí" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "Stav" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "Souhrn podle stavů" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "Celkový čas" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "% času" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "Volání" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "ø čas" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Přidat tento SQL dotaz do oblíbených" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "Název:" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Umožnit všem uživatelům používat tuto oblíbenou položku" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "Nepodařilo se uložit oblíbený dotaz!" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Pro procházení databáze je použit oblíbený dotaz „%s\"." -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "Zobrazuji jako PHP kód" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " @@ -14010,7 +13967,7 @@ msgstr "" "Aktuální výběr neobsahuje unikátní klíč. Editování v mřížce, zaškrtávací " "políčka nebo odkazy na editaci a mazání proto nejsou k dispozici. %s" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " @@ -14019,7 +13976,7 @@ msgstr "" "Aktuální výběr neobsahuje unikátní klíč. Editování v mřížce může vést na " "nežádoucí chování. %s" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problémy s klíči v tabulce „%s\"" @@ -14048,27 +14005,27 @@ msgstr "" msgid "Bind parameters" msgstr "Svázané parametry" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "Přidat tento SQL dotaz do oblíbených:" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Přepsat existující oblíbený dotaz stejného jména" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Oddělovač" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Zobrazit zde tento dotaz znovu" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Zobrazit" @@ -14112,112 +14069,112 @@ msgstr "Vypnout sledování pro %s" msgid "Deactivate now" msgstr "Vypnout teď" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Vytvořeno" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Aktualizováno" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 msgid "Delete version" msgstr "Odstranit verzi" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Informace o sledování" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Snímek struktury" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "zapnuté" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "není zapnuté" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "Sledování příkazů" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "Odstranit tyto informace o sledování této tabulky" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "Nejsou k dispozici žádná data" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Zobrazit %1$s mezi daty %2$s a %3$s od uživatele %4$s %5$s" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "Výpis SQL (stáhnout soubor)" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "Výpis SQL" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "Tato volba nahradí vaší tabulku a data, která obsahuje." -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "Provedení SQL" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "Exportovat jako %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "Příkaz pro úpravu dat" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "Příkaz pro definici dat" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Datum" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Uživatel" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Snímek verze %s (SQL kód)" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Žádná" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "Uložené příkazy pro změnu struktury byly úspěšně smazány" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "Uložené příkazy pro změnu dat byly úspěšně smazány" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14225,62 +14182,62 @@ msgstr "" "Záznam můžete spustit vytvořením a použitím dočasné databáze. Prosím ověřte, " "že na tuto operací máte oprávnění." -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "Zakomentujte následující dva řádky pokud je nepotřebujete." -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "SQL příkazy byly exportovány. Prosím zkopírujte si je, nebo je spusťte." -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "Záznamy o sledování tabulky `%s`" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Sledování pro %1$s bylo zapnuto ve verzi %2$s." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Sledování pro %1$s bylo vypnuto ve verzi %2$s." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Verze %1$s z %2$s byla odstraněna." -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Verze %1$s vytvořena, sledování pro %2$s je zapnuté." -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Nesledované tabulky" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Sledovat tabulku" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Sledované tabulky" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Poslední verze" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "Smazat sledovací data" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Verze" @@ -14288,11 +14245,11 @@ msgstr "Verze" msgid "Manage your settings" msgstr "Spravujte svoje nastavení" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "Nastavení bylo uloženo." -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14395,7 +14352,7 @@ msgstr "Žádné databáze" msgid "View dump (schema) of databases" msgstr "Export databází" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14422,7 +14379,7 @@ msgstr "" "phpMyAdminovi se nepodařilo ukončit vlákno %s. Pravděpodobně jeho běh již " "skončil." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -15286,47 +15243,53 @@ msgstr "Bodový" msgid "Stacked" msgstr "Složený" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "Název grafu" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "Osa X:" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "Série:" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "Popis osy X:" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "Hodnoty X" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "Popis osy Y:" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Hodnoty Y" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside column:" msgid "Series column:" msgstr "Uvnitř pole:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Values for column %s" msgid "Value Column:" msgstr "Hodnoty pro sloupec %s" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "Uložit graf jako obrázek" @@ -15379,49 +15342,50 @@ msgstr "Komentář:" msgid "Drag to reorder" msgstr "Uspořádejte přetažením" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +#, fuzzy +#| msgid "Foreign key constraint" +msgid "Foreign key constraints" +msgstr "Omezení cizího klíče" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "Akce" + +#: templates/table/relation/common_form.phtml:10 +msgid "Constraint properties" +msgstr "Vlastnosti omezení" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "Omezení cizího klíče" + +#: templates/table/relation/common_form.phtml:60 +msgid "+ Add constraint" +msgstr "+ Přidat omezení" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "interních relací" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "Interní relace" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Interní relace není potřebná pokud existuje stejná relace pomocí FOREIGN KEY." -#: templates/table/relation/common_form.phtml:37 -#, fuzzy -#| msgid "Foreign key constraint" -msgid "Foreign key constraints" -msgstr "Omezení cizího klíče" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "Akce" - -#: templates/table/relation/common_form.phtml:41 -msgid "Constraint properties" -msgstr "Vlastnosti omezení" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "Omezení cizího klíče" - -#: templates/table/relation/common_form.phtml:83 -msgid "+ Add constraint" -msgstr "+ Přidat omezení" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "Zvolte která pole zobrazit:" @@ -15552,7 +15516,7 @@ msgid "at beginning of table" msgstr "na začátku tabulky" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 msgid "Partitions" msgstr "Oddíly" @@ -15595,7 +15559,7 @@ msgstr "používá oddíly" msgid "Edit partitioning" msgstr "Zrušit dělení" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "Upravit pohled" @@ -16976,6 +16940,37 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert je nastaveno na 0" +#~ 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" + +#~ 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" + +#~ msgid "tables" +#~ msgstr "tabulky" + +#~ msgid "views" +#~ msgstr "pohledy" + +#~ msgid "procedures" +#~ msgstr "procedury" + +#~ msgid "events" +#~ msgstr "události" + +#~ msgid "functions" +#~ msgstr "funkce" + +#~ msgid "Filter databases by name or regex" +#~ msgstr "Filtrovat databáze podle jména nebo regexu" + +#~ msgid "Filter by name or regex" +#~ msgstr "Filtrovat položky podle jména nebo regexu" + #~ msgid "Username and hostname didn't change." #~ msgstr "Jméno uživatele a počítače se nezměnilo." diff --git a/po/cy.po b/po/cy.po index e2c625cc96..4211eed577 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:04+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Welsh Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Routines" msgid "Continue" msgstr "Rheolweithiau" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 #, fuzzy #| msgid "The primary key has been dropped." msgid "Primary key added." msgstr "Cafodd yr allwedd gynradd ei gollwng." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Adroddiad tracio" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 #, fuzzy @@ -2146,560 +2158,521 @@ msgstr "" msgid "End of step" msgstr "Diwedd y llinell" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Gorffen" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Dim cronfeydd data wedi'u dewis." -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 #, fuzzy #| msgid "Create table on database %s" msgid "Create the following table" msgstr "Creu tabl mewn cronfa ddata %s" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Dim cronfeydd data wedi'u dewis." -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Cadw" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy #| msgid "in query" msgid "Hide search criteria" msgstr "mewn ymholiad" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy #| msgid "Show insert query" msgid "Show search criteria" msgstr "Dangos ymholiad mewnosod" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Chwilio" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Columns" msgid "Column maximum:" msgstr "Colofnau" -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Columns" msgid "Column minimum:" msgstr "Colofnau" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "in query" msgid "Hide find and replace criteria" msgstr "mewn ymholiad" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Show insert query" msgid "Show find and replace criteria" msgstr "Dangos ymholiad mewnosod" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 #, fuzzy #| msgid "Add/Delete columns" msgid "Select two columns" msgstr "Ychwanegu/Dileu colofnau" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Data definition statement" msgid "Data point content" msgstr "Datganiad diffiniad data" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Anwybyddu" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "" -#: js/messages.php:508 +#: js/messages.php:509 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Terfynwyd llinellau gan" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Add a new server" msgid "Inner ring" msgstr "Ychwanegwch weinydd newydd" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Terfynwyd llinellau gan" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Dewis Allwedd Estron" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 msgid "Page name" msgstr "Enw'r dudalen" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 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:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 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:539 +#: js/messages.php:540 #, fuzzy #| msgid "Select Tables" msgid "Delete page" msgstr "Dewis Tablau" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Please select a database" msgid "Please select a page to continue" msgstr "Dewiswch gronfa ddata" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Golygu neu allforio sgema perthynol" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Cafodd yr addasiadau eu cadw" -#: js/messages.php:550 +#: js/messages.php:551 #, fuzzy, php-format #| msgid "Number of columns" msgid "Add an option for column \"%s\"." msgstr "Nifer y colofnau" -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Gyrru" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy #| msgid "Columns" msgid "Double-click to copy column name." msgstr "Colofnau" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Dangos pob" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Safle gwreiddiol" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Diddymu" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 #, fuzzy #| msgid "Import files" msgid "Import status" msgstr "Mewnforiwch ffeiliau" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "Trothwy'r ffeil log" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Dewis Tablau" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 #, fuzzy #| msgid "Count tables" msgid "Go to link:" msgstr "Cyfrifwch y tablau" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Columns" msgid "Copy column name." msgstr "Colofnau" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Generadu Cyfrinair" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Generadu" -#: js/messages.php:620 +#: js/messages.php:621 #, fuzzy #| msgid "Mo" msgid "More" msgstr "Llu" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Dangos pob" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "Indecsau" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Dangos grid" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 #, fuzzy #| msgid "Use text field" msgid "Link with main panel" msgstr "Defnyddiwch faes testun" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 #, fuzzy #| msgid "Use text field" msgid "Unlink from main panel" msgstr "Defnyddiwch faes testun" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -#, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "Tablau" - -#: js/messages.php:633 -#, fuzzy -#| msgid "View" -msgid "views" -msgstr "Dangos" - -#: js/messages.php:634 -#, fuzzy -#| msgid "Procedures" -msgid "procedures" -msgstr "Gweithdrefnau" - -#: js/messages.php:635 -#, fuzzy -#| msgid "Event" -msgid "events" -msgstr "Digwyddiad" - -#: js/messages.php:636 -#, fuzzy -#| msgid "Functions" -msgid "functions" -msgstr "Swyddogaethau" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2707,140 +2680,140 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "Gwiriwch y fersiwn diweddaraf" -#: js/messages.php:649 +#: js/messages.php:641 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "Neidiwch i'r gronfa ddata" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Crëwch fersiwn" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Nodweddion perthynas cyffredinol" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Report title" msgid "Show report details" msgstr "Teitl yr adroddiad" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Anwybyddu" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Dangoswch yr ymholiad hwn yma eto" -#: js/messages.php:701 +#: js/messages.php:693 #, 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:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, fuzzy, php-format #| msgid "Execute bookmarked query" msgid "%s queries executed %s times in %s seconds." msgstr "Gweithredu ymholiad a glustnodwyd" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Sylwadau tabl" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy #| msgid "in query" msgid "Hide arguments" msgstr "mewn ymholiad" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Cynt" -#: js/messages.php:748 +#: js/messages.php:740 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2848,149 +2821,149 @@ msgid "Next" msgstr "Nesaf" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Heddiw" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "Ionawr" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "Chwefror" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "Mawrth" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "Ebrill" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Mai" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "Mehefin" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "Gorffennaf" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "Awst" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "Medi" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "Hydref" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "Tachwedd" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "Rhagfyr" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Ion" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Chwe" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Maw" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Ebr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Meh" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Gor" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Aws" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Med" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Hyd" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Tach" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Rhag" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "Dydd Sul" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "Dydd Llun" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "Dydd Mawrth" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "DYdd Mercher" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "Dydd Iau" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "Dydd Gwener" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "Dydd Sadwrn" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2998,149 +2971,149 @@ msgid "Sun" msgstr "Sul" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Llun" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Maw" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Iau" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Gwe" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Sad" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "Llu" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "Ia" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "Gw" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "Wy" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Dim" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Awr" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Munud" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Eiliad" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Defnyddiwch faes testun" -#: js/messages.php:886 +#: js/messages.php:878 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:887 +#: js/messages.php:879 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:889 +#: js/messages.php:883 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:890 +#: js/messages.php:885 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:891 +#: js/messages.php:888 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:892 +#: js/messages.php:890 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" @@ -3152,53 +3125,53 @@ msgstr "Nid yn rhif porth ddilys" msgid "Please enter the same value again" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 #, 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:898 +#: js/messages.php:917 #, 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:899 +#: js/messages.php:922 #, 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:901 +#: js/messages.php:928 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:902 +#: js/messages.php:933 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Gwall" @@ -3286,11 +3259,12 @@ msgstr "mewn ymholiad" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3338,7 +3312,7 @@ msgstr "" msgid "Explain" msgstr "Esbonio SQL" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Proffilio" @@ -3382,8 +3356,8 @@ msgid "History" msgstr "Sgipio Dilysu SQL" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3566,32 +3540,32 @@ msgstr "" msgid "Switch to dark theme" msgstr "Newidiwch i'r gronfa ddata a gopïwyd" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Dyw'r gweinydd ddim yn ymateb" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Manylion…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3601,8 +3575,8 @@ msgstr "" msgid "Ascending" msgstr "Esgynnol" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3772,8 +3746,8 @@ msgstr[0] "%s ergyd mewn tabl %s" msgstr[1] "%s ergyd mewn tabl %s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3821,28 +3795,28 @@ msgstr "Dad-ddewis Pob" msgid "Inside column:" msgstr "Tu fewn colofn:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 #, fuzzy #| msgid "Add/Delete columns" msgid "Restore column order" msgstr "Ychwanegu/Dileu colofnau" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 #, fuzzy msgid "Filter rows" msgstr "Hidlydd" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Search in database" msgid "Search this table" msgstr "Chwilio yn y gronfa ddata" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 #, fuzzy #| msgid "Begin" @@ -3850,7 +3824,7 @@ msgctxt "First page" msgid "Begin" msgstr "Dechrau" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 #, fuzzy @@ -3859,7 +3833,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Cynt" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 #, fuzzy @@ -3868,7 +3842,7 @@ msgctxt "Next page" msgid "Next" msgstr "Nesaf" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 #, fuzzy #| msgid "End" @@ -3876,83 +3850,83 @@ msgctxt "Last page" msgid "End" msgstr "Diwedd" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Pob" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of columns" msgid "Number of rows:" msgstr "Nifer y colofnau" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Trefnu gan allwedd" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Testunau Rhannol" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Testunau Llawn" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Allwedd perthynol" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Display columns table" msgid "Display column for relations" msgstr "Dangos tabl colofnau" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "Dangos cynnwys deuaidd" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "Dangos cynnwys BLOB" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Trawsffurfiad porwr" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Cafodd y rhes ei dileu" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Lladd" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -3960,7 +3934,8 @@ msgstr "" msgid "Your SQL query has been executed successfully." msgstr "Cafodd eich ymholiad SQL ei gweithredu'n llwyddiannus" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3968,43 +3943,43 @@ msgid "" msgstr "" "Mae gan yr olwg hon o leiaf y nifer hwn o resi. Gweler y %sdogfennaeth%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Yn dangos rhesi" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "cyfanswm" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "Cymerodd yr ymholiad %01.4f eiliad" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Gyda'r dewis:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -4012,27 +3987,27 @@ msgstr "Gyda'r dewis:" msgid "Check all" msgstr "Dewis Pob" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Argraffu golwg" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Gweithrediadau canlyniadau ymholiad" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Dangos sgema PDF" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 #, fuzzy #| msgid "Link not found" msgid "Link not found!" @@ -4132,19 +4107,19 @@ msgstr "Dim indecs wedi'i ddiffinio!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Indecsau" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -4153,24 +4128,24 @@ msgid "Action" msgstr "Gweithred" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Enw allweddol" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Unigryw" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Paciwyd" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "" @@ -4178,8 +4153,8 @@ msgstr "" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -4189,8 +4164,8 @@ msgid "Collation" msgstr "Coladiad" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -4206,15 +4181,15 @@ msgstr "Cafodd yr allwedd gynradd ei gollwng." msgid "Index %s has been dropped." msgstr "Cafodd indecs %s ei ollwng." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Gollwng" @@ -4253,12 +4228,13 @@ msgstr "Dangos" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4266,7 +4242,7 @@ msgstr "Tabl" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4275,8 +4251,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4284,41 +4260,41 @@ msgid "Search" msgstr "Chwilio" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Mewnosod" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Breintiau" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Gweithrediadau" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Tracio" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4329,16 +4305,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "Mae'r gronfa ddata yn ymddangos yn wag!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Ymholiad" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rheolweithiau" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4346,22 +4322,22 @@ msgstr "Rheolweithiau" msgid "Events" msgstr "Digwyddiadau" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Dyluniwr" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "Add/Delete columns" msgid "Central columns" msgstr "Ychwanegu/Dileu colofnau" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Cronfeydd Data" @@ -4372,33 +4348,33 @@ msgid "User accounts" msgstr "Defnyddiwr" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Log deuaidd" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Dyblygiad" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Newidynnau" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Setiau nod" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Peiriannau" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4731,7 +4707,7 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5160,42 +5136,42 @@ msgstr "" msgid "Click to toggle" msgstr "Pwyso i ddewis" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "cyfeiriadur lanlwytho y gweinydd gwe" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "" "Does dim modd cyrraedd y cyfeiriadur a osodoch chi ar gyfer gwaith a " "lanwlythwyd." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 #, fuzzy #| msgid "There are no configured servers" msgid "There are no files to upload!" msgstr "Nid oes unrhyw gweinyddion a ffurfweddwyd" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Gwagu" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Argraffu" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 #, fuzzy #| msgid "User" msgid "Users" @@ -5372,8 +5348,8 @@ msgid "Add new column" msgstr "Ychwanegwch %s colofn" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5436,19 +5412,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "Dylech uwchraddio i %s %s neu'n well." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -6300,7 +6276,7 @@ msgid "Remember file name template" msgstr "Cofio templed enw ffeil" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Ychwanegwch werth AUTO_INCREMENT" @@ -6341,7 +6317,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Ychwanegwch %s" @@ -8048,7 +8024,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 #, fuzzy #| msgid "in query" msgid "Retain query box" @@ -8348,116 +8324,35 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Testun Open Document" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Cafodd tabl %s ei wagu." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "Cafodd golwg %s ei ollwng" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "Cafodd tabl %s ei ollwng" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "anhysbys" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#: libraries/controllers/TableStructureController.php:250 -#, fuzzy -#| msgid "No databases selected." -msgid "No column selected." -msgstr "Dim cronfeydd data wedi'u dewis." - -#: libraries/controllers/TableStructureController.php:484 -#, fuzzy -#| msgid "Database %s has been dropped." -msgid "The columns have been moved successfully." -msgstr "Cafodd cronfa ddata %s ei gollwng." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -#, fuzzy -#| msgid "Query" -msgid "Query error" -msgstr "Ymholiad" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Newid" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Indecs" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Testunllawn" - -#: libraries/controllers/TableStructureController.php:1201 -#, fuzzy -#| msgid "Use this value" -msgid "Distinct values" -msgstr "Defnyddiwch y gwerth hwn" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8473,6 +8368,14 @@ msgstr "" msgid "No data to display" msgstr "Dim cronfeydd data" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "" + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "" @@ -8483,25 +8386,98 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr "Perthynas mewnol wedi'i ychwanegu" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Search" msgid "Table search" msgstr "Chwilio" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Search" msgid "Zoom search" msgstr "Chwilio" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "in query" msgid "Find and replace" msgstr "mewn ymholiad" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: libraries/controllers/table/TableStructureController.php:251 +#, fuzzy +#| msgid "No databases selected." +msgid "No column selected." +msgstr "Dim cronfeydd data wedi'u dewis." + +#: libraries/controllers/table/TableStructureController.php:485 +#, fuzzy +#| msgid "Database %s has been dropped." +msgid "The columns have been moved successfully." +msgstr "Cafodd cronfa ddata %s ei gollwng." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +#, fuzzy +#| msgid "Query" +msgid "Query error" +msgstr "Ymholiad" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Newid" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Indecs" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Testunllawn" + +#: libraries/controllers/table/TableStructureController.php:1209 +#, fuzzy +#| msgid "Use this value" +msgid "Distinct values" +msgstr "Defnyddiwch y gwerth hwn" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8511,7 +8487,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Dim newid" @@ -8586,7 +8562,7 @@ msgstr "Creu" msgid "Create database:" msgstr "Creu cronfa ddata newydd" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Dim Breintiau" @@ -9328,73 +9304,73 @@ msgid "Dump has been saved to file %s." msgstr "Dadlwythiad wedi'i gadw i'r ffeil %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, fuzzy, php-format #| msgid "No databases" msgid "Go to database: %s" msgstr "Dim cronfeydd data" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Data ar goll ar gyfer %s" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, fuzzy, php-format #| msgid "Count tables" msgid "Go to table: %s" msgstr "Cyfrifwch y tablau" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Strwythur yn unig" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "" @@ -9417,70 +9393,70 @@ msgstr "Swyddogaeth" msgid "Binary" msgstr "Deuaidd" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Deuaidd - peidiwch â golygu" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "cyfeiriadur lanlwytho y gweinydd gwe" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Mewnosod" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "ac yna" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Mewnosod fel rhes newydd" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "Dangos ymholiad mewnosod" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Dychwelyd i'r dudalen flaenorol" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Mewnosod rhes newydd arall" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Dychwelyd i'r dudalen hon" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Golygu'r rhes nesaf" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9490,7 +9466,7 @@ msgstr "" "Defnyddiwch y bysell TAB i symud o un gwerth i'r llall, neu CTRL + saethau i " "symud unrhyw le" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9502,11 +9478,11 @@ msgstr "" msgid "Value" msgstr "Gwerth" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9522,43 +9498,43 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Rename table to" msgid "Replace table prefix:" msgstr "Ailenwi tabl i" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Rename table to" msgid "Copy table with prefix:" msgstr "Ailenwi tabl i" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 #, fuzzy #| msgid "Fr" msgid "From" msgstr "Gw" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Rename table to" msgid "Add table prefix:" msgstr "Ailenwi tabl i" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -9790,8 +9766,8 @@ msgstr "Gweithdrefnau" msgid "Views:" msgstr "Dangos" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Dangos" @@ -9837,10 +9813,9 @@ msgstr[4] "" msgstr[5] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "table name" -msgid "Filter databases by name or regex" -msgstr "enw tabl" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -9849,12 +9824,6 @@ msgstr "enw tabl" msgid "Clear fast filter" msgstr "Cadw fel ffeil" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "table name" -msgid "Filter by name or regex" -msgstr "enw tabl" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -10258,7 +10227,7 @@ msgstr "Ailenwch y gronfa ddata i" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -10267,7 +10236,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Privileges" @@ -10287,18 +10256,18 @@ msgstr "Tynnwch y gronfa ddata" msgid "Drop the database (DROP)" msgstr "Dilëwch y gronfa ddata (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Strwythur yn unig" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Strwythur a data" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Data yn unig" @@ -10312,7 +10281,7 @@ msgstr "Copïwch y gronfa ddata i" msgid "CREATE DATABASE before copying" msgstr "Defnyddiwch CREATE DATABASE cyn copïo" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Ychwanegwch cyfyngiadau" @@ -10352,61 +10321,61 @@ msgstr "Peiriant Storio" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Dadansoddi tabl" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Gwirio tabl" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Gwirio tabl" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Optimeiddio tabl" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Trwsio tabl" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 #, fuzzy @@ -10414,105 +10383,105 @@ msgstr "Trwsio tabl" msgid "Delete data or table" msgstr "Dilëwch data tracio ar gyfer y tabl hwn" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 #, fuzzy #| msgid "Copy database to" msgid "Delete the table (DROP)" msgstr "Copïwch y gronfa ddata i" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Dadansoddi" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Gwirio" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Optimeiddio" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Ailadeiladu" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Trwsio" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "Cau" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "Cynhaliaeth ymraniadau" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "Ymraniad %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "Tynnu'r ymraniadu" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Cafodd golwg %s ei ollwng" -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Cafodd golwg %s ei ollwng" -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "" @@ -10707,7 +10676,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Dadlwytho data ar gyfer y tabl" @@ -10733,21 +10702,21 @@ msgstr "Disgrifiad" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Strwythur y tabl ar gyfer y tabl" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10859,7 +10828,7 @@ msgid "Database:" msgstr "Cronfa ddata" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10974,7 +10943,7 @@ msgid "Data creation options" msgstr "Ystadegau cronfeydd data" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -11043,8 +11012,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11052,98 +11021,98 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Missing data for %s" msgid "Metadata" msgstr "Data ar goll ar gyfer %s" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Metadata for %s" msgstr "Data ar goll ar gyfer %s" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 #, fuzzy #| msgid "Creation" msgid "Creation:" msgstr "Cread" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 #, fuzzy #| msgid "Last update" msgid "Last update:" msgstr "Diweddariad diwethaf" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 #, fuzzy #| msgid "Last check" msgid "Last check:" msgstr "Gwiriad diwethaf" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "ar ddefnydd" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for dumped tables" msgstr "Tu fewn tabl(au):" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "Tu fewn tabl(au):" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Ychwanegwch werth AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Ychwanegwch werth AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "" @@ -11397,9 +11366,9 @@ msgstr "Sgema perthynol" msgid "Table of contents" msgstr "Tabl cynnwys" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Ychwanegol" @@ -11563,63 +11532,63 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Gwall: perthynas yn bodoli yn barod." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "Perthynas FOREIGN KEY wedi'i ychwanegu" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Gwall: Perthynas heb ei ychwanegu." -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Relational features are disabled!" msgstr "Gwall: Perthynas heb ei ychwanegu." -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "Perthynas mewnol wedi'i ychwanegu" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "Gwall: Perthynas heb ei ychwanegu." -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "Perthynas FOREIGN KEY wedi'i ychwanegu" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Gwall: Perthynas heb ei ychwanegu." -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "Gwall: Perthynas heb ei ychwanegu." -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11668,110 +11637,110 @@ msgstr "Trawsffurfiad porwr" msgid "Please see the documentation on how to update your column_info table. " msgstr "" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "There are no configured servers" msgid "Persistent favorite tables" msgstr "Nid oes unrhyw gweinyddion a ffurfweddwyd" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Modifications have been saved" msgid "Configurable menus" msgstr "Cafodd yr addasiadau eu cadw" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Rename table to" msgid "Remembering Designer Settings" msgstr "Ailenwi tabl i" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Export" msgid "Saving export templates" msgstr "Allforio" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11951,8 +11920,8 @@ msgstr "Enw defnyddiwr:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "" @@ -11960,7 +11929,7 @@ msgstr "" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Cyfrinair" @@ -12664,7 +12633,7 @@ msgstr[1] "Cafodd cronfa ddata %s ei gollwng." msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Fersiwn" @@ -12672,100 +12641,96 @@ msgstr "Fersiwn" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Analluogwyd" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "" #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "" #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "" #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12773,65 +12738,65 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "" #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "" #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -12843,8 +12808,8 @@ msgstr "Dim" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12888,31 +12853,31 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12920,7 +12885,7 @@ msgid "Routine" msgstr "Rheolweithiau" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12935,14 +12900,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -12952,7 +12917,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "" @@ -12961,15 +12926,15 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "" @@ -12992,7 +12957,7 @@ msgid "Native MySQL Authentication" msgstr "Yn dilysu…" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "" @@ -13017,8 +12982,8 @@ msgstr "Enw defnyddiwr:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Log name" msgid "Host name" @@ -13040,237 +13005,237 @@ msgstr "Yn dilysu…" msgid "Password Hashing Method" msgstr "Stwnsio Cyfrinair" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Unrhyw ddefnyddiwr" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Databases statistics" msgid "Database for user account" msgstr "Ystadegau cronfeydd data" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Cafodd golwg %s ei ollwng" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Privileges" msgid "Edit privileges" msgstr "Breintiau" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Golygu gweinydd" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Check Privileges" msgid "Routine-specific privileges" msgstr "Gwirio Breintiau" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remote server" msgid "Remove selected user accounts" msgstr "Gweinydd pell" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Breintiau" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Defnyddiwr" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Privileges" msgid "Edit privileges:" msgstr "Breintiau" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "User" msgid "User account" msgstr "Defnyddiwr" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Overview" msgid "User accounts overview" msgstr "Gorolwg" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13279,7 +13244,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -13288,11 +13253,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "" @@ -13538,33 +13503,33 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 #, fuzzy msgid "Refresh rate" msgstr "Adfywio" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 #, fuzzy #| msgid "Add/Delete columns" msgid "Chart columns" msgstr "Ychwanegu/Dileu colofnau" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" @@ -13627,7 +13592,7 @@ msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -13658,35 +13623,35 @@ msgstr "Dangoswch gronfeydd data a restrir yn unig" msgid "Related links:" msgstr "Perthnasau" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Methu â chysylltu i'r gweinydd MySQL" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13694,78 +13659,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13773,7 +13738,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13781,42 +13746,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13824,33 +13789,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13859,244 +13824,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Fformat y ffeil a mewnforiwyd" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14104,99 +14069,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14204,18 +14169,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14223,13 +14188,13 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Nid yw tracio'n weithredol" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -14238,77 +14203,77 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 #, fuzzy #| msgid "User" msgid "User groups" msgstr "Defnyddiwr" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "Fersiwn y gweinydd" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Databases" msgid "Database level tabs" msgstr "Cronfeydd Data" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table comments" msgid "Table level tabs" msgstr "Sylwadau tabl" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy #| msgid "View" msgid "View users" msgstr "Dangos" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Any user" msgid "Add user group" msgstr "Unrhyw ddefnyddiwr" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy #| msgid "No Privileges" msgid "User group menu assignments" msgstr "Dim Breintiau" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Columns" msgid "Group name:" msgstr "Colofnau" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Fersiwn y gweinydd" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Databases" msgid "Database-level tabs" msgstr "Cronfeydd Data" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14372,21 +14337,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14451,139 +14412,139 @@ msgstr "Cafodd y gronfa ddata %1$s ei chreu." msgid "Variable name was expected." msgstr "Templed enw tabl" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "Show dimension of tables" msgid "Unexpected beginning of statement." msgstr "Dangos dimensiynau'r tabl" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Cafodd y rhes ei dileu" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Maint tyfu'r ffeil ddata" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy #| msgid "Sat" msgid "State" msgstr "Sad" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Cyfanswm" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Amser" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Cau" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Amser" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Clustnodwch yr ymholiad SQL hwn" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Label key" msgid "Label:" msgstr "Allwedd y label" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created!" msgstr "Clustnodi %s a grëwyd" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -14614,29 +14575,29 @@ msgstr "" msgid "Bind parameters" msgstr "Rheolweithiau" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 #, fuzzy #| msgid "Bookmark this SQL query" msgid "Bookmark this SQL query:" msgstr "Clustnodwch yr ymholiad SQL hwn" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Cyfyngydd" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Dangoswch yr ymholiad hwn yma eto" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Dangos yn unig" @@ -14684,187 +14645,187 @@ msgstr "Dadweithredwch dracio am %s.%s" msgid "Deactivate now" msgstr "Dadweithredwch nawr" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Crëwyd" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Diweddarwyd" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "Crëwch fersiwn" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Adroddiad tracio" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Ciplun strwythur" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "gweithredol" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "ddim yn weithredol" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "Datganiadau tracio" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Dilëwch data tracio ar gyfer y tabl hwn" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Dim cronfeydd data" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "Dadlwythiad SQL (lawrlwytho ffeil)" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "Dadlwythiad SQL" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "Bydd yr opsiwn hwn yn disodli eich tabl a'r data sydd ynddo." -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "Gweithrediad SQL" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "Allforio fel %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "Datganiad trin data" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "Datganiad diffiniad data" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Dyddiad" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Enw defnyddiwr" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Ciplun fersiwn %s (cod SQL)" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 #, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" msgstr "Traciwch y datganiadau diffiniad data hyn:" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 #, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "Traciwch y datganiadau trin data hyn:" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Mae tracio'n weithredol" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Mae tracio'n weithredol" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Version %1$s of %2$s was deleted." msgstr "Crëwch fersiwn %s o %s.%s" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Tablau heb dracio" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Tracio tabl" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Tablau a draciwyd" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Fersiwn diweddaraf" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking" msgstr "Dilëwch data tracio ar gyfer y tabl hwn" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Fersiynau" @@ -14874,13 +14835,13 @@ msgstr "Fersiynau" msgid "Manage your settings" msgstr "Nodweddion perthynas cyffredinol" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." msgstr "Cafodd yr addasiadau eu cadw" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14981,7 +14942,7 @@ msgstr "Dim cronfeydd data" msgid "View dump (schema) of databases" msgstr "Gwylio dadlwythiad (sgema) cronfeydd data" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -15006,7 +14967,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -15927,51 +15888,57 @@ msgstr "" msgid "Stacked" msgstr "Paciwyd" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Report title" +msgid "Chart title:" +msgstr "Teitl yr adroddiad" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Gwerth" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Gwerth" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside column:" msgid "Series column:" msgstr "Tu fewn colofn:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Number of columns" msgid "Value Column:" msgstr "Nifer y colofnau" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -16038,54 +16005,55 @@ msgstr "Sylw" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 -msgid "Internal relations" -msgstr "Perthnasau mewnol" - -#: templates/table/relation/common_form.phtml:11 -msgid "Internal relation" -msgstr "" - -#: templates/table/relation/common_form.phtml:14 -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "" - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 #, fuzzy #| msgid "Add constraints" msgid "Foreign key constraints" msgstr "Ychwanegwch cyfyngiadau" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 #, fuzzy #| msgid "Action" msgid "Actions" msgstr "Gweithred" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 #, fuzzy #| msgid "Routines" msgid "Constraint properties" msgstr "Rheolweithiau" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Ychwanegwch cyfyngiadau" -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +msgid "Internal relations" +msgstr "Perthnasau mewnol" + +#: templates/table/relation/common_form.phtml:80 +msgid "Internal relation" +msgstr "" + +#: templates/table/relation/common_form.phtml:83 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "" + +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16242,7 +16210,7 @@ msgid "at beginning of table" msgstr "Dangos dimensiynau'r tabl" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16289,7 +16257,7 @@ msgstr "Ymraniad %s" msgid "Edit partitioning" msgstr "Tynnu'r ymraniadu" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -17604,6 +17572,41 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "Tablau" + +#, fuzzy +#~| msgid "View" +#~ msgid "views" +#~ msgstr "Dangos" + +#, fuzzy +#~| msgid "Procedures" +#~ msgid "procedures" +#~ msgstr "Gweithdrefnau" + +#, fuzzy +#~| msgid "Event" +#~ msgid "events" +#~ msgstr "Digwyddiad" + +#, fuzzy +#~| msgid "Functions" +#~ msgid "functions" +#~ msgstr "Swyddogaethau" + +#, fuzzy +#~| msgid "table name" +#~ msgid "Filter databases by name or regex" +#~ msgstr "enw tabl" + +#, fuzzy +#~| msgid "table name" +#~ msgid "Filter by name or regex" +#~ msgstr "enw tabl" + #, fuzzy #~| msgid "Tracking report" #~ msgid "Taking you to %s." diff --git a/po/da.po b/po/da.po index c4dabe6dc0..3ce9dd9878 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-09-16 14:31+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Danish Are you sure you " "want to continue?" @@ -1948,51 +1960,51 @@ msgstr "" "Denne handling kan ændre nogle af kolonnedefinitionerne.
Er du sikker " "på at du vil fortsætte?" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "Fortsæt" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "Tilføj primær nøgle" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "Primær nøgle er blevet tilføjet." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "Tager dig til næste trin…" -#: js/messages.php:433 +#: js/messages.php:434 #, 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:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "Slut på trinnet" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "Andet trin af normaliseringen (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Færdig" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "Bekræft delvise afhængigheder" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "De valgte, delvise afhænigheder er som følger:" -#: js/messages.php:440 +#: js/messages.php:441 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2000,19 +2012,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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "Der blev ikke valgt delvise afhængigheder!" -#: js/messages.php:446 +#: js/messages.php:447 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:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "Skjul listen med delvise afhængigheder" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2020,168 +2032,168 @@ msgstr "" "Hold vejret! Der kan gå nogle sekunder afhængig af datastørrelsen og " "antallet af kolonner i tabellen." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "Trin" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "De følgende handlinger vil blive udført:" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "DROP kolonnerne %s fra tabellen %s" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "Opret følgende tabel" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "Tredje trin af normaliseringen (3NF)" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "Bekræft transitive afhængigheder" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "De valgte afhængigheder er:" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "Der er ikke valgt afhængigheder!" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Gem" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Skjul søgekriterie" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Vis søgekriterie" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "Intervalsøgning" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "Kolonnemaksimum:" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "Kolonneminimum:" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "Minimumsværdi:" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "Maksimumsværdi:" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "Skjul kriteriet for søg og erstat" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "Vis kriteriet for søg og erstat" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "Hvert punkt repræsenterer en datarække." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "Når der holdes over et punkt vises dets etiket." -#: js/messages.php:486 +#: js/messages.php:487 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:488 +#: js/messages.php:489 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:490 +#: js/messages.php:491 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:492 +#: js/messages.php:493 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:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "Vælg to kolonner" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "Vælg to forskellige kolonner" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "Datapunkt-indhold" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Kopi" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Punkt" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Linjestreng" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Polygon" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometri" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "Indre ring" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "Ydre ring" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "Vil du kopiere krypteringsnøgle?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "Krypteringsnøgle" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2189,24 +2201,24 @@ msgstr "" "Indikerer at du har lavet ændringer ved denne side, du vil blive spurgt om " "godkendelse før ændringerne frafalder" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Vælg refereret nøgle" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Vælg fremmednøgle" -#: js/messages.php:529 +#: js/messages.php:530 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:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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:532 +#: js/messages.php:533 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 +2226,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:535 +#: js/messages.php:536 msgid "Page name" msgstr "Sidenavn" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Gem side" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Åbn side" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "Slet side" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Unavngivet" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "Vælg venligst en side for at fortsætte" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "Angiv venligst et gyldigt sidenavn" -#: js/messages.php:544 +#: js/messages.php:545 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:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "Sletning af siden er gennemført" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "Eksportér relationsskema" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Rettelserne er gemt" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "Tilføj mulighed for kolonnen \"%s\"." -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "%d objekt(er) oprettet." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Send" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "Tryk på ESC for at annullere redigeringen." -#: js/messages.php:557 +#: js/messages.php:558 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 +2304,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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "Træk for at ændre rækkefølge." -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "Klik for at sortere resultater efter denne kolonne." -#: js/messages.php:563 +#: js/messages.php:564 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 " @@ -2310,26 +2322,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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "Klik for at markere/afmarkere." -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "Dobbeltklik for at kopiere kolonnenavn." -#: js/messages.php:570 +#: js/messages.php:571 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:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Vis alle" -#: js/messages.php:574 +#: js/messages.php:575 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." @@ -2338,11 +2350,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:578 +#: js/messages.php:579 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:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2350,126 +2362,96 @@ msgstr "" "Sikker på du vil se alle rækkerne? For store tabeller kan dette få browseren " "til at gå ned." -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "Oprindelige længde" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "annullér" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Afbrudt" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "Gennemført" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "Importstatus" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Drop filerne her" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "Vælg først en database" -#: js/messages.php:598 +#: js/messages.php:599 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:603 +#: js/messages.php:604 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:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "Gå til linket:" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "Kopiér kolonnenavn." -#: js/messages.php:612 +#: js/messages.php:613 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:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Generer adgangskode" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Generer" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "Mere" -#: js/messages.php:623 +#: js/messages.php:624 msgid "Show panel" msgstr "Vis panel" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "Skjul panel" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "Vis skjulte elementer i navigationstræet." -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "Link med hovedpanel" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "Fjern link fra hovedpanel" -#: js/messages.php:629 -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:631 -#, 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:632 -msgid "tables" -msgstr "tabeller" - -#: js/messages.php:633 -msgid "views" -msgstr "views" - -#: js/messages.php:634 -msgid "procedures" -msgstr "procedurer" - -#: js/messages.php:635 -msgid "events" -msgstr "hændelser" - -#: js/messages.php:636 -msgid "functions" -msgstr "funktioner" - -#: js/messages.php:640 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:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2479,42 +2461,42 @@ msgstr "" "opgradere. Den nyeste version er %s, udgivet den %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", seneste stabile version:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "up-to-date" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "Opret view" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "Send fejlrapporter" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "Indsend fejlrapport" -#: js/messages.php:657 +#: js/messages.php:649 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:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "Tilpas indstillinger for rapportering" -#: js/messages.php:660 +#: js/messages.php:652 msgid "Show report details" msgstr "Vis detaljer for rapport" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2522,7 +2504,7 @@ msgstr "" "Din eksport er ikke komplet, da der er en lav tidsgrænse for afvikling på " "PHP-niveaut!" -#: js/messages.php:667 +#: js/messages.php:659 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2531,60 +2513,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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "Der er registreret fejl på serveren!" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "Gennemse venligst bunden af denne side." -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "Ignorér alle" -#: js/messages.php:689 +#: js/messages.php:681 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:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "Udfør denne forespørgsel påny?" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "Er du sikker på at du vil slette dette bogmærke?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "En fejl opstod mens hentede SQL debug info." -#: js/messages.php:705 +#: js/messages.php:697 #, 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:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "%s argument(er) sendt" -#: js/messages.php:707 +#: js/messages.php:699 msgid "Show arguments" msgstr "Tabel kommentarer" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "Skjul argumenterne" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "Tidsforbrug:" -#: js/messages.php:711 +#: js/messages.php:703 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 " @@ -2595,291 +2577,291 @@ msgstr "" "korrekt for dig. I Safari opleves dette typisk under tilstanden \"Private " "Mode Browsing\"." -#: js/messages.php:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "Forrige" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "Næste" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "I dag" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "januar" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "februar" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "marts" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "april" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "maj" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "juni" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "juli" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "august" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "september" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "oktober" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "november" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "dec" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "søndag" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "mandag" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "tirsdag" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "onsdag" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "torsdag" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "fredag" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "lørdag" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "søn" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "man" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "tir" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "ons" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "tor" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "fre" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "lør" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "sø" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "ma" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "ti" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "on" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "to" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "fr" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "lø" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "uge" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "ingen" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Time" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Minut" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Sekund" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "Dette felt er påkrævet" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "Ret venligst dette felt" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "Angiv en gyldig e-mailadresse" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "Angiv en gyldig URL-adresse" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "Indtast en gyldig dato" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "Indtast en gyldig dato (ISO)" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "Angiv et gyldigt tal" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "Indtast et gyldigt kreditkortnummer" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "Angiv kun tal" @@ -2887,41 +2869,41 @@ msgstr "Angiv kun tal" msgid "Please enter the same value again" msgstr "Angiv samme værdi igen" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "Angiv venligst ikke mere end {0} tegn" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "Angiv mindst {0} tegn" -#: js/messages.php:896 +#: js/messages.php:907 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:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "Indtast venligst en værdi mellem {0} og {1}" -#: js/messages.php:898 +#: js/messages.php:917 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:899 +#: js/messages.php:922 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:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "Angiv venligst en gyldig dato eller tid" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "Angiv venligst et gyldigt HEX-tal" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Fejl" @@ -3009,11 +2991,12 @@ msgstr "Genforespørg" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3055,7 +3038,7 @@ msgstr "Under nuværende session" msgid "Explain" msgstr "Forklar" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Profilering" @@ -3089,8 +3072,8 @@ msgid "History" msgstr "Historik" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3237,7 +3220,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Skift til det mørke tema" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3245,25 +3228,25 @@ msgstr "" "Serveren svarer ikke (eller den lokale servers socket er ikke korrekt " "konfigureret)." -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "Serveren svarer ikke." -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "Tjek venligst privilegier for mappen som indeholder databasen." -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Detaljer…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Forbindelse for kontrolbruger som defineret i din konfiguration slog fejl." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3273,8 +3256,8 @@ msgstr "" msgid "Ascending" msgstr "Stigende" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3417,8 +3400,8 @@ msgstr[0] "%1$s sammenfald i %2$s" msgstr[1] "%1$s sammenfald i %2$s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3460,119 +3443,120 @@ msgstr "Fravælg alle" msgid "Inside column:" msgstr "Indeni kolonne:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "Gem redigerede data" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "Gendan kolonnerækkefølge" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "Filtrer rækker" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "Søg i denne tabel" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "Start" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "Forrige" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "Næste" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "Slut" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Alle" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Antal rækker:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Sorteringsnøgle" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "Delvise tekster" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "Komplette tekster" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Relationel nøgle" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 msgid "Display column for relations" msgstr "Vis kolonne for relationer" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "Vis binært indhold" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "Vis indhold af BLOB" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "Skjul browser-transformation" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "Velkendt tekst" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "Velkendt binær" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "Rækken er slettet." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Dræb (Kill)" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Kan være anslået. Se [doc@faq3-11] FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "Din SQL-forespørgsel blev udført korrekt." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3580,64 +3564,64 @@ msgid "" msgstr "" "Viewet har som minimum dette antal rækker. Se venligst %sdokumentationen%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "Viser rækkerne %1s - %2s" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d i alt, %2$d i forespørgsel" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "%d i alt" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "Forespørgsel tog %01.4f sekunder." -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Med det markerede:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 msgid "Check all" msgstr "Vælg alle" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Udskriv" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Forespørgselsresultat operationer" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Vis diagram" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "Visualiser GIS data" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "Link ikke fundet!" @@ -3732,19 +3716,19 @@ msgstr "Intet indeks defineret!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Indeks" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3753,24 +3737,24 @@ msgid "Action" msgstr "Handling" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Nøglenavn" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Unik" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Pakket" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Kardinalitet" @@ -3778,8 +3762,8 @@ msgstr "Kardinalitet" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3789,8 +3773,8 @@ msgid "Collation" msgstr "Tegnsæt (sortering)" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3806,15 +3790,15 @@ msgstr "Primærnøglen er slettet." msgid "Index %s has been dropped." msgstr "Indeks %s er blevet slettet." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Slet" @@ -3855,12 +3839,13 @@ msgstr "Visning" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3868,7 +3853,7 @@ msgstr "Tabel" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3877,8 +3862,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3886,41 +3871,41 @@ msgid "Search" msgstr "Søg" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Indsæt" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilegier" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Operationer" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Sporing" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3931,16 +3916,16 @@ msgstr "Triggers/udløsere" msgid "Database seems to be empty!" msgstr "Database ser ud til at være tom!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Foresp. via eks" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rutiner" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3948,20 +3933,20 @@ msgstr "Rutiner" msgid "Events" msgstr "Hændelser" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Designer" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "Centerkolonner" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Databaser" @@ -3970,33 +3955,33 @@ msgid "User accounts" msgstr "Brugerkonti" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Binær log" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikation" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Variable" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Tegnsæt" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Lagring" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "Udvidelsesmoduler" @@ -4294,7 +4279,7 @@ msgstr "Kan ikke omdøbe indeks til PRIMARY!" msgid "No index parts defined!" msgstr "Ingen dele af indeks er defineret!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Fejl ved dannelse af fremmednøgle på %1$s (tjek datatyper)" @@ -4768,39 +4753,39 @@ msgstr "Funktionaliteten af %s er påvirket af en kendt fejl, se %s" msgid "Click to toggle" msgstr "Klik for at skifte" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Gennemse din computer:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Vælg fra %s - webserverens upload-mappe:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Mappen du har sat til upload-arbejde kan ikke findes." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "Der er ikke nogen filer at uploade!" # By "Empty", if this is an action, it should translate to "Tøm" but if it's a # state it should translate to "Tom". -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Tøm" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "Udfør" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Udskriv" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "Brugere" @@ -4962,8 +4947,8 @@ msgid "Add new column" msgstr "Tilføj ny kolonne" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5030,19 +5015,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "Du burde opdatere til %s %s eller senere." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "Fejl: Token uoverensstemmelse" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "forsøg på overskrivning af GLOBALS" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "muligt sikkerhedshul" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "numerisk tast opfanget" @@ -5896,7 +5881,7 @@ msgid "Remember file name template" msgstr "Husk skabelon for filnavn" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Tilføj AUTO_INCREMENT værdi" @@ -5937,7 +5922,7 @@ msgstr "%sOpret%s manglende tabeller for phpMyAdmin-konfigurationslager." #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Tilføj %s" @@ -7681,7 +7666,7 @@ msgid "" msgstr "" "Definerer som forespørgselsboksen skal forblive på siden efter indsendelse." -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "Bevar forespørgeselsboks" @@ -7992,102 +7977,33 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "OpenDocument tekst" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "Favoritliste er fyldt!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Tabel %s blev tømt." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "Visning %s er blevet slettet." -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "Tabel %s blev slettet." -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "Favoritliste er fyldt!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "ukendt" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -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.php:250 -msgid "No column selected." -msgstr "Der er ikke valgt kolonner." - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "Flytning af kolonnen er blevet fuldført." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "Tabel %1$s er blevet ændret." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "Forespørgselsfejl" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Ret" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Indeks" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "Spatial" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Fuldtekst" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "Distinkte værdier" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8101,6 +8017,14 @@ msgstr "Ingen numeriske kolonner tilstede i tabellen til plotning." msgid "No data to display" msgstr "Ingen data til visning" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "Tabel %1$s er blevet ændret." + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "Opdatering af vist kolonne blev gennemført." @@ -8109,19 +8033,80 @@ msgstr "Opdatering af vist kolonne blev gennemført." msgid "Internal relations were successfully updated." msgstr "Opdateringen af de interne relationer blev gennemført." -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "Tabelsøgning" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "Forstør søgning" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Søg og erstat" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +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/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "Der er ikke valgt kolonner." + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "Flytning af kolonnen er blevet fuldført." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "Forespørgselsfejl" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Ret" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Indeks" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "Spatial" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Fuldtekst" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "Distinkte værdier" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8131,7 +8116,7 @@ msgstr "%s-udvidelsen mangler. Tjek din PHP-konfiguration." msgid "possible deep recursion attack" msgstr "muligt dybt rekursionsangreb" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Ingen ændring" @@ -8198,7 +8183,7 @@ msgstr "Opret" msgid "Create database:" msgstr "Opret ny database:" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Ingen privilegier" @@ -8953,66 +8938,66 @@ msgid "Dump has been saved to file %s." msgstr "Dump er blevet gemt i filen %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerede ingen data (fx ingen rækker)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "[ROLLBACK opstod.]" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "De følgende strukturer er enten oprettet eller ændret. Her kan du:" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "Vis en strukturs indhold ved at klikke på dens navn." -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Ændre alle indstillinger ved at klikke på det tilhørende \"Indstilling\" " "link." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "Rediger struktur ved at følge linket \"Struktur\"." -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "Gå til databasen: %s" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "Rediger indstillinger for %s" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "Gå til tabellen: %s" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "Strukturen af %s" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "Gå til view: %s" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" "Der kan kun simuleres forespørgsler med UPDATE og DELETE i enkelttabeller." -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9020,7 +9005,7 @@ msgstr "" "Kun forespørgslerne INSERT, UPDATE, DELETE og REPLACE SQL indeholdende " "'transactional engine'-tabeller kan rulles tilbage." -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "Opret et indeks på  %s  kolonner" @@ -9043,66 +9028,66 @@ msgstr "Funktion" msgid "Binary" msgstr "Binært" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "På grund af feltets længde,
kan det muligvis ikke ændres." -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Binært - må ikke ændres" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Eller" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "webserver upload-mappe:" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "Rediger/Indsæt" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "Fortsæt indsættelse med %s rækker" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "og derefter" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Indsæt som ny række" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "Indsæt som ny række og ignorer fejl" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "Vis indsættelsesforespørgsel" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Tilbage til foregående side" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Indsæt endnu en ny række" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Gå tilbage til denne side" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Rediger næste række" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9112,7 +9097,7 @@ msgstr "" "Brug TAB-tasten for at flytte dig fra værdi til værdi, eller CTRL" "+piletasterne til at flytte frit omkring" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9124,11 +9109,11 @@ msgstr "" msgid "Value" msgstr "Værdi" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "Viser SQL-forespørgsel" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "Indsatte række id: %1$d" @@ -9144,35 +9129,35 @@ msgstr "Ingen" msgid "Convert to Kana" msgstr "Konverter til Kana" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Gennemført!" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "Erstat tabelpræfiks:" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "Kopier tabel med præfiks:" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "Fra" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "Til" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "Tilføj tabelpræfiks:" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "Tilføj præfiks" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "Er du sikker på at du vil udføre følgende forespørgsel?" @@ -9394,8 +9379,8 @@ msgstr "Procedurer:" msgid "Views:" msgstr "Views:" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Vis" @@ -9437,18 +9422,15 @@ msgstr[0] "Fandt %s resultat" msgstr[1] "Fandt %s resultater" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" -msgstr "Filtrér databaser efter navn eller regex" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 msgid "Clear fast filter" msgstr "Ryd hurtig-filter" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "Filtrér efter navn eller regex" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "Fold alle sammen" @@ -9872,7 +9854,7 @@ msgstr "Omdøb database til" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -9883,7 +9865,7 @@ msgstr "Du har ikke tilstrækkelige rettigheder til at være her!" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9903,18 +9885,18 @@ msgstr "Fjern database" msgid "Drop the database (DROP)" msgstr "Drop databasen (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Kun strukturen" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Struktur og data" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Kun data" @@ -9926,7 +9908,7 @@ msgstr "Kopier database til" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE før kopiering" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Tilføj begrænsninger" @@ -9968,163 +9950,163 @@ msgstr "Datalager" msgid "Change all column collations" msgstr "Gør alle kolonner atomare" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Kopier tabel til (database.tabel)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Skift til den kopierede tabel" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Tabelvedligeholdelse" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Analyser tabel" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Tjek tabel" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Tjek tabel" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Defragmenter tabel" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "Tabel %s er blevet flushet." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "Udskriv tabellen (\"FLUSH\")" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Optimer tabel" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Reparer tabel" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "Slet data eller tabel" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "Tøm tabellen (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "Slet tabellen (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Analyser" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Tjek" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Optimer" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Genopbyg" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Reparer" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Collapse" msgid "Coalesce" msgstr "Fold sammen" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "Vedligehold af partition" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "Partitionen %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "Fjern partitionering" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Tjek reference-integriteten:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Kan ikke flytte tabellen til den samme!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Kan ikke kopiere tabellen til den samme!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabel %s er flyttet til %s." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabellen %s er nu kopieret til: %s." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabel %s er flyttet til %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabellen %s er nu kopieret til: %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Intet tabelnavn!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "Dette format har ingen indstillinger" @@ -10300,7 +10282,7 @@ msgstr "Database eksportindstillinger" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Data dump for tabellen" @@ -10324,21 +10306,21 @@ msgstr "Definition" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Struktur-dump for tabellen" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Struktur for visning" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Stand-in-struktur for visning" @@ -10428,7 +10410,7 @@ msgid "Database:" msgstr "Database:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "Data:" @@ -10537,7 +10519,7 @@ msgid "Data creation options" msgstr "Indstillinger for oprettelse af data" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "Trunkér tabel forud for indsættelse" @@ -10620,8 +10602,8 @@ msgstr "Det ser ud til at din database benytter procedurer;" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "alias-eksport fungerer muligvis ikke pålideligt i alle tilfælde." @@ -10629,85 +10611,85 @@ msgstr "alias-eksport fungerer muligvis ikke pålideligt i alle tilfælde." msgid "It appears your database uses functions;" msgstr "Det ser ud til at din database bruger funktioner;" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Metadata Headers" msgid "Metadata" msgstr "Metadata headers" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, fuzzy, php-format #| msgid "Metadata Headers" msgid "Metadata for %s" msgstr "Metadata headers" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Oprettelse:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Seneste opdatering:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Seneste tjek:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "i brug" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "Det ser ud til at din database bruger views;" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Begrænsninger for dumpede tabeller" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Begrænsninger for tabel" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "Begrænsninger for dumpede tabeller" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "Indeks for tabel" # zero = null? -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "Brug ikke AUTO_INCREMENT for slettede tabeller" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "Tilføj AUTO_INCREMENT i tabel" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE (MIME-typer for tabellen)" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE (Relationer for tabellen)" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "Det ser ud til at din tabel bruger triggere;" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, 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.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "Fejl ved læsning af data:" @@ -10959,9 +10941,9 @@ msgstr "Relationel skematik" msgid "Table of contents" msgstr "Indholdsfortegnelse" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Ekstra" @@ -11200,47 +11182,47 @@ msgstr "Formatterer teksten som JSON med syntaksfremhævning." msgid "Formats text as XML with syntax highlighting." msgstr "Formatterer tekst som XML med syntaksfremhævning." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Fejl: relation findes allerede." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "FOREIGN KEY relation tilføjet." -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Fejl: FOREIGN KEY-relationen kunne ikke tilføjes!" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "Fejl: Manglende indeks for kolonne(r)." -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "Fejl: Relationelle egenskaber er slået fra!" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "Intern relation tilføjet." -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 msgid "Error: Internal relation could not be added!" msgstr "Fejl: Den interne relation kunne ikke tilføjes!" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 msgid "FOREIGN KEY relation has been removed." msgstr "FOREIGN KEY-relationen er blevet fjernet." -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Fejl: FOREIGN KEY-relationen kunne ikke fjernes!" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 msgid "Error: Internal relation could not be removed!" msgstr "Fejl: Den interne relation kunne ikke fjernes!" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "Den interne relation er blevet fjernet." @@ -11287,72 +11269,72 @@ msgstr "" "Se venligst dokumentationen for oplysninger om, hvordan du opdaterer din " "tabel column_info. " -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "SQL-forespørgsel med bogmærke" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL-historik" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "Vedvarende senest brugte tabeller" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 msgid "Persistent favorite tables" msgstr "Vedvarende favorit tabeller" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "Vedvarende tabellers UI præference" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "Brugerpræferencer" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "Konfigurérbare menuer" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "Skjul/vis navigationselementer" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "Gemmer Query-By-Example søgninger" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "Håndter centerliste for kolonner" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Remember table's sorting" msgid "Remembering Designer Settings" msgstr "Husk tabellens sortering" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "Ugyldig eksporttype" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "Hurtige trin for at opsætte avancerede muligheder:" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "Opret de nødvendige tabeller med %screate_tables.sql." -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "Opret en pma bruger og giv adgang til disse tabeller." -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -11360,23 +11342,23 @@ msgstr "" "Aktivér avancerede muligheder i konfigurationfilen (config.inc.php), fx ved at starte med config.sample.inc.php." -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Re-login til phpMyAdmin for at indlæse den opdaterede konfigurationsfil." -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "ingen beskrivelse" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, fuzzy, php-format #| msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgid "" @@ -11384,13 +11366,13 @@ msgid "" "configuration storage there." msgstr "%sOpret%s manglende tabeller for phpMyAdmin-konfigurationslager." -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "%sOpret%s phpMyAdmin-konfigurationslageret i den aktuelle database." -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "%sOpret%s manglende tabeller for phpMyAdmin-konfigurationslager." @@ -11585,8 +11567,8 @@ msgstr "Brugernavn:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Brugernavn" @@ -11594,7 +11576,7 @@ msgstr "Brugernavn" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Adgangskode" @@ -12224,7 +12206,7 @@ msgstr[1] "%1$d databaser er blevet droppet korrekt." msgid "Plugin" msgstr "Udvidelsesmodul" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Version" @@ -12232,98 +12214,94 @@ msgstr "Version" msgid "Author" msgstr "Forfatter" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "Licens" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "slået fra" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Ingen privilegier." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Inkluderer alle privilegier pånær GRANT." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Tillader læsning af data." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Tillader indsættelse og erstatning af data." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Tillader ændring af data." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Tillader sletning af data." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Tillader oprettelse af nye databaser og tabeller." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Tillader at droppe databaser og tabeller." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Tillader genindlæsning af serverindstillinger og tømning af caches." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Tillader nedlukning af serveren." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "Tillader at se processer for alle brugere." #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "Tillader import af data fra og eksport af data til filer." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "Har ingen effekt i denne MySQL version." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Tillader at skabe og droppe indeks." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Tillader ændring af strukturen på eksisterende tabeller." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Giver adgang til den fuldstændige liste over databaser." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12334,65 +12312,65 @@ msgstr "" "globale variable eller for at dræbe andre brugeres tråde." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Tillader oprettelse af midlertidige tabeller." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Tillader låsning af tabeller for nuværende tråd." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Nødvendigt for replikationsslaverne." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "Giver brugeren rettigheder til at spørge hvor slaves / masters er." #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Tillader oprettelse af nye views." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "Tillader at oprette hændelser til hændelsesskeduleren." #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "Tillader oprettelse og sletning af triggers." #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Tillader udførelse af SHOW CREATE VIEW forespørgsler." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Tillader oprettelse af gemte rutiner." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Tillader ændring og sletning af gemte rutiner." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "Tillader oprettelse, sletning og omdøbning af brugerkonti." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Tillader udførelse af gemte rutiner." @@ -12404,8 +12382,8 @@ msgstr "Ingen" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Brugergruppe" @@ -12450,13 +12428,13 @@ msgstr "" "Bemærk: Indstilling af disse værdier til 0 (nul) fjerner begrænsningen." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Begrænser antallet af forespørgsler brugeren må sende til serveren pr. time." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12465,19 +12443,19 @@ msgstr "" "brugeren må udføre pr. time." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "Begrænser antallet af nye forbindelser brugeren må åbne pr. time." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "Begrænser antallet af samtidige forbindelser brugere må have." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12485,7 +12463,7 @@ msgid "Routine" msgstr "Rutiner" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12506,14 +12484,14 @@ msgstr "Tillader udførelse af gemte rutiner." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Tabel-specifikke privilegier" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "NB: Navne på MySQL privilegier er på engelsk." @@ -12523,7 +12501,7 @@ msgid "Administration" msgstr "Administration" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Globale privilegier" @@ -12532,15 +12510,15 @@ msgid "Global" msgstr "Global" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Database-specifikke privilegier" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Tillader oprettelse af nye tabeller." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Tillader at droppe tabeller." @@ -12563,7 +12541,7 @@ msgid "Native MySQL Authentication" msgstr "Cookie autentifikation" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Login-information" @@ -12590,8 +12568,8 @@ msgstr "Brugernavn:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Log name" msgid "Host name" @@ -12613,119 +12591,119 @@ msgstr "Autentifikation" msgid "Password Hashing Method" msgstr "Adgangskodehashing:" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "Adgangskoden for %s blev korrekt udskiftet." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Du har tilbagekaldt privilegierne for %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add user group" msgid "Add user account" msgstr "Tilføj brugergruppe" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Database for bruger" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "Opret database med samme navn og tildel alle privilegier." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Tildel alle privilegier til jokertegn-navn (brugernavn_%)." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Tildel alle privilegier på database \"%s\"." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Brugere med adgang til \"%s\"" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "Bruger er blevet tilføjet." -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Tildel" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "Ikke tilstrækkelige privilegier til at se brugere." -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "Ingen bruger fundet." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Enhver" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "database-specifik" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "jokertegn" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "tabelspecifik" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "Ret privilegier:" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Tilbagekald" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "Redigér brugergruppe" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… behold den gamle." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… slet den gamle fra brugertabellerne." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… tilbagekald alle aktive privilegier fra den gamle og slet den " "efterfølgende." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12733,102 +12711,102 @@ msgstr "" "… slet den gamle fra brugertabellerne og genindlæs privilegierne " "efterfølgende." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Ret Login-information / Kopier bruger" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Opret en bruger med samme privilegier og …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Kolonne-specifikke privilegier" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Fjern valgte brugere" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Tilbagekald alle aktive privilegier fra brugerne og slet dem efterfølgende." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "Drop databaser der har samme navne som brugernes." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "Ingen brugere valgt til sletning!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Genindlæs privilegierne" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "De valgte brugere er blevet korrekt slettet." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Du har opdateret privilegierne for %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "Sletter %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Privilegierne blev korrekt genindlæst." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "Brugeren %s findes i forvejen!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "Privilegier for %s" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Bruger" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "Ny" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "Ret privilegier:" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "User group" msgid "User account" msgstr "Brugergruppe" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12836,20 +12814,20 @@ msgstr "" "Bemærk: Du forsøger at redigere privilegier for brugeren som du aktuelt er " "logget ind som." -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "Oversigt over brugere" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12863,7 +12841,7 @@ msgstr "" "ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne" "%s før du fortsætter." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -12883,11 +12861,11 @@ msgstr "" "ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne" "%s før du fortsætter." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "Den valgte bruger blev ikke fundet i privilegietabellen." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Du har tilføjet en ny bruger." @@ -13146,24 +13124,24 @@ msgstr "Instruktioner/Opsætning" msgid "Done dragging (rearranging) charts" msgstr "Færdig med at trække (flytte) rundt på diagrammer" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "Aktivér mulighed for at trække rundt på diagrammer" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "Opdateringsfrekvens" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "Diagramkolonner" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "Diagramopstilling" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -13171,7 +13149,7 @@ msgstr "" "Opsætningen af diagrammerne er lagret i browserens lokale lager. Det er " "muligt at eksportere den, hvis man har en kompleks opstilling." -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "Gendan standardværdi" @@ -13227,7 +13205,7 @@ msgid "Statements" msgstr "Forespørgsler" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "#" @@ -13252,7 +13230,7 @@ msgstr "Vis uformatterede værdier" msgid "Related links:" msgstr "Relaterede links:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -13260,11 +13238,11 @@ msgstr "" "Antallet af forbindelser, som blev aborteret, fordi klienten døde uden at " "lukke forbindelsen rigtigt." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Antal mislykkede forsøg på at forbinde til MySQL server." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13274,17 +13252,17 @@ msgstr "" "overskred værdien for binlog_cache_size og brugte en midlertidig fil til at " "gemme statements fra transaktionen." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Antal transaktioner der brugte det midlertidige binære log mellemlager." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Antal forbindelsesforsøg (lykkedes eller ej) til MySQL server." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13296,11 +13274,11 @@ msgstr "" "overveje at forøge tmp_table_size værdien for at gøre midlertidige tabeller " "hukommelses-baserede i stedet for disk-baserede." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "Hvor mange midlertidige filer mysqld har oprettet." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13308,7 +13286,7 @@ msgstr "" "Antal i-hukommelsen midlertidige tabeller oprettet automatisk af serveren " "under udførelse af statements." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13316,7 +13294,7 @@ msgstr "" "Antal rækker skrevet med INSERT DELAYED (forsinket indsættelse) under hvilke " "der opstod fejl (sandsynligvis dublerede nøgler)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13324,23 +13302,23 @@ msgstr "" "Antallet af INSERT DELAYED handler-tråde i brug. Hver forskellig tabel " "hvorpå en bruger INSERT DELAYED får sin egen tråd." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "Antallet af INSERT DELAYED rækker skrevet." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "Antallet af udførte FLUSH statements." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "Antallet af interne COMMIT statements." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "Antallet af gange en række blev slettet fra en tabel." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13350,7 +13328,7 @@ msgstr "" "tabel med et givent navn. Dette kaldes opdagelse. Handler_discover indikerer " "antallet af gange tabeller er blevet opdaget." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13360,7 +13338,7 @@ msgstr "" "antyder det at serveren laver mange fulde indeks scans; for eksempel, SELECT " "col1 FROM foo, antagende at col1 er indekseret." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -13369,7 +13347,7 @@ msgstr "" "er høj, er det en god indikation af at dine forespørgsler og tabeller er " "ordentligt indekserede." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13379,7 +13357,7 @@ msgstr "" "hvis du forespørger på en indekskolonne med en range-begrænsning eller hvis " "du udfører et indeks scan." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13387,7 +13365,7 @@ msgstr "" "Antallet af anmodninger om at læse foregående række i nøgleorden. Denne " "læsemetode bruges hovedsageligt til at optimere ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13399,7 +13377,7 @@ msgstr "" "resultatet. Du har sandsynligvis mange forespørgsler der forlanger at MySQL " "scanner hele tabeller eller du har joins der ikke bruger nøgler ordentligt." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13411,35 +13389,35 @@ msgstr "" "enten ikke er ordentligt indekserede eller at dine forespørgsler ikke er " "skrevet til at drage fordel af de indeks du har." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "Antallet af interne ROLLBACK statements." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "Antallet af anmodninger om at opdatere en række i en tabel." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "Antallet af anmodninger om at indsætte en række i en tabel." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "Antallet af sider der indeholder data (beskidte eller rene)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "Antallet af såkaldt beskidte sider." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Antallet af buffer pool sider der er anmodet om at skulle flushes." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "Antallet af frie sider." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13449,7 +13427,7 @@ msgstr "" "sider, der i øjeblikket læses eller skrives eller som ikke kan flushes eller " "fjernes af andre årsager." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13461,11 +13439,11 @@ msgstr "" "også beregnes som Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "Total størrelse på buffer pool, i sider." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13474,7 +13452,7 @@ msgstr "" "forespørgsel skal scanne en større del af en tabel men i tilfældig " "rækkefølge." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13482,11 +13460,11 @@ msgstr "" "Antallet af sekventielle read-aheads InnoDB initierede. Dette sker når " "InnoDB laver en sekventiel fuld tabelscanning." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "Antallet af logiske read anmodninger InnoDB har lavet." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13494,7 +13472,7 @@ msgstr "" "Antallet af logiske reads som InnoDB ikke kunne tilfredsstille fra buffer " "pool og måtte lave en enkelt-side read." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13508,55 +13486,55 @@ msgstr "" "sider først. Denne tæller tæller hvor mange gange det er sket. Hvis buffer " "pool størrelsen er sat ordentligt, skulle denne værdi være lille." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "Antallet af skrivninger til InnoDB buffer poolen." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "Antallet af fsync() operationer indtil nu." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "Nuværende antal ventende fsync() operationer." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "Nuværende antal af ventende reads." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "Nuværende antal af ventende writes." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "Mængden af data læst indtil nu, i bytes." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "Det totale antal af data reads." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "Det totale antal af data writes." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "Mængden af data skrevet indtil nu, i bytes." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Antallet af doublewrite skrivninger der er udført og antallet af sider der " "er blevet skrevet til dette formål." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" "Antallet af doublewrite skrivninger der er udført og antallet af sider der " "er blevet skrevet til dette formål." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13564,35 +13542,35 @@ msgstr "" "Antallet af waits vi har haft fordi log buffer var for lille og vi skulle " "vente på at den blev flushed før vi kunne fortsætte." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "Antallet af log write anmodninger." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "Antallet af fysiske skrivninger til log filen." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "Antallet af fsyncs skrivninger lavet til logfilen." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "Antallet af ventende log fil fsyncs." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "Ventende log fil skrivninger." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "Antallet af bytes skrevet til log filen." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "Antallet af sider oprettet." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -13600,51 +13578,51 @@ msgstr "" "Den indkompilerede InnoDB sidestørrelse (standard 16KB). Mange værdier " "tælles i sider; sidestørrelsen gør at man let kan omregne dem til bytes." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "Antallet af sider læst." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "Antallet af sider skrevet." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "Antallet af rækkelåse der ventes på i øjeblikket." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Gennemsnitstiden for at få en rækkelås, i millisekunder." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Total tid brugt på at hente rækkelåse, i millisekunder." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maksimale tid for at hente en rækkelås, i millisekunder." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "Antallet af gange der skulle ventes på en rækkelås." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "Antallet af rækker slettet fra InnoDB tabeller." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "Antallet af rækker indsat i InnoDB tabeller." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "Antallet af rækker læst fra InnoDB tables." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "Antallet af rækker opdateret i InnoDB tabeller." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13653,7 +13631,7 @@ msgstr "" "endnu ikke er blevet flushet til disk. Det hed tidligere " "Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -13661,7 +13639,7 @@ msgstr "" "Antallet af ubrugte blokke i nøglemellemlageret. Du kan bruge denne værdi " "til at fastslå hvor meget af nøglemellemlagere der er i brug." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13671,15 +13649,15 @@ msgstr "" "mærke der indikerer det maksimale antal blokke der på noget tidspunkt har " "været i brug på en gang." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "Procentdel af anvende nøgle-cache (beregnet værdi)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "Antallet af anmodninger om at læse en nøgleblok fra mellemlageret." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13689,7 +13667,7 @@ msgstr "" "stor, er din key_buffer_size værdi sandsynligvis for lille. Mellemlager miss " "raten kan beregnes som Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13697,22 +13675,22 @@ msgstr "" "Missede nøgle-mellemlagringer beregnet som raten af fysiske læsninger " "sammenlignet med læse-forespørgsler (beregnet værdi)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "Antallet af anmodninger om at skrive en nøgleblok til mellemlageret." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "Antallet af fysiske skrivninger af en nøgleblok til disk." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Procentdel af fysiske skrivninger sammenlignet med skrive-forespørgsler " "(beregnet værdi)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13724,7 +13702,7 @@ msgstr "" "standardværdi på 0 betyder at der ikke er kompileret nogen forespørgsler " "endnu." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13732,12 +13710,12 @@ msgstr "" "Det maksimale antal forbindelser, som har været i brug samtidigt, siden " "serveren startede." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Antallet af rækker der venter på at blive skrevet i INSERT DELAYED køer." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13745,19 +13723,19 @@ msgstr "" "Antallet af tabeller der er blevet åbnet. Hvis åbnede tabeller er stor, er " "dit tabelmellemlager sandsynligvis for lille." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "Antallet af filer der er åbne." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "Antallet af streams der er åbne (bruges hovedsageligt til logning)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "Antallet af tabeller der er åbne." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13767,19 +13745,19 @@ msgstr "" "kan indikere fragmenteringsproblemer, som kan løses ved en FLUSH QUERY CACHE " "kommando." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "Mængden af fri hukommelse til forespørgselsmellemlageret." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "Antallet af mellemlager hits." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "Antallet af forespørgsler tilføjet til mellemlageret." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13792,7 +13770,7 @@ msgstr "" "Forespørgselsmellemlageret bruger en mindst nyligt brugt (LRU) strategi til " "at afgøre hvilke forespørgsler der skal fjernes fra mellemlageret." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13800,19 +13778,19 @@ msgstr "" "Antallet af ikke-mellemlagrede forespørgsler (ikke mulige at mellemlagre " "eller ikke mellemlagret grundet query_cache_type indstillingen)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "Antallet af forespørgsler registreret i mellemlageret." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "Totalt antal blokke i forespørgsels-mellemlageret." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "Status på fejlsikker replikation (endnu ikke implementeret)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -13820,11 +13798,11 @@ msgstr "" "Antallet af joins der ikke bruger indeks. Hvis denne værdi ikke er 0, bør du " "nøje tjekke indeksene på dine tabeller." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "Antallet af joins der brugte en range søgning på en reference tabel." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -13832,7 +13810,7 @@ msgstr "" "Antallet af joins uden nøgler der tjekker for nøglebrug efter hver række. " "(Hvis denne ikke er 0, bør du nøje tjekke indeks på dine tabeller.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13840,15 +13818,15 @@ msgstr "" "Antallet af joins der brugte ranges på den første tabel. (Normalt ikke " "kritisk selvom tallet er stort.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "Antallet af joins som lavede en fuld scan af den første tabel." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Antallet af midlertidige tabeller i øjeblikket åbne af SQL tråden." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13856,12 +13834,12 @@ msgstr "" "Totalt (siden opstart) antal gange replikationsslave SQL tråden har gen-" "forsøgt transaktioner." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Dette er TIL hvis denne server er en slave der er forbundet til en master." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -13869,13 +13847,13 @@ msgstr "" "Antallet af tråde der har taget mere end slow_launch_time sekunder at " "oprette." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Antallet af forespørgsler der har taget mere end long_query_time sekunder." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13885,23 +13863,23 @@ msgstr "" "denne værdi er høj, bør du overveje at forøge værdien af sort_buffer_size " "systemvariablen." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "Antallet af sorteringer lavet med ranges." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "Antallet af sorterede rækker." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "Antallet af sorteringer udført ved scanning af tabellen." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "Antallet af gange en tabellås blev givet øjeblikkeligt." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13913,7 +13891,7 @@ msgstr "" "optimere dine forespørgsler, og derefter enten opdele din tabel eller " "tabeller, eller bruge replikation." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13923,11 +13901,11 @@ msgstr "" "som Threads_created/Forbindelser. Hvis denne værdi er rød bør du forøge din " "thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "Antallet af i øjeblikket åbne forbindelser." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13939,11 +13917,11 @@ msgstr "" "(Normalt giver dette ingen nævneværdig ydelsesforbedring hvis du har god " "tråd-implementering.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "Frekvens for hits i trådmellemlager (beregnet værdi)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "Antallet af tråde, der ikke sover." @@ -13952,57 +13930,57 @@ msgstr "Antallet af tråde, der ikke sover." msgid "Users of '%s' user group" msgstr "Brugere fra brugergruppen \"%s\"" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "Der blev ikke fundet brugere tilhørende denne brugergruppe." -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "Brugergrupper" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "Faner på serverniveau" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "Faner på databaseniveau" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "Faner på tabelniveau" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "Vis brugere" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "Tilføj brugergruppe" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "Redigér brugergruppen: \"%s\"" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "Menu-tildelinger for brugergruppe" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "Gruppenavn:" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "Faner på serverniveau" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "Faner på databaseniveau" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "Faner på tabelniveau" @@ -14066,21 +14044,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14151,113 +14125,113 @@ msgstr "Hændelse %1$s er oprettet." msgid "Variable name was expected." msgstr "Skabelon for tabelnavn" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "at beginning of table" msgid "Unexpected beginning of statement." msgstr "i begyndelsen af tabellen" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 #, fuzzy #| msgid "Unexpected characters on line %s." msgid "Unexpected token." msgstr "Uventet tegn på linje %s." -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 #, fuzzy #| msgid "The number of tables that are open." msgid "The name of the entity was expected." msgstr "Antallet af tabeller der er åbne." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Rækken er slettet." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "Detaljeret profil" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "Rækkefølge" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "Tilstand" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "Opsummering efter tilstand" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "Samlet tid" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "% tid" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "Kald" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "ø tid" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Lav bogmærke til denne SQL-forespørgsel" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "Etikette:" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Lad alle brugere bruge dette bogmærke" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "Bogmærke blev ikke oprettet!" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Bruger bogmærket \"%s\" som standard-forespørgsel til gennemsyn." -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "Viser som PHP-kode" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, fuzzy, php-format #| msgid "" #| "Current selection does not contain a unique column. Grid edit, checkbox, " @@ -14269,7 +14243,7 @@ msgstr "" "Den nuværende markering indeholder ikke en unik kolonne. Redigering af " "gitter, afkrydsningsfelt, redigering og sletning er ikke tilgængelige." -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, fuzzy, php-format #| msgid "" #| "Current selection does not contain a unique column. Grid edit, checkbox, " @@ -14281,7 +14255,7 @@ msgstr "" "Den nuværende markering indeholder ikke en unik kolonne. Redigering af " "gitter, afkrydsningsfelt, redigering og sletning er ikke tilgængelige." -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemer med indeksene på tabel `%s`" @@ -14311,27 +14285,27 @@ msgstr "Hent automatisk gemt forespørgsel" msgid "Bind parameters" msgstr "Forkerte parametre!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "Lav bogmærke til denne SQL-forespørgsel:" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Erstat eksisterende bogmærke af samme navn" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Adskiller" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Vis forespørgslen her igen" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "Rul tilbage/rollback når fuldført" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Kun oversigt" @@ -14375,112 +14349,112 @@ msgstr "Deaktiver sporing af %s" msgid "Deactivate now" msgstr "Deaktiver nu" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Oprettet" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Opdateret" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 msgid "Delete version" msgstr "Slet version" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Sporingsrapport" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Øjebliksbillede af struktur" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "aktiv" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "ikke aktiv" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "Sporingskommandoer" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "Slet sporingsdatarække fra rapport" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "Ingen data" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Vis %1$s med datoer fra %2$s til %3$s for brugeren %4$s %5$s" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "SQL-udtræk (hentning af fil)" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "SQL-dump" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "Denne indstilling vil erstatte din tabel og dens indeholdte data." -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "SQL-kørsel" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "Eksportér som %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "Data manipuleringsudtryk" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "Datadefinitionsudstryk" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Dato" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Brugernavn" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Version %s snapshot (SQL kode)" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Ingen" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "Sporing af data definition slettet" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "Manipulerede sporingsdata slettet" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14488,61 +14462,61 @@ msgstr "" "Du kan udføre eksporten ved at oprette og bruge en midlertidig database. " "Sørg venligst for at du har privilegier til at gøre det." -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "Udkommenter disse to linjer, hvis du ikke har brug for dem." -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL-sætninger eksporteres. Kopier venligst dump eller udfør den." -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "Sporings rapport for tabel `%s`" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Sporing af %1$s blev aktiveret i version %2$s." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Sporing af %1$s blev deaktiveret i version %2$s." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Version %1$s af %2$s blev slettet." -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Version %1$s blev oprettet, sporing af %2$s er aktiv." -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Ikke-sporede tabeller" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Sporingstabel" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Sporede tabeller" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Seneste version" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "Slet sporing" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Versioner" @@ -14550,11 +14524,11 @@ msgstr "Versioner" msgid "Manage your settings" msgstr "Administrer dine indstillinger" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "Konfigurationen er gemt." -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14658,7 +14632,7 @@ msgstr "Ingen databaser" msgid "View dump (schema) of databases" msgstr "Vis dump (skema) for databaser" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14688,7 +14662,7 @@ msgid "" msgstr "" "phpMyAdmin kunne ikke dræbe tråden %s. Den er sandsynligvis allerede lukket." -#: server_status_queries.php:50 +#: server_status_queries.php:47 #, fuzzy #| msgid "Not enough privilege to view users." msgid "Not enough privilege to view query statistics." @@ -15545,45 +15519,51 @@ msgstr "Spredning" msgid "Stacked" msgstr "Stak" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "Diagramtitel" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "X-akse:" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "Serie:" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "X-akse betegnelse:" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "X værdier" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "Y-akse betegnelse:" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Y-værdier" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "Navne i en kolonne" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "Seriekolonne:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Value column:" msgid "Value Column:" msgstr "Værdier for kolonnen %s:" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "Gem tabel som billede" @@ -15637,15 +15617,43 @@ msgstr "Kommentar:" msgid "Drag to reorder" msgstr "Træk for at ændre rækkefølge" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +msgid "Foreign key constraints" +msgstr "Begrænsning på fremmednøgle" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "Handlinger" + +#: templates/table/relation/common_form.phtml:10 +msgid "Constraint properties" +msgstr "Begrænsninger for egenskaber" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" +"Det er blot kolonner med indeks, der bliver vist. Du kan definere et indeks " +"nedenfor." + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "Begrænsning på fremmednøgle" + +#: templates/table/relation/common_form.phtml:60 +msgid "+ Add constraint" +msgstr "+ Tilføj begrænsning" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "Interne relationer" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "Intern relation" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15653,34 +15661,7 @@ msgstr "" "En intern relation er ikke nødvendig, når en tilsvarende FOREIGN KEY " "relation findes." -#: templates/table/relation/common_form.phtml:37 -msgid "Foreign key constraints" -msgstr "Begrænsning på fremmednøgle" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "Handlinger" - -#: templates/table/relation/common_form.phtml:41 -msgid "Constraint properties" -msgstr "Begrænsninger for egenskaber" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" -"Det er blot kolonner med indeks, der bliver vist. Du kan definere et indeks " -"nedenfor." - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "Begrænsning på fremmednøgle" - -#: templates/table/relation/common_form.phtml:83 -msgid "+ Add constraint" -msgstr "+ Tilføj begrænsning" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "Vælg kolonne til visning:" @@ -15808,7 +15789,7 @@ msgid "at beginning of table" msgstr "i begyndelsen af tabellen" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -15857,7 +15838,7 @@ msgstr "partitioneret" msgid "Edit partitioning" msgstr "Fjern partitionering" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "Rediger view" @@ -17257,6 +17238,36 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert er sat til 0" +#~ 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" + +#~ 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" + +#~ msgid "tables" +#~ msgstr "tabeller" + +#~ msgid "views" +#~ msgstr "views" + +#~ msgid "procedures" +#~ msgstr "procedurer" + +#~ msgid "events" +#~ msgstr "hændelser" + +#~ msgid "functions" +#~ msgstr "funktioner" + +#~ msgid "Filter databases by name or regex" +#~ msgstr "Filtrér databaser efter navn eller regex" + +#~ msgid "Filter by name or regex" +#~ msgstr "Filtrér efter navn eller regex" + #~ msgid "Username and hostname didn't change." #~ msgstr "Brugernavn og værtsnavn blev ikke ændret." diff --git a/po/de.po b/po/de.po index 8edfc328ef..cde939ab0d 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-25 22:31+0200\n" "Last-Translator: Julian Ladisch \n" "Language-Team: German Are you sure you " "want to continue?" @@ -1964,52 +1976,52 @@ msgstr "" "Diese Aktion kann einige Spalten-Definitionen ändern.
Sind Sie sicher, " "dass Sie fortfahren möchten?" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "Weiter" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "Primärschlüssel hinzufügen" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "Primärschlüssel wurde erzeugt." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "Führt sie zum nächsten Schritt…" -#: js/messages.php:433 +#: js/messages.php:434 #, 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:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "Schritt-Ende" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "Zweiter Schritt der Normalisierung (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Fertig" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "Teilweise Abhängigkeiten bestätigen" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "Ausgewählte teilweise Abhängigkeiten sind wie folgt:" -#: js/messages.php:440 +#: js/messages.php:441 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2017,21 +2029,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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "Es wurden keine teilweisen Abhängigkeiten ausgewählt!" -#: js/messages.php:446 +#: js/messages.php:447 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:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "Teilweise Abhängigkeiten Liste ausblenden" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2039,173 +2051,173 @@ msgstr "" "Bleib sitzen! Es dauert einige Sekunden, abhängig von Datengröße und " "Spaltenanzahl der Tabelle." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "Schritt" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "Die folgenden Aktionen werden ausgeführt:" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "Entfernen der Spalten %s aus der Tabelle %s" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "Folgende Tabelle erzeugen" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "Dritter Schritt der Normalisierung (3NF)" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "Transitive Abhängigkeiten bestätigen" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "Ausgewählte Abhängigkeiten sind wie folgt:" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "Es wurden keine Anhängigkeiten ausgewählt!" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Speichern" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Suchkriterien ausblenden" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Suchkriterien anzeigen" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "Bereichssuche" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "Spaltenmaximum:" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "Spaltenminimum:" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "Minimalwert:" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "Maximalwert:" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "Kriterien für Suchen und Ersetzen ausblenden" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "Suchkriterien anzeigen und ersetzen" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "Jeder Punkt stellt eine Datenreihe dar." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "Das Überfliegen eines Punktes zeigt seine Bezeichnung." -#: js/messages.php:486 +#: js/messages.php:487 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:488 +#: js/messages.php:489 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:490 +#: js/messages.php:491 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:492 +#: js/messages.php:493 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:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "Zwei Spalten auswählen" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "2 unterschiedliche Spalten auswählen" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "Datenpunkt-Inhalt" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignorieren" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Kopieren" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Punkt" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "LineString" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Polygon" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometrie" # Ist hiermit der Inkreis gemeint? http://de.wikipedia.org/wiki/Inkreis # # Ja -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "Inkreis" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "Außenkreis" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "Soll der Verschlüsselungs-Schlüssel importiert werden?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "Verschlüsselungs-Schlüssel" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2213,24 +2225,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:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Wählen Sie den referenzierten Schlüssel" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Wähle Fremdschlüssel" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "Bitte den PRIMARY KEY oder einen UNIQUE KEY wählen!" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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:532 +#: js/messages.php:533 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 +2250,77 @@ msgstr "" "Sie haben die Änderungen im Layout nicht gespeichert. Sie gehen verloren " "wenn Sie nicht speichern. Möchten Sie fortfahren?" -#: js/messages.php:535 +#: js/messages.php:536 msgid "Page name" msgstr "Seitenname" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Seite speichern" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Öffne Seite" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "Seite löschen" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Unbenannt" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "Bitte wählen Sie eine Seite um fortzufahren" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "Bitte geben Sie einen gültigen Seitennamen ein" -#: js/messages.php:544 +#: js/messages.php:545 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:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "Seite wurde erfolgreich gelöscht" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "Beziehungsschema exportieren" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Änderungen gespeichert" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "Option hinzufügen zu Spalte \"%s\"." -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "%d Objekt(e) erstellt." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Abschicken" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "Drücken Sie ESC, um das Bearbeiten abzubrechen." -#: js/messages.php:557 +#: js/messages.php:558 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 +2328,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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "Zur Umsortierung ziehen." -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "Klicken um die Ergebnisse nach dieser Spalte zu sortieren." -#: js/messages.php:563 +#: js/messages.php:564 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,28 +2346,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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "Klicken zum Aus- bzw. Abwählen." -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "Doppelklicken, um den Spaltennamen zu kopieren." -#: js/messages.php:570 +#: js/messages.php:571 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:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Alles anzeigen" -#: js/messages.php:574 +#: js/messages.php:575 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." @@ -2365,13 +2377,13 @@ msgstr "" "Kopieren und Löschen von Links können nach dem Speichern eventuell nicht " "funktionieren." -#: js/messages.php:578 +#: js/messages.php:579 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:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2379,130 +2391,98 @@ msgstr "" "Sollen wirklich alle Datensätze angezeigt werden? Bei einer großen Tabelle " "könnte dies den Browser zum Absturz bringen." -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "Ursprüngliche Länge" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "abbrechen" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Abgebrochen" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "Erfolg" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "Importstatus" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Dateien hier ablegen" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "Zuerst Datenbank auswählen" -#: js/messages.php:598 +#: js/messages.php:599 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:603 +#: js/messages.php:604 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:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "Gehe zur Verknüpfung:" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "Spaltennamen kopieren." -#: js/messages.php:612 +#: js/messages.php:613 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:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Passwort generieren" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Generieren" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "Mehr" -#: js/messages.php:623 +#: js/messages.php:624 msgid "Show panel" msgstr "Panel anzeigen" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "Panel ausblenden" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "Zeige versteckte Navigationselemente." -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "Mit Hauptpanel verknüpfen" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "Verknüpfung mit Hauptpanel aufheben" -#: js/messages.php:629 -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:631 -#, 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:632 -msgid "tables" -msgstr "Tabellen" - -#: js/messages.php:633 -msgid "views" -msgstr "Ansichten" - -#: js/messages.php:634 -msgid "procedures" -msgstr "Prozeduren" - -#: js/messages.php:635 -msgid "events" -msgstr "Ereignisse" - -#: js/messages.php:636 -msgid "functions" -msgstr "Funktionen" - -#: js/messages.php:640 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:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2512,27 +2492,27 @@ msgstr "" "empfohlen. Die aktuelle Version ist %s, erschienen am %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", aktuelle stabile Version:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "auf dem neuesten Stand" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "Erzeuge View" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "Fehlerbericht senden" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "Fehlerbericht senden" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2540,15 +2520,15 @@ msgstr "" "Es ist ein JavaScript Fehler aufgetreten. Möchten Sie einen Fehlerbericht " "senden?" -#: js/messages.php:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "Einstellungen für Berichte ändern" -#: js/messages.php:660 +#: js/messages.php:652 msgid "Show report details" msgstr "Berichtdetails anzeigen" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2556,7 +2536,7 @@ msgstr "" "Ihr Export ist unvollständig, wegen eines niedrigen Ausführungszeit-Limits " "in PHP!" -#: js/messages.php:667 +#: js/messages.php:659 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2566,60 +2546,60 @@ msgstr "" "werden einige der Felder möglicherweise ignoriert, wegen der PHP-" "Konfiguration max_input_vars." -#: js/messages.php:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "Einige Fehler wurden auf dem Server entdeckt!" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "Bitte schauen Sie am unteren Ende dieses Fensters." -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "Alles ignorieren" -#: js/messages.php:689 +#: js/messages.php:681 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:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "Diese Abfrage erneut ausführen?" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "Möchten Sie dieses Lesezeichen wirklich löschen?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "Beim Laden der SQL-Debug-Informationen ist ein Fehler aufgetreten." -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s Abfragen %s mal in %s Sekunden ausgeführt." -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "%s Argument(e) übergeben" -#: js/messages.php:707 +#: js/messages.php:699 msgid "Show arguments" msgstr "Argumente einblenden" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "Argumente ausblenden" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "Nötige Zeit:" -#: js/messages.php:711 +#: js/messages.php:703 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 " @@ -2630,291 +2610,291 @@ msgstr "" "nicht korrekt funktionieren. In Safari wird dieses Problem häufig durch den " "privaten Modus verursacht." -#: js/messages.php:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "Vorher" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "Nächster" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Heute" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "Januar" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "Februar" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "März" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "April" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Mai" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "Juni" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "Juli" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "August" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "September" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "Oktober" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "November" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "Dezember" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Mrz" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Dez" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "Sonntag" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "Montag" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "Dienstag" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "Mittwoch" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "Donnerstag" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "Freitag" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "Samstag" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "So" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Mo" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Mi" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Fr" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Sa" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "So" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "Mo" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "Mi" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "Wo" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Stunde" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Minute" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Sekunde" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "Dieses Feld muss ausgefüllt werden" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "Bitte korrigieren Sie dieses Feld" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "Bitte geben Sie eine gültigen E-Mail-Adresse ein" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "Bitte geben Sie eine gültige URL ein" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "Bitte geben Sie ein gültiges Datum ein" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "Bitte geben Sie ein gültiges Datum (ISO) ein" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "Bitte geben Sie eine gültige Zahl ein" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "Bitte geben Sie eine gültige Kreditkartennummer ein" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "Bitte geben Sie nur Ziffern ein" @@ -2922,41 +2902,41 @@ msgstr "Bitte geben Sie nur Ziffern ein" msgid "Please enter the same value again" msgstr "Bitte geben Sie denselben Wert nochmal ein" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "Bitte nicht mehr als {0} Zeichen eingeben" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "Bitte geben Sie mindestens {0} Zeichen ein" -#: js/messages.php:896 +#: js/messages.php:907 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:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "Bitte geben Sie einen Wert zwischen {0} und {1} ein" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "Bitte geben Sie einen Wert kleiner gleich {0} ein" -#: js/messages.php:899 +#: js/messages.php:922 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:901 +#: js/messages.php:928 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:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "Bitte geben Sie einen gültige hexadezimale Eingabe ein" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Fehler" @@ -3046,11 +3026,12 @@ msgstr "Erneut abfragen" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3092,7 +3073,7 @@ msgstr "Während der aktuellen Sitzung" msgid "Explain" msgstr "Erklären" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Messen" @@ -3126,8 +3107,8 @@ msgid "History" msgstr "Verlaufsprotokoll" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3274,7 +3255,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Zum dunklen Motiv wechseln" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3282,28 +3263,28 @@ msgstr "" "Der Server antwortet nicht (evtl. ist der Socket des lokalen MySQL-Servers " "nicht korrekt konfiguriert)." -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "Der Server antwortet nicht." -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" "Bitte prüfen Sie die Rechte des Verzeichnisses, in dem sich die Datenbank " "befindet." -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Details…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Verbindung für den controluser, wie er in Ihrer Konfiguration angegeben ist, " "ist fehlgeschlagen." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3313,8 +3294,8 @@ msgstr "" msgid "Ascending" msgstr "Aufsteigend" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3457,8 +3438,8 @@ msgstr[0] "%1$s Treffer in %2$s" msgstr[1] "%1$s Treffer in %2$s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3500,121 +3481,122 @@ msgstr "Auswahl entfernen" msgid "Inside column:" msgstr "In Spalte:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "Speichere bearbeitete Daten" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "Spalten-Anordnung wiederherstellen" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "Zeilen filtern" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "Diese Tabelle durchsuchen" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "Anfang" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "Vorherige" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "Nächste" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "Ende" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Alle" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Anzahl der Datensätze:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Nach Schlüssel sortieren" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "Gekürzte Texte" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "Vollständige Texte" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Relationaler Schlüssel" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 msgid "Display column for relations" msgstr "Anzeigespalte für Beziehungen" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "Binäre Inhalte anzeigen" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "BLOB Inhalte anzeigen" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "Darstellungsumwandlung ausblenden" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "Bekannter Text" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "Bekanntes Binary" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "Der Datensatz wurde gelöscht." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Beenden" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" "Es kann sich hierbei um Näherungswerte handeln. Bitte lesen Sie auch " "[doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "Ihr SQL-Befehl wurde erfolgreich ausgeführt." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3623,66 +3605,66 @@ msgstr "" "Dieser Ansicht hat mindestens diese Anzahl von Datensätzen. Bitte lesen Sie " "die %sDokumentation%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "Zeige Datensätze %1s - %2s" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d insgesamt, %2$d in Abfragen" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "%d insgesamt" # (s is the abbreviation of "Sekunde", sec is it not (according to # International System of Units), so we wrote the complete one.) -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "Die Abfrage dauerte %01.4f Sekunden." -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "markierte:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 msgid "Check all" msgstr "Alle auswählen" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Druckansicht" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Operationen für das Abfrageergebnis" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Diagramm anzeigen" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "Visualisiere GIS Daten" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "Der Verweis wurde nicht gefunden!" @@ -3780,19 +3762,19 @@ msgstr "Kein Index definiert!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Indizes" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3801,24 +3783,24 @@ msgid "Action" msgstr "Aktion" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Schlüsselname" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Unique" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Gepackt" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Kardinalität" @@ -3826,8 +3808,8 @@ msgstr "Kardinalität" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3837,8 +3819,8 @@ msgid "Collation" msgstr "Kollation" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3854,15 +3836,15 @@ msgstr "Der Primärschlüssel wurde gelöscht." msgid "Index %s has been dropped." msgstr "Index %s wurde entfernt." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Löschen" @@ -3903,12 +3885,13 @@ msgstr "Ansicht" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3916,7 +3899,7 @@ msgstr "Tabelle" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3925,8 +3908,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3934,41 +3917,41 @@ msgid "Search" msgstr "Suche" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Einfügen" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Rechte" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Operationen" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Nachverfolgung" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3979,16 +3962,16 @@ msgstr "Trigger" msgid "Database seems to be empty!" msgstr "Die Datenbank scheint leer zu sein!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Abfrage" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Routinen" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3996,20 +3979,20 @@ msgstr "Routinen" msgid "Events" msgstr "Ereignisse" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Designer" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "Zentrale Spalten" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Datenbanken" @@ -4018,33 +4001,33 @@ msgid "User accounts" msgstr "Benutzerkonten" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Binäres Protokoll" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikation" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Variablen" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Zeichensätze" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Formate" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "Erweiterungen" @@ -4341,7 +4324,7 @@ msgstr "Kann Index nicht in PRIMARY umbenennen!" msgid "No index parts defined!" msgstr "Keine Indizes definiert!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4823,37 +4806,37 @@ msgstr "" msgid "Click to toggle" msgstr "Zum Umschalten anklicken" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Durchsuchen Sie Ihren Computer:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Wählen Sie vom Webserver-Uploadverzeichnis %s:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Auf das festgelegte Upload-Verzeichnis kann nicht zugegriffen werden." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "Es sind keine Dateien zum Hochladen vorhanden!" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Leeren" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "Ausführen" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Drucken" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "Benutzer" @@ -5018,8 +5001,8 @@ msgid "Add new column" msgstr "Neue Spalte hinzufügen" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5088,19 +5071,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "Sie sollten auf %s %s oder neuer aktualisieren." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "Fehler: Token stimmen nicht überein" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS Überschreibversuch" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "Mögliche Ausnutzung" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "Numerischer Schlüssel entdeckt" @@ -5964,7 +5947,7 @@ msgid "Remember file name template" msgstr "Schablone für Dateinamen merken" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT-Wert hinzufügen" @@ -6004,7 +5987,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "%s hinzufügen" @@ -7729,7 +7712,7 @@ msgid "" msgstr "" "Definiert, ob das Abfragefeld nach dem Absenden geöffnet bleiben sollte." -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "Abfragefeld weiterhin anzeigen" @@ -8040,103 +8023,33 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "OpenDocument-Text" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "Favoriten-Liste ist voll!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Die Tabelle %s wurde geleert." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "Die Ansicht %s wurde gelöscht." -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "Die Tabelle %s wurde gelöscht." -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "Favoriten-Liste ist voll!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "unbekannt" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -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.php:250 -msgid "No column selected." -msgstr "Es wurden keine Datensätze ausgewählt." - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "Die Spalten wurden erfolgreich verschoben." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "Die Tabelle %1$s wurde erfolgreich geändert." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "Abfrage-Fehler" - -#: libraries/controllers/TableStructureController.php:967 -#, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "" -"Die Tabelle %1$s wurde erfolgreich geändert. Die Privilegien wurden " -"angepasst." - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Bearbeiten" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Index" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "Räumlich" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Volltext" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "Unterschiedliche Werte" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8151,6 +8064,14 @@ msgstr "" msgid "No data to display" msgstr "Keine Daten zum Anzeigen" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "Die Tabelle %1$s wurde erfolgreich geändert." + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "Spaltendarstellung erfolgreich aktualisiert." @@ -8159,19 +8080,81 @@ msgstr "Spaltendarstellung erfolgreich aktualisiert." msgid "Internal relations were successfully updated." msgstr "Interne Verknüpfungen wurden erfolgreich aktualisiert." -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "Tabellensuche" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "Suche zoomen" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Suchen und Ersetzen" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +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/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "Es wurden keine Datensätze ausgewählt." + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "Die Spalten wurden erfolgreich verschoben." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "Abfrage-Fehler" + +#: libraries/controllers/table/TableStructureController.php:975 +#, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "" +"Die Tabelle %1$s wurde erfolgreich geändert. Die Privilegien wurden " +"angepasst." + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Bearbeiten" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Index" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "Räumlich" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Volltext" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "Unterschiedliche Werte" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8181,7 +8164,7 @@ msgstr "Die Erweiterung %s fehlt. Bitte die PHP-Konfiguration überprüfen." msgid "possible deep recursion attack" msgstr "möglicher Deep-Recursion-Angriff" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Keine Änderung" @@ -8253,7 +8236,7 @@ msgstr "Anlegen" msgid "Create database:" msgstr "Neue Datenbank anlegen:" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Keine Rechte" @@ -8992,68 +8975,68 @@ msgid "Dump has been saved to file %s." msgstr "Auflistung wurde in Datei %s gespeichert." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL lieferte ein leeres Resultat zurück (d.h. null Datensätze)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "[ROLLBACK aufgetreten.]" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Die folgenden Strukturen wurden entweder erstellt oder verändert. Hier " "können Sie:" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "Zum Anzeigen einer Struktur einfach auf den Namen klicken." -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Zum Ändern der Einstellungen auf das entsprechende \"Optionen\" klicken." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" "Zum Ändern der Struktur auf den entsprechenden \"Struktur\"-Link klicken." -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "Gehe zur Datenbank: %s" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "Einstellung für %s bearbeiten" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "Gehe zur Tabelle: %s" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "Struktur von %s" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "Gehe zur Ansicht: %s" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" "Nur UPDATE- und DELETE-Abfragen mit einer Tabelle können simuliert werden." -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9061,7 +9044,7 @@ msgstr "" "Nur INSERT-, UPDATE-, DELETE- und REPLACE-Abfragen mit Tabellen, die " "Transaktionen unterstützen, können zurückgesetzt werden." -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "Index über %s Spalten anlegen" @@ -9085,73 +9068,73 @@ msgstr "Funktion" msgid "Binary" msgstr "Binär" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "Wegen seiner Länge ist dieses
Feld vielleicht nicht editierbar." -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Binär - nicht editierbar" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Oder" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "Upload-Verzeichnis auf dem Webserver:" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "Bearbeiten/Einfügen" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "Einfügen mit %s Datensätzen fortfahren" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "und dann" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Als neuen Datensatz speichern" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "Als neue Zeile einfügen und Fehler ignorieren" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "Zeige insert Abfrage" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "zurück" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "anschließend einen weiteren Datensatz einfügen" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Zurück zu dieser Seite" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "nächste Zeile bearbeiten" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" "Mittels Tabulator-Taste von Feld zu Feld springen, oder mit Strg+Pfeiltasten " "beliebig bewegen." -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9163,11 +9146,11 @@ msgstr "" msgid "Value" msgstr "Wert" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "Ansicht als SQL Abfrage" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "ID der eingefügten Zeile: %1$d" @@ -9183,35 +9166,35 @@ msgstr "keine" msgid "Convert to Kana" msgstr "Nach Kana konvertieren" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Erfolg!" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "Tabellenpräfix ersetzen:" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "Tabelle mit Präfix kopieren:" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "Von" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "Zu" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "Tabellen-Präfix hinzufügen:" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "Präfix hinzufügen" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "Möchten Sie die folgende Abfrage wirklich ausführen?" @@ -9429,8 +9412,8 @@ msgstr "Prozeduren:" msgid "Views:" msgstr "Ansichten:" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Zeige" @@ -9471,18 +9454,15 @@ msgstr[0] "%s Ergebnis gefunden" msgstr[1] "%s Ergebnisse gefunden" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" -msgstr "Datenbanken nach Namen oder Regex filtern" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 msgid "Clear fast filter" msgstr "Schnellfilter löschen" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "Nach Name oder Regex filtern" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "Alles auf-/zuklappen" @@ -9909,7 +9889,7 @@ msgstr "Datenbank umbenennen in" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9920,7 +9900,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Rechte anpassen" @@ -9938,18 +9918,18 @@ msgstr "Datenbank entfernen" msgid "Drop the database (DROP)" msgstr "Datenbank löschen (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Nur Struktur" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Struktur und Daten" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Nur Daten" @@ -9961,7 +9941,7 @@ msgstr "Datenbank kopieren nach" msgid "CREATE DATABASE before copying" msgstr "Vor dem Kopieren CREATE DATABASE ausführen" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Constraints hinzufügen" @@ -10001,158 +9981,158 @@ msgstr "Tabellenformat" msgid "Change all column collations" msgstr "Alle Spaltenkollationen ändern" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Kopiere Tabelle nach (Datenbank.Tabellenname)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Zur kopierten Tabelle wechseln" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Hilfsmittel" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Analysiere Tabelle" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Überprüfe Tabelle" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 msgid "Checksum table" msgstr "Prüfsummentabelle" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Tabelle defragmentieren" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "" "Die Tabelle %s wurde geschlossen und zwischengespeicherte Daten gespeichert." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "Leeren des Tabellenzwischenspeichers (FLUSH)" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Optimiere Tabelle" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Repariere Tabelle" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "Daten oder Tabelle löschen" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "Tabelle leeren (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "Tabelle löschen (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Analysieren" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Überprüfen" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Optimieren" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Neuaufbauen" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Reparieren" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "Leeren" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 msgid "Coalesce" msgstr "Zusammenführen" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "Partitions-Hilfsmittel" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "Partition %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "Entferne die Partitionierung" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Prüfe referentielle Integrität:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Tabelle kann nicht mit gleichem Namen verschoben werden!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Tabelle kann nicht mit gleichem Namen kopiert werden!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabelle %s wurde nach %s verschoben. Die Privilegien wurden angepasst." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabelle %s wurde nach %s kopiert. Die Privilegien wurden angepasst." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabelle %s wurde nach %s verschoben." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabelle %s wurde nach %s kopiert." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Der Tabellenname ist leer!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "Für dieses Format sind keine Optionen vorhanden" @@ -10331,7 +10311,7 @@ msgstr "Datenexport-Optionen" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Daten für Tabelle" @@ -10355,21 +10335,21 @@ msgstr "Definition" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Tabellenstruktur für Tabelle" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Struktur des Views" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Stellvertreter-Struktur des Views" @@ -10460,7 +10440,7 @@ msgid "Database:" msgstr "Datenbank:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "Daten:" @@ -10564,7 +10544,7 @@ msgid "Data creation options" msgstr "Datenterstellungsoptionen" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "TRUNCATE Tabelle vor dem Einfügen" @@ -10649,8 +10629,8 @@ msgstr "Es scheint, dass Ihre Datenbank Prozeduren verwendet;" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" "Alias-Export arbeitet möglicherweise nicht in allen Fällen zuverlässig." @@ -10659,81 +10639,81 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "Es scheint, dass Ihre Datenbank Funktionen verwendet;" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 msgid "Metadata" msgstr "Metadaten" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "Metadaten für %s" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Erstellt am:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Zuletzt aktualisiert:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Letzte Prüfung:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "in Benutzung" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "Es scheint, dass Ihre Datenbank Ansichten verwendet;" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Constraints der exportierten Tabellen" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Constraints der Tabelle" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "Indizes der exportierten Tabellen" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "Indizes für die Tabelle" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT für exportierte Tabellen" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT für Tabelle" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPEN DER TABELLE" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "RELATIONEN DER TABELLE" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "Es scheint, dass Ihre Tabelle Trigger verwendet;" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "Struktur des Views %s als Tabelle exportiert" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "Fehler beim Lesen der Daten:" @@ -10981,9 +10961,9 @@ msgstr "Beziehungsschema" msgid "Table of contents" msgstr "Inhalt" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Extra" @@ -11213,47 +11193,47 @@ msgstr "Formatiert den Text als JSON mit Syntaxhervorhebung." msgid "Formats text as XML with syntax highlighting." msgstr "Formatiert den Text als XML mit Syntaxhervorhebung." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Fehler: Verknüpfung existiert bereits." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "Fremdschlüssel-Beziehung wurde hinzugefügt." -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Fehler: Fremdschlüssel-Beziehung konnte nicht hinzugefügt werden!" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "Fehler: Fehlender Index über Spalte(n)." -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "Fehler: Beziehungsfunktionen wurde deaktiviert!" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "Interne Verknüpfung wurde hinzugefügt." -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 msgid "Error: Internal relation could not be added!" msgstr "Fehler: Interne Verknüpfung konnte nicht hinzugefügt werden!" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 msgid "FOREIGN KEY relation has been removed." msgstr "Fremdschlüssel-Beziehung wurde beseitigt." -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Fehler: Fremdschlüssel-Beziehung konnte nicht beseitigt werden!" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 msgid "Error: Internal relation could not be removed!" msgstr "Fehler: Interne Verknüpfung konnte nicht beseitigt werden!" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "Interne Verknüpfung wurde beseitigt." @@ -11300,69 +11280,69 @@ msgstr "" "Bitte lesen Sie in der Dokumentation nach, wie Sie die Struktur Ihrer " "Informationstabelle aktualisieren können. " -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Gespeicherte SQL-Abfrage" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL-Verlaufsprotokoll" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "Gespeicherte kürzlich verwendete Tabellen" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 msgid "Persistent favorite tables" msgstr "Dauerhafte Favoriten-Tabellen" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "Gespeicherte Tabellen-Darstellungs-Optionen" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "Benutzereinstellungen" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "Konfigurierbare Menüs" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "Navigations-Elemente aus-/einblenden" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "Suchen als Beispielabfragen speichern" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "Verwaltung von zentralen Liste der Spalten" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "Designer-Einstellungen zwischenspeichern" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 msgid "Saving export templates" msgstr "Exportvorlagen speichern" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "Kurzanleitung zum Einrichten der zusätzlichen Funktionen:" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" "Erstellen der benötigten Tabellen mittels %screate_tables.sql." -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "Den Benutzer pma einrichten und Zugriff auf diese Tabellen geben." -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -11371,16 +11351,16 @@ msgstr "" "php) aktiviert werden. Beispiele finden sich in der config." "sample.inc.php." -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Erneut in phpMyAdmin anmelden um die neue Konfigurationsdatei zu laden." -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "keine Beschreibung" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11390,7 +11370,7 @@ msgstr "" "anzulegen. Sie können zum „Operationen“-Tab einer beliebigen Datenbank " "gehen, um in dieser den phpMyAdmin-Konfigurationsspeicher einzurichten." -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11399,7 +11379,7 @@ msgstr "" "Eine Datenbank mit Namen „phpmyadmin“ %sanlegen%s und dort die phpMyAdmin-" "Konfigurationsspeicher-Tabellen einrichten." -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." @@ -11407,7 +11387,7 @@ msgstr "" "%sErzeuge%s die PhpMyAdmin-Konfigurationsspeicherung in der aktuellen " "Datenbank." -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "Fehlende phpMyAdmin-Konfigurationsspeicher-Tabellen %sanlegen%s." @@ -11602,8 +11582,8 @@ msgstr "Benutzername:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Benutzername" @@ -11611,7 +11591,7 @@ msgstr "Benutzername" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Passwort" @@ -12250,7 +12230,7 @@ msgstr[1] "%1$d Datenbanken wurden erfolgreich gelöscht." msgid "Plugin" msgstr "Erweiterung" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Version" @@ -12258,101 +12238,97 @@ msgstr "Version" msgid "Author" msgstr "Autor" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "Lizenz" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "deaktiviert" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Keine Rechte." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Enthält alle Rechte bis auf GRANT." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Erlaubt das Auslesen von Daten." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Erlaubt das Hinzufügen und Ersetzen von Daten." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Erlaubt das Verändern von gespeicherten Daten." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Erlaubt das Löschen von Daten." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Erlaubt das Erstellen neuer Datenbanken und Tabellen." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Erlaubt das Löschen ganzer Datenbanken und Tabellen." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Erlaubt das erneute Laden von Servereinstellungen und das Leeren der " "Zwischenspeicher zur Laufzeit." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Erlaubt das Beenden des Servers." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "Erlaubt die Anzeige der Prozesse aller Benutzer." #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" "Erlaubt das Importieren von Daten aus und das Exportieren in externe Dateien." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "Hat keinen Effekt in dieser MySQL-Version." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Erlaubt das Erstellen und Löschen von Indizes." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Erlaubt das Verändern der Struktur bestehender Tabellen." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Gewährt Zugang zur vollständigen Datenbankliste." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12363,22 +12339,22 @@ msgstr "" "Setzen globaler Variables oder das Beenden fremder Prozesse, vorausgesetzt." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Erlaubt das Erstellen temporärer Tabellen." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Erlaubt die Sperrung bestimmter Tabellen." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Wird für die Replication-Slave-Systeme benötigt." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Erlaubt dem Benutzer zu fragen, wo sich die Master- bzw. Slave-Systeme " @@ -12387,43 +12363,43 @@ msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Erlaubt das Erstellen von Views." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "Erlaubt das Anlegen von Events für den Event-Scheduler." #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "Erlaubt das Erzeugen und Löschen Triggern." #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Erlaubt das Ausführen von SHOW CREATE VIEW." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Erlaubt das Erstellen von gespeicherten Routinen." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Erlaubt das Verändern und Löschen von gespeicherten Routinen." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "Erlaubt das Erstellen, Löschen und Umbenennen von Benutzern." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Erlaubt das Ausführen von gespeicherten Routinen." @@ -12435,8 +12411,8 @@ msgstr "Kein(e)" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Benutzergruppe" @@ -12482,13 +12458,13 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Der Wert 0 (null) entfernt die Beschränkung." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Begrenzt die Anzahl der Abfragen, welche ein Benutzer pro Stunde senden darf." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12497,28 +12473,28 @@ msgstr "" "allen Datenbanken und Tabellen vornehmen darf." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Begrenzt die Anzahl neuer Verbindungen, welche ein Benutzer pro Stunde " "aufbauen darf." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Beschränkt die Anzahl der gleichzeitigen Verbindungen für diesen Benutzer." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Routine" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12535,14 +12511,14 @@ msgstr "Erlaubt das Ausführen dieser gespeicherten Routine." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Tabellenspezifische Rechte" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Hinweis: MySQL-Rechte werden auf Englisch angegeben." @@ -12552,7 +12528,7 @@ msgid "Administration" msgstr "Administration" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Globale Rechte" @@ -12561,15 +12537,15 @@ msgid "Global" msgstr "Global" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Datenbankspezifische Rechte" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Erlaubt das Erstellen neuer Tabellen." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Erlaubt das Löschen ganzer Tabellen." @@ -12586,7 +12562,7 @@ msgid "Native MySQL Authentication" msgstr "Native MySQL-Authentifizierung" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Anmeldeinformation" @@ -12611,8 +12587,8 @@ msgstr "Hostname:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 msgid "Host name" msgstr "Hostname" @@ -12628,203 +12604,203 @@ msgstr "Authentifizierungs Plugin" msgid "Password Hashing Method" msgstr "Passwort­verschlüsselungs­methode" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "Das Passwort für %s wurde geändert." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Sie haben die Rechte für %s widerrufen." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 msgid "Add user account" msgstr "Benutzerkonto hinzufügen" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 msgid "Database for user account" msgstr "Datenbank für Benutzerkonto" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "Erstelle eine Datenbank mit gleichem Namen und gewähre alle Rechte." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Gewähre alle Rechte auf Datenbanken die mit dem Benutzernamen beginnen " "(username\\_%)." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Gewähre alle Rechte auf die Datenbank \"%s\"." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Benutzer mit Zugriff auf \"%s\"" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "Benutzer wurde hinzugefügt." -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "GRANT" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "Nicht genügend Berechtigungen um Benutzer anzuzeigen." -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "Es wurde kein Benutzer gefunden." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Jeder" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "datenbankspezifisch" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "Platzhalter" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "tabellenspezifisch" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 msgid "Edit privileges" msgstr "Rechte ändern" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Entfernen" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "Benutzergruppe bearbeiten" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… behalte den alten bei." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… lösche den alten von den Benutzertabellen." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… entziehe dem alten alle Rechte und lösche ihn anschließend." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… lösche den alten und lade anschließend die Benutzertabellen neu." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "Anmeldeinformation ändern/Benutzer kopieren" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "Erstelle einen neuen Benutzerkonto mit identischen Rechten und …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Routinenspezifische Rechte" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 msgid "Remove selected user accounts" msgstr "Die ausgewählten Benutzerkonten löschen" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Den Benutzern alle Rechte entziehen und sie anschließend aus den " "Benutzertabellen löschen." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "Die gleichnamigen Datenbanken löschen." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "Es wurden keine Benutzer zum Löschen ausgewählt!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Lade die Benutzertabellen neu" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Die gewählten Benutzer wurden gelöscht." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Die Rechte für %s wurden geändert." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "Lösche %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Die Benutzerprofile wurden neu geladen." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "Der Benutzer %s existiert bereits!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "Rechte für %s" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Benutzer" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "Neu" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 msgid "Edit privileges:" msgstr "Rechte ändern:" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "Benutzerkonto" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12832,11 +12808,11 @@ msgstr "" "Hinweis: Sie versuchen, die Berechtigungen des Benutzers zu bearbeiten, mit " "dem Sie aktuell angemeldet sind." -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "Benutzerkontenübersicht" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " @@ -12846,7 +12822,7 @@ msgstr "" "vorhanden. Dies wird Benutzer vom Verbinden abhalten, falls der Host-Teil " "ihres Kontos eine Verbindung von jedem Host (%) erlaubt." -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12860,7 +12836,7 @@ msgstr "" "Änderungen vorgenommen wurden. In diesem Fall sollten Sie %sdie " "Benutzerprofile neu laden%s bevor Sie fortfahren." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12874,11 +12850,11 @@ msgstr "" "Änderungen vorgenommen wurden. In diesem Fall müssen die Berechtigungen neu " "geladen werden, doch im Moment haben Sie keine RELOAD-Berechtigung." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "Der gewählte Benutzer wurde in der Benutzertabelle nicht gefunden." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Der Benutzer wurde hinzugefügt." @@ -13141,24 +13117,24 @@ msgstr "Einführung/Einrichtung" msgid "Done dragging (rearranging) charts" msgstr "Umordnen der Schaubilder beendet" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "Umordnen der Schaubilder aktivieren" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "Aktualisierungs-Intervall" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "Schaubild-Spalten" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "Schaubild-Anordnung" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -13167,7 +13143,7 @@ msgstr "" "Es empfiehlt sich dieses zu exportieren, wenn Sie eine aufwändige Anordnung " "eingerichtet haben." -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "Zurücksetzen" @@ -13223,7 +13199,7 @@ msgid "Statements" msgstr "Angaben" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "#" @@ -13248,7 +13224,7 @@ msgstr "Zeige unformatierte Werte" msgid "Related links:" msgstr "Verwandte Links:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -13256,12 +13232,12 @@ msgstr "" "Die Anzahl der Verbindungen die aufgrund einer nicht richtig geschlossenen " "Verbindung zu einem nicht mehr erreichbaren Client abgebrochen wurden." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Die maximale Nummer an Fehlversuchen um zu einem MySQL-Server zu verbinden." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13272,20 +13248,20 @@ msgstr "" "und eine temporäre Datei verwendet haben um die Statements der Transaktion " "zu speichern." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Anzahl der Transaktionen, die den temporären Binarylog-Zwischenspeicher " "verwendet haben." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Die Anzahl an Verbindungsversuchen (ob erfolgreich odernicht) zum MySQL-" "Server." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13297,11 +13273,11 @@ msgstr "" "Sie eventuell die Variable tmp_table_size herauf setzen, damit temporäre " "Tabellen im Speicher erzeugt werden statt auf der Festplatte." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "Anzahl der temporären Dateien, die mysqld erzeugt hat." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13309,7 +13285,7 @@ msgstr "" "Anzahl der (implizit) im Arbeitsspeicher erzeugten temporären Tabellen bei " "der Ausführung von Statements." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13317,7 +13293,7 @@ msgstr "" "Anzahl der Datensätze, die mit INSERT DELAYED geschrieben wurden, und bei " "denen ein Fehler auftrat (z. B. duplicate key)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13325,23 +13301,23 @@ msgstr "" "Anzahl der verzögerten Insert-Handler-Prozesse in Benutzung. Jede einzelne " "Tabelle mit verzögerten Inserts bekommt einen eigenen Prozess." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "Anzahl der Datensätze, die mit INSERT DELAYED geschrieben wurden." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "Anzahl der ausgeführten FLUSH-Befehle." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "Anzahl der Anfragen, ein COMMIT auszuführen." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "Anzahl der Datensätze, die aus Tabellen gelöscht wurden." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13351,7 +13327,7 @@ msgstr "" "kann die NDB-Cluster-Storage-Engine fragen, ob sie eine bestimmte Tabelle " "kennt. Dieser Vorgang wird \"discovery\" genannt." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13362,7 +13338,7 @@ msgstr "" "Beispiel SELECT spalte1 FROM foo, unter der Annahme, dass spalte1 indiziert " "ist)." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -13371,7 +13347,7 @@ msgstr "" "dieser Wert hoch ist, ist das ein gutes Indiz dafür, dass Ihre Anfragen und " "Tabellen korrekt indiziert sind." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13382,7 +13358,7 @@ msgstr "" "Bereichsbeschränkung (Limit) abfragen. Er wird ebenfalls herauf gezählt, " "wenn Sie einen Index-Scan durchführen." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13391,7 +13367,7 @@ msgstr "" "Schlüssels zu lesen. Diese Lese-Methode ist hauptsächlich zur Optimierung " "von ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13404,7 +13380,7 @@ msgstr "" "haben Sie wahrscheinlich viele Anfragen, die MySQL zwingen, ganze Tabellen " "zu scannen, oder Sie haben Joins, die Schlüssel nicht richtig benutzen." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13417,35 +13393,35 @@ msgstr "" "sind, oder dass Ihre Anfragen nicht so geschrieben sind, dass Sie Vorteile " "aus den Indexen ziehen, die Sie haben." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "Anzahl der Anfragen, ein ROLLBACK auszuführen." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "Anzahl der Anfragen, eine Zeile in einer Tabelle zu aktualisieren." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "Anzahl der Anfragen, eine Zeile in eine Tabelle einzufügen." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "Anzahl der Seiten, die Daten enthalten (ob \"dirty\" oder nicht)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "Anzahl der als \"dirty\" markierten Seiten." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Anzahl der Seiten im Puffer-Pool, die zurückgeschrieben werden müssen." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "Anzahl der unbenutzten Seiten." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13455,7 +13431,7 @@ msgstr "" "beschrieben oder können aus einem anderen Grund nicht zurückgeschrieben oder " "entfernt werden können." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13467,11 +13443,11 @@ msgstr "" "aus Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "Die Größe des Puffer-Pools in Seiten." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13479,7 +13455,7 @@ msgstr "" "Anzahl \"random\" read-aheads durch InnoDB. Dies geschieht wenn eine Abfrage " "einen großen Teil einer Tabelle durchsucht aber in zufälliger Reihenfolge." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13487,11 +13463,11 @@ msgstr "" "Anzahl sequentieller read-aheads durch InnoDB. Dies geschieht wenn InnoDB " "eine Tabelle komplett sequentiell durchsucht." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "Anzahl angeforderter Lesevorgängen durch InnoDB." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13499,7 +13475,7 @@ msgstr "" "Anzahl an Lesevorgängen die InnoDB nicht aus dem Zwischenspeicher bedienen " "konnte und deshalb einen Einzel-Seiten-Lesevorgang starten musste." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13514,53 +13490,53 @@ msgstr "" "geschehen ist. Wenn die Zwischenspeicher-Größe korrekt eingestellt ist " "sollte dieser Wert klein sein." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "Anzahl der Schreibvorgänge im InnoDB Zwischenspeicher." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "Bisher ausgeführte fsync()-Operationen." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "Momentan anstehende fsync()-Operationen." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "Momentan anstehende Lesezugriffe." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "Momentan anstehende Schreizugriffe." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "Wieviel Daten bisher gelesen wurden, in Byte." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "Wie oft Daten gelesen wurden." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "Wie oft Daten geschrieben wurden." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "Wieviel Daten bisher geschrieben wurden, in Byte." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Anzahl der ausgeführten doublewrite Schreibzugriffe und die Anzahl der " "Seiten die dafür geschrieben wurden." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "Anzahl der ausgeführten doublewrite Zugriffe." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13568,35 +13544,35 @@ msgstr "" "Wie oft gewartet werden musste weil der Protokoll-Zwischenspeicher zu klein " "war und deshalb gewartet wurde das er geleert wird." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "Anzahl der Schreibzugriffe für die Protokoll-Datei." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "Anzahl der tatsächlichen Schreibvorgänge der Protokoll-Datei." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "Getätigte fsync() Schreibzugriffe für die Protokoll-Datei." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "Anstehende fsyncs für die Protokoll-Datei." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "Anstehende Schreibzugriffe für die Protokoll-Datei." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "Anzahl an Byte die in die Protokoll-Datei geschrieben wurden." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "Anzahl erstellter Seiten." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -13605,55 +13581,55 @@ msgstr "" "werden in Seiten gezählt; die Seitengröße erlaubt es diese einfach in Byte " "umzurechnen." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "Anzahl gelesener Seiten." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "Anzahl geschriebener Seiten." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "Momentan anstehende Zeilen-Sperren." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Durchschnittliche Wartezeite um eine Datensatz-Sperre zu bekommen, in " "Millisekunden." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Summe aller Wartezeiten um Datensatz-Sperren zu bekommen, in Millisekunden." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Längste Wartezeite um eine Datensatz-Sperre zu bekommen, in Millisekunden." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "Wie oft auf ein Datensatz-Sperre gewartet werden musste." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "Anzahl gelöschter Datensätze aller InnoDB Tabellen." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "Anzahl der eingefügten Datensätze in alle InnoDB Tabellen." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "Anzahl der Datensätze, die aus InnoDB-Tabellen gelesen wurden." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "Anzahl der Datensätze, die in InnoDB-Tabellen aktualisiert wurden." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13662,7 +13638,7 @@ msgstr "" "noch nicht auf die Platte zurück geschrieben (flush) wurden; auch bekannt " "als Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -13671,7 +13647,7 @@ msgstr "" "Dieser Wert kann dazu dienen die Auslastung des Schlüssel-Zwischenspeicher " "zu bestimmen." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13680,18 +13656,18 @@ msgstr "" "Die Anzahl der maximal gleichzeitig benutzten Blocks im Schlüssel-" "Zwischenspeicher." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "" "Prozentsatz des benutzten Schlüssel-Zwischenspeichers (berechneter Wert)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" "Die Anzahl der Anfragen, einen Schlüssel-Block aus dem Zwischenspeicher zu " "lesen." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13702,7 +13678,7 @@ msgstr "" "Die Zwischenspeicher-Zugriffsrate kann mit key_reads/key_read_requests " "berechnet werden." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13710,25 +13686,25 @@ msgstr "" "Schlüssel-Zwischenspeicher Fehlberechnung als Verhältnis zwischen " "physikalischen Lese-Operationen und Lese-Anfragen (berechneter Wert)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" "Die Anzahl der Anfragen, einen Schlüssel-Block in den Zwischenspeicher zu " "schreiben." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" "Die Anzahl physikalischer Schreibvorgänge eines Schlüssel-Blocks auf Platte." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Prozentsatz der physikalischen Schreib-Operationen im Vergleich zu Schreib-" "Anfragen (berechneter Wert)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13738,7 +13714,7 @@ msgstr "" "berechnet. Nützlich um verschiedene Formulierungen für eine Abfrage zu " "vergleichen. Der Wert 0 besagt das bisher keine Abfrage übersetzt wurde." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13746,13 +13722,13 @@ msgstr "" "Die maximale Anzahl an Verbindungen die seit Serverstart gleichzeitig " "benutzt wurden." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Anzahl der Datensätze, die in INSERT-DELAYED-Warteschleifen darauf warten, " "geschrieben zu werden." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13760,20 +13736,20 @@ msgstr "" "Anzahl der Tabellen, die geöffnet wurden. Wenn Opened_tables hoch ist, ist " "Ihre table_cache-Variable wahrscheinlich zu niedrig." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "Anzahl der geöffneten Dateien." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Anzahl der geöffneten Streams (hauptsächlich zum Protokollieren benutzt)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "Anzahl der geöffneten Tabellen." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13783,19 +13759,19 @@ msgstr "" "Werte können Fragmentierungsprobleme aufzeigen, die durch eine FLUSH QUERY " "CACHE - Abfrage beseitigt werden können." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "Freier Speicher im Abfragen-Zwischenspeicher." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "Anzahl an Abfrage-Zwischenspeicher-Anfragetreffer." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "Die Anzahl der Abfragen die dem Zwischenspeicher hinzugefügt wurden." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13809,7 +13785,7 @@ msgstr "" "stets die Abfrage gelöscht, die am längsten unbenutzt im Zwischenspeicher " "lag." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13817,19 +13793,19 @@ msgstr "" "Die Anzahl der nicht im Zwischenspeicher eingetragenen Abfragen (nicht " "möglich, oder aufgrund der query_cache_type Einstellung)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "Die Anzahl der Abfragen im Zwischenspeicher." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "Die Anzahl aller Speicherblöcke im Abfrage-Zwischenspeicher." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "Der Status der ausfallsicheren Replikation." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -13837,13 +13813,13 @@ msgstr "" "Anzahl der Joins ohne Schlüssel. Wenn dieser Wert nicht 0 ist sollten die " "Indizes der Tabellen sorgfältig überprüft werden." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" "Anzahl der Joins, bei denen eine Bereichssuche auf die Referenztabelle statt " "fand." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -13852,7 +13828,7 @@ msgstr "" "Schlüsselbenutzung geprüft wurde. (Wenn dieser Wert nicht 0 ist sollten die " "Indizes der Tabellen sorgfältig überprüft werden.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13860,16 +13836,16 @@ msgstr "" "Anzahl der Joins, bei denen Bereiche auf die erste Tabelle benutzt wurden. " "(Es ist normalerweise unkritisch, wenn dieser Wert hoch ist.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "Anzahl der Joins, bei denen die erste Tabelle gescannt wurde." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Anzahl der temporären Tabellen, die momentan vom Slave-Prozess geöffnet sind." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13877,13 +13853,13 @@ msgstr "" "Gesamtzahl (seit Start des Servers) der vom Replikations-Slave-SQL-Thread " "wiederversuchten Transaktionen." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Dieser Wert steht auf ON wenn dieser Server ein Slave ist und mit dem Master " "verbunden ist." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -13891,12 +13867,12 @@ msgstr "" "Anzahl der Prozesse, die länger als slow_launch_time brauchten, um sich zu " "verbinden." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Anzahl der Anfragen, die länger als long_query_time benötigten." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13906,25 +13882,25 @@ msgstr "" "wurden. Wenn dieser Wert hoch ist, sollten Sie in Betracht ziehen, " "sort_buffer herauf zu setzen." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "Anzahl der Sortiervorgänge, die mit Bereichen durchgeführt wurden." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "Anzahl der sortierten Datensätze." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" "Anzahl der Sortiervorgänge, die durchgeführt wurden, indem die Tabelle " "gescannt wurde." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "Wie oft eine Tabellensperre sofort erlangt wurde." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13936,7 +13912,7 @@ msgstr "" "sollten Sie zunächst Ihre Anfragen optimieren und dann entweder Ihre " "Tabelle(n) zerteilen oder Replikation benutzen." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13946,11 +13922,11 @@ msgstr "" "Zugriffsrate kann mit Threads_created/Connections berechnet werden. Wenn " "dieser Wert rot ist, sollte der thread_cache_size erhöht werden." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "Anzahl der momentan offenen Verbindungen." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13962,11 +13938,11 @@ msgstr "" "Variable herauf setzen. (Normalerweise ergibt sich daraus keine bemerkbare " "Performance-Steigerung wenn eine gute Prozess-Implementierung vorliegt.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "Prozess-Zwischenspeicher Erfolgsrate (berechneter Wert)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "Anzahl der Prozesse, die nicht schlafen." @@ -13975,58 +13951,58 @@ msgstr "Anzahl der Prozesse, die nicht schlafen." msgid "Users of '%s' user group" msgstr "Benutzer der Benutzergruppe '%s'" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" "Es wurden keine Benutzer gefunden, die zu dieser Benutzergruppe gehören." -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "Benutzergruppen" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "Tabs in der Server-Ansicht" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "Tabs in der Datenbank-Ansicht" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "Tabs in der Tabellen-Ansicht" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "Benutzer anzeigen" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "Benutzergruppe hinzufügen" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "Benutzergruppe bearbeiten: '%s'" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "Menü-Zuweisungen der Benutzergruppe" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "Gruppenname:" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "Tabs in der Server-Ansicht" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "Tabs in der Datenbank-Ansicht" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "Tabs in der Tabellen-Ansicht" @@ -14087,21 +14063,17 @@ msgstr "Eine schließende Klammer wurde erwartet." msgid "Unrecognized data type." msgstr "Unerkannter Datentyp." -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "Unerwartete schließende Klammer." - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "Ein Alias wurde zuvor gefunden." -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "Unerwarteter Punkt." -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 msgid "An alias was expected." msgstr "Ein Alias wurde erwartet." @@ -14157,107 +14129,107 @@ msgstr "Schließendes Anführungszeichen %1$s wurde erzeugt." msgid "Variable name was expected." msgstr "Variablenname wurde erwartet." -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 msgid "Unexpected beginning of statement." msgstr "Unerwarteter Statement-Anfang." -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "Unerkannte Statement-Typ." -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "Bisher wurde keine Transaktion gestartet." -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "Unerwartetes Zeichen." -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "Diese Art von Klausel wurde zuvor analysiert." -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" "Eine neue Anweisung wurde gefunden, aber kein Trennzeichen zwischen ihm und " "dem vorhergehenden." -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "Unerkanntes Schlüsselwort." -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "Der Name der Entität wurde erwartet." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 msgid "At least one column definition was expected." msgstr "Mindestens eine Felddefinition wurde erwartet." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "Ein „RETURNS“-Schlüsselwort wurde erwartet." -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "Detailliertes Profil" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "Reihenfolge" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "Status" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "Zusammenfassung nach Status" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "Gesamtzeit" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "% Zeit" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "Aufrufe" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "ø Zeit" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "SQL-Abfrage speichern" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "Titel:" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Diese gespeicherte SQL-Abfrage für jeden Benutzer verfügbar machen" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "Bookmark nicht erstellt!" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Lesezeichen \"%s\" wird als Standard-Anzeigeabfrage verwendet." -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "Ansicht als PHP-Code" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " @@ -14267,7 +14239,7 @@ msgstr "" "Bearbeitungsfunktion, Kontrollkästchen, Bearbeiten, Kopieren und Löschen von " "Links sind nicht verfügbar. %s" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " @@ -14277,7 +14249,7 @@ msgstr "" "Bearbeitungsfunktion, Bearbeiten, Kopieren und Löschen können zu ungewollten " "Ergebnissen führen. %s" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Warnungen bei den Indizes der Tabelle `%s`" @@ -14305,27 +14277,27 @@ msgstr "Automatisch gespeicherte Abfrage holen" msgid "Bind parameters" msgstr "Parameter binden" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "SQL-Abfrage speichern:" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Überschreibe gleichnamiges Bookmark" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Begrenzer" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Diese Abfrage hier wieder anzeigen" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "Nach Abschluss zurücksetzen" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Nur zeigen" @@ -14369,112 +14341,112 @@ msgstr "Verlaufs-Report für %s deaktivieren" msgid "Deactivate now" msgstr "Jetzt deaktivieren" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Erstellt" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Aktualisiert" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 msgid "Delete version" msgstr "Version löschen" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Verfolgungs-Bericht" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Struktur Schnapschuss" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "aktiv" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "nicht aktiv" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "Befehle verfolgen" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "Lösche die Verlaufsdaten des Datensatzes" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "Keine Daten" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Zeige %1$s mit Datum von %2$s bis %3$s und Benutzer %4$s %5$s" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "SQL Dump (Datei Download)" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "SQL Dump" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "Diese Option ersetzt Ihre Tabelle und enthaltene Daten." -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "SQL Ausführung" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "Export als %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "DML Befehl" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "DDL Befehl" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Datum" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Benutzername" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Version %s Schnappschuss (SQL code)" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "kein(e)" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "Verfolgungsdatendefinition erfolgreich gelöscht" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "Verfolgungsdatenmanipulation erfolgreich gelöscht" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14483,62 +14455,62 @@ msgstr "" "Datenbank realisieren. Bitte stellen Sie sicher, dass Sie die dafür " "benötigten Rechte besitzen." -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" "Kommentieren Sie diese beiden Zeilen aus, wenn Sie diese nicht benötigen." -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL Befehle exportiert." -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "Verlaufs-Report für Tabelle %s" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Verlaufs-Report für %1$s wurde bei Version %2$s aktiviert." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Verlaufs-Report für %1$s wurde bei Version %2$s deaktiviert." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Version %1$s von %2$s wurde gelöscht." -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Version %1$s wurde erstellt, Tracking von %2$s ist aktiviert." -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Nicht verfolgte Tabellen" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Tabelle verfolgen" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Verfolgte Tabellen" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Letzte Version" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "Tracking löschen" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Versionen" @@ -14546,11 +14518,11 @@ msgstr "Versionen" msgid "Manage your settings" msgstr "Einstellungen verwalten" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "Die Konfiguration wurde gespeichert." -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14656,7 +14628,7 @@ msgstr "Keine Datenbanken" msgid "View dump (schema) of databases" msgstr "Dump (Schema) der Datenbanken anzeigen" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14683,7 +14655,7 @@ msgstr "" "phpMyAdmin konnte den Thread %s nicht abbrechen. Er wurde wahrscheinlich " "bereits geschlossen." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "Nicht genügend Berechtigungen um Abfragestatistiken anzuzeigen." @@ -15500,43 +15472,49 @@ msgstr "Punkte" msgid "Stacked" msgstr "Gestapelt" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "Titel des Reports" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "X-Achse:" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "Reihe:" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "Beschriftung X-Achse:" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "X-Werte" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "Beschriftung Y-Achse:" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Y-Werte" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "Wertenamen in einer Spalte" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "Wertespalten:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 msgid "Value Column:" msgstr "Wertspalte:" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "Diagramm als Bild speichern" @@ -15591,15 +15569,43 @@ msgstr "Kommentar:" msgid "Drag to reorder" msgstr "Zur Umsortierung ziehen" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +msgid "Foreign key constraints" +msgstr "Beschränkungen durch Fremdschlüssel" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "Aktionen" + +#: templates/table/relation/common_form.phtml:10 +msgid "Constraint properties" +msgstr "Constrainteigenschaften" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" +"Nur Spalten mit Index werden angezeigt. Sie können einen Index unten " +"definieren." + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "Beschränkung für auswärtige Schlüssel" + +#: templates/table/relation/common_form.phtml:60 +msgid "+ Add constraint" +msgstr "+ Constraint hinzufügen" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "Interne Beziehungen" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "Interne Beziehung" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15607,34 +15613,7 @@ msgstr "" "Eine interne Beziehung ist nicht notwendig, wenn eine entsprechende " "Fremdschlüssel-Beziehung existiert." -#: templates/table/relation/common_form.phtml:37 -msgid "Foreign key constraints" -msgstr "Beschränkungen durch Fremdschlüssel" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "Aktionen" - -#: templates/table/relation/common_form.phtml:41 -msgid "Constraint properties" -msgstr "Constrainteigenschaften" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" -"Nur Spalten mit Index werden angezeigt. Sie können einen Index unten " -"definieren." - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "Beschränkung für auswärtige Schlüssel" - -#: templates/table/relation/common_form.phtml:83 -msgid "+ Add constraint" -msgstr "+ Constraint hinzufügen" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "Anzuzeigende Spalte auswählen:" @@ -15762,7 +15741,7 @@ msgid "at beginning of table" msgstr "am Tabellenanfang" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 msgid "Partitions" msgstr "Partitionen" @@ -15795,7 +15774,7 @@ msgstr "Partitioniere Tabelle" msgid "Edit partitioning" msgstr "Bearbeite die Partitionierung" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "View/Ansicht bearbeiten" @@ -17212,6 +17191,39 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert ist auf 0 gesetzt" +#~ 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" + +#~ 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" + +#~ msgid "tables" +#~ msgstr "Tabellen" + +#~ msgid "views" +#~ msgstr "Ansichten" + +#~ msgid "procedures" +#~ msgstr "Prozeduren" + +#~ msgid "events" +#~ msgstr "Ereignisse" + +#~ msgid "functions" +#~ msgstr "Funktionen" + +#~ msgid "Filter databases by name or regex" +#~ msgstr "Datenbanken nach Namen oder Regex filtern" + +#~ msgid "Filter by name or regex" +#~ msgstr "Nach Name oder Regex filtern" + +#~ msgid "Unexpected closing bracket." +#~ msgstr "Unerwartete schließende Klammer." + #~ msgid "Username and hostname didn't change." #~ msgstr "Benutzername und Rechnername haben sich nicht geändert." diff --git a/po/el.po b/po/el.po index e069dc1a73..1c5c8241a5 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-27 18:59+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" @@ -15,7 +15,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.5-dev\n" -#: changelog.php:37 license.php:30 +#: changelog.php:37 license.php:33 #, php-format msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " @@ -37,7 +37,7 @@ msgstr "Πατήστε για ταξινόμηση." msgid "Showing rows %1$s - %2$s." msgstr "Εμφάνιση εγγραφών %1$s - %2$s." -#: db_create.php:61 +#: db_create.php:62 #, php-format msgid "Database %1$s has been created." msgstr "Δημιουργήθηκε η βάση δεδομένων %1$s." @@ -46,13 +46,13 @@ msgstr "Δημιουργήθηκε η βάση δεδομένων %1$s." msgid "Database comment" msgstr "Σχόλιο βάσης δεδομένων" -#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:601 +#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:599 #: templates/columns_definitions/column_definitions_form.phtml:84 msgid "Table comments:" msgstr "Σχόλια πίνακα:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1568 +#: libraries/insert_edit.lib.php:1575 #: libraries/navigation/nodes/NodeColumn.php:34 #: libraries/plugins/export/ExportHtmlword.php:288 #: libraries/plugins/export/ExportHtmlword.php:384 @@ -62,13 +62,14 @@ msgstr "Σχόλια πίνακα:" #: libraries/plugins/export/ExportTexytext.php:282 #: libraries/plugins/export/ExportTexytext.php:373 #: libraries/plugins/export/PMA_ExportPdf.php:472 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:882 libraries/tracking.lib.php:978 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 +#: libraries/tracking.lib.php:892 libraries/tracking.lib.php:990 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:10 -#: templates/table/relation/common_form.phtml:43 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:27 +#: templates/table/relation/common_form.phtml:79 #: templates/table/relation/foreign_key_row.phtml:176 #: templates/table/relation/foreign_key_row.phtml:188 #: templates/table/relation/internal_relational_row.phtml:73 @@ -88,14 +89,14 @@ msgstr "Στήλη" #: libraries/plugins/export/ExportTexytext.php:283 #: libraries/plugins/export/ExportTexytext.php:374 #: libraries/plugins/export/PMA_ExportPdf.php:474 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 #: libraries/rte/rte_list.lib.php:78 libraries/rte/rte_list.lib.php:106 #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2606 libraries/tracking.lib.php:883 -#: libraries/tracking.lib.php:975 +#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -105,7 +106,7 @@ msgstr "Τύπος" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:709 -#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1577 +#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1584 #: libraries/plugins/export/ExportHtmlword.php:294 #: libraries/plugins/export/ExportHtmlword.php:390 #: libraries/plugins/export/ExportLatex.php:517 @@ -114,9 +115,9 @@ msgstr "Τύπος" #: libraries/plugins/export/ExportTexytext.php:284 #: libraries/plugins/export/ExportTexytext.php:375 #: libraries/plugins/export/PMA_ExportPdf.php:476 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 -#: libraries/tracking.lib.php:885 libraries/tracking.lib.php:981 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/tracking.lib.php:895 libraries/tracking.lib.php:993 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 @@ -133,9 +134,9 @@ msgstr "Κενό" #: libraries/plugins/export/ExportTexytext.php:285 #: libraries/plugins/export/ExportTexytext.php:376 #: libraries/plugins/export/PMA_ExportPdf.php:478 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 -#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:886 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:896 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 @@ -147,8 +148,8 @@ msgstr "Προεπιλογή" #: libraries/plugins/export/ExportOdt.php:488 #: libraries/plugins/export/ExportTexytext.php:378 #: libraries/plugins/export/PMA_ExportPdf.php:487 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:640 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:663 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 msgid "Links to" msgstr "Σύνδεση με" @@ -159,37 +160,38 @@ msgstr "Σύνδεση με" #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:381 #: libraries/plugins/export/PMA_ExportPdf.php:494 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:651 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:664 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:649 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 #: templates/columns_definitions/table_fields_definitions.phtml:65 msgid "Comments" msgstr "Σχόλια" -#: db_datadict.php:155 libraries/controllers/TableStructureController.php:1189 -#: libraries/controllers/TableStructureController.php:1194 -#: libraries/tracking.lib.php:925 +#: db_datadict.php:155 +#: libraries/controllers/table/TableStructureController.php:1197 +#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:79 +#: templates/table/structure/display_structure.phtml:80 msgid "Primary" msgstr "Πρωτεύον" -#: db_datadict.php:165 js/messages.php:370 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:371 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 -#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:403 -#: libraries/mult_submits.lib.php:417 +#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:408 +#: libraries/mult_submits.lib.php:422 #: libraries/plugins/export/ExportHtmlword.php:654 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:710 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2971 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3620 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1013 libraries/tracking.lib.php:1018 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2973 +#: libraries/server_privileges.lib.php:2993 +#: libraries/server_privileges.lib.php:3631 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -198,32 +200,32 @@ msgstr "Πρωτεύον" msgid "No" msgstr "Όχι" -#: db_datadict.php:165 js/messages.php:515 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:516 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 #: libraries/config/FormDisplay.tpl.php:280 -#: libraries/controllers/TableStructureController.php:770 -#: libraries/controllers/TableStructureController.php:1440 -#: libraries/controllers/TableStructureController.php:1449 -#: libraries/controllers/TableStructureController.php:1454 -#: libraries/controllers/TableStructureController.php:1459 -#: libraries/controllers/TableStructureController.php:1464 -#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:199 -#: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 -#: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 +#: libraries/controllers/table/TableStructureController.php:771 +#: libraries/controllers/table/TableStructureController.php:1448 +#: libraries/controllers/table/TableStructureController.php:1457 +#: libraries/controllers/table/TableStructureController.php:1462 +#: libraries/controllers/table/TableStructureController.php:1467 +#: libraries/controllers/table/TableStructureController.php:1472 +#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:200 +#: libraries/mult_submits.lib.php:344 libraries/mult_submits.lib.php:377 +#: libraries/mult_submits.lib.php:406 libraries/mult_submits.lib.php:420 #: libraries/plugins/export/ExportHtmlword.php:655 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:788 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:711 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2968 -#: libraries/server_privileges.lib.php:2989 -#: libraries/server_privileges.lib.php:3617 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1011 libraries/tracking.lib.php:1016 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2970 +#: libraries/server_privileges.lib.php:2991 +#: libraries/server_privileges.lib.php:3628 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -236,8 +238,8 @@ msgstr "Ναι" msgid "View dump (schema) of database" msgstr "Εμφάνιση σκαριφήματος (σχήματος) της βάσης δεδομένων" -#: db_export.php:51 db_tracking.php:102 export.php:382 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:176 +#: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 +#: libraries/controllers/DatabaseStructureController.php:157 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "Δεν βρέθηκαν πίνακες στη βάση δεδομένων." @@ -254,7 +256,7 @@ msgstr "Πίνακες" #: db_export.php:66 libraries/Menu.php:320 libraries/Menu.php:427 #: libraries/Util.php:3407 libraries/Util.php:3417 libraries/Util.php:3423 -#: libraries/Util.php:3702 libraries/Util.php:4339 libraries/Util.php:4356 +#: libraries/Util.php:3703 libraries/Util.php:4340 libraries/Util.php:4357 #: libraries/central_columns.lib.php:729 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:320 @@ -262,10 +264,10 @@ msgstr "Πίνακες" #: libraries/config/user_preferences.forms.php:218 #: libraries/config/user_preferences.forms.php:259 #: libraries/config/user_preferences.forms.php:285 -#: libraries/import.lib.php:1299 libraries/navigation/nodes/NodeColumn.php:44 +#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:44 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 -#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:877 +#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:887 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -310,11 +312,11 @@ msgstr "" "Οι επιπρόσθετες λειτουργίες για εργασία με συσχετισμένους πίνακες έχουν " "απενεργοποιηθεί. %sΜάθετε γιατί%s." -#: db_qbe.php:135 +#: db_qbe.php:136 msgid "You have to choose at least one column to display!" msgstr "Πρέπει να επιλέξετε τουλάχιστον μία στήλη για εμφάνιση!" -#: db_qbe.php:152 +#: db_qbe.php:154 #, php-format msgid "Switch to %svisual builder%s" msgstr "Αλλαγή στον %sεικονικός μάστορας%s" @@ -342,7 +344,7 @@ msgstr "" msgid "No tables selected." msgstr "Δεν επιλέχθηκαν πίνακες." -#: db_tracking.php:146 +#: db_tracking.php:149 msgid "Database Log" msgstr "Καταγραφή Βάσης Δεδομένων" @@ -380,7 +382,7 @@ msgstr "Ίσως θέλετε να ανανεώσετε τη σελίδα." msgid "Bad type!" msgstr "Μη έγκυρος τύπος!" -#: export.php:276 +#: export.php:278 msgid "Bad parameters!" msgstr "Μη έγκυρες παράμετροι!" @@ -388,98 +390,98 @@ msgstr "Μη έγκυρες παράμετροι!" msgid "Invalid export type" msgstr "Μη έγκυρος τύπος εξαγωγής" -#: gis_data_editor.php:119 +#: gis_data_editor.php:117 #, php-format msgid "Value for the column \"%s\"" msgstr "Τιμή για τη στήλη «%s»" -#: gis_data_editor.php:147 +#: gis_data_editor.php:145 #: templates/table/gis_visualization/gis_visualization.phtml:37 msgid "Use OpenStreetMaps as Base Layer" msgstr "Χρήση του OpenStreetMaps ως Βασικό Επίπεδο" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:169 +#: gis_data_editor.php:167 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:192 +#: gis_data_editor.php:190 #, php-format msgid "Geometry %d:" msgstr "Γεωμετρία %d:" -#: gis_data_editor.php:214 +#: gis_data_editor.php:212 msgid "Point:" msgstr "Σημείο:" -#: gis_data_editor.php:215 gis_data_editor.php:242 gis_data_editor.php:298 -#: gis_data_editor.php:371 js/messages.php:504 +#: gis_data_editor.php:213 gis_data_editor.php:240 gis_data_editor.php:296 +#: gis_data_editor.php:369 js/messages.php:505 msgid "X" msgstr "Χ" -#: gis_data_editor.php:218 gis_data_editor.php:246 gis_data_editor.php:302 -#: gis_data_editor.php:377 js/messages.php:505 +#: gis_data_editor.php:216 gis_data_editor.php:244 gis_data_editor.php:300 +#: gis_data_editor.php:375 js/messages.php:506 msgid "Y" msgstr "Υ" -#: gis_data_editor.php:240 gis_data_editor.php:296 gis_data_editor.php:369 -#: js/messages.php:507 +#: gis_data_editor.php:238 gis_data_editor.php:294 gis_data_editor.php:367 +#: js/messages.php:508 #, php-format msgid "Point %d" msgstr "Σημείο %d" -#: gis_data_editor.php:253 gis_data_editor.php:309 gis_data_editor.php:387 -#: js/messages.php:513 +#: gis_data_editor.php:251 gis_data_editor.php:307 gis_data_editor.php:385 +#: js/messages.php:514 msgid "Add a point" msgstr "Προσθήκη σημείου" -#: gis_data_editor.php:270 +#: gis_data_editor.php:268 #, php-format msgid "Linestring %d:" msgstr "Κείμενο γραμμής %d:" -#: gis_data_editor.php:273 gis_data_editor.php:350 +#: gis_data_editor.php:271 gis_data_editor.php:348 msgid "Outer ring:" msgstr "Εξωτερικός δακτύλιος:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:273 gis_data_editor.php:350 #, php-format msgid "Inner ring %d:" msgstr "Εσωτερικός δακτύλιος %d:" -#: gis_data_editor.php:312 +#: gis_data_editor.php:310 msgid "Add a linestring" msgstr "Προσθήκη κειμένου γραμμής" -#: gis_data_editor.php:313 gis_data_editor.php:392 js/messages.php:514 +#: gis_data_editor.php:311 gis_data_editor.php:390 js/messages.php:515 msgid "Add an inner ring" msgstr "Προσθήκη εσωτερικού δακτυλίου" -#: gis_data_editor.php:334 +#: gis_data_editor.php:332 #, php-format msgid "Polygon %d:" msgstr "Πολύγωνο %d:" -#: gis_data_editor.php:398 +#: gis_data_editor.php:396 msgid "Add a polygon" msgstr "Προσθήκη πολυγώνου" -#: gis_data_editor.php:404 +#: gis_data_editor.php:402 msgid "Add geometry" msgstr "Προσθήκη γεωμετρίας" -#: gis_data_editor.php:410 js/messages.php:345 libraries/DbSearch.php:462 -#: libraries/DisplayResults.php:1783 libraries/browse_foreigners.lib.php:142 +#: gis_data_editor.php:408 js/messages.php:346 libraries/DbSearch.php:462 +#: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:151 #: libraries/display_export.lib.php:404 libraries/display_export.lib.php:410 -#: libraries/display_import.lib.php:403 libraries/index.lib.php:42 -#: libraries/insert_edit.lib.php:1547 libraries/insert_edit.lib.php:1584 +#: libraries/display_import.lib.php:403 libraries/index.lib.php:45 +#: libraries/insert_edit.lib.php:1554 libraries/insert_edit.lib.php:1591 #: libraries/normalization.lib.php:168 libraries/normalization.lib.php:825 #: libraries/operations.lib.php:47 libraries/operations.lib.php:114 #: libraries/operations.lib.php:266 libraries/operations.lib.php:309 #: libraries/operations.lib.php:806 libraries/operations.lib.php:877 -#: libraries/operations.lib.php:926 libraries/operations.lib.php:1336 -#: libraries/operations.lib.php:1653 +#: libraries/operations.lib.php:926 libraries/operations.lib.php:1339 +#: libraries/operations.lib.php:1656 #: libraries/plugins/auth/AuthenticationCookie.php:239 #: libraries/replication_gui.lib.php:124 libraries/replication_gui.lib.php:163 #: libraries/replication_gui.lib.php:328 libraries/replication_gui.lib.php:465 @@ -488,12 +490,12 @@ msgstr "Προσθήκη γεωμετρίας" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2343 -#: libraries/server_privileges.lib.php:3114 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_user_groups.lib.php:285 -#: libraries/sql_query_form.lib.php:369 libraries/sql_query_form.lib.php:429 -#: libraries/tracking.lib.php:536 libraries/tracking.lib.php:656 +#: libraries/server_privileges.lib.php:2345 +#: libraries/server_privileges.lib.php:3116 +#: libraries/server_privileges.lib.php:3735 +#: libraries/server_user_groups.lib.php:290 +#: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 +#: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 #: prefs_manage.php:280 prefs_manage.php:358 #: templates/columns_definitions/column_definitions_form.phtml:64 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 @@ -506,11 +508,11 @@ msgstr "Προσθήκη γεωμετρίας" msgid "Go" msgstr "Εκτέλεση" -#: gis_data_editor.php:413 +#: gis_data_editor.php:411 msgid "Output" msgstr "Εξαγόμενο" -#: gis_data_editor.php:416 +#: gis_data_editor.php:414 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -522,7 +524,7 @@ msgstr "" msgid "Succeeded" msgstr "Επιτεύχθηκε" -#: import.php:59 js/messages.php:588 +#: import.php:59 js/messages.php:589 msgid "Failed" msgstr "Απέτυχε" @@ -587,7 +589,7 @@ msgid "Could not load import plugins, please check your installation!" msgstr "" "Αδύνατη η φόρτωση προσθέτων εισαγωγής, για αυτό ελέξτε την εγκατάστασή σας!" -#: import.php:669 libraries/sql.lib.php:744 libraries/sql.lib.php:1468 +#: import.php:669 libraries/sql.lib.php:754 libraries/sql.lib.php:1485 #, php-format msgid "Bookmark %s has been created." msgstr "Ο σελιδοδείκτης %s έχει δημιουργηθεί." @@ -619,7 +621,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "Αδύνατη η φόρτωση της διαδικασίας της εισαγωγής." -#: import_status.php:111 js/messages.php:444 libraries/Util.php:797 +#: import_status.php:111 js/messages.php:445 libraries/Util.php:797 #: libraries/export.lib.php:523 #: libraries/plugins/schema/ExportRelationSchema.php:301 user_password.php:268 msgid "Back" @@ -644,7 +646,7 @@ msgstr "" msgid "General settings" msgstr "Γενικές ρυθμίσεις" -#: index.php:191 js/messages.php:617 +#: index.php:191 js/messages.php:618 #: libraries/display_change_password.lib.php:54 #: libraries/display_change_password.lib.php:57 user_password.php:262 msgid "Change password" @@ -744,7 +746,11 @@ msgstr "Υποστήριξη" msgid "List of changes" msgstr "Λίστα αλλαγών" -#: index.php:453 +#: index.php:438 libraries/server_plugins.lib.php:83 +msgid "License" +msgstr "Άδεια" + +#: index.php:460 msgid "" "You are connected as 'root' with no password, which corresponds to the " "default MySQL privileged account. Your MySQL server is running with this " @@ -756,7 +762,7 @@ msgstr "" "αυτή τη ρύθμιση, είναι ανοιχτός σε επιθέσεις και θα πρέπει να διορθώσετε το " "πρόβλημα εισάγωντας κωδικό πρόσβασης για το χρήστη «root»." -#: index.php:470 +#: index.php:477 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -766,7 +772,7 @@ msgstr "" "επιλογή είναι ασύμβατη με το phpMyAdmin και ίσως προκαλέσει πρόβλημα με " "μερικά δεδομένα!" -#: index.php:485 +#: index.php:492 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -777,7 +783,7 @@ msgstr "" "μπορεί να χωρίσει συμβολοσειρές σωστά και ίσως προκύψουν μη αναμενόμενα " "αποτελέσματα." -#: index.php:502 +#: index.php:509 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than " @@ -789,7 +795,7 @@ msgstr "" "την ρυθμισμένη εγκυρότητα cookie στο phpMyAdmin. Εξαιτίας αυτού, η σύνδεσή " "σας ίσως λήξει νωρίτερα από ό,τι ρυθμίστηκε στο phpMyAdmin." -#: index.php:521 +#: index.php:528 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -798,13 +804,13 @@ msgstr "" "που ορίστηκε στο phpMyAdmin, για αυτό, η σύνδεσή σας θα λήξει συντομότερα " "από τη ρύθμιση του phpMyAdmin." -#: index.php:537 +#: index.php:544 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Το αρχείο ρυθμίσεων χρειάζεται τώρα μία μυστική φράση-κλειδί " "(blowfish_secret)." -#: index.php:550 +#: index.php:557 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. It is strongly recommended to remove it " @@ -817,7 +823,7 @@ msgstr "" "του διακομιστή σας μπορεί να προσβηθεί από μη αδειοδοτημένους χρήστες που " "μπορούν να λάβουν τη ρύθμισή σας." -#: index.php:566 +#: index.php:573 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -826,14 +832,14 @@ msgstr "" "Η αποθήκευση ρυθμίσεων του phpMyAdmin δεν έχει ρυθμιστεί πλήρως. Μερικά " "εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. %sΜάθετε γιατί%s. " -#: index.php:573 +#: index.php:580 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "Ή εναλλακτικά μεταβείτε στην καρτέλα «Λειτουργίες» οποιασδήποτε βάσης " "δεδομένων για να το ορίσετε εκεί." -#: index.php:619 +#: index.php:626 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -842,7 +848,7 @@ msgstr "" "Η έκδοση της βιβλιοθήκης PHP MySQL %s διαφέρει από την έκδοση του διακομιστή " "MySQL %s. Αυτό ίσως έχει μη προβλέψιμα αποτελέσματα." -#: index.php:647 +#: index.php:654 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -864,7 +870,7 @@ msgstr "Επιβεβαίωση" msgid "Do you really want to execute \"%s\"?" msgstr "Θέλετε να εκτελέσετε το ακόλουθο το «%s»;" -#: js/messages.php:45 libraries/mult_submits.lib.php:397 +#: js/messages.php:45 libraries/mult_submits.lib.php:402 msgid "You are about to DESTROY a complete database!" msgstr "Πρόκειται να DESTROY μια ολόκληρη βάση δεδομένων!" @@ -984,13 +990,6 @@ msgstr "" "Θέλετε, σίγουρα, να αλλάξετε τη σύνθεση και να μετατρέψετε τα δεδομενα;" #: js/messages.php:95 -#| msgid "" -#| "Through this operation, MySQL attempts to map the data values between " -#| "collations. If the character sets are incompatible, there may be data " -#| "loss and this lost data may NOT be recoverable simply by changing " -#| "back the column collation(s). To convert existing data, it is " -#| "suggested to use the column(s) editing feature (the \"Change\" Link) on " -#| "the table structure page. " msgid "" "Through this operation, MySQL attempts to map the data values between " "collations. If the character sets are incompatible, there may be data loss " @@ -1020,7 +1019,7 @@ msgid "Save & close" msgstr "Αποθήκευση & κλείσιμο" #: js/messages.php:109 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1551 prefs_manage.php:364 +#: libraries/insert_edit.lib.php:1558 prefs_manage.php:364 #: prefs_manage.php:375 msgid "Reset" msgstr "Επαναφορά" @@ -1078,10 +1077,10 @@ msgstr "Επιλέξτε στήλη(ες) για το ευρετήριο." msgid "You have to add at least one column." msgstr "Πρέπει να προσθέσετε τουλάχιστον ένα πεδίο." -#: js/messages.php:129 libraries/insert_edit.lib.php:1549 +#: js/messages.php:129 libraries/insert_edit.lib.php:1556 #: templates/columns_definitions/column_definitions_form.phtml:159 #: templates/table/index_form.phtml:237 -#: templates/table/relation/common_form.phtml:108 +#: templates/table/relation/common_form.phtml:127 msgid "Preview SQL" msgstr "Προεπισκόπηση SQL" @@ -1124,8 +1123,8 @@ msgstr "Οι κωδικοί πρόσβασης δεν είναι ίδιοι!" msgid "Removing Selected Users" msgstr "Διαγραφή των επιλεγμένων χρηστών" -#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:461 -#: libraries/tracking.lib.php:831 +#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:471 +#: libraries/tracking.lib.php:841 msgid "Close" msgstr "Κλείσιμο" @@ -1147,7 +1146,7 @@ msgstr "Το πρότυπο διαγράφηκε." #. l10n: Other, small valued, queries #: js/messages.php:155 libraries/ServerStatusData.php:130 -#: libraries/server_status_queries.lib.php:148 +#: libraries/server_status_queries.lib.php:150 msgid "Other" msgstr "Άλλα" @@ -1314,7 +1313,7 @@ msgstr "Ερωτήσεις" msgid "Traffic" msgstr "Κίνηση" -#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4330 +#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4331 #: libraries/server_status_monitor.lib.php:258 msgid "Settings" msgstr "Ρυθμίσεις" @@ -1327,9 +1326,9 @@ msgstr "Προσθήκη διαγράμματος στο πλέγμα" msgid "Please add at least one variable to the series!" msgstr "Εισάγετε τουλάχιστον μια μεταβλητή στις σειρές!" -#: js/messages.php:216 libraries/DisplayResults.php:1477 +#: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1447,7 +1446,7 @@ msgstr "Αλλαγή ρυθμίσεων" msgid "Current settings" msgstr "Τρέχουσες ρυθμίσεις" -#: js/messages.php:253 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:253 msgid "Chart title" msgstr "Τίτλος διαγράμματος" @@ -1538,21 +1537,21 @@ msgstr "Ανάλυση…" msgid "Explain output" msgstr "Επεξήγηση προϊόντος" -#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4326 +#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4327 #: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:396 #: libraries/rte/rte_list.lib.php:104 -#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:282 -#: libraries/tracking.lib.php:1623 +#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:284 +#: libraries/tracking.lib.php:1639 msgid "Status" msgstr "Κατάσταση" -#: js/messages.php:289 js/messages.php:870 +#: js/messages.php:289 js/messages.php:862 #: libraries/plugins/export/ExportHtmlword.php:484 #: libraries/plugins/export/ExportOdt.php:600 #: libraries/plugins/export/ExportTexytext.php:445 #: libraries/plugins/export/PMA_ExportPdf.php:314 #: libraries/rte/rte_list.lib.php:93 -#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:239 +#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:243 msgid "Time" msgstr "Χρόνος" @@ -1640,10 +1639,10 @@ msgstr "" "Επαναφορά στην προεπιλεγμένη ρύθμιση…" #: js/messages.php:322 libraries/Menu.php:355 libraries/Menu.php:457 -#: libraries/Menu.php:578 libraries/Util.php:4329 libraries/Util.php:4344 -#: libraries/Util.php:4361 libraries/config/messages.inc.php:260 +#: libraries/Menu.php:578 libraries/Util.php:4330 libraries/Util.php:4345 +#: libraries/Util.php:4362 libraries/config/messages.inc.php:260 #: libraries/display_import.lib.php:108 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:241 +#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:241 #: setup/frames/menu.inc.php:26 msgid "Import" msgstr "Εισαγωγή" @@ -1700,7 +1699,13 @@ msgstr "Έλεγχος" msgid "Formatting SQL…" msgstr "Διαμόρφωση SQL…" -#: js/messages.php:346 libraries/server_variables.lib.php:159 +#: js/messages.php:343 +#, fuzzy +#| msgid "Bad parameters!" +msgid "No parameters found!" +msgstr "Μη έγκυρες παράμετροι!" + +#: js/messages.php:347 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 @@ -1711,59 +1716,59 @@ msgstr "Διαμόρφωση SQL…" msgid "Cancel" msgstr "Άκυρο" -#: js/messages.php:349 libraries/Header.php:457 +#: js/messages.php:350 libraries/Header.php:457 msgid "Page-related settings" msgstr "Ρυθμίσεις σχετισμένες με σελίδα" -#: js/messages.php:350 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:351 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Εφαρμογή" -#: js/messages.php:353 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:354 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:124 msgid "Loading…" msgstr "Φόρτωση…" -#: js/messages.php:354 +#: js/messages.php:355 msgid "Request aborted!!" msgstr "Το Αίτημα διακόπηκε!!" -#: js/messages.php:355 +#: js/messages.php:356 msgid "Processing request" msgstr "Προώθηση αιτήματος" -#: js/messages.php:356 +#: js/messages.php:357 msgid "Request failed!!" msgstr "Το Αίτημα απέτυχε!!" -#: js/messages.php:357 +#: js/messages.php:358 msgid "Error in processing request" msgstr "Σφάλμα στην προώθηση αιτημάτος" -#: js/messages.php:358 +#: js/messages.php:359 #, php-format msgid "Error code: %s" msgstr "Κωδικός σφάλματος: %s" -#: js/messages.php:359 +#: js/messages.php:360 #, php-format msgid "Error text: %s" msgstr "Κείμενο σφάλματος: %s" -#: js/messages.php:360 libraries/db_common.inc.php:73 +#: js/messages.php:361 libraries/db_common.inc.php:73 #: libraries/db_table_exists.lib.php:33 libraries/server_databases.lib.php:462 msgid "No databases selected." msgstr "Δεν έχετε επιλέξει βάσεις δεδομένων." -#: js/messages.php:361 +#: js/messages.php:362 msgid "Dropping column" msgstr "Διαγραφή στήλης" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Adding primary key" msgstr "Προσθήκη πρωτεύοντος κλειδιού" -#: js/messages.php:363 +#: js/messages.php:364 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1773,165 +1778,165 @@ msgstr "Προσθήκη πρωτεύοντος κλειδιού" msgid "OK" msgstr "Εντάξει" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Click to dismiss this notification" msgstr "Πατήστε γαι να παραλείψετε αυτή την ειδοποίηση" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Renaming databases" msgstr "Μετονομασία βάσεων δεδομένων" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Copying database" msgstr "Αντιγραφή βάσης δεδομένων" -#: js/messages.php:369 +#: js/messages.php:370 msgid "Changing charset" msgstr "Αλλαγή συνόλου χαρακτήρων" -#: js/messages.php:373 libraries/Util.php:3289 +#: js/messages.php:374 libraries/Util.php:3289 msgid "Enable foreign key checks" msgstr "Ενεργοποίηση ελέγχων μη διακριτών κλειδιών" -#: js/messages.php:376 +#: js/messages.php:377 msgid "Failed to get real row count." msgstr "Αποτυχία λήψης πραγματικής μέτρησης εγγραφών." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Searching" msgstr "Αναζήτηση" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide search results" msgstr "Απόκρυψη αποτελεσμάτων αναζήτησης" -#: js/messages.php:381 +#: js/messages.php:382 msgid "Show search results" msgstr "Προβολή αποτελεσμάτων αναζήτησης" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Browsing" msgstr "Αναζήτηση" -#: js/messages.php:383 +#: js/messages.php:384 msgid "Deleting" msgstr "Διαγραφή" -#: js/messages.php:387 +#: js/messages.php:388 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "Ο ορισμός μιας αποθηκευμένης συνάρτησης πρέπει να περιέχει μια δήλωση RETURN!" -#: js/messages.php:388 libraries/DisplayResults.php:4832 -#: libraries/DisplayResults.php:5091 libraries/Menu.php:347 -#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3709 -#: libraries/Util.php:3710 libraries/Util.php:4328 libraries/Util.php:4343 -#: libraries/Util.php:4360 libraries/config/messages.inc.php:254 +#: js/messages.php:389 libraries/DisplayResults.php:4850 +#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 +#: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 +#: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2448 -#: libraries/server_privileges.lib.php:2527 -#: libraries/server_privileges.lib.php:2873 -#: libraries/server_privileges.lib.php:3532 -#: libraries/server_status_monitor.lib.php:321 prefs_manage.php:306 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2875 +#: libraries/server_privileges.lib.php:3543 +#: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 msgid "Export" msgstr "Εξαγωγή" -#: js/messages.php:391 libraries/rte/rte_routines.lib.php:742 +#: js/messages.php:392 libraries/rte/rte_routines.lib.php:742 msgid "ENUM/SET editor" msgstr "Επεξεργαστής ENUM/SET" -#: js/messages.php:392 +#: js/messages.php:393 #, php-format msgid "Values for column %s" msgstr "Τιμές για τη στήλη %s" -#: js/messages.php:393 +#: js/messages.php:394 msgid "Values for a new column" msgstr "Τιμές για νέα στήλη" -#: js/messages.php:394 +#: js/messages.php:395 msgid "Enter each value in a separate field." msgstr "Εισαγωγή κάθε τιμής σε διαφορετικό πεδίο." -#: js/messages.php:395 +#: js/messages.php:396 #, php-format msgid "Add %d value(s)" msgstr "Προσθήκη %d τιμής(ών)" -#: js/messages.php:399 +#: js/messages.php:400 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "Σημείωση: Αν το αρχείο περιέχει πολλούς πίνακες, θα ενωθουν σε έναν." -#: js/messages.php:403 +#: js/messages.php:404 msgid "Hide query box" msgstr "Απόκρυψη παραθύρου ερωτήματος" -#: js/messages.php:404 +#: js/messages.php:405 msgid "Show query box" msgstr "Προβολή παραθύρου ερωτήματος" -#: js/messages.php:405 libraries/Console.php:88 libraries/Console.php:217 -#: libraries/DisplayResults.php:3457 libraries/DisplayResults.php:4816 +#: js/messages.php:406 libraries/Console.php:88 libraries/Console.php:217 +#: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4834 #: libraries/Index.php:721 libraries/Util.php:727 libraries/Util.php:1238 -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:119 +#: libraries/server_user_groups.lib.php:121 #: libraries/server_variables.lib.php:242 #: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 msgid "Edit" msgstr "Επεξεργασία" -#: js/messages.php:406 libraries/Console.php:89 libraries/DbSearch.php:360 -#: libraries/DisplayResults.php:3526 libraries/DisplayResults.php:4800 +#: js/messages.php:407 libraries/Console.php:89 libraries/DbSearch.php:360 +#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4818 #: libraries/central_columns.lib.php:854 #: libraries/central_columns.lib.php:1200 libraries/display_export.lib.php:227 -#: libraries/server_user_groups.lib.php:129 -#: libraries/sql_query_form.lib.php:416 libraries/tracking.lib.php:480 +#: libraries/server_user_groups.lib.php:131 +#: libraries/sql_query_form.lib.php:417 libraries/tracking.lib.php:490 #: setup/frames/index.inc.php:187 setup/frames/index.inc.php:295 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Διαγραφή" -#: js/messages.php:407 libraries/DisplayResults.php:915 -#: libraries/DisplayResults.php:923 +#: js/messages.php:408 libraries/DisplayResults.php:919 +#: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "Ο αριθμός %d δεν είναι έγκυρος αριθμός γραμμών." -#: js/messages.php:408 -#: libraries/controllers/table/TableSearchController.php:435 -#: libraries/controllers/table/TableSearchController.php:920 -#: libraries/sql.lib.php:193 tbl_change.php:159 +#: js/messages.php:409 +#: libraries/controllers/table/TableSearchController.php:432 +#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "Αναζήτηση μη διακριτών τιμών" -#: js/messages.php:409 +#: js/messages.php:410 msgid "No auto-saved query" msgstr "Κανένα αυτόματα αποθηκευμένο ερώτημα" -#: js/messages.php:410 +#: js/messages.php:411 #, php-format msgid "Variable %d:" msgstr "Μεταβλητή %d:" -#: js/messages.php:413 libraries/normalization.lib.php:889 +#: js/messages.php:414 libraries/normalization.lib.php:889 msgid "Pick" msgstr "Διαλέξτε" -#: js/messages.php:414 +#: js/messages.php:415 msgid "Column selector" msgstr "Επιλογέας στήλης" -#: js/messages.php:415 +#: js/messages.php:416 msgid "Search this list" msgstr "Αναζήτηση σε αυτή τη λίστα" -#: js/messages.php:417 +#: js/messages.php:418 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1941,15 +1946,15 @@ msgstr "" "για τη βάση δεδομένων %s έχει στήλες που δεν είναι παρούσες στον τρέχοντα " "πίνακα." -#: js/messages.php:420 +#: js/messages.php:421 msgid "See more" msgstr "Δείτε περισσότερα" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Are you sure?" msgstr "Σίγουρα;" -#: js/messages.php:423 +#: js/messages.php:424 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1957,51 +1962,51 @@ msgstr "" "Αυτή η ενέργεια ίσως αλλάξει ορισμένους από τους ορισμούς στηλών.
Θέλετε σίγουρα να συνεχίσετε;" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "Συνέχεια" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "Προσθήκη πρωτεύοντος κλειδιού" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "Προστέθηκε πρωτεύον κλειδί." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "Μεταφέροντάς σας στο επόμενο βήμα…" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Το πρώτο βήμα κανονικοποίησης ολοκληρώθηκε για τον πίνακα «%s»." -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "Τέλος βήματος" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "Δεύτερο βήμα κανονικοποίησης (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Ολοκληρώθηκε" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "Επιβεβαίωση μερικών εξαρτήσεων" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "Οι επιλεγμένες μερικές εξαρτήσεις είναι ως ακολούθως:" -#: js/messages.php:440 +#: js/messages.php:441 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2009,19 +2014,19 @@ msgstr "" "Σημείωση: a, b -> d,f αναφέρει τιμές των στηλών a και b όπου συνδυαζόμενες " "μπορούν να ορίσουν τις τιμές των στηλών d και f." -#: js/messages.php:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "Δεν έχετε επιλέξει μερικές εξαρτήσεις!" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "Προβολή των πιθανών μερικών εξαρτήσεων με βάση δεδομένα στον πίνακα" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "Απόκρυψη λίστας μερικών εξαρτήσεων" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2029,170 +2034,170 @@ msgstr "" "Καθήστε αναπαυτικά! Ίσως διαρκέσει μερικά δευτερόλεπτα βάσει του μεγέθους " "των δεδομένων και του αριθμού στηλών στον πίνακα." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "Βήμα" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "Οι ακόλουθες πράξεις θα πραγματοποιηθούν:" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "Απομάκρυνση στηλών από %s από τον πίνακα %s" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "Δημιουργία του ακόλουθου πίνακα" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "Τρίτο βήμα κανονικοποίησης (3NF)" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "Επιβεβαίωση μεταβατικών εξαρτήσεων" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "Οι επιλεγμένες εξαρτήσεις είναι ως ακολούθως:" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "Δεν έχετε επιλέξει εξαρτήσεις!" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Αποθήκευση" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Απόκρυψη κριτηρίων αναζήτησης" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Προβολή κριτηρίων αναζήτησης" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "Αναζήτηση εύρους" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "Μέγιστο στήλης:" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "Ονόματα στηλών:" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "Ελάχιστη τιμή:" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "Μέγιστη τιμή:" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "Απόκρυψη κριτηρίων εύρεσης και αντικατάστασης" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "Προβολή κριτηρίων εύρεσης και αντικατάστασης" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "Κάθε σημείο αναπαρειστά μια εγγραφή δεδομένων." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "Η μετάβαση πάνω από ένα σημείο θα δείξει την ετικέτα του." -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Για να εστιάσετε, επιλέξτε ένα τομέα της εκτύπωσης με το ποντίκι." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" "Πατήστε το κουμπί επαναφοράς εστίασης για να επιστρέψετε στην αρχική " "κατάσταση." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Πατήστε ένα σημείο δεδομένων για να δείτε και πιθανά να επεξεργαστείτε τη " "γραμμή δεδομένων." -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Ο χώρος εργασίας μπορεί να αλλάξει μέγεθος σύρωντας την κάτω δεξιά γωνία." -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "Επιλογή δύο στηλών" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "Επιλογή δύο διαφορετικών στηλών" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "Περιεχόμενο δείκτη δεδομένων" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Παράληψη" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Αντιγραφή" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Σημείο" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Κείμενο γραμμής" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Πολύγωνο" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Γεωμετρία" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "Εσωτερικός δακτύλιος" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "Εξωτερικός δακτύλιος" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "Θέλετε να αντιγράψετε κλειδί κρυπτογράφησης;" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "Κλειδί κρυπτογράφησης" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2200,24 +2205,24 @@ msgstr "" "Δείχνει ότι έχετε κάνει αλλαγές σε αυτή τη σελίδα, θα ερωτηθείτε για " "επιβεβαίωση πριν εγκαταλείψετε τις αλλαγές" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Επιλέξτε αναφερθέν κλειδί" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Επιλέξτε Μη Διακριτό Κλειδί" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "Επιλέξτε το πρωτεύον κλειδί ή ένα μοναδικό κλειδί!" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Επιλέξτε στήλη για εμφάνιση" -#: js/messages.php:532 +#: js/messages.php:533 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?" @@ -2225,77 +2230,77 @@ msgstr "" "Δεν αποθηκεύσατε τις αλλαγές στο προϊόν. Θα χαθούν αν δεν τις αποθηκεύσετε. " "Θέλετε να συνεχίσετε;" -#: js/messages.php:535 +#: js/messages.php:536 msgid "Page name" msgstr "Όνομα σελίδας" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Αποθήκευση σελίδας" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Αποθήκευση σελίδας ως" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Άνοιγμα σελίδας" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "Διαγραφή σελίδας" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Χωρίς τίτλο" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "Επιλέξτε σελίδα για συνέχεια" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "Εισάγετε ένα έγκυρο όνομα σελίδας" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "Θέλετε να αποθηκεύσετε τις αλλαγές στην τρέχουσα σελίδα;" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "Η σελίδα διαγράφτηκε επιτυχώς" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "Εξαγωγή σχεσιακού σχήματος" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Οι αλλαγές αποθηκεύτηκαν" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "Προσθήκη επιλογής για τη στήλη «%s»." -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "%d αντικείμενο(α) δημιουργήθηκε(αν)." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Αποστολή" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "Πατήστε το escape για ακύρωση της επεξεργασίας." -#: js/messages.php:557 +#: js/messages.php:558 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?" @@ -2303,15 +2308,15 @@ msgstr "" "Έχετε επεξεργαστεί ορισμένα δεδομένα και δεν έχουν αποθηκευτεί. Θέλετε να " "αφήσετε τη σελίδα χωρίς αποθήκευση των δεδομένων;" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "Σύρτε για ανακατανομή." -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "Πατήστε για ταξινόμηση των αποτελεσμάτων κατά αυτή τη στήλη." -#: js/messages.php:563 +#: js/messages.php:564 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 " @@ -2321,26 +2326,26 @@ msgstr "" "ASC/DESC.
- Control+Κλικ ή Alt+Κλικ (Για Mac: Shift+Option+Click) για " "απομάκρυνση της στήλης από τη δήλωση ORDER BY" -#: js/messages.php:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "Πατήστε για εναλλαγή επισήμανσης." -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "Διπλό κλικ για αντιγραφή ονόματος στήλης." -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Πατήστε το προς τα κάτω βέλος
για εναλλαγή της εμφάνισης στηλών." -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Εμφάνιση όλων" -#: js/messages.php:574 +#: js/messages.php:575 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,12 +2354,12 @@ msgstr "" "την επεξεργασία και επιλογή καννάβου Επεξεργασία, Αντιγραφή και Διαγραφή " "ίσως να μη λειτουργούν μετά την αποθήκευση." -#: js/messages.php:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Εισάγετε ένα έγκυρο δεκαεξαδικό αριθμό. Έγκυροι χαρακτήρες είναι 0-9, A-F." -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2362,129 +2367,96 @@ msgstr "" "Θέλετε πραγματικά να δείτε όλες τις εγγραφές; Για ένα μεγάλο πίνακα, αυτό " "ίσως φέρει δυσλειτουργία στον φυλλομετρητή σας." -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "Αρχικό μήκος" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "άκυρο" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Ακυρωμένες συνδέσεις" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "Επιτυχία" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "Κατάσταση εισαγωγής" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Ρίξτε αρχεία εδώ" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "Επιλέξτε βάση δεδομένων πρώτα" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Μπορείτε επίσης να επεξεργαστείτε τις περισσότερες τιμές
πατώντας με " "διπλό κλικ κατευθείαν σε αυτές." -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Μπορείτε επίσης να επεξεργαστείτε τις περισσότερες τιμές
πατώντας " "κατευθείαν σε αυτές." -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "Μετάβαση στο σύνδεσμο:" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "Αντιγραφή ονόματος στήλης." -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "Δεξί κλικ στο όνομα στήλης για αντιγραφή του στο πρόχειρο." -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Δημιουργία κωδικού πρόσβασης" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Παραγωγή" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "Περισσότερα" -#: js/messages.php:623 +#: js/messages.php:624 msgid "Show panel" msgstr "Εμφάνιση πίνακα" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "Απόκρυψη πίνακα" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "Προβολή κρυφών αντικειμένων δέντρου πλοήγησης." -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "Σύνδεσμος με τον βασικό πίνακα" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "Αποσύνδεση από τον βασικό πίνακα" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" -"Για να φιλτράρετε όλες τις βάσεις δεδομένων στον διακομιστή, πατήστε το " -"Enter μετά τον όρο αναζήτησης" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" -"Για να φιλτράρετε όλα τα %s στη βάση δεδομένων, πατήστε το Enter μετά τον " -"όρο αναζήτησης" - #: js/messages.php:632 -msgid "tables" -msgstr "πίνακες" - -#: js/messages.php:633 -msgid "views" -msgstr "προβολές" - -#: js/messages.php:634 -msgid "procedures" -msgstr "διαδικασίες" - -#: js/messages.php:635 -msgid "events" -msgstr "συμβάντα" - -#: js/messages.php:636 -msgid "functions" -msgstr "συναρτήσεις" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "Η αιτούμενη σελίδα δεν βρέθηκε στο ιστορικό, ίσως έληξε." -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2494,27 +2466,27 @@ msgstr "" "εγκαταστήσετε. Η νεότερη έκδοση είναι η %s και δημοσιεύτηκε την %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", τελευταία έκδοση:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "ενημερωμένο" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "Δημιουργία προβολής" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "Αποστολή αναφορών σφάλματος" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "Υποβολή αναφοράς σφάλματος" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2522,21 +2494,21 @@ msgstr "" "Ένα ανεπανόρθωτο σφάλμα έχει συμβεί. Θέλετε να στείλετε μια αναφορά " "σφάλματος;" -#: js/messages.php:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "Αλλαγή ρυθμίσεων αναφοράς" -#: js/messages.php:660 +#: js/messages.php:652 msgid "Show report details" msgstr "Εμφάνιση λεπτομερειών αναφοράς" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "Η εξαγωγή σας ήταν ανεπιτυχής, λόγω χαμηλού χρονικού ορίου στην PHP!" -#: js/messages.php:667 +#: js/messages.php:659 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2546,58 +2518,58 @@ msgstr "" "Κατά την υποβολή ορισμένα πεδία ίσως αγνοηθούν λόγω της ρύθμισης της PHP " "max_input_vars." -#: js/messages.php:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "Ανιχνεύτηκαν ορισμένα σφάλματα στο διακομιστή!" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "Δείτε στο κάτω μέρος αυτού του παραθύρου." -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "Παράληψη Όλων" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "Σύμφωνα με τις ρυθμίσεις σας, υποβάλλονται άμεσα, κάντε υπομονή." -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "Επανεκτέλεση αυτού του ερώτηματος ξανά;" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "Θέλετε πραγματικά να διαγράψετε αυτό το σελιδοδείκτη;" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "Κάποιο σφάλμα συνέβει κατά τη λήψη πληροφοριών αποσφαλμάτωσης SQL." -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s ερωτήματα εκτελέστηκαν %s φορές σε %s δευτερόλεπτα." -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "%s επιχείρημα(τα) πέρασαν" -#: js/messages.php:707 +#: js/messages.php:699 msgid "Show arguments" msgstr "Προβολή επιχειρημάτων" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "Απόκρυψη επιχειρημάτων" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "Χρόνος που παρήλθε:" -#: js/messages.php:711 +#: js/messages.php:703 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 " @@ -2608,291 +2580,291 @@ msgstr "" "σωστά για σας. Στο Safari, τέτοιο πρόβλημα συνήθως συμβαίνει λόγω " "ενεργοποίησης της «Κατάστασης Ιδιωτικής Πλοήγησης»." -#: js/messages.php:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "Προηγούμενο" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "Επόμενο" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Σήμερα" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "Ιανουαρίου" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "Φεβρουαρίου" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "Μαρτίου" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "Απριλίου" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Μαΐου" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "Ιουνίου" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "Ιουλίου" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "Αυγούστου" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "Σεπτεμβρίου" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "Οκτωβρίου" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "Νοεμβρίου" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "Δεκεμβρίου" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Ιαν" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Φεβ" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Μαρ" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Απρ" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "Μάη" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Ιουν" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Ιουλ" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Αυγ" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Σεπ" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Οκτ" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Νοε" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Δεκ" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "Κυριακή" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "Δευτέρα" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "Τρίτη" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "Τετάρτη" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "Πέμπτη" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "Παρασκευή" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "Σάββατο" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "Κυρ" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Δευ" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Τρί" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Τετ" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Πέμ" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Παρ" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Σάβ" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "Κυ" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "Δε" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "Τρ" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "Τε" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "Πε" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "Πα" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "Σα" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "Wiki" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "ημερολόγιο-μήνας-έτος" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "κανένα" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Ώρα" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Λεπτό" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Δευτερόλεπτο" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "Αυτό το πεδίο είναι υποχρεωτικό" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "Διορθώστε αυτό το πεδίο" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "Εισάγετε μια έγκυρή ηλεκτρονική διεύθυνση" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "Εισάγετε έναν έγκυρο URL" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "Εισάγετε μια έγκυρη ημερομηνία" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "Εισάγετε μια έγκυρη ημερομηνία (ISO)" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "Εισάγετε έναν έγκυρο αριθμό" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "Εισάγετε έναν έγκυρο αριθμό πιστωτικής κάρτας" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "Εισάγετε μόνο ψηφία" @@ -2900,41 +2872,41 @@ msgstr "Εισάγετε μόνο ψηφία" msgid "Please enter the same value again" msgstr "Εισάγετε την ίδια τιμή ξανά" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "Εισάγετε όχι περισσότερους από {0} χαρακτήρες" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "Εισάγετε τουλάχιστον {0} χαρακτήρες" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "Εισάγετε μια τιμή μήκους μεταξύ {0} και {1} χαρακτήρες" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "Εισάγετε εισάγετε μια τιμή μεταξύ {0} και {1}" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "Εισάγετε μια τιμή μικρότερη ή ίση με {0}" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "Εισάγετε μια τιμή μεγαλύτερη ή ίση με {0}" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "Εισάγετε μια έγκυρη ημερομηνία ή ώρα" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "Εισάγετε μια έγκυρη ΔΕΚΑΕΞΑΔΙΚΗ εισαγωγή" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Λάθος" @@ -3025,11 +2997,12 @@ msgstr "Επανερώτημα" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3071,7 +3044,7 @@ msgstr "Κατά την τρέχουσα συνεδρία" msgid "Explain" msgstr "Εξήγηση" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Δημιουργία προφίλ" @@ -3105,8 +3078,8 @@ msgid "History" msgstr "Ιστορικό" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3253,7 +3226,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Αλλαγή σε σκοτεινό θέμα" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3261,24 +3234,24 @@ msgstr "" "Ο διακομιστής δεν αποκρίνεται (ή ο τοπικός διακομιστής δεν έχει ρυθμιστεί " "σωστά)." -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "Ο διακομιστής δεν αποκρίνεται." -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "Ελέξτε τα δικαιώματα του φακέλου που περιέχει τη βάση δεδομένων." -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Λεπτομέρειες…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "Ανεπιτυχής σύνδεση του χρήστη ελέγχου όπως ορίστηκε στη ρύθμισή σας." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3288,8 +3261,8 @@ msgstr "Ανεπιτυχής σύνδεση του χρήστη ελέγχου msgid "Ascending" msgstr "Αύξουσα" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3432,8 +3405,8 @@ msgstr[0] "%1$s απατέλεσμα στο %2$s" msgstr[1] "%1$s αποτελέσματα στο %2$s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3475,119 +3448,120 @@ msgstr "Αποεπιλογή όλων" msgid "Inside column:" msgstr "Εσωτερικό πεδίο:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "Αποθήκευση επεξεργασμένων δεδομένων" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "Επαναφορά κατανομής στηλών" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "Φιλτράρισμα εγγραφών" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "Αναζήτηση σε αυτόν τον πίνακα" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "Αρχή" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "Προηγούμενη" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "Επόμενη" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "Τέλος" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Όλα" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Αριθμός εγγραφών:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Ταξινόμηση ανά κλειδί" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "Περιληπτικά κείμενα" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "Πλήρη κείμενα" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Κλειδί συσχέτισης" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 msgid "Display column for relations" msgstr "Προβολή στήλης για σχέσεις" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "Εμφάνιση δυαδικών περιεχομένων" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "Εμφάνιση περιεχομένων BLOB" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "Απόκρυψη μετατροπής περιηγητή" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "Καλά Γνωστό Κείμενο" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "Καλά Γνωστό Δυαδικό" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "Η εγγραφή έχει διαγραφεί." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Τερματισμός" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Ίσως είναι κατά προσέγγιση. Δείτε τις [doc@faq3-11]ΣΑΕ 3.11[/doc]." -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "Η εντολή SQL εκτελέσθηκε επιτυχώς." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3596,64 +3570,64 @@ msgstr "" "Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην " "%sτεκμηρίωση%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "Εμφάνιση εγγραφών %1s - %2s" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d σύνολο, %2$d στο ερώτημα" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "%d συνολικά" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "Το ερώτημα χρειάστηκε %01.4f δευτερόλεπτα." -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Με τους επιλεγμένους:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 msgid "Check all" msgstr "Επιλογή όλων" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Εμφάνιση για εκτύπωση" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Λειτουργίες αποτελεσμάτων ερωτήματος" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Εμφάνιση διαγράμματος" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "Οπτικοποίηση δεδομένων GIS" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "Δεν βρέθηκε η σύνδεση!" @@ -3751,19 +3725,19 @@ msgstr "Δεν ορίστηκε ευρετήριο!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Ευρετήρια" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3772,24 +3746,24 @@ msgid "Action" msgstr "Ενέργεια" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Όνομα κλειδιού" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Μοναδικό" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Συμπιεσμένο" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Μοναδικότητα" @@ -3797,8 +3771,8 @@ msgstr "Μοναδικότητα" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3808,8 +3782,8 @@ msgid "Collation" msgstr "Σύνθεση" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3825,15 +3799,15 @@ msgstr "Το πρωτεύον κλειδί διεγράφη." msgid "Index %s has been dropped." msgstr "Το ευρετήριο %s έχει διαγραφεί." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Διαγραφή" @@ -3874,12 +3848,13 @@ msgstr "Προβολή" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3887,7 +3862,7 @@ msgstr "Πίνακας" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3896,8 +3871,8 @@ msgid "SQL" msgstr "Κώδικας SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3905,41 +3880,41 @@ msgid "Search" msgstr "Αναζήτηση" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Προσθήκη" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Δικαιώματα" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Λειτουργίες" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Παρακολούθηση" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3950,16 +3925,16 @@ msgstr "Δείκτες" msgid "Database seems to be empty!" msgstr "Η βάση δεδομένων φαίνεται να είναι άδεια!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Επερώτημα κατά παράδειγμα" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Εργασίες" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3967,20 +3942,20 @@ msgstr "Εργασίες" msgid "Events" msgstr "Συμβάντα" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Σχεδιαστής" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "Κεντρικές στήλες" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Βάσεις δεδομένων" @@ -3989,33 +3964,33 @@ msgid "User accounts" msgstr "Λογαριασμοί χρήστη" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Δυαδικό αρχείο καταγραφής" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Αναπαραγωγή" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Μεταβλητές" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Σύνολο χαρακτήρων" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Μηχανές" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "Πρόσθετα" @@ -4315,7 +4290,7 @@ msgstr "Η μετατροπή του ευρετηρίου σε PRIMARY δεν ε msgid "No index parts defined!" msgstr "Δεν ορίστηκαν τα στοιχεία του ευρετηρίου!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4795,38 +4770,38 @@ msgstr "" msgid "Click to toggle" msgstr "Πατήστε για εναλλαγή" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Περιηγηθείτε στον υπολογιστή σας:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Επιλογή από το φάκελο αποστολής του διακομίστή ιστού %s:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "" "Ο φάκελος που ορίσατε για την αποθήκευση αρχείων δεν μπόρεσε να βρεθεί." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "Δεν υπάρχουν αρχεία προς αποστολή!" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Άδειασμα" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "Εκτέλεση" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Εκτύπωση" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "Χρήστες" @@ -4989,8 +4964,8 @@ msgid "Add new column" msgstr "Προσθήκη νέας στήλης" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5059,19 +5034,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "Πρέπει να αναβαθμίσετε σε %s %s ή νεότερη." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "Σφάλμα: Το πειστήριο δεν ταιριάζει" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "προσπάθεια επανεγγραφής GLOBALS" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "δυνατή αξιοποίηση" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "ανιχνεύτηκε αριθμητικό κλειδί" @@ -5932,7 +5907,7 @@ msgid "Remember file name template" msgstr "Πρότυπο απομνημόνευσης ονοματος αρχείου" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Προσθήκη τιμής AUTO_INCREMENT" @@ -5971,7 +5946,7 @@ msgstr "Εξαγωγή σχετικών μεταδεδομένων από απο #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Προσθήκη %s" @@ -7715,7 +7690,7 @@ msgid "" msgstr "" "Ορίζεται αν το ερώτημα πρέπει να παραμείνει στην οθόνη μετά την υποβολή του." -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "Διατήρηση παραθύρου ερωτήματος" @@ -8027,101 +8002,33 @@ msgstr "Έγγραφο Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Έγγραφο Κειμένου Ανοιχτού Κώδικα - ODΤ" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "Η Λίστα Αγαπημένων είναι πλήρης!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Ο πίνακας %s άδειασε." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "Η προβολή %s διαγράφτηκε." -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "Ο πίνακας %s έχει διαγραφεί." -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "Η Λίστα Αγαπημένων είναι πλήρης!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "άγνωστο" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "Το όνομα «%s» είναι δεσμευμένη λέξη-κλειδί MySQL." -msgstr[1] "Τα ονόματα «%s» είναι δεσμευμένες λέξεις-κλειδία MySQL." - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "Δεν επιλέχθηκε στήλη." - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "Οι στήλες μετακινήθηκαν επιτυχώς." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "Ο πίνακας %1$s αλλάχτηκε επιτυχώς." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "Σφάλμα ερωτήματος" - -#: libraries/controllers/TableStructureController.php:967 -#, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "Ο πίνακας %1$s αλλάχτηκε επιτυχώς. Τα προνόμια έχουν προσαρμοστεί." - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Αλλαγή" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Ευρετήριο" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "Χωρική" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Πλήρες κείμενο" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "Διακριτές τιμές" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8135,6 +8042,14 @@ msgstr "Καμία αριθμητική στήλη παρούσα στον πί msgid "No data to display" msgstr "Κανένα δεδομένο για προβολή" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "Ο πίνακας %1$s αλλάχτηκε επιτυχώς." + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "Η προβολή της στήλης ενημερώθηκε επιτυχώς." @@ -8143,19 +8058,79 @@ msgstr "Η προβολή της στήλης ενημερώθηκε επιτυ msgid "Internal relations were successfully updated." msgstr "Οι εσωτερικές συσχετίσεις έχουν ενημερωθεί επιτυχώς." -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "Αναζήτηση πίνακα" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "Αναζήτηση εστίασης" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Εύρεση και αντικατάσταση" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "Το όνομα «%s» είναι δεσμευμένη λέξη-κλειδί MySQL." +msgstr[1] "Τα ονόματα «%s» είναι δεσμευμένες λέξεις-κλειδία MySQL." + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "Δεν επιλέχθηκε στήλη." + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "Οι στήλες μετακινήθηκαν επιτυχώς." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "Σφάλμα ερωτήματος" + +#: libraries/controllers/table/TableStructureController.php:975 +#, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "Ο πίνακας %1$s αλλάχτηκε επιτυχώς. Τα προνόμια έχουν προσαρμοστεί." + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Αλλαγή" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Ευρετήριο" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "Χωρική" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Πλήρες κείμενο" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "Διακριτές τιμές" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8165,7 +8140,7 @@ msgstr "Η επέκταση %s λείπει. Δείτε τις ρυθμίσει msgid "possible deep recursion attack" msgstr "πιθανή βαθειά ανάδρομή επίθεση" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Χωρίς αλλαγή" @@ -8236,7 +8211,7 @@ msgstr "Δημιουργία" msgid "Create database:" msgstr "Δημιουργία βάσης δεδομένων:" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Χωρίς Δικαιώματα" @@ -8976,64 +8951,64 @@ msgid "Dump has been saved to file %s." msgstr "Το αρχείο εξόδου αποθηκεύτηκε ως %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" "Η MySQL επέστρεψε ένα άδειο σύνολο αποτελεσμάτων (π.χ. καμμία εγγραφή)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "[συνέβει ROLLBACK.]" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Οι ακόλουθες δομές δημιουργήθηκαν ή αλλάχτηκαν. Εδώ μπορείτε να:" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "Προβολή των περιεχομένων δομής πατώντας στο όνομά της." -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "Αλλάξτε τις ρυθμίσεις πατώντας τον αντίστοιχο σύνδεσμο «Επιλογές»." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "Επεξεργαστείτε τη δομή πατώντας τον σύνδεσμο «Δομή»." -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "Μετάβαση στη βάση δεδομένων: %s" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "Επεξεργασία ρυθμίσεων για %s" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "Μετάβαση στον πίνακα: %s" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "Δομή του %s" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "Μετάβαση στην προβολή: %s" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "Μονο ερωτήματα UPDATE και DELETE μονού πίνακα μπορούν να εξομοιωθούν." -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9041,7 +9016,7 @@ msgstr "" "Μόνο ερωτήματα SQL INSERT, UPDATE, DELETE και REPLACE που περιέχουν πίνακες " "με μηχανή συναλλαγής μπορούν να επανέλθουν." -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "Δημιουργία ευρετηρίου σε  %s  στήλες" @@ -9064,74 +9039,74 @@ msgstr "Συνάρτηση" msgid "Binary" msgstr "Δυαδικό" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "" "Εξαιτίας του μεγέθος του,
αυτό το πεδίο ίσως να μη μπορεί να διορθωθεί." -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Δυαδικό - χωρίς δυνατότητα επεξεργασίας" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Ενωση" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "κατάλογος αποθήκευσης αρχείων διακομιστή:" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "Επεξεργασία/Προσθήκη" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "Συνέχιση εισαγωγής με %s εγγραφές" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "και μετά" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Εισαγωγή ως νέα εγγραφή" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "Εισαγωγή ως νέα γραμμή και παράβλεψη σφαλμάτων" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "Εμφάνιση ερωτήματος εισαγωγής" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Επιστροφή" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Εισαγωγή νέας εγγραφής" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Επιστροφή σε αυτή τη σελίδα" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Επεξεργασία επόμενης γραμμής" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" "Χρήση του πλήκτρου TAB για μετακίνηση από τιμή σε τιμή ή CTRL+βέλη για " "μετακίνηση παντού." -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9143,11 +9118,11 @@ msgstr "" msgid "Value" msgstr "Τιμή" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "Εμφάνιση ερωτήματος SQL" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "Ταυτότητα εισερχόμενης εγγραφής: %1$d" @@ -9163,35 +9138,35 @@ msgstr "Καμία" msgid "Convert to Kana" msgstr "Μετατροπή σε Kana" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Επιτυχία!" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "Αντικατάσταση προθέματος πίνακα:" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "Αντιγραφή πίνακα με πρόθεμα:" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "Από" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "Προς" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "Προσθήκη προθέματος πίνακα:" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "Προσθήκη προθέματος" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "Θέλετε να εκτελέσετε το ακόλουθο ερώτημα;" @@ -9409,8 +9384,8 @@ msgstr "Διαδικασίες:" msgid "Views:" msgstr "Προβολές:" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Εμφάνιση" @@ -9451,18 +9426,15 @@ msgstr[0] "%s αποτέλεσμα βρέθηκε" msgstr[1] "%s αποτελέσματα βρέθηκαν" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" -msgstr "Φιλτράρισμα βάσεων δεδομενων κατά όνομα ή κανονική έκφραση" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 msgid "Clear fast filter" msgstr "Εκκαθάριση γρήγορου φίλτρου" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "Φιλτράρισμα κατά όνομα ή κανονική έκφραση" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "Σύμπτηξη όλων" @@ -9885,7 +9857,7 @@ msgstr "Μετονομασία βάσης δεδομένων σε" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9896,7 +9868,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Προσαρμογή δικαιωμάτων" @@ -9914,18 +9886,18 @@ msgstr "Μετακίνηση βάσης δεδομένων σε" msgid "Drop the database (DROP)" msgstr "Διαγραφή της βάση δεδομένων (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Μόνο η δομή" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Δομή και δεδομένα" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Μόνο τα δεδομένα" @@ -9937,7 +9909,7 @@ msgstr "Αντιγραφή βάσης δεδομένων σε" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE πριν την αντιγραφή" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Προσθήκη περιορισμών" @@ -9977,157 +9949,157 @@ msgstr "Μηχανή αποθήκευσης" msgid "Change all column collations" msgstr "Αλλαγή όλων των συνθέσεων στηλών" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Αντιγραφή πίνακα σε (βάση δεδομένων.πίνακας)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Μεταφορά στον αντεγραμμένο πίνακα" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Συντήρηση πίνακα" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Ανάλυση πίνακα" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Έλεγχος πίνακα" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 msgid "Checksum table" msgstr "Πίνακας αθροίσματος ελέγχου" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Ανασυγκρότηση πίνακα" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "Ο πίνακας %s εκκαθαρίστηκε." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "Εκκαθάριση («FLUSH») πίνακα" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Βελτιστοποίηση πίνακα" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Επιδιόρθωση πίνακα" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "Διαγραφή δεδομένων ή πίνακα" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "Άδειασμα του πίνακα (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "Διαγραφή της βάσης δεδομένων (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Ανάλυση" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Έλεγχος" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Βελτιστοποίηση" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Επανακατασκευή" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Επισκευή" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "Διαγραφή" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 msgid "Coalesce" msgstr "Κοαλέζικα" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "Συντήρηση κατάτμησης" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "Κατάτμηση %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "Απομάκρυνση κατάτμησης" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Έλεγχος ακεραιότητας συσχετίσεων:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Δεν είναι δυνατή η μεταφορά του πίνακα στον εαυτό του!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Δεν είναι δυνατή η αντιγραφή του πίνακα στον εαυτό του!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Ο πίνακας %s μεταφέρθηκε στο %s. Τα προνόμια έχουν προσαρμοστεί." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Ο πίνακας %s αντιγράφηκε στο %s. Τα προνόμια έχουν προσαρμοστεί." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "Ο πίνακας %s μεταφέρθηκε στο %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "Ο πίνακας %s αντιγράφηκε στο %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Το όνομα του πίνακα είναι κενό!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "Αυτή η μορφή δεν έχει επιλογές" @@ -10305,7 +10277,7 @@ msgstr "Επιλογές απορριμμάτων δεδομένων" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Άδειασμα δεδομένων του πίνακα" @@ -10329,21 +10301,21 @@ msgstr "Προσδιορισμός" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Δομή πίνακα για τον πίνακα" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Δομή για προβολή" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Στημένη δομή για προβολή" @@ -10433,7 +10405,7 @@ msgid "Database:" msgstr "Βάση δεδομένων:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "Δεδομένα:" @@ -10537,7 +10509,7 @@ msgid "Data creation options" msgstr "Επιλογές δημιουργίας δεδομένων" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "Εκκαθάριση του πίνακα πριν την εισαγωγή" @@ -10621,8 +10593,8 @@ msgstr "Φαίνεται ότι ο πίνακάς σας χρησιμοποιε #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" "Η εξαγωγή ετικέτας μπορεί να μη λειτουργεί αξιόπιστα σε όλες τις περιπτώσεις." @@ -10631,81 +10603,81 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "Φαίνεται ότι ο πίνακάς σας χρησιμοποιεί συναρτήσεις" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 msgid "Metadata" msgstr "Μεταδεδομένα" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "Μεταδεδομένα για %s" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Δημιουργία:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Τελευταία ενημέρωση:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Tελευταίος έλεγχος:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "σε χρήση" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "Φαίνεται ότι η βάση δεδομένων σας χρησιμοποιεί προβολές" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Περιορισμοί για άχρηστους πίνακες" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Περιορισμοί για πίνακα" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "Ευρετήρια για άχρηστους πίνακες" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "Ευρετήρια για πίνακα" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT για άχρηστους πίνακες" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT για πίνακα" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "ΤΥΠΟΙ MIME ΓΙΑ ΠΙΝΑΚΑ" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "ΣΥΣΧΕΤΙΣΕΙΣ ΓΙΑ ΠΙΝΑΚΑ" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "Φαίνεται ότι ο πίνακάς σας χρησιμοποιεί δείκτες" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "Δομή για προβολή %s εξαγώμενη ως πίνακας" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "Σφάλμα ανάγνωσης δεδομένων:" @@ -10947,9 +10919,9 @@ msgstr "Σχεσιακό σχήμα" msgid "Table of contents" msgstr "Πίνακας περιεχομένων" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Πρόσθετα" @@ -11172,47 +11144,47 @@ msgstr "Μορφοποιεί το κείμενο ως JSON με επισήμαν msgid "Formats text as XML with syntax highlighting." msgstr "Μορφοποιεί το κείμενο ως XML με επισήμανση της σύνταξης." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Σφάλμα: η συσχέτιση υπαρχει ήδη." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "Έχει προστεθεί η συσχέτιση FOREIGN KEY." -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Σφάλμα: Δεν μπόρεσε να προστεθεί η συσχέτιση FOREIGN KEY!" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "Σφάλμα: Ανύπαρκτο ευρετήριο στη(ις) στήλη(ες)." -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "Σφάλμα: Τα χαρακτηριστικά συσχέτισης είναι απεπεργοποιημένα!" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "Η εσωτερική συσχέτιση έχει προστεθεί." -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 msgid "Error: Internal relation could not be added!" msgstr "Σφάλμα: Δεν μπόρεσε να προστεθεί η εσωτερική συσχέτιση!" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 msgid "FOREIGN KEY relation has been removed." msgstr "Έχει απομακρυνθεί η συσχέτιση FOREIGN KEY." -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Σφάλμα: Δεν μπόρεσε να απομακρυνθεί η συσχέτιση FOREIGN KEY!" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 msgid "Error: Internal relation could not be removed!" msgstr "Σφάλμα: Δεν μπόρεσε να απομακρυνθεί η εσωτερική συσχέτιση!" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "Η εσωτερική συσχέτιση έχει απομακρυνθεί." @@ -11259,70 +11231,70 @@ msgstr "" "Παρακαλώ διαβάστε στην τεκμηρίωση για το πως μπορείτε να ανανεώσετε τον " "πίνακα column_info. " -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Αποθηκευμένο ερώτημα SQL" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "Ιστορικό SQL" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "Μόνιμοι πρόσφατα χρησιμοποιημένοι πίνακες" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 msgid "Persistent favorite tables" msgstr "Μόνιμοι αγαπημένοι πίνακες" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "Μόνιμες ρυθμίσεις πινάκων UI" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "Ρυθμίσεις χρήστη" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "Προσαρμόσιμα μενού" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "Απόκρυψη/εμφάνιση αντικειμένων πλοήγησης" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "Αποθήκευση αναζητήσεων Ερώτημα-Ανά-Παράδειγμα" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "Διαχείριση Κεντρικής λίστας στηλών" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "Απομνημόνευση Ρυθμίσεων Σχεδιαστή" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 msgid "Saving export templates" msgstr "Αποθήκευση προτύπων εξαγωγής" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "Γρήγορα βήματα για εγκατάσταση χαρακτηριστικών για προχωρημένους:" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" "Δημιουργία των απαραίτητων πινάκων με το αρχείο %screate_tables.sql." -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "Δημιουργήστε έναν χρήστη pma και δώστε πρόσβαση σε αυτούς του πίνακες." -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -11331,17 +11303,17 @@ msgstr "" "(config.inc.php), για παράδειγμα ξεκινήστε με το αρχείο " "config.sample.inc.php." -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Επανασυνδεθείτε στο phpMyAdmin για να φορτωθεί το ενημερωμένο αρχείο " "ρυθμίσεων." -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "χωρίς περιγραφή" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11352,7 +11324,7 @@ msgstr "" "οποιασδήποτε βάσης δεδομένων για να ορίσετε την αποθήκευση ρυθμίσεων του " "phpMyAdmin εκεί." -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11361,7 +11333,7 @@ msgstr "" "%sΔημιουργία%s μιας βάσης δεδομένων με το όνομα «phpmyadmin» και εγκατάσταση " "της αποθήκευσης ρυθμίσεων του phpMyAdmin εκεί." -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." @@ -11369,7 +11341,7 @@ msgstr "" "%sΔημιουργία%s του τρέχοντος χώρου αποθήκευσης ρυθμίσεων του phpMyAdmin στην " "τρέχουσα βάση δεδομένων." -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11565,8 +11537,8 @@ msgstr "Όνομα χρήστη:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Όνομα χρήστη" @@ -11574,7 +11546,7 @@ msgstr "Όνομα χρήστη" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Κωδικός πρόσβασης" @@ -12207,7 +12179,7 @@ msgstr[1] "%1$d βάσεις δεδομένων διεγράφηκαν επιτ msgid "Plugin" msgstr "Πρόσθετο" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Έκδοση" @@ -12215,100 +12187,96 @@ msgstr "Έκδοση" msgid "Author" msgstr "Δημιουργός" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "Άδεια" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "Απενεργοποιημένο" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Χωρίς δικαιώματα." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Περιλαμβάνει όλα τα δικαιώματα εκτός από το GRANT." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Επιτρέπει την ανάγνωση δεδομένων." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Επιτρέπει την εισαγωγή και την αντικατάσταση δεδομένων." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Επιτρέπει την αλλαγή δεδομένων." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Επιτρέπει τη διαγραφή δεδομένων." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Επιτρέπει τη δημιουργία νέων βάσεων και πινάκων." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Επιτρέπει τη διαγραφή βάσεων και πινάκων." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Επιτρέπει την επανεκκίνηση του διακομιστή και τον καθαρισμό των προσωρινών " "αρχείων του." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Επιτρέπει την διακοπή λειτουργίας του διακομιστή." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "Επιτρέπει την προβολή διεργασιών όλων των χρηστών." #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "Επιτρέπει την εισαγωγή και εξαγωγή δεδομένων από και σε αρχεία." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "Δεν έχει χρήση σε αυτήν την έκδοση MySQL." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Επιτρέπει την δημιουργία και την διαγραφή ευρετηρίων." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Επιτρέπει την αλλαγή δομής των υπαρχόντων πινάκων." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Δίνει πρόσβαση στην πλήρη λίστα των βάσεων δεδομένων." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12319,22 +12287,22 @@ msgstr "" "όπως ο ορισμός γενικών μεταβλητών ή τη διακοπή λειτουργιών άλλων χρηστών." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Επιτρέπει τη δημιουργία προσωρινών πινάκων." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Επιτρέπει το κλείδωμα πινάκων για την τρέχουσα λειτουργία." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Απαιτείται για τους δευτερευόντες διακομιστές αναπαραγωγής." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Δίνει το δικαίωμα στον χρήστη να βρει που είναι οι κύριοι / δευτερεύοντες " @@ -12343,43 +12311,43 @@ msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Επιτρέπει τη δημιουργία νέων προβολών." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "Επιτρέπει τον ορισμό συμβάντων για τον προγραμματιστή συμβάντων." #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "Επιτρέπει τη δημιουργία και διαγραφή υποδείξεων." #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Επιτρέπει την εκτέλεση ερωτημάτων της μορφής SHOW CREATE VIEW." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Επιτρέπει τη δημιουργία αποθηκευμένων εργασιών." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Επιτρέπει την αλλαγή και διαγραφή αποθηκευμένων εργασιών." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "Επιτρέπει τη δημιουργία, διαγραφή και μετονομασία λογαριασμών χρηστών." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Επιτρέπει την εκτέλεση αποθηκευμένων εργασιών." @@ -12391,8 +12359,8 @@ msgstr "Κανένα" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Ομάδας χρηστών" @@ -12438,14 +12406,14 @@ msgstr "" "Σημείωση: Αν ορίσετε αυτές τις επιλογές σε 0 (μηδέν) αφαιρείτε ο περιορισμός." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Περιορίζει τον αριθμό των ερωτημάτων που ο χρήστης μπορεί να στείλει στον " "διακομιστή ανά ώρα." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12454,28 +12422,28 @@ msgstr "" "εκετελέσει ανά ώρα." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Περιορίζει τον αριθμό των νέων συνδέσεων που ο χρήστης μπορεί να ξεκινήσει " "ανά ώρα." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Περιορίζει τον αριθμό των ταυτόχρονων συνδέσεων που μπορεί να έχει ο χρήστης." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Εργασία" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12492,14 +12460,14 @@ msgstr "Επιτρέπει την εκτέλεση αυτής της εργασ #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Δικαιώματα πινάκων" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Σημείωση: Τα ονόματα δικαιωμάτων της MySQL εκφράζονται στα Αγγλικά." @@ -12509,7 +12477,7 @@ msgid "Administration" msgstr "Διαχείριση" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Γενικά δικαιώματα" @@ -12518,15 +12486,15 @@ msgid "Global" msgstr "Γενικά" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Δικαιώματα βάσης δεδομένων" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Επιτρέπει τη δημιουργία νέων πινάκων." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Επιτρέπει τη διαγραφή πινάκων." @@ -12543,7 +12511,7 @@ msgid "Native MySQL Authentication" msgstr "Γηγενής Πιστοποίηση MySQL" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Πληροφορίες Σύνδεσης" @@ -12568,8 +12536,8 @@ msgstr "Όνομα φιλοξενητή:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 msgid "Host name" msgstr "Όνομασία φιλοξενητή" @@ -12585,112 +12553,112 @@ msgstr "Πρόσθετο Πιστοποιίησης" msgid "Password Hashing Method" msgstr "Μέθοδος Μείγματος Κωδικού Πρόσβασης" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "Ο κωδικός πρόσβασης για τον χρήστη %s άλλαξε επιτυχώς." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Ανακαλέσατε τα δικαιώματα για %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 msgid "Add user account" msgstr "Προσθήκη λογαριασμού χρήστη" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 msgid "Database for user account" msgstr "Βάση δεδομένων για λογαριασμό χρήστη" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" "Δημιουργία βάσης δεδομένων με το ίδιο όνομα και με πλήρη δικαιώματα χρήσης." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Πλήρη δικαιώματα σε όνομα μπαλαντέρ (username\\_%)." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Πλήρη δικαιώματα στη βάση δεδομένων «%s»." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Χρήστες με πρόσβαση στη βάση «%s»" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "Ο χρήστης προστέθηκε." -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Χορήγηση" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "Δεν υπάρχουν αρκετά δικαιώματα για προβολή χρηστών." -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "Δεν βρέθηκαν χρήστες." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Οποιοδήποτε" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "γενικός" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "σχετιζόμενος με βάση δεδομένων" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "μπαλαντέρ" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "σχετικός με πίνακα" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 msgid "Edit privileges" msgstr "Επεξεργασία δικαιωμάτων" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Ανάκληση" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "Επεξεργασία ομάδας χρηστών" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… διατήρηση του παλιού χρήστη." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… διαγραφή του παλιού χρήστη από τους πίνακες χρηστών." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… ανάκληση των δικαιωμάτων του παλιού χρήστη και διαγραφή του." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12698,90 +12666,90 @@ msgstr "" "… διαγραφή του παλιού χρήστη από τους πίνακες χρηστών και επαναφόρτωση των " "δικαιωμάτων." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "Αλλαγή στοιχείων πρόσβασης / Αντιγραφή λογαριασμού χρήστη" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "Δημιουργία νέου λογαριασμού χρήστη με τα ίδια δικαιώματα και …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Δικαιώματα για τη συγκεκριμένη εργασία" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 msgid "Remove selected user accounts" msgstr "Διαγραφή των επιλεγμένων λογαριασμών χρηστών" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Ανάκληση όλων των ενεργών δικαιώματα από τους χρήστες και διαγραφή τους." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "Διαγραφή βάσεων δεδομένων που έχουν ίδια ονόματα με χρήστες." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "Δεν επιλέχθηκαν χρήστες για διαγραφή!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Επαναφόρτωση δικαιωμάτων" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Οι επιλεγμένοι χρήστες διεγράφησαν επιτυχώς." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Τα δικαιώματα του χρήστη %s ενημερώθηκαν." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "Διαγραφή %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Τα δικαιώματα επαναφορτώθηκαν επιτυχώς." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "Ο χρήστης %s υπάρχει ήδη!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "Δικαιώματα για %s" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Χρήστης" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "Νέος" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 msgid "Edit privileges:" msgstr "Επεξεργασία δικαιωμάτων:" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "Λογαριασμός χρήστη" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12789,11 +12757,11 @@ msgstr "" "Σημείωση: Προσπαθείτε να επεξεργαστείτε δικαιώματα του χρήστη με τον οποίο " "έχετε συνδεθεί." -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "Επισκόπηση λογαριασμών χρηστών" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " @@ -12804,7 +12772,7 @@ msgstr "" "φιλοξενίας του λογαριασμού τους επιτρέπει μια σύνδεση από οποιαδήποτε (%) " "φιλοξενία." -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12818,7 +12786,7 @@ msgstr "" "αλλαγές χειροκίνητα. Σε αυτήν την περίπτωση, θα πρέπει να %sεπαναφορτώσετε " "τα δικαιώματα%s πριν συνεχίσετε." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12832,11 +12800,11 @@ msgstr "" "αλλαγές χειροκίνητα. Σε αυτήν την περίπτωση, τα δικαιώματα πρέπει να " "επαναφορτωθούν αλλά προς το παρόν, δεν έχετε το δικαίωμα RELOAD." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "Ο επιλεγμένος χρήστης δεν βρέθηκε στον πίνακα δικαιωμάτων." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Προσθέσατε ένα νέο χρήστη." @@ -13100,24 +13068,24 @@ msgstr "Οδηγίες/Εγκατάσταση" msgid "Done dragging (rearranging) charts" msgstr "Ολοκληρώθηκε η μετακίνηση (επανατοποθέτηση) διαγραμμάτων" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "Ενεργοποίηση μετακίνησης διαγραμμάτων" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "Ρυθμός ανανέωσης" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "Στήλες διαγράμματος" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "Διευθέτηση διαγράμματος" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -13125,7 +13093,7 @@ msgstr "" "Η διευθέτηση των διαγραμμάτων αποθηκεύεται στον τοπικό χώρο αποθήκευσης των " "φυλλομετρητών. Ίσως θέλετε να το εξάγετε αν έχετε πολύπλοκη ρύθμιση." -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "Επαναφορά προεπιλογής" @@ -13182,7 +13150,7 @@ msgid "Statements" msgstr "Δηλώσεις" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "#" @@ -13207,7 +13175,7 @@ msgstr "Εμφάνιση μη διαμορφομένων τιμών" msgid "Related links:" msgstr "Σχετικοί σύνδεσμοι:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -13215,12 +13183,12 @@ msgstr "" "Ο αριθμός των συνδέσεων που διακόπηκαν επειδή ο πελάτης παρετήθηκε χωρίς να " "κλείσει σωστά τη σύνδεση." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Ο αριθμός των αποτυχημένων προσπαθειών για σύνδεση στο διακομιστή MySQL." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13230,20 +13198,20 @@ msgstr "" "μνήμη καταγραφής που υπερβαίνει την τιμή binlog_cache_size και χρησιμοποιούν " "ένα προσωρινό αρχείο για αποθήκευση δηλώσεων από τη συναλλαγή." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Ο αριθμός των συναλλαγών που χρησιμοποίησαν την προσωρινή δυαδική λανθάνουσα " "μνήμη καταγραφής." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Ο αριθμός των προσπαθειών για σύνδεση (επιτυχημένων ή όχι) στο διακομιστή " "MySQL." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13255,11 +13223,11 @@ msgstr "" "είναι μεγάλο, ίσως θέλετε να αυξήσετε την τιμή tmp_table_size ώστε οι " "προσωρινοί πίνακες να είναι στη μνήμη και όχι στο δίσκο." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "Πόσα προσωρινά αρχεία δημιούργησε το mysqld." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13267,7 +13235,7 @@ msgstr "" "Ο αριθμός των προσωρινών πινάκων στη μνήμη που δημιουργήθηκαν αυτόματα από " "τον διακομιστή κατά την εκτέλεσε δηλώσεων." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13275,7 +13243,7 @@ msgstr "" "Ο αριθμός των εγεγγραμμένων γραμμών με την εντολή INSERT DELAYED για τις " "οποίες υπήρξε κάποιο σφάλμα (πιθανόν διπλό κλειδί)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13284,23 +13252,23 @@ msgstr "" "διαφορετικός πίνακας στον οποίο κάποιος χρησιμοποιεί την εντολή INSERT " "DELAYED χρησιμοποιεί της δική του διεργασία." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "Ο αριθμός των INSERT DELAYED γραμμών που εγγράφτηκαν." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "Ο αριθμός των εκτελεσθέντων δηλώσεων FLUSH." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "Ο αριθμός των εσωτερικών δηλώσεων COMMIT." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "Οι φορές που διαγράφτηκε μια γραμμή από έναν πίνακα." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13311,7 +13279,7 @@ msgstr "" "ανακάλυψη. Το Handler_discover δείχνει τον αριθμό των πινάκων χρόνου που " "βρέθηκαν." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13322,7 +13290,7 @@ msgstr "" "ευρετηρίου. Παράδειγμα: SELECT col1 FROM foo, υποθέτοντας ότι το col1 έχει " "ευρετήριο." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -13331,7 +13299,7 @@ msgstr "" "είναι υψηλός, είναι ένας καλός δείκτης ότι τα ερωτήματά σας και οι πίνακές " "σας έχουν κάνει σωστά ευρετήρια." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13341,7 +13309,7 @@ msgstr "" "κλειδιού. Αυτό αυξάνετε αν κάνετε ερώτημα σε μια στήλη ευρετηρίου με ένα " "περιορισμό ευρετηρίου ή αν κάνετε μια σάρωση ευρετηρίου." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13350,7 +13318,7 @@ msgstr "" "η μέθοδος ανάγνωσης χρησιμοποιείτε κυρίως για βελτιστοποίηση της εντολής " "ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13363,7 +13331,7 @@ msgstr "" "σαρώνει ολόκληρους πίνακες ή έχετε ενώσεις που δεν χρησιμοποιούν σωστά τα " "κλειδιά." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13375,37 +13343,37 @@ msgstr "" "ότι οι πίνακες σας δεν έχουν σωστά ευρετήρια ή ότι τα ερωτήματά σας δεν " "έχουν γραφτεί ώστε να λαμβάνουν υπόψη τα ευρετήρια που έχετε." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "Ο αριθμός των εσωτερικών δηλώσεων ROLLBACK." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "Ο αριθμός των αιτήσεων για ενημέρωση μιας γραμμής σε έναν πίνακα." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "Ο αριθμός των αιτήσεων για εισαγωγή μιας γραμμής σε έναν πίνακα." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "Ο αριθμός των σελίδων που περιέχουν δεδομένα (καθαρά και μη)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "Ο αριθμός των μη καθαρώ σελίδων." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Ο αριθμός των σελίδων του buffer pool για τις οποίες υπήρξε αίτηση για " "εκκαθάριση." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "Ο αριθμός των ελεύθερων σελίδων." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13415,7 +13383,7 @@ msgstr "" "σελίδες που έχουν ήδη αναγνωστεί ή εγγραφεί ή που δεν μπορούν να " "εκκαθαριστούν ή απομακρυνθούν για κάποιο άλλο λόγο." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13427,11 +13395,11 @@ msgstr "" "τιμή μπορεί να υπολογιστεί ως Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "Συνολικό μέγεθος του buffer pool, σε σελίδες." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13440,7 +13408,7 @@ msgstr "" "συμβαίνει όταν ένα ερώτημα πρόκειται να σαρώσει ένα μεγάλο τμήμα πίνακα αλλά " "με τυχαία σειρά." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13448,11 +13416,11 @@ msgstr "" "Ο αριθμός των διαδοχικών αναγνώσεων κεφαλίδων της InnoDB που ξεκίνησαν. Αυτό " "συμβείναι όταν η InnoDB εκτελεί μια διαδοχική πλήρη σάρωση πίνακα." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "Ο αριθμός των λογικών αιτήσεων ανάγνωσης που έκαν η InnoDB." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13460,7 +13428,7 @@ msgstr "" "Ο αριθμός των λογικών αναγνώσεων που η InnoDB δεν μπόρεσε να ικανοποιήσει " "από το buffer pool και έπρεπε να κάνει ανάγνωση μονής σελίδας." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13475,55 +13443,55 @@ msgstr "" "αναμονών. Αν το μέγεθος του buffer pool έχει οριστεί σωστά, αυτή η τιμή " "πρέπει να είναι μικρή." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "Ο αριθμός των εγγραφών που έγιναν στο buffer pool της InnoDB." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "Ο αριθμός των λειτουργιών του fsync() μέχρι στιγμής." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "Ο τρέχων αριθμός των εκκρεμών λειτουργιών του fsync()." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "Ο τρέχων αριθμός των εκκρεμών αναγνώσεων." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "Ο τρέχων αριθμός των εκκρεμών εγγραφών." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "Το πλήθος των δεδομένων που αναγνώστηκε μέχρι στιγμής σε bytes." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "Ο συνολικός αριθμός των αναγνώσεων δεδομένων." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "Ο συνολικός αριθμός των εγγραφών δεδομένων." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "Το πλήθος των εγεγγραμμένων δεδομένων μέχρι στιγμής, σε bytes." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Ο αριθμός των εγγραφών διπλοεγγραφής που έγιναν και ο αριθμός των σελίδων " "που γράφτηκαν για αυτό το σκοπό." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" "Ο αριθμός των εγγραφών διπλοεγγραφής που έγιναν και ο αριθμός των σελίδων " "που γράφτηκαν για αυτό το σκοπό." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13531,36 +13499,36 @@ msgstr "" "Ο αριθμός των αναμονών που έγιναν εξαιτίας του μικρού μεγέθος του buffer " "καταγραφής και έπρεπε να αναμένεται να εκκαθαριστεί πριν συνεχίσει." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "Ο αριθμός των αιτήσεων εγγραφής καταγραφής." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "Ο αριθμός των φυσικών εγγραφών στο αρχείο καταγραφής." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" "Ο αριθμός των εγγραφών fsync() που ολοκληρώθηκαν στο αρχείο καταγραφής." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "Ο αριθμός των εκκρεμών fsyncs στο αρχείο καταγραφής." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "Εκκρεμείς εγγραφές αρχείου καταγραφής." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "Ο αριθμός των εγεγγραμμένων bytes στο αρχείο καταγραφής." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "Ο αριθμός των δημιουργηθέντων σελίδων." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -13569,55 +13537,55 @@ msgstr "" "υπολογίζονται σε σελίδες. Το μέγεθος της σελίδας επιτρέπει την εύκολη " "μετατροπή σε bytes." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "Ο αριθμός των αναγνωσμένων σελίδων." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "Ο αριθμός των εγεγγραμμένων σελίδων." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "Ο αριθμός των κλειδωμάτων γραμμής που είναι τώρα σε αναμονή." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Ο μέσος χρόνος απόκτησης ενός κλειδώματος γραμμής σε χιλιοστοδευτερόλεπτα." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Ο συνολικός απαιτούμενος χρόνος απόκτησης κλειδώματος γραμμής σε " "χιλιοστοδευτερόλεπτα." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Ο μέγιστος χρόνος απόκτησης ενός κλειδώματος γραμμής σε χιλιοστοδευτερόλεπτα." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "Οι φορές που πρέπει να αναμένεται ένα κλείδωμα γραμμής." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "Ο αριθμός των διαγραμμένων γραμμών από πίνακες InnoDB." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "Ο αριθμός των εισαχθέντων γραμμών σε πίνακες InnoDB." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "Ο αριθμός των αναγνωσμένων γραμμών από πίνακες InnoDB." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "Ο αριθμός των ενημερωμένων γραμμών σε πίνακες InnoDB." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13626,7 +13594,7 @@ msgstr "" "αλλά δεν έχει ακόμα εκκαθαριστεί στο δίσκο. Ήταν γνωστός ως " "Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -13635,7 +13603,7 @@ msgstr "" "Μπορείτε να χρησιμοποιήσετε αυτή τη τιμή για να προσδιορίσετε πόση " "λανθάνουσα μνήμη κλειδιού χρησιμοποιείται." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13645,17 +13613,17 @@ msgstr "" "τιμή είναι ένα έντονο σημάδι που δείχνει τον μέγιστο αριθμό μπλοκς που είναι " "σε χρήση με μια φορά." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "" "Ποσοστό της χρησιμοποιημένης λανθάνουσας μνήμης κλειδιού (υπολογισμένη τιμή)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" "Ο αριθμός των αιτήσεων ανάγνωσης ενός μπλοκ κλειδιού από τη λανθάνουσα μνήμη." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13666,7 +13634,7 @@ msgstr "" "μικρή. Ο βαθμό απώλειας λανθάνουσας μνήμης μπορεί να υπολογιστεί ως " "Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13674,22 +13642,22 @@ msgstr "" "Η λανθάνουσα μνήμη κλειδιού κακώς υπολογίστηκε ως βαθμός φυσικών αναγνώσεων " "σε σχέση με τα αιτήματα ανάγνωσης (υπολογισμένη τιμή)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" "Ο αριθμός των αιτήσεων εγγραφής ενός μπλοκ κλειδιού στη λανθάνουσα μνήμη." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "Ο αριθμός των φυσικών εγγραφών ενός κλειδιού στο δίσκο." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Ποσοστό φυσικών εγγραφών σε σχέση με τα αιτήματα εγγραφής (υπολογισμένη τιμή)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13700,7 +13668,7 @@ msgstr "" "διαφορετικών σχεδίων ερωτημάτων για το ίδιο ερώτημα. Η προεπιλεγμένη τιμή 0 " "σημαίνει ότι κανένα ερώτημα δεν μεταφράστηκε ακόμα." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13708,12 +13676,12 @@ msgstr "" "Ο μέγιστος αριθμός συνδέσεων που ήταν σε σύνδεση ταυτόχρονα από την εκκίνηση " "του διακομιστή." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Ο αριθμός των γραμμών σε αναμονή για εγγραφή στις σειρές INSERT DELAYED." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13721,21 +13689,21 @@ msgstr "" "Ο αριθμός των πινάκων που ανοίχτηκαν. Αν οι ανοιγμένοι πίνακες είναι " "μεγάλοι, η τιμή λανθάνουσας μνήμης πινάκων είναι πιθανον μικρή." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "Ο αριθμός των αρχείων που είναι ανοιχτά." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Ο αριθμός των ροών που είναι ανοιχτές (χρησιμοποιούνται κυρίως για " "καταγραφή)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "Ο αριθμός των πινάκων που είναι ανοιχτοί." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13745,19 +13713,19 @@ msgstr "" "ίσως κρύβουν θέματα συγκρότησης, που μπορούν να διορθωθούν χρησιμοποιώντας " "την εντολή FLUSH QUERY CACHE." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "Το μέγεθος της ελεύθερης μνήμης για λανθάνουσα μνήμη ερωτημάτων." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "Ο αριθμός των προσπελάσεων λανθάνουσας μνήμης." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "Ο αριθμός των ερωτημάτων που προστέθηκαν στην λανθάνουσα μνήμη." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13771,7 +13739,7 @@ msgstr "" "χρησιμοποιούμενη στρατηγική (LRU) για να αποφασίσει ποια ερωτήματα να " "απομακρύνει από τη λανθάνουσα μνήμη." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13779,19 +13747,19 @@ msgstr "" "Ο αριθμός των μη λανθανόντων ερωτημάτων (μη απομνημονεύσιμα ή δεν " "απομνημονεύονται λόγω της ρύθμισης query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "Ο αριθμός των καταχωρημένων ερωτημάτων στη λανθάνουσα μνήμη." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "Ο συνολικός αριθμός των μπλοκς στη λανθάνουσα μνήμη ερωτημάτων." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "Η κατάσταση της ασφαλούς αναπαραγωγής (δεν έχει εφαρμοστεί)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -13799,13 +13767,13 @@ msgstr "" "Ο αριθμός των ενώσεων που δεν χρησιμοποιούν ευρετήρια. Αν η τιμή είναι 0, " "πρέπει να ελέγχετε προσεκτικά τα ευρετήρια των πινάκων σας." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" "Ο αριθμός των ενώσεων που χρησιμοποιήσαν μια αναζήτηση εύρους σε έναν πίνακα " "παραπομπής." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -13814,7 +13782,7 @@ msgstr "" "κάθε γραμμή. (Αν αυτό δεν είναι 0, πρέπει να ελέγχετε προσεκτικά τα " "ευρετήρια των πινάκων σας.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13822,17 +13790,17 @@ msgstr "" "Ο αριθμός των ενώσεων που χρησιμοποιούν εύρη στον πρώτο πίνακα. (Κανονικά " "δεν είναι κρίσιμος αν δεν είναι μεγάλος.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "Ο αριθμός των ενώσεων που έκαναν μια πλήρη σάρωση του πρώτου πίνακα." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Ο αριθμός των προσωρινών πινάκων που είναι τώρα ανοιχτοί από τη δευτερεύουσα " "συνεργασία SQL." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13840,13 +13808,13 @@ msgstr "" "Συνολικές φορές (από την εκκίνηση) που η διεργασία δευτερεύουσας " "αναπαραγωγής SQL έχει ξαναδοκιμάσει συναλλαγές." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Αυτό είναι ΑΝΟΙΧΤΟ, αν αυτός ο διακομιστής είναι δευτερεύων που συνδέεται σε " "πρωτεύωντα." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -13854,14 +13822,14 @@ msgstr "" "Ο αριθμός των διεργασιών που έλαβαν περισσότερα από slow_launch_time " "δευτερόλεπτα να δημιουργηθούν." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Ο αριθμός των ερωτημάτων που έλαβαν περισσότερα από long_query_time " "δευτερόλεπτα." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13871,23 +13839,23 @@ msgstr "" "ταξινόμησης. Αν ο αριθμός είναι μεγάλος, πρέπει να αυξήσετε την τιμή της " "μεταβλητής συστήματος sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "Ο αριθμός των ταξινομήσεων που έγιναν με εύρη." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "Ο αριθμός των ταξινομημένων γραμμών." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "Ο αριθμός των ταξινομήσεων που έγιναν σαρώνοντας τον πίνακα." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "Οι φορές που ένα κλείδωμα πινακα ανακτήθηκε άμεσα." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13899,7 +13867,7 @@ msgstr "" "απόδοσης, πρέπει πρώτα να βελτιώσετε τα ερωτήματά σας και μετά χωρίστε τον " "πίνακα ή τους πίνακες ή χρησιμοποιείστε αναπαραγωγή." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13909,11 +13877,11 @@ msgstr "" "λανθάνουσας μνήμης μπορεί να υπολογιστεί ως Threads_created/Connections. Αν " "η τιμή είναι κόκκινη πρέπει να αυξήσετε την τιμή thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "Ο αριθμός των τρέχοντων ανοιγμένων συνδέσεων." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13925,11 +13893,11 @@ msgstr "" "thread_cache_size. (Κανονικά αυτό δεν δίνει μια σημαντική βελτίωση απόδοσης " "αν έχετε μια καλή εφαρμογή διεργασίας.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "Βαθμός λανθάνουσας μνήμης νήματος (υπολογισμένη τιμή)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "Ο αριθμός των διεργασιών που δεν είναι σε νάρκη." @@ -13938,57 +13906,57 @@ msgstr "Ο αριθμός των διεργασιών που δεν είναι msgid "Users of '%s' user group" msgstr "Χρήστες της ομάδας χρηστών «%s»" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "Κανένας χρήστης δεν βρέθηκε να ανήκει σε αυτή την ομάδα χρηστών." -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "Ομάδες χρηστών" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "Καρτέλες επιπέδου διακομιστή" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "Καρτέλες επιπέδου βάσης δεδομένων" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "Καρτέλες επιπέδου πίνακα" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "Χρήστες προβολών" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "Προσθήκη ομάδας χρηστών" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "Επεξεργασία ομάδας χρηστών: «%s»" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "Συσχετίσεις μενού ομάδας χρήστών" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "Όνομα ομάδας:" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "Καρτέλες επιπέδου διακομιστή" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "Καρτέλες επιπέδου βάσης δεδομένων" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "Καρτέλες επιπέδου πίνακα" @@ -14049,21 +14017,17 @@ msgstr "Αναμενόταν κλείσιμο αγκύλης." msgid "Unrecognized data type." msgstr "Μη αναγνωρισμένος τύπος δεδομένων." -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "Μη αναμενόμενο κλείσιμο αγκύλης." - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "Βρέθηκε μια ετικέτα προηγουμένως." -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "Μη αναμενόμενη τελεία." -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 msgid "An alias was expected." msgstr "Αναμενόταν μια ετικέτα." @@ -14119,107 +14083,107 @@ msgstr "Αναμενόταν τελικό εισαγωγικό %1$s." msgid "Variable name was expected." msgstr "Αναμενόταν όνομα μεταβλητής." -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 msgid "Unexpected beginning of statement." msgstr "Μη αναμενόμενη έναρξη δήλωσης." -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "Μη αναγνωρισμένος τύπος δήλωσης." -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "Καμιά συναλλαγή δεν ξεκίνησε προηγουμένως." -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "Μη αναμενόμενο τεκμήριο." -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "Αυτός ο τύπος ρύτρας έχει αναλυθεί προηγουμένως." -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" "Βρέθηκε μια νέα δήλωση, αλλά χωρίς διαχωριστικό μεταξύ της και της " "προηγούμενης." -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "Μη αναγνωρισμένη λέξη κλειδί." -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "Αναμενόταν το όνομα της οντότητας." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 msgid "At least one column definition was expected." msgstr "Αναμενόταν τουλάχιστον ένας ορισμός πεδίου." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "Αναμενόταν μια λέξη-κλειδί «RETURNS»." -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "Λεπτομερές προφίλ" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "Ταξινόμηση" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "Κατάσταση" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "Περίληψη ανά κατάσταση" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "Συνολικός Χρόνος" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "% Χρόνος" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "Κλήσεις" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "ø Χρόνος" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Αποθήκευση αυτού του ερωτήματος SQL" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "Ετικέτα:" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Δικαίωμα πρόσβασης στο σελίδοδείκτη σε κάθε χρήστη" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "Ο σελιδοδείκτης δεν δημιουργήθηκε!" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Χρήση του σελιδοδείκτη «%s» ως προεπιλεγμένο ερώτημα φυλλομετρητή." -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "Εμφάνιση ως κώδικά PHP" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " @@ -14229,7 +14193,7 @@ msgstr "" "επεξεργασίας πλέγματος, πλαίσια ελέγχου, Επεξεργασίας, Αντιγραφής και " "Διαγραφής δεν είναι διαθέσιμα. %s" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " @@ -14239,7 +14203,7 @@ msgstr "" "επεξεργασίας πλέγματος, Επεξεργασίας, Αντιγραφής και Διαγραφής ίσως έχουν " "αποτέλεσμα μη επιθυμητής συμπεριφοράς. %s" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Προβλήματα με τα ευρετήρια στον πίνακα «%s»" @@ -14267,27 +14231,27 @@ msgstr "Λήψη αυτόματου αποθηκευμένου ερωτήματ msgid "Bind parameters" msgstr "Παράμετροι δεσίματος" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "Αποθήκευση αυτού του ερωτήματος SQL:" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Αντικατάσταση υπάρχοντος σελιδοδείκτη με το ίδιο όνομα" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Διαχωριστικό" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Επανεμφάνιση αυτού του ερώτηματος εδώ" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "Επαναφορά όταν ολοκληρωθεί" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Μόνο ανάγνωση" @@ -14331,113 +14295,113 @@ msgstr "Απενεργοποιήση παρακολούθησης για το %s msgid "Deactivate now" msgstr "Απενεργοποιήση τώρα" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Δημιουργήθηκε" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Ενημερώθηκε" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 msgid "Delete version" msgstr "Διαγραφή έκδοσης" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Αναφορά παρακολούθησης" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Στιγμιότυπο δομής" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "ενεργή" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "μη ενεργή" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "Δηλώσεις παρακολούθησης" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "Διαγραφή γραμμής δεδομένων παρακολούθησης από την αναφορά" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "Δεν υπάρχουν δεδομένα" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Εμφάνιση %1$s με ημερομηνίες από %2$s έως %3$s από χρήστη %4$s %5$s" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "Κάδος SQL (λήψη αρχείου)" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "Κάδος SQL" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" "Αυτή η επιλογή θα αντικαταστήσει τον πίνακα και τα περιεχόμενά δεδομένα." -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "Εκτέλεση SQL" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "Εξαγωγή ως %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "Δήλωση χειρισμού δεδομένων" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "Δήλωση ορισμού δεδομένων" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Ημερομηνία" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Όνομα χρήστη" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Στιγμιότυπο έκδοσης %s (κώδικας SQL)" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Καμία" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "Ο προσδιορισμός των δεδομένων παρακολούθησης διαγράφτηκε επιτυχώς" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "Ο χειρισμός των δεδομένων παρακολούθησης διαγράφτηκε επιτυχώς" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14445,61 +14409,61 @@ msgstr "" "Μπορείτε να εκτελέσετε τον κάδο δημιουργώντας και χρησιμοποιώντας μι " "προσωρινή βάση δεδομένων. Σιγουρευτείτε ότι έχετε τα δικαιώματα για αυτό." -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "Κάντε σχόλια αυτές τις δύο γραμμές αν δεν τις χρειάζεστε." -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Οι δηλώσεις SQL εξήχθησαν. Αντιγράψτε τον κάδο ή εκτελέστε τον." -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "Αναφορά παρακολούθησης για τον πίνακα «%s»" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Παρακολούθηση του %1$s ενεργοποιήθηκε στην έκδοση %2$s." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Παρακολούθηση του %1$s απενεργοποιήθηκε στην έκδοση %2$s." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Η έκδοση %1$s από %2$s διαγράφτηκε." -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Η έκδοση %1$s δημιουργήθηκε, η παρακολούθηση του %2$s ενεργοποιήθηκε." -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Μη παρακολουθούμενοι πίνακες" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Προβολή παρακολούθησης πίνακα" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Παρακολουθούμενοι πίνακες" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Τελευταία έκδοση" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "Διαγραφή παρακολούθησης" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Εκδόσεις" @@ -14507,11 +14471,11 @@ msgstr "Εκδόσεις" msgid "Manage your settings" msgstr "Διαχειριστείτε τις ρυθμίσεις σας" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "Οι ρυθμίσεις αποθηκεύτηκαν." -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14618,7 +14582,7 @@ msgstr "Δεν υπάρχουν βάσεις δεδομένων" msgid "View dump (schema) of databases" msgstr "Εμφάνισης σκαριφήματος (σχήματος) βάσεων δεδομένων" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14648,7 +14612,7 @@ msgstr "" "Το phpMyAdmin δεν μπόρεσε να διακόψει τη λειτουργία %s. Μπορεί να έχει ήδη " "σταματήσει." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "Δεν υπάρχουν αρκετά δικαιώματα για προβολή στατιστικά ερωτημάτων." @@ -15467,43 +15431,49 @@ msgstr "Διασπορά" msgid "Stacked" msgstr "Σταθεροποιημένο" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "Τίτλος διαγράμματος" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "Άξονας Χ:" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "Σειρές:" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "Ετικέτα άξονα Χ:" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "Τιμές Χ" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "Ετικέτα άξονα Υ:" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Τιμές Υ" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "Τα ονόματα σειρών είναι σε μια στήλη" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "Στήλη σειρών:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 msgid "Value Column:" msgstr "Στήλη Τιμής:" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "Αποθήκευση διαγράμματος ως εικόνα" @@ -15558,15 +15528,43 @@ msgstr "Σχόλιο:" msgid "Drag to reorder" msgstr "Σύρτε για ανακατανομή" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +msgid "Foreign key constraints" +msgstr "Περιορισμοί ξένου κλειδιού" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "Ενέργειες" + +#: templates/table/relation/common_form.phtml:10 +msgid "Constraint properties" +msgstr "Ιδιότητες περιορισμών" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" +"Μόνο στήλες με ευρετήριο θα εμφανίζονται. Μπορείτε να ορίσετε ευρετήριο " +"παρακάτω." + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "Όριο μη διακριτού κλειδιού" + +#: templates/table/relation/common_form.phtml:60 +msgid "+ Add constraint" +msgstr "+Προσθήκη περιορισμού" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "Εσωτερικές συσχετίσεις" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "Εσωτερική συσχέτιση" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15574,34 +15572,7 @@ msgstr "" "Μια εσωτερική συσχέτιση δεν είναι απαραίτητη όταν υπάρχει μια αντίστοιχη " "συσχέτιση FOREIGN KEY." -#: templates/table/relation/common_form.phtml:37 -msgid "Foreign key constraints" -msgstr "Περιορισμοί ξένου κλειδιού" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "Ενέργειες" - -#: templates/table/relation/common_form.phtml:41 -msgid "Constraint properties" -msgstr "Ιδιότητες περιορισμών" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" -"Μόνο στήλες με ευρετήριο θα εμφανίζονται. Μπορείτε να ορίσετε ευρετήριο " -"παρακάτω." - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "Όριο μη διακριτού κλειδιού" - -#: templates/table/relation/common_form.phtml:83 -msgid "+ Add constraint" -msgstr "+Προσθήκη περιορισμού" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "Επιλέξτε στήλη για εμφάνιση:" @@ -15729,7 +15700,7 @@ msgid "at beginning of table" msgstr "στην αρχή του πίνακα" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 msgid "Partitions" msgstr "Κατατμήσεις" @@ -15762,7 +15733,7 @@ msgstr "Πίνακας κατάτμησης" msgid "Edit partitioning" msgstr "Επεξεργασία κατάτμησης" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "Επεξεργασία εμφάνισης" @@ -17197,6 +17168,40 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Το concurrent_insert έχει οριστεί στο 0" +#~ msgid "To filter all databases on server, press Enter after a search term" +#~ msgstr "" +#~ "Για να φιλτράρετε όλες τις βάσεις δεδομένων στον διακομιστή, πατήστε το " +#~ "Enter μετά τον όρο αναζήτησης" + +#~ msgid "To filter all %s in database, press Enter after a search term" +#~ msgstr "" +#~ "Για να φιλτράρετε όλα τα %s στη βάση δεδομένων, πατήστε το Enter μετά τον " +#~ "όρο αναζήτησης" + +#~ msgid "tables" +#~ msgstr "πίνακες" + +#~ msgid "views" +#~ msgstr "προβολές" + +#~ msgid "procedures" +#~ msgstr "διαδικασίες" + +#~ msgid "events" +#~ msgstr "συμβάντα" + +#~ msgid "functions" +#~ msgstr "συναρτήσεις" + +#~ msgid "Filter databases by name or regex" +#~ msgstr "Φιλτράρισμα βάσεων δεδομενων κατά όνομα ή κανονική έκφραση" + +#~ msgid "Filter by name or regex" +#~ msgstr "Φιλτράρισμα κατά όνομα ή κανονική έκφραση" + +#~ msgid "Unexpected closing bracket." +#~ msgstr "Μη αναμενόμενο κλείσιμο αγκύλης." + #~ msgid "Username and hostname didn't change." #~ msgstr "Το όνομα χρήστη και το όνομα φιλοξενητή δεν άλλαξαν." diff --git a/po/en_GB.po b/po/en_GB.po index 28ab3b45f1..0909e15ee9 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:38+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: English (United Kingdom) Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "Contribute" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "Add primary key" -#: js/messages.php:430 +#: js/messages.php:431 #, 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:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Tracking report" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 #, fuzzy @@ -2063,251 +2075,251 @@ msgstr "" msgid "End of step" msgstr "End of line" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Done" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "No databases selected." -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 #, 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:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 #, fuzzy #| msgid "Add privileges on the following table:" msgid "Create the following table" msgstr "Add privileges on the following table:" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "No databases selected." -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Save" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Hide search criteria" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Show search criteria" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Table Search" msgid "Range search" msgstr "Table Search" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Column names: " msgid "Column maximum:" msgstr "Column names: " -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Column names: " msgid "Column minimum:" msgstr "Column names: " -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "Maximum tables" -#: js/messages.php:474 +#: js/messages.php:475 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "Maximum tables" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "Hide find and replace criteria" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "Show find and replace criteria" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "Each point represents a data row." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "Hovering over a point will show its label." -#: js/messages.php:486 +#: js/messages.php:487 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:488 +#: js/messages.php:489 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:490 +#: js/messages.php:491 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:492 +#: js/messages.php:493 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:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "Select two columns" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "Select two different columns" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "Data point content" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignore" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Copy" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Point" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Linestring" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Polygon" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometry" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Inner Ring" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Outer ring:" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "Do you want to copy encryption key?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "Encryption key" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Select referenced key" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Select Foreign Key" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "Please select the primary key or a unique key!" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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:532 +#: js/messages.php:533 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?" @@ -2315,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:535 +#: js/messages.php:536 msgid "Page name" msgstr "Page name" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 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:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 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:539 +#: js/messages.php:540 #, fuzzy #| msgid "Select page" msgid "Delete page" msgstr "Select page" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "Unit" -#: js/messages.php:541 +#: js/messages.php:542 #, 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:542 +#: js/messages.php:543 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid page name" msgstr "Please enter a valid number!" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Edit or export relational schema" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Modifications have been saved" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "Add an option for column \"%s\"." -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "%d object(s) created." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Submit" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "Press escape to cancel editing." -#: js/messages.php:557 +#: js/messages.php:558 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?" @@ -2409,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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "Drag to reorder." -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "Click to sort results by this column." -#: js/messages.php:563 +#: js/messages.php:564 #, fuzzy #| msgid "" #| "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC." @@ -2430,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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "Click to mark/unmark." -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "Double-click to copy column name." -#: js/messages.php:570 +#: js/messages.php:571 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:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Show all" -#: js/messages.php:574 +#: js/messages.php:575 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." @@ -2457,160 +2469,121 @@ 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "Original string" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Cancel" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Aborted" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "Import defaults" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "Log file threshold" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Select Tables" -#: js/messages.php:598 +#: js/messages.php:599 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:603 +#: js/messages.php:604 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:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "Go to link:" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "Copy column name." -#: js/messages.php:612 +#: js/messages.php:613 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:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Generate password" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Generate" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "More" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Show Panel" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Hide Panel" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "Show hidden navigation tree items." -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 #, fuzzy #| msgid "Customize main panel" msgid "Link with main panel" msgstr "Customise main panel" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 #, fuzzy #| msgid "Customize main panel" msgid "Unlink from main panel" msgstr "Customise main panel" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -#, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "Tables" - -#: js/messages.php:633 -#, fuzzy -#| msgid "Views" -msgid "views" -msgstr "Views" - -#: js/messages.php:634 -#, fuzzy -#| msgid "Procedures" -msgid "procedures" -msgstr "Procedures" - -#: js/messages.php:635 -#, fuzzy -#| msgid "event" -msgid "events" -msgstr "event" - -#: js/messages.php:636 -#, fuzzy -#| msgid "Functions" -msgid "functions" -msgstr "Functions" - -#: js/messages.php:640 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:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2620,31 +2593,31 @@ msgstr "" "upgrading. The newest version is %s, released on %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", latest stable version:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "up to date" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "Create view" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy #| msgid "Send error reports" msgid "Send error report" msgstr "Send error reports" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Submit Error Report" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2652,19 +2625,19 @@ msgstr "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Change Report Settings" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Show Report Details" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2672,7 +2645,7 @@ msgstr "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" -#: js/messages.php:667 +#: js/messages.php:659 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2681,374 +2654,374 @@ 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignore" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Show this query here again" -#: js/messages.php:701 +#: js/messages.php:693 #, 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:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, fuzzy, php-format #| msgid "Executed queries" msgid "%s queries executed %s times in %s seconds." msgstr "Executed queries" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Table comments" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Hide search results" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "Prev" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "Next" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Today" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "January" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "February" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "March" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "April" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "May" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "June" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "July" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "August" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "September" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "October" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "November" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Dec" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "Sunday" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "Monday" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "Tuesday" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "Wednesday" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "Thursday" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "Friday" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "Saturday" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "Sun" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Mon" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Tue" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Wed" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Thu" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Fri" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Sat" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "Mo" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "Tu" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "We" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "Th" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "Wk" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Hour" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Minute" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Second" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Use text field" -#: js/messages.php:886 +#: js/messages.php:878 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid email address" msgstr "Please enter a valid number!" -#: js/messages.php:887 +#: js/messages.php:879 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "Please enter a valid number!" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date" msgstr "Please enter a valid number!" -#: js/messages.php:889 +#: js/messages.php:883 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date ( ISO )" msgstr "Please enter a valid number!" -#: js/messages.php:890 +#: js/messages.php:885 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "Please enter a valid number!" -#: js/messages.php:891 +#: js/messages.php:888 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "Please enter a valid number!" -#: js/messages.php:892 +#: js/messages.php:890 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" @@ -3060,55 +3033,55 @@ msgstr "Please enter a valid length!" msgid "Please enter the same value again" msgstr "Please enter a valid number!" -#: js/messages.php:894 +#: js/messages.php:897 #, fuzzy #| msgid "Please enter correct captcha!" msgid "Please enter no more than {0} characters" msgstr "Please enter correct captcha!" -#: js/messages.php:895 +#: js/messages.php:902 #, fuzzy #| msgid "Please enter correct captcha!" msgid "Please enter at least {0} characters" msgstr "Please enter correct captcha!" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 #, 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:898 +#: js/messages.php:917 #, 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:899 +#: js/messages.php:922 #, 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:901 +#: js/messages.php:928 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date or time" msgstr "Please enter a valid number!" -#: js/messages.php:902 +#: js/messages.php:933 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "Please enter a valid number!" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Error" @@ -3197,11 +3170,12 @@ msgstr "subquery" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3251,7 +3225,7 @@ msgstr "Skip current error" msgid "Explain" msgstr "Explain SQL" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Profiling" @@ -3295,8 +3269,8 @@ msgid "History" msgstr "SQL history" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3483,7 +3457,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Switch to copied table" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3491,24 +3465,24 @@ msgstr "" "The server is not responding (or the local server's socket is not correctly " "configured)." -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "The server is not responding." -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "Please check privileges of directory containing database." -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Details…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "Connection for controluser as defined in your configuration failed." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3518,8 +3492,8 @@ msgstr "Connection for controluser as defined in your configuration failed." msgid "Ascending" msgstr "Ascending" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3664,8 +3638,8 @@ msgstr[0] "%1$s match in %2$s" msgstr[1] "%1$s matches in %2$s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3709,121 +3683,122 @@ msgstr "Unselect All" msgid "Inside column:" msgstr "Inside column:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "Save edited data" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "Restore column order" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "Filter rows" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "Search this table" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "Begin" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "Previous" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "Next" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "End" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "All" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Number of rows:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Sort by key" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "Partial texts" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "Full texts" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Relational key" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Display foreign key relationships" msgid "Display column for relations" msgstr "Display foreign key relationships" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "Show binary contents" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "Show BLOB contents" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "Hide browser transformation" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "Well Known Text" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "Well Known Binary" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "The row has been deleted." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Kill" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "Your SQL query has been executed successfully." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3832,40 +3807,40 @@ msgstr "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "Showing rows %1s - %2s" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d total, %2$d in query" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "%d total" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "Query took %01.4f seconds." -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "With selected:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3873,25 +3848,25 @@ msgstr "With selected:" msgid "Check all" msgstr "Check All" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Print view" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Query results operations" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Display chart" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "Visualise GIS data" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "Link not found!" @@ -3990,19 +3965,19 @@ msgstr "No index defined!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Indexes" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -4011,24 +3986,24 @@ msgid "Action" msgstr "Action" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Keyname" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Unique" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Packed" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Cardinality" @@ -4036,8 +4011,8 @@ msgstr "Cardinality" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -4047,8 +4022,8 @@ msgid "Collation" msgstr "Collation" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -4064,15 +4039,15 @@ msgstr "The primary key has been dropped." msgid "Index %s has been dropped." msgstr "Index %s has been dropped." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Drop" @@ -4111,12 +4086,13 @@ msgstr "View" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4124,7 +4100,7 @@ msgstr "Table" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4133,8 +4109,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4142,41 +4118,41 @@ msgid "Search" msgstr "Search" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Insert" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privileges" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Operations" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Tracking" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4187,16 +4163,16 @@ msgstr "Triggers" msgid "Database seems to be empty!" msgstr "Database seems to be empty!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Query" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Routines" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4204,22 +4180,22 @@ msgstr "Routines" msgid "Events" msgstr "Events" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Designer" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "Textarea columns" msgid "Central columns" msgstr "Textarea columns" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Databases" @@ -4230,33 +4206,33 @@ msgid "User accounts" msgstr "User groups" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Binary log" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replication" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Variables" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Charsets" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Engines" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "Plug-ins" @@ -4553,7 +4529,7 @@ msgstr "Can't rename index to PRIMARY!" msgid "No index parts defined!" msgstr "No index parts defined!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Error creating foreign key on %1$s (check data types)" @@ -5031,37 +5007,37 @@ msgstr "The %s functionality is affected by a known bug, see %s" msgid "Click to toggle" msgstr "Click to toggle" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Browse your computer:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Select from the web server upload directory %s:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "The directory you set for upload work cannot be reached." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "There are no files to upload!" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Empty" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "Execute" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Print" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "Users" @@ -5234,8 +5210,8 @@ msgid "Add new column" msgstr "Add column" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5298,19 +5274,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "You should upgrade to %s %s or later." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "Error: Token mismatch" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS overwrite attempt" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "possible exploit" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "numeric key detected" @@ -6168,7 +6144,7 @@ msgid "Remember file name template" msgstr "Remember file name template" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Add AUTO_INCREMENT value" @@ -6209,7 +6185,7 @@ msgstr "Missing phpMyAdmin configuration storage tables" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Add %s" @@ -7981,7 +7957,7 @@ msgid "" msgstr "" "Defines whether the query box should stay on-screen after its submission." -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "Retain query box" @@ -8295,103 +8271,33 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Open-Document Text" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "Favourite List is full!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Table %s has been emptied." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "View %s has been dropped." -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "Table %s has been dropped." -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "Favourite List is full!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "unknown" -#: libraries/controllers/TableStructureController.php:162 -#, fuzzy, php-format -#| msgid "The column name '%s' is a MySQL reserved keyword." -msgid "The name '%s' is a MySQL reserved keyword." -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.php:250 -msgid "No column selected." -msgstr "No column selected." - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "The columns have been moved successfully." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "Table %1$s has been altered successfully." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "Query error" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Change" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Index" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "Spatial" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Fulltext" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "Distinct values" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8405,6 +8311,14 @@ msgstr "No numeric columns present in the table to plot." msgid "No data to display" msgstr "No data to display" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "Table %1$s has been altered successfully." + #: libraries/controllers/table/TableRelationController.php:212 #, fuzzy #| msgid "Thread %s was successfully killed." @@ -8417,23 +8331,85 @@ msgstr "Thread %s was successfully killed." msgid "Internal relations were successfully updated." msgstr "Internal relation has been added." -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Table Search" msgid "Table search" msgstr "Table Search" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "Zoom search" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "Find and Replace" msgid "Find and replace" msgstr "Find and Replace" +#: libraries/controllers/table/TableStructureController.php:163 +#, fuzzy, php-format +#| msgid "The column name '%s' is a MySQL reserved keyword." +msgid "The name '%s' is a MySQL reserved keyword." +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/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "No column selected." + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "The columns have been moved successfully." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "Query error" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Change" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Index" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "Spatial" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Fulltext" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "Distinct values" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8443,7 +8419,7 @@ msgstr "The %s extension is missing. Please check your PHP configuration." msgid "possible deep recursion attack" msgstr "possible deep recursion attack" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "No change" @@ -8512,7 +8488,7 @@ msgstr "Create" msgid "Create database:" msgstr "Create database:" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "No Privileges" @@ -9279,71 +9255,71 @@ msgid "Dump has been saved to file %s." msgstr "Dump has been saved to file %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returned an empty result set (i.e. zero rows)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "The following structures have either been created or altered. Here you can:" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "View a structure's contents by clicking on its name." -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Change any of its settings by clicking the corresponding \"Options\" link." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "Edit structure by following the \"Structure\" link." -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "Go to database: %s" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "Edit settings for %s" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "Go to table: %s" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "Structure of %s" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "Go to view: %s" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "Create an index on  %s columns" @@ -9366,66 +9342,66 @@ msgstr "Function" msgid "Binary" msgstr "Binary" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "Because of its length,
this column might not be editable." -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Binary - do not edit" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Or" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "web server upload directory:" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "Edit/Insert" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "Continue insertion with %s rows" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "and then" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Insert as new row" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "Insert as new row and ignore errors" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "Show insert query" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Go back to previous page" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Insert another new row" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Go back to this page" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Edit next row" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9434,7 +9410,7 @@ msgid "" msgstr "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9446,11 +9422,11 @@ msgstr "" msgid "Value" msgstr "Value" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "Showing SQL query" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "Inserted row id: %1$d" @@ -9466,35 +9442,35 @@ msgstr "None" msgid "Convert to Kana" msgstr "Convert to Kana" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "Replace table prefix:" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "Copy table with prefix:" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "From" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "To" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "Add table prefix:" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "Add prefix" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "Do you really want to execute the following query?" @@ -9718,8 +9694,8 @@ msgstr "Procedures:" msgid "Views:" msgstr "Views:" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Show" @@ -9761,18 +9737,15 @@ msgstr[0] "%s other result found" msgstr[1] "%s other results found" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" -msgstr "Filter databases by name or regex" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 msgid "Clear fast filter" msgstr "Clear fast filter" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "Filter by name or regex" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -10169,7 +10142,7 @@ msgstr "Rename database to" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10180,7 +10153,7 @@ msgstr "You don't have sufficient privileges to be here right now!" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -10200,18 +10173,18 @@ msgstr "Remove database" msgid "Drop the database (DROP)" msgstr "Drop the database (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Structure only" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Structure and data" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Data only" @@ -10223,7 +10196,7 @@ msgstr "Copy database to" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE before copying" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Add constraints" @@ -10263,163 +10236,163 @@ msgstr "Storage Engine" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Copy table to (database.table)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Switch to copied table" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Table maintenance" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Analyse table" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Check table" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Check table" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Defragment table" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "Table %s has been flushed." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "Flush the table (FLUSH)" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Optimise table" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Repair table" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "Delete data or table" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "Empty the table (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "Delete the table (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Analyse" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Check" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Optimise" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Rebuild" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Repair" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "Close" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "Partition maintenance" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "Partition %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "Remove partitioning" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Check referential integrity:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Can't move table to same one!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Can't copy table to same one!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Table %s has been moved to %s." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Table %s has been copied to %s." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "Table %s has been moved to %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "Table %s has been copied to %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "The table name is empty!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "This format has no options" @@ -10593,7 +10566,7 @@ msgstr "Data dump options" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Dumping data for table" @@ -10617,21 +10590,21 @@ msgstr "Definition" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Table structure for table" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Structure for view" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Stand-in structure for view" @@ -10721,7 +10694,7 @@ msgid "Database:" msgstr "Database:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "Data:" @@ -10829,7 +10802,7 @@ msgid "Data creation options" msgstr "Data creation options" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "Truncate table before insert" @@ -10916,8 +10889,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10925,84 +10898,84 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Metadata Headers" msgid "Metadata" msgstr "Metadata Headers" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, fuzzy, php-format #| msgid "Metadata Headers" msgid "Metadata for %s" msgstr "Metadata Headers" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Creation:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Last update:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Last check:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "in use" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Constraints for dumped tables" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Constraints for table" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "Indexes for dumped tables" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "Indexes for table" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT for dumped tables" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT for table" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "Structure for view %s exported as a table" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "Error reading data:" @@ -11255,9 +11228,9 @@ msgstr "Relational schema" msgid "Table of contents" msgstr "Table of contents" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Extra" @@ -11493,57 +11466,57 @@ msgstr "Formats text as SQL query with syntax highlighting." msgid "Formats text as XML with syntax highlighting." msgstr "Formats text as SQL query with syntax highlighting." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Error: relation already exists." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "FOREIGN KEY relation has been added." -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "Error: Relation could not be added!" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Error: Relation could not be added!" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "Error: Relational features are disabled!" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "Internal relation has been added." -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "Error: Relation could not be added!" msgid "Error: Internal relation could not be added!" msgstr "Error: Relation could not be added!" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "FOREIGN KEY relation has been added." msgid "FOREIGN KEY relation has been removed." msgstr "FOREIGN KEY relation has been added." -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "Error: Relation could not be added!" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Error: Relation could not be added!" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "Error: Relation could not be added!" msgid "Error: Internal relation could not be removed!" msgstr "Error: Relation could not be added!" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Internal relation has been added." msgid "Internal relation has been removed." @@ -11598,65 +11571,65 @@ msgid "Please see the documentation on how to update your column_info table. " msgstr "" "Please see the documentation on how to update your column_comments table." -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Bookmarked SQL query" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL history" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "Persistent recently used tables" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "Persistent recently used tables" msgid "Persistent favorite tables" msgstr "Persistent recently used tables" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "Persistent tables' UI preferences" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "User preferences" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "Configurable menus" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "Hide/show navigation items" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "Saving Query-By-Example searches" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Remember table's sorting" msgid "Remembering Designer Settings" msgstr "Remember table's sorting" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "Invalid export type" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "Quick steps to setup advanced features:" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, fuzzy, php-format #| msgid "" #| "Create the needed tables with the examples/create_tables.sql." @@ -11664,11 +11637,11 @@ msgid "Create the needed tables with the %screate_tables.sql." msgstr "" "Create the needed tables with the examples/create_tables.sql." -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "Create a pma user and give access to these tables." -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -11676,22 +11649,22 @@ msgstr "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "Re-login to phpMyAdmin to load the updated configuration file." -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "no description" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11699,14 +11672,14 @@ msgid "" "configuration storage there." msgstr "Missing phpMyAdmin configuration storage tables" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Missing phpMyAdmin configuration storage tables" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -11905,8 +11878,8 @@ msgstr "User name:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "User name" @@ -11914,7 +11887,7 @@ msgstr "User name" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Password" @@ -12546,7 +12519,7 @@ msgstr[1] "%1$d databases have been dropped successfully." msgid "Plugin" msgstr "Plug-in" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Version" @@ -12554,98 +12527,94 @@ msgstr "Version" msgid "Author" msgstr "Author" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "Licence" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "disabled" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "No privileges." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Includes all privileges except GRANT." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Allows reading data." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Allows inserting and replacing data." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Allows changing data." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Allows deleting data." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Allows creating new databases and tables." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Allows dropping databases and tables." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Allows reloading server settings and flushing the server's caches." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Allows shutting down the server." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "Allows viewing processes of all users." #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "Allows importing data from and exporting data into files." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "Has no effect in this MySQL version." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Allows creating and dropping indexes." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Allows altering the structure of existing tables." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Gives access to the complete list of databases." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12656,65 +12625,65 @@ msgstr "" "killing threads of other users." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Allows creating temporary tables." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Allows locking tables for the current thread." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "Allows the user to ask where the slaves / masters are." #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Allows creating new views." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "Allows to set up events for the event scheduler." #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "Allows creating and dropping triggers." #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Allows performing SHOW CREATE VIEW queries." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Allows creating stored routines." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Allows altering and dropping stored routines." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "Allows creating, dropping and renaming user accounts." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Allows executing stored routines." @@ -12726,8 +12695,8 @@ msgstr "None" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "User group" @@ -12771,12 +12740,12 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Note: Setting these options to 0 (zero) removes the limit." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12785,19 +12754,19 @@ msgstr "" "execute per hour." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of simultaneous connections the user may have." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12805,7 +12774,7 @@ msgid "Routine" msgstr "Routines" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12825,14 +12794,14 @@ msgstr "Allows executing stored routines." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Table-specific privileges" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Note: MySQL privilege names are expressed in English." @@ -12842,7 +12811,7 @@ msgid "Administration" msgstr "Administration" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Global privileges" @@ -12851,15 +12820,15 @@ msgid "Global" msgstr "Global" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Database-specific privileges" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Allows creating new tables." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Allows dropping tables." @@ -12882,7 +12851,7 @@ msgid "Native MySQL Authentication" msgstr "Cookie authentication" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Login Information" @@ -12909,8 +12878,8 @@ msgstr "User name:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Log name" msgid "Host name" @@ -12932,118 +12901,118 @@ msgstr "Authentication" msgid "Password Hashing Method" msgstr "Password Hashing:" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "The password for %s was changed successfully." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "You have revoked the privileges for %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add user group" msgid "Add user account" msgstr "Add user group" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Database for user" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "Create database with same name and grant all privileges." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Grant all privileges on wildcard name (username\\_%)." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Grant all privileges on database \"%s\"." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Users having access to \"%s\"" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "User has been added." -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Grant" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "No user found." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Any" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "database-specific" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "wildcard" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "table-specific" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "Edit Privileges:" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Revoke" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "Edit user group" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… keep the old one." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… delete the old one from the user tables." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… revoke all active privileges from the old one and delete it afterwards." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -13051,121 +13020,121 @@ msgstr "" "… delete the old one from the user tables and reload the privileges " "afterwards." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Change Login Information / Copy User" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Create a new user with the same privileges and …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Column-specific privileges" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Remove selected users" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revoke all active privileges from the users and delete them afterwards." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "Drop the databases that have the same names as the users." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "No users selected for deleting!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Reloading the privileges" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "The selected users have been deleted successfully." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "You have updated the privileges for %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "Deleting %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "The privileges were reloaded successfully." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "The user %s already exists!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "Privileges for %s" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "User" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "New" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "Edit Privileges:" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "User group" msgid "User account" msgstr "User group" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "Users overview" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13178,7 +13147,7 @@ msgstr "" "server uses, if they have been changed manually. In this case, you should " "%sreload the privileges%s before you continue." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13197,11 +13166,11 @@ msgstr "" "server uses, if they have been changed manually. In this case, you should " "%sreload the privileges%s before you continue." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "The selected user was not found in the privilege table." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "You have added a new user." @@ -13459,24 +13428,24 @@ msgstr "Instructions/Setup" msgid "Done dragging (rearranging) charts" msgstr "Done dragging (rearranging) charts" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "Enable charts dragging" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "Refresh rate" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "Chart columns" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "Chart arrangement" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -13484,7 +13453,7 @@ msgstr "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "Reset to default" @@ -13546,7 +13515,7 @@ msgid "Statements" msgstr "Statements" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "#" @@ -13571,7 +13540,7 @@ msgstr "Show unformatted values" msgid "Related links:" msgstr "Related links:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -13579,11 +13548,11 @@ msgstr "" "The number of connections that were aborted because the client died without " "closing the connection properly." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "The number of failed attempts to connect to the MySQL server." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13593,18 +13562,18 @@ msgstr "" "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "The number of transactions that used the temporary binary log cache." -#: libraries/server_status_variables.lib.php:346 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" -"The number of connection attempts (successful or not) to the MySQL server." - #: libraries/server_status_variables.lib.php:350 msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" +"The number of connection attempts (successful or not) to the MySQL server." + +#: libraries/server_status_variables.lib.php:354 +msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " "to increase the tmp_table_size value to cause temporary tables to be memory-" @@ -13615,51 +13584,51 @@ msgstr "" "to increase the tmp_table_size value to cause temporary tables to be memory-" "based instead of disk-based." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "How many temporary files mysqld has created." -#: libraries/server_status_variables.lib.php:360 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." - #: libraries/server_status_variables.lib.php:364 msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." msgstr "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." #: libraries/server_status_variables.lib.php:368 msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." + +#: libraries/server_status_variables.lib.php:372 +msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "The number of INSERT DELAYED rows written." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "The number of executed FLUSH statements." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "The number of internal COMMIT statements." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "The number of times a row was deleted from a table." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13669,7 +13638,7 @@ msgstr "" "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13679,7 +13648,7 @@ msgstr "" "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -13687,7 +13656,7 @@ msgstr "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13697,7 +13666,7 @@ msgstr "" "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13705,7 +13674,7 @@ msgstr "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimise ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13717,7 +13686,7 @@ msgstr "" "probably have a lot of queries that require MySQL to scan whole tables or " "you have joins that don't use keys properly." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13729,36 +13698,36 @@ msgstr "" "tables are not properly indexed or that your queries are not written to take " "advantage of the indexes you have." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "The number of internal ROLLBACK statements." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "The number of requests to update a row in a table." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "The number of requests to insert a row in a table." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "The number of pages containing data (dirty or clean)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "The number of pages currently dirty." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "The number of buffer pool pages that have been requested to be flushed." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "The number of free pages." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13768,7 +13737,7 @@ msgstr "" "being read or written or that can't be flushed or removed for some other " "reason." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13780,11 +13749,11 @@ msgstr "" "be calculated as Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "Total size of buffer pool, in pages." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13792,28 +13761,28 @@ msgstr "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." -#: libraries/server_status_variables.lib.php:467 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." - #: libraries/server_status_variables.lib.php:471 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." + +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "The number of logical read requests InnoDB has done." -#: libraries/server_status_variables.lib.php:474 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." - #: libraries/server_status_variables.lib.php:478 msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." + +#: libraries/server_status_variables.lib.php:482 +msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " "available, it's necessary to wait for pages to be flushed first. This " @@ -13826,51 +13795,51 @@ msgstr "" "counter counts instances of these waits. If the buffer pool size was set " "properly, this value should be small." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "The number writes done to the InnoDB buffer pool." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "The number of fsync() operations so far." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "The current number of pending fsync() operations." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "The current number of pending reads." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "The current number of pending writes." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "The amount of data read so far, in bytes." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "The total number of data reads." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "The total number of data writes." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "The amount of data written so far, in bytes." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "The number of pages that have been written for doublewrite operations." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "The number of doublewrite operations that have been performed." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13878,35 +13847,35 @@ msgstr "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "The number of log write requests." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "The number of physical writes to the log file." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "The number of fsync() writes done to the log file." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "The number of pending log file fsyncs." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "Pending log file writes." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "The number of bytes written to the log file." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "The number of pages created." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -13914,51 +13883,51 @@ msgstr "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "The number of pages read." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "The number of pages written." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "The number of row locks currently being waited for." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "The average time to acquire a row lock, in milliseconds." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "The total time spent in acquiring row locks, in milliseconds." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "The maximum time to acquire a row lock, in milliseconds." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "The number of times a row lock had to be waited for." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "The number of rows deleted from InnoDB tables." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "The number of rows inserted in InnoDB tables." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "The number of rows read from InnoDB tables." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "The number of rows updated in InnoDB tables." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13966,16 +13935,16 @@ msgstr "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 -msgid "" -"The number of unused blocks in the key cache. You can use this value to " -"determine how much of the key cache is in use." -msgstr "" -"The number of unused blocks in the key cache. You can use this value to " -"determine how much of the key cache is in use." - #: libraries/server_status_variables.lib.php:592 msgid "" +"The number of unused blocks in the key cache. You can use this value to " +"determine how much of the key cache is in use." +msgstr "" +"The number of unused blocks in the key cache. You can use this value to " +"determine how much of the key cache is in use." + +#: libraries/server_status_variables.lib.php:596 +msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." @@ -13984,15 +13953,15 @@ msgstr "" "that indicates the maximum number of blocks that have ever been in use at " "one time." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "Percentage of used key cache (calculated value)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "The number of requests to read a key block from the cache." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -14002,29 +13971,29 @@ msgstr "" "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" - #: libraries/server_status_variables.lib.php:613 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" + +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "The number of requests to write a key block to the cache." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "The number of physical writes of a key block to disk." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Percentage of physical writes compared to write requests (calculated value)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -14034,7 +14003,7 @@ msgstr "" "optimiser. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -14042,11 +14011,11 @@ msgstr "" "The maximum number of connections that have been in use simultaneously since " "the server started." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "The number of rows waiting to be written in INSERT DELAYED queues." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -14054,19 +14023,19 @@ msgstr "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "The number of files that are open." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "The number of streams that are open (used mainly for logging)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "The number of tables that are open." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -14076,19 +14045,19 @@ msgstr "" "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "The amount of free memory for query cache." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "The number of cache hits." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "The number of queries added to the cache." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14100,27 +14069,27 @@ msgstr "" "cache size. The query cache uses a least recently used (LRU) strategy to " "decide which queries to remove from the cache." -#: libraries/server_status_variables.lib.php:670 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." - #: libraries/server_status_variables.lib.php:674 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." + +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "The number of queries registered in the cache." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "The total number of blocks in the query cache." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "The status of failsafe replication (not yet implemented)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -14128,11 +14097,11 @@ msgstr "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "The number of joins that used a range search on a reference table." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -14140,23 +14109,23 @@ msgstr "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" -#: libraries/server_status_variables.lib.php:695 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" - #: libraries/server_status_variables.lib.php:699 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" + +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "The number of joins that did a full scan of the first table." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "The number of temporary tables currently open by the slave SQL thread." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -14164,26 +14133,26 @@ msgstr "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "This is ON if this server is a slave that is connected to a master." -#: libraries/server_status_variables.lib.php:713 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." - #: libraries/server_status_variables.lib.php:717 msgid "" -"The number of queries that have taken more than long_query_time seconds." +"The number of threads that have taken more than slow_launch_time seconds to " +"create." msgstr "" -"The number of queries that have taken more than long_query_time seconds." +"The number of threads that have taken more than slow_launch_time seconds to " +"create." #: libraries/server_status_variables.lib.php:721 msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" +"The number of queries that have taken more than long_query_time seconds." + +#: libraries/server_status_variables.lib.php:725 +msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." @@ -14192,23 +14161,23 @@ msgstr "" "is large, you should consider increasing the value of the sort_buffer_size " "system variable." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "The number of sorts that were done with ranges." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "The number of sorted rows." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "The number of sorts that were done by scanning the table." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "The number of times that a table lock was acquired immediately." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14220,7 +14189,7 @@ msgstr "" "should first optimise your queries, and then either split your table or " "tables or use replication." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -14230,11 +14199,11 @@ msgstr "" "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "The number of currently open connections." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14246,11 +14215,11 @@ msgstr "" "doesn't give a notable performance improvement if you have a good thread " "implementation.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "Thread cache hit rate (calculated value)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "The number of threads that are not sleeping." @@ -14259,57 +14228,57 @@ msgstr "The number of threads that are not sleeping." msgid "Users of '%s' user group" msgstr "Users of '%s' user group" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "No users were found belonging to this user group." -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "User groups" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "Server level tabs" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "Database level tabs" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "Table level tabs" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "View users" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "Add user group" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "Edit user group: '%s'" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "User group menu assignments" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "Group name:" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "Server-level tabs" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "Database-level tabs" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "Table-level tabs" @@ -14373,21 +14342,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14458,113 +14423,113 @@ msgstr "Event %1$s has been created." msgid "Variable name was expected." msgstr "Table name template" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "At Beginning of Table" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 #, fuzzy #| msgid "Unexpected characters on line %s." msgid "Unexpected token." msgstr "Unexpected characters on line %s." -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 #, fuzzy #| msgid "The number of tables that are open." msgid "The name of the entity was expected." msgstr "The number of tables that are open." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "The row has been deleted." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "Detailed profile" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "Order" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "State" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "Summary by state" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "Total Time" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "% Time" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "Calls" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "ø Time" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Bookmark this SQL query" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "Label:" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Let every user access this bookmark" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "Bookmark not created!" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Using bookmark \"%s\" as default browse query." -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "Showing as PHP code" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, fuzzy, php-format #| msgid "" #| "Current selection does not contain a unique column. Grid edit, checkbox, " @@ -14576,7 +14541,7 @@ msgstr "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available." -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, fuzzy, php-format #| msgid "" #| "Current selection does not contain a unique column. Grid edit, checkbox, " @@ -14588,7 +14553,7 @@ msgstr "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available." -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problems with indexes of table `%s`" @@ -14619,27 +14584,27 @@ msgstr "" msgid "Bind parameters" msgstr "Bad parameters!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "Bookmark this SQL query:" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Replace existing bookmark of same name" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Delimiter" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Show this query here again" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "View only" @@ -14684,114 +14649,114 @@ msgstr "Deactivate tracking for %s" msgid "Deactivate now" msgstr "Deactivate now" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Created" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Updated" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "Create version" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Tracking report" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Structure snapshot" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "active" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "not active" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "Tracking statements" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "Delete tracking data row from report" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "No data" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "SQL dump (file download)" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "SQL dump" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "This option will replace your table and contained data." -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "SQL execution" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "Export as %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "Data manipulation statement" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "Data definition statement" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Date" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Username" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Version %s snapshot (SQL code)" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "None" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "Tracking data definition successfully deleted" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "Tracking data manipulation successfully deleted" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14799,64 +14764,64 @@ msgstr "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "Comment out these two lines if you do not need them." -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL statements exported. Please copy the dump or execute it." -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "Tracking report for table `%s`" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Tracking for %1$s was activated at version %2$s." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Tracking for %1$s was deactivated at version %2$s." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format #| msgid "Create version %1$s of %2$s" msgid "Version %1$s of %2$s was deleted." msgstr "Create version %1$s of %2$s" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Version %1$s was created, tracking for %2$s is active." -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Untracked tables" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Track table" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Tracked tables" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Last version" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "Deleting tracking data" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Versions" @@ -14864,11 +14829,11 @@ msgstr "Versions" msgid "Manage your settings" msgstr "Manage your settings" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "Configuration has been saved." -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14971,7 +14936,7 @@ msgstr "No databases" msgid "View dump (schema) of databases" msgstr "View dump (schema) of databases" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14997,7 +14962,7 @@ msgid "" msgstr "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -15896,47 +15861,53 @@ msgstr "Scatter" msgid "Stacked" msgstr "Stacked" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "Chart title" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "X-Axis:" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "Series:" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "X-Axis label:" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "X Values" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "Y-Axis label:" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Y Values" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside column:" msgid "Series column:" msgstr "Inside column:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Values for column %s" msgid "Value Column:" msgstr "Values for column %s" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -15998,56 +15969,57 @@ msgstr "Comment:" msgid "Drag to reorder" msgstr "Drag to reorder" -#: templates/table/relation/common_form.phtml:7 -msgid "Internal relations" -msgstr "Internal relations" - -#: templates/table/relation/common_form.phtml:11 -msgid "Internal relation" -msgstr "Internal relation" - -#: templates/table/relation/common_form.phtml:14 -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 #, fuzzy #| msgid "Foreign key constraint" msgid "Foreign key constraints" msgstr "Foreign key constraint" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 #, fuzzy #| msgid "Action" msgid "Actions" msgstr "Action" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 #, fuzzy #| msgid "Constraints for table" msgid "Constraint properties" msgstr "Constraints for table" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 msgid "Foreign key constraint" msgstr "Foreign key constraint" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Add constraints" -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +msgid "Internal relations" +msgstr "Internal relations" + +#: templates/table/relation/common_form.phtml:80 +msgid "Internal relation" +msgstr "Internal relation" + +#: templates/table/relation/common_form.phtml:83 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." + +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "Choose column to display:" @@ -16186,7 +16158,7 @@ msgid "at beginning of table" msgstr "At Beginning of Table" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16235,7 +16207,7 @@ msgstr "partitioned" msgid "Edit partitioning" msgstr "Remove partitioning" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "Edit view" @@ -17649,6 +17621,37 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert is set to 0" +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "Tables" + +#, fuzzy +#~| msgid "Views" +#~ msgid "views" +#~ msgstr "Views" + +#, fuzzy +#~| msgid "Procedures" +#~ msgid "procedures" +#~ msgstr "Procedures" + +#, fuzzy +#~| msgid "event" +#~ msgid "events" +#~ msgstr "event" + +#, fuzzy +#~| msgid "Functions" +#~ msgid "functions" +#~ msgstr "Functions" + +#~ msgid "Filter databases by name or regex" +#~ msgstr "Filter databases by name or regex" + +#~ msgid "Filter by name or regex" +#~ msgstr "Filter by name or regex" + #~ msgid "Username and hostname didn't change." #~ msgstr "Username and hostname didn't change." diff --git a/po/eo.po b/po/eo.po index 85713f0839..66aba88973 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-01-01 17:51+0200\n" "Last-Translator: Eliovir \n" "Language-Team: Esperanto Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 msgid "Page name" msgstr "" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:550 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:551 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:552 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "" -#: js/messages.php:623 +#: js/messages.php:624 msgid "Show panel" msgstr "" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -msgid "tables" -msgstr "" - -#: js/messages.php:633 -msgid "views" -msgstr "" - -#: js/messages.php:634 -msgid "procedures" -msgstr "" - -#: js/messages.php:635 -msgid "events" -msgstr "" - -#: js/messages.php:636 -msgid "functions" -msgstr "" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2335,396 +2316,396 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr "" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "" -#: js/messages.php:660 +#: js/messages.php:652 msgid "Show report details" msgstr "" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 msgid "Show arguments" msgstr "" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "hodiaŭ" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "januaro" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "februaro" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "marto" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "aprilo" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "majo" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "junio" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "julio" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "aŭgusto" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "septembro" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "oktobro" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "novembro" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "decembro" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "aŭg" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "dec" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "Dimanĉo" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "Lundo" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "Mardo" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "Merkredo" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "Ĵaŭdo" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "Vendredo" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "Sabato" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "Dim" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Mard" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Merk" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Ĵaŭ" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "Ĵa" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "" @@ -2732,41 +2713,41 @@ msgstr "" msgid "Please enter the same value again" msgstr "" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "" @@ -2851,11 +2832,12 @@ msgstr "" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -2897,7 +2879,7 @@ msgstr "" msgid "Explain" msgstr "" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "" @@ -2931,8 +2913,8 @@ msgid "History" msgstr "" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3077,30 +3059,30 @@ msgstr "" msgid "Switch to dark theme" msgstr "" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3110,8 +3092,8 @@ msgstr "" msgid "Ascending" msgstr "" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3254,8 +3236,8 @@ msgstr[0] "" msgstr[1] "" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3297,183 +3279,184 @@ msgstr "" msgid "Inside column:" msgstr "" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 msgid "Display column for relations" msgstr "" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 msgid "Check all" msgstr "" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "" @@ -3565,19 +3548,19 @@ msgstr "" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3586,24 +3569,24 @@ msgid "Action" msgstr "" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "" @@ -3611,8 +3594,8 @@ msgstr "" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3622,8 +3605,8 @@ msgid "Collation" msgstr "" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3639,15 +3622,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "" @@ -3684,12 +3667,13 @@ msgstr "" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3697,7 +3681,7 @@ msgstr "" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3706,8 +3690,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3715,41 +3699,41 @@ msgid "Search" msgstr "" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3760,16 +3744,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3777,20 +3761,20 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "" @@ -3799,33 +3783,33 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4116,7 +4100,7 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4525,37 +4509,37 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "" @@ -4714,8 +4698,8 @@ msgid "Add new column" msgstr "" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -4774,19 +4758,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -5552,7 +5536,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -5591,7 +5575,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "" @@ -7131,7 +7115,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "" @@ -7403,101 +7387,33 @@ msgstr "" msgid "OpenDocument Text" msgstr "" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "" - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "" - -#: libraries/controllers/TableStructureController.php:967 -#, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "" - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -7511,6 +7427,14 @@ msgstr "" msgid "No data to display" msgstr "" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "" + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "" @@ -7519,19 +7443,79 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr "" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:975 +#, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -7541,7 +7525,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7606,7 +7590,7 @@ msgstr "" msgid "Create database:" msgstr "" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "" @@ -8270,69 +8254,69 @@ msgid "Dump has been saved to file %s." msgstr "" #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "" @@ -8355,71 +8339,71 @@ msgstr "" msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -8431,11 +8415,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -8451,35 +8435,35 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "" @@ -8697,8 +8681,8 @@ msgstr "" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "" @@ -8736,7 +8720,8 @@ msgstr[0] "" msgstr[1] "" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" msgstr "" #: libraries/navigation/NavigationTree.php:1371 @@ -8744,10 +8729,6 @@ msgstr "" msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -9120,7 +9101,7 @@ msgstr "" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9129,7 +9110,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "" @@ -9147,18 +9128,18 @@ msgstr "" msgid "Drop the database (DROP)" msgstr "" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "" @@ -9170,7 +9151,7 @@ msgstr "" msgid "CREATE DATABASE before copying" msgstr "" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "" @@ -9210,157 +9191,157 @@ msgstr "" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 msgid "Checksum table" msgstr "" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "" @@ -9525,7 +9506,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -9549,21 +9530,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -9653,7 +9634,7 @@ msgid "Database:" msgstr "Datumbazo:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "" @@ -9745,7 +9726,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -9814,8 +9795,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9823,81 +9804,81 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 msgid "Metadata" msgstr "" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "" @@ -10126,9 +10107,9 @@ msgstr "" msgid "Table of contents" msgstr "" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "" @@ -10292,47 +10273,47 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 msgid "Error: Internal relation could not be added!" msgstr "" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 msgid "FOREIGN KEY relation has been removed." msgstr "" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 msgid "Error: Internal relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "" @@ -10377,102 +10358,102 @@ msgstr "" msgid "Please see the documentation on how to update your column_info table. " msgstr "" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 msgid "Persistent favorite tables" msgstr "" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 msgid "Saving export templates" msgstr "" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -10644,8 +10625,8 @@ msgstr "Uzantonomo:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Uzantonomo" @@ -10653,7 +10634,7 @@ msgstr "Uzantonomo" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Pasvorto" @@ -11265,7 +11246,7 @@ msgstr[1] "" msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "" @@ -11273,98 +11254,94 @@ msgstr "" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "" #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "" #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "" #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -11372,65 +11349,65 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "" #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "" #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -11442,8 +11419,8 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -11483,37 +11460,37 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -11528,14 +11505,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11545,7 +11522,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "" @@ -11554,15 +11531,15 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "" @@ -11581,7 +11558,7 @@ msgid "Native MySQL Authentication" msgstr "" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "" @@ -11606,8 +11583,8 @@ msgstr "Uzantonomo:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "User name" msgid "Host name" @@ -11625,216 +11602,216 @@ msgstr "" msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 msgid "Database for user account" msgstr "" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 msgid "Remove selected user accounts" msgstr "" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11843,7 +11820,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11852,11 +11829,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "" @@ -12078,30 +12055,30 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -12155,7 +12132,7 @@ msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -12180,33 +12157,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12214,78 +12191,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12293,7 +12270,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12301,42 +12278,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12344,33 +12321,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12379,242 +12356,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12622,99 +12599,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12722,18 +12699,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12741,11 +12718,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -12754,57 +12731,57 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "" @@ -12864,21 +12841,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 msgid "An alias was expected." msgstr "" @@ -12934,119 +12907,119 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 msgid "At least one column definition was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -13074,27 +13047,27 @@ msgstr "" msgid "Bind parameters" msgstr "" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "" @@ -13138,172 +13111,172 @@ msgstr "" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 msgid "Delete version" msgstr "" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Uzantonomo" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "" @@ -13311,11 +13284,11 @@ msgstr "" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -13414,7 +13387,7 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -13439,7 +13412,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -14219,43 +14192,47 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +msgid "Chart title:" +msgstr "" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 msgid "Value Column:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "" @@ -14310,46 +14287,47 @@ msgstr "" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +msgid "Foreign key constraints" +msgstr "" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "" + +#: templates/table/relation/common_form.phtml:10 +msgid "Constraint properties" +msgstr "" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "" + +#: templates/table/relation/common_form.phtml:60 +msgid "+ Add constraint" +msgstr "" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:37 -msgid "Foreign key constraints" -msgstr "" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "" - -#: templates/table/relation/common_form.phtml:41 -msgid "Constraint properties" -msgstr "" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "" - -#: templates/table/relation/common_form.phtml:83 -msgid "+ Add constraint" -msgstr "" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "" @@ -14475,7 +14453,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 msgid "Partitions" msgstr "" @@ -14508,7 +14486,7 @@ msgstr "" msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "" diff --git a/po/es.po b/po/es.po index 5c45eaf5b8..b302082504 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-14 14:56+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Spanish O, de modo alternativo, utilizar la pestaña «Operaciones» de cualquier " "base de datos para configurarlo allí." -#: index.php:619 +#: index.php:626 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -843,7 +849,7 @@ msgstr "" "Su versión de librería PHP MySQL %s es distinta de aquella de su versión de " "servidor MySQL %s. Esto puede ocasionar un comportamiento impredecible." -#: index.php:647 +#: index.php:654 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -865,7 +871,7 @@ msgstr "Confirmar" msgid "Do you really want to execute \"%s\"?" msgstr "¿Realmente desea ejecutar \"%s\"?" -#: js/messages.php:45 libraries/mult_submits.lib.php:397 +#: js/messages.php:45 libraries/mult_submits.lib.php:402 msgid "You are about to DESTROY a complete database!" msgstr "¡Está a punto de DESTRUIR una base de datos completa!" @@ -1021,7 +1027,7 @@ msgid "Save & close" msgstr "Guardar y Cerrar" #: js/messages.php:109 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1551 prefs_manage.php:364 +#: libraries/insert_edit.lib.php:1558 prefs_manage.php:364 #: prefs_manage.php:375 msgid "Reset" msgstr "Reiniciar" @@ -1079,10 +1085,10 @@ msgstr "Seleccione la(s) columna(s) para el índice." msgid "You have to add at least one column." msgstr "Debe agregar al menos una columna." -#: js/messages.php:129 libraries/insert_edit.lib.php:1549 +#: js/messages.php:129 libraries/insert_edit.lib.php:1556 #: templates/columns_definitions/column_definitions_form.phtml:159 #: templates/table/index_form.phtml:237 -#: templates/table/relation/common_form.phtml:108 +#: templates/table/relation/common_form.phtml:127 msgid "Preview SQL" msgstr "Previsualizar SQL" @@ -1125,8 +1131,8 @@ msgstr "¡Las contraseñas no coinciden!" msgid "Removing Selected Users" msgstr "Eliminando los usuarios seleccionados" -#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:461 -#: libraries/tracking.lib.php:831 +#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:471 +#: libraries/tracking.lib.php:841 msgid "Close" msgstr "Cerrar" @@ -1148,7 +1154,7 @@ msgstr "Plantilla borrada." #. l10n: Other, small valued, queries #: js/messages.php:155 libraries/ServerStatusData.php:130 -#: libraries/server_status_queries.lib.php:148 +#: libraries/server_status_queries.lib.php:150 msgid "Other" msgstr "Otro" @@ -1318,7 +1324,7 @@ msgid "Traffic" msgstr "Tráfico" # This is the text showed in the tab -#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4330 +#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4331 #: libraries/server_status_monitor.lib.php:258 msgid "Settings" msgstr "Configuración" @@ -1331,9 +1337,9 @@ msgstr "Agregar gráfico a la grilla" msgid "Please add at least one variable to the series!" msgstr "¡Introduzca una longitud válida!" -#: js/messages.php:216 libraries/DisplayResults.php:1477 +#: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1449,7 +1455,7 @@ msgstr "Cambiar configuraciones" msgid "Current settings" msgstr "Configuraciones actuales" -#: js/messages.php:253 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:253 msgid "Chart title" msgstr "Título del gráfico" @@ -1540,21 +1546,21 @@ msgstr "Analizando…" msgid "Explain output" msgstr "Explicar salida" -#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4326 +#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4327 #: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:396 #: libraries/rte/rte_list.lib.php:104 -#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:282 -#: libraries/tracking.lib.php:1623 +#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:284 +#: libraries/tracking.lib.php:1639 msgid "Status" msgstr "Estado actual" -#: js/messages.php:289 js/messages.php:870 +#: js/messages.php:289 js/messages.php:862 #: libraries/plugins/export/ExportHtmlword.php:484 #: libraries/plugins/export/ExportOdt.php:600 #: libraries/plugins/export/ExportTexytext.php:445 #: libraries/plugins/export/PMA_ExportPdf.php:314 #: libraries/rte/rte_list.lib.php:93 -#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:239 +#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:243 msgid "Time" msgstr "Tiempo" @@ -1641,10 +1647,10 @@ msgstr "" "Reiniciando a configuración predeterminada…" #: js/messages.php:322 libraries/Menu.php:355 libraries/Menu.php:457 -#: libraries/Menu.php:578 libraries/Util.php:4329 libraries/Util.php:4344 -#: libraries/Util.php:4361 libraries/config/messages.inc.php:260 +#: libraries/Menu.php:578 libraries/Util.php:4330 libraries/Util.php:4345 +#: libraries/Util.php:4362 libraries/config/messages.inc.php:260 #: libraries/display_import.lib.php:108 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:241 +#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:241 #: setup/frames/menu.inc.php:26 msgid "Import" msgstr "Importar" @@ -1701,7 +1707,13 @@ msgstr "Prueba" msgid "Formatting SQL…" msgstr "Formato SQL…" -#: js/messages.php:346 libraries/server_variables.lib.php:159 +#: js/messages.php:343 +#, fuzzy +#| msgid "Bad parameters!" +msgid "No parameters found!" +msgstr "¡Parámetros incorrectos!" + +#: js/messages.php:347 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 @@ -1712,59 +1724,59 @@ msgstr "Formato SQL…" msgid "Cancel" msgstr "Cancelar" -#: js/messages.php:349 libraries/Header.php:457 +#: js/messages.php:350 libraries/Header.php:457 msgid "Page-related settings" msgstr "Ajustes de página relacionada" -#: js/messages.php:350 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:351 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Aplicar" -#: js/messages.php:353 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:354 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:124 msgid "Loading…" msgstr "Cargando…" -#: js/messages.php:354 +#: js/messages.php:355 msgid "Request aborted!!" msgstr "¡¡Petición Abortada!!" -#: js/messages.php:355 +#: js/messages.php:356 msgid "Processing request" msgstr "Procesando petición" -#: js/messages.php:356 +#: js/messages.php:357 msgid "Request failed!!" msgstr "¡¡Petición Fallida!!" -#: js/messages.php:357 +#: js/messages.php:358 msgid "Error in processing request" msgstr "Error al procesar la petición" -#: js/messages.php:358 +#: js/messages.php:359 #, php-format msgid "Error code: %s" msgstr "Código de error: %s" -#: js/messages.php:359 +#: js/messages.php:360 #, php-format msgid "Error text: %s" msgstr "Texto de error: %s" -#: js/messages.php:360 libraries/db_common.inc.php:73 +#: js/messages.php:361 libraries/db_common.inc.php:73 #: libraries/db_table_exists.lib.php:33 libraries/server_databases.lib.php:462 msgid "No databases selected." msgstr "No se seleccionaron bases de datos." -#: js/messages.php:361 +#: js/messages.php:362 msgid "Dropping column" msgstr "Eliminando columna" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Adding primary key" msgstr "Añadiendo clave primaria" -#: js/messages.php:363 +#: js/messages.php:364 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1774,166 +1786,166 @@ msgstr "Añadiendo clave primaria" msgid "OK" msgstr "OK" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Click to dismiss this notification" msgstr "Pulse para descartar esta notificación" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Renaming databases" msgstr "Renombrando bases de datos" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Copying database" msgstr "Copiando base de datos" -#: js/messages.php:369 +#: js/messages.php:370 msgid "Changing charset" msgstr "Cambiando el juego de caracteres" -#: js/messages.php:373 libraries/Util.php:3289 +#: js/messages.php:374 libraries/Util.php:3289 msgid "Enable foreign key checks" msgstr "Habilite la revisión de las claves foráneas" -#: js/messages.php:376 +#: js/messages.php:377 msgid "Failed to get real row count." msgstr "No se pudo obtener la cantidad de filas real." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Searching" msgstr "Buscando" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide search results" msgstr "Ocultar resultados de búsqueda" -#: js/messages.php:381 +#: js/messages.php:382 msgid "Show search results" msgstr "Mostrar resultados de búsqueda" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Browsing" msgstr "Examinando" -#: js/messages.php:383 +#: js/messages.php:384 msgid "Deleting" msgstr "Borrando" -#: js/messages.php:387 +#: js/messages.php:388 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:388 libraries/DisplayResults.php:4832 -#: libraries/DisplayResults.php:5091 libraries/Menu.php:347 -#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3709 -#: libraries/Util.php:3710 libraries/Util.php:4328 libraries/Util.php:4343 -#: libraries/Util.php:4360 libraries/config/messages.inc.php:254 +#: js/messages.php:389 libraries/DisplayResults.php:4850 +#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 +#: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 +#: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2448 -#: libraries/server_privileges.lib.php:2527 -#: libraries/server_privileges.lib.php:2873 -#: libraries/server_privileges.lib.php:3532 -#: libraries/server_status_monitor.lib.php:321 prefs_manage.php:306 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2875 +#: libraries/server_privileges.lib.php:3543 +#: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 msgid "Export" msgstr "Exportar" -#: js/messages.php:391 libraries/rte/rte_routines.lib.php:742 +#: js/messages.php:392 libraries/rte/rte_routines.lib.php:742 msgid "ENUM/SET editor" msgstr "Editor de ENUM/SET" -#: js/messages.php:392 +#: js/messages.php:393 #, php-format msgid "Values for column %s" msgstr "Valores para la columna %s" -#: js/messages.php:393 +#: js/messages.php:394 msgid "Values for a new column" msgstr "Valores para una nueva columna" -#: js/messages.php:394 +#: js/messages.php:395 msgid "Enter each value in a separate field." msgstr "Introducir cada valor en un campo separado." -#: js/messages.php:395 +#: js/messages.php:396 #, php-format msgid "Add %d value(s)" msgstr "Agregar %d valor(es)" -#: js/messages.php:399 +#: js/messages.php:400 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:403 +#: js/messages.php:404 msgid "Hide query box" msgstr "Ocultar ventana de consultas SQL" -#: js/messages.php:404 +#: js/messages.php:405 msgid "Show query box" msgstr "Mostrar ventana de consultas SQL" -#: js/messages.php:405 libraries/Console.php:88 libraries/Console.php:217 -#: libraries/DisplayResults.php:3457 libraries/DisplayResults.php:4816 +#: js/messages.php:406 libraries/Console.php:88 libraries/Console.php:217 +#: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4834 #: libraries/Index.php:721 libraries/Util.php:727 libraries/Util.php:1238 -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:119 +#: libraries/server_user_groups.lib.php:121 #: libraries/server_variables.lib.php:242 #: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 msgid "Edit" msgstr "Editar" -#: js/messages.php:406 libraries/Console.php:89 libraries/DbSearch.php:360 -#: libraries/DisplayResults.php:3526 libraries/DisplayResults.php:4800 +#: js/messages.php:407 libraries/Console.php:89 libraries/DbSearch.php:360 +#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4818 #: libraries/central_columns.lib.php:854 #: libraries/central_columns.lib.php:1200 libraries/display_export.lib.php:227 -#: libraries/server_user_groups.lib.php:129 -#: libraries/sql_query_form.lib.php:416 libraries/tracking.lib.php:480 +#: libraries/server_user_groups.lib.php:131 +#: libraries/sql_query_form.lib.php:417 libraries/tracking.lib.php:490 #: setup/frames/index.inc.php:187 setup/frames/index.inc.php:295 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Borrar" -#: js/messages.php:407 libraries/DisplayResults.php:915 -#: libraries/DisplayResults.php:923 +#: js/messages.php:408 libraries/DisplayResults.php:919 +#: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d no es un número de fila válido." -#: js/messages.php:408 -#: libraries/controllers/table/TableSearchController.php:435 -#: libraries/controllers/table/TableSearchController.php:920 -#: libraries/sql.lib.php:193 tbl_change.php:159 +#: js/messages.php:409 +#: libraries/controllers/table/TableSearchController.php:432 +#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "Mostrar los valores foráneos" -#: js/messages.php:409 +#: js/messages.php:410 msgid "No auto-saved query" msgstr "Sin consultas almacenadas automáticamente" -#: js/messages.php:410 +#: js/messages.php:411 #, php-format msgid "Variable %d:" msgstr "Variable %d:" -#: js/messages.php:413 libraries/normalization.lib.php:889 +#: js/messages.php:414 libraries/normalization.lib.php:889 msgid "Pick" msgstr "Elegir" -#: js/messages.php:414 +#: js/messages.php:415 msgid "Column selector" msgstr "Selección de columnas" -#: js/messages.php:415 +#: js/messages.php:416 msgid "Search this list" msgstr "Buscar en esta lista" -#: js/messages.php:417 +#: js/messages.php:418 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1943,15 +1955,15 @@ msgstr "" "columnas para la base de datos %s tenga columnas que no estén en la tabla " "actual." -#: js/messages.php:420 +#: js/messages.php:421 msgid "See more" msgstr "Más" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Are you sure?" msgstr "¿Está seguro?" -#: js/messages.php:423 +#: js/messages.php:424 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1959,51 +1971,51 @@ msgstr "" "Esta acción puede cambiar la definición de algunas columnas.
¿Está " "seguro que desea continuar?" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "Continuar" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "Agregar clave primaria" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "Se agregó la clave primaria." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "Llevándolo al siguiente paso…" -#: js/messages.php:433 +#: js/messages.php:434 #, 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:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "Final de los pasos" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "Segundo paso de normalización (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Terminado" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "Confirmar dependencias parciales" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "Las dependencias parciales seleccionadas son:" -#: js/messages.php:440 +#: js/messages.php:441 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2011,21 +2023,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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "¡No se seleccionaron dependencias parciales!" -#: js/messages.php:446 +#: js/messages.php:447 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:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "Esconder lista de dependencias parciales" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2033,167 +2045,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:452 +#: js/messages.php:453 msgid "Step" msgstr "Paso" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "Se realizarán las siguientes acciones:" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "Eliminar columnas %s de la tabla %s" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "Crear la siguiente tabla" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "Tercer paso de la normalización (3NF)" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "Confirmar dependencias transitivas" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "Las dependencias seleccionadas son:" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "¡No se seleccionaron dependencias!" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Guardar" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Ocultar criterio de búsqueda" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Mostrar criterio de búsqueda" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "Búsqueda por rango" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "Máximo de las columnas:" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "Mínimo de las columnas:" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "Valor mínimo:" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "Valor máximo:" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "Ocultar criterio de búsqueda y reemplazo" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "Mostrar criterio de búsqueda y reemplazo" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "Cada punto representa una fila de datos." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "Ubicar el cursor sobre un punto mostrará su etiqueta." -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Para ampliar, seleccione el gráfico." -#: js/messages.php:488 +#: js/messages.php:489 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:490 +#: js/messages.php:491 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:492 +#: js/messages.php:493 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:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "Seleccionar dos columnas" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "Seleccionar dos columnas distintas" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "Contenido del punto de datos" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Copiar" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Punto" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Cadena de líneas" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Polígono" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometría" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "Círculo interior" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "Círculo exterior" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "¿Desea copiar la llave de cifrado?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "Llave de cifrado" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2201,24 +2213,24 @@ msgstr "" "Indica que ha realizado cambios en esta página; se le pedirá confirmación " "antes de abandonar los cambios" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Seleccione la clave referenciada" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Seleccione la clave foránea" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "¡Seleccione la clave primaria o una clave única!" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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:532 +#: js/messages.php:533 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?" @@ -2226,77 +2238,77 @@ msgstr "" "No se guardaron los cambios en la disposición. Serán perdidos si no los " "guardas. ¿Deseas continuar?" -#: js/messages.php:535 +#: js/messages.php:536 msgid "Page name" msgstr "Nombre de página" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Guardar página" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Abrir página" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "Borrar página" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Sin título" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "Seleccione una página para continuar" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "Introduzca un nombre de página válido" -#: js/messages.php:544 +#: js/messages.php:545 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:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "Página eliminada exitosamente" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "Exportar esquema relacional" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Se han guardado las modificaciones" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "Añadir una opción para la columna «%s»." -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "%d objeto(s) creado(s)." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Enviar" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "Presione la tecla de escape para cancelar la edición." -#: js/messages.php:557 +#: js/messages.php:558 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?" @@ -2304,15 +2316,15 @@ msgstr "" "Editó datos que no fueron guardados. ¿Está seguro que desea abandonar esta " "página sin guardar los datos?" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "Arrastrar para reordenar." -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "Pulse para ordenar los resultados según esta columna." -#: js/messages.php:563 +#: js/messages.php:564 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 " @@ -2322,28 +2334,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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "Pulsar para marcar/desmarcar." -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "Haga doble click para copiar el nombre de la columna." -#: js/messages.php:570 +#: js/messages.php:571 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:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Mostrar todo" -#: js/messages.php:574 +#: js/messages.php:575 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." @@ -2352,13 +2364,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:578 +#: js/messages.php:579 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:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2366,132 +2378,99 @@ msgstr "" "¿Realmente desea ver todas las filas? Una tabla grande podría afectar el " "funcionamiento del navegador." -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "Longitud original" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "cancelar" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Abortado" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "Éxito" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "Estado de la importación" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Suelte aquí los archivos" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "Seleccionar base de datos primero" -#: js/messages.php:598 +#: js/messages.php:599 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:603 +#: js/messages.php:604 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:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "Ir al enlace:" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "Copie el nombre de la columna." -#: js/messages.php:612 +#: js/messages.php:613 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:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Generar contraseña" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Generar" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "Más" -#: js/messages.php:623 +#: js/messages.php:624 msgid "Show panel" msgstr "Mostrar panel" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "Ocultar panel" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "Mostrar los elementos escondidos del árbol de navegación." -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "Enlace al panel principal" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "Deshacer enlace en el panel principal" -#: js/messages.php:629 -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:631 -#, 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:632 -msgid "tables" -msgstr "mesas" - -#: js/messages.php:633 -msgid "views" -msgstr "Vistas" - -#: js/messages.php:634 -msgid "procedures" -msgstr "procedimientos" - -#: js/messages.php:635 -msgid "events" -msgstr "eventos" - -#: js/messages.php:636 -msgid "functions" -msgstr "Funciones" - -#: js/messages.php:640 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:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2501,42 +2480,42 @@ msgstr "" "la obtenga. La versión más reciente es %s, y existe desde el %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", versión estable más reciente:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "actualizada" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "Crear vista" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "Enviar informe de error" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "Enviar informe de error" -#: js/messages.php:657 +#: js/messages.php:649 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:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "Cambiar configuraciones del informe" -#: js/messages.php:660 +#: js/messages.php:652 msgid "Show report details" msgstr "Mostrar detalles del informe" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2544,7 +2523,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:667 +#: js/messages.php:659 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2554,59 +2533,59 @@ msgstr "" "enviarlo se podrían ignorar algunos campos debido a la configuración " "«max_input_vars» de PHP." -#: js/messages.php:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "¡Se detectaron algunos errores en el servidor!" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "Revise el pie de esta ventana." -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "Ignorar todos" -#: js/messages.php:689 +#: js/messages.php:681 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:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "¿Ejecutar esta consulta nuevamente?" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "¿Realmente desea eliminar este favorito?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "Ocurrió un error al obtener información de depuración SQL." -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s consultas ejecutadas %s veces en %s segundos." -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "%s argumento(s) correcto(s)" -#: js/messages.php:707 +#: js/messages.php:699 msgid "Show arguments" msgstr "Mostrar argumentos" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "Ocultar argumentos" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "Tiempo necesario:" -#: js/messages.php:711 +#: js/messages.php:703 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,291 +2596,291 @@ msgstr "" "podrían no funcionar correctamente. En Safari, ésto puede deberse al \"Modo " "de Navegación Privada\"." -#: js/messages.php:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "Anterior" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "Siguiente" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Hoy" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "Enero" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "Febrero" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "Marzo" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "Abril" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Mayo" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "Junio" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "Julio" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "Agosto" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "Septiembre" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "Octubre" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "Noviembre" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "Diciembre" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Ene" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Dic" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "Domingo" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "Lunes" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "Martes" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "Miércoles" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "Jueves" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "Viernes" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "Sábado" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Mie" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Jue" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Vie" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "Mi" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "Ju" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "Vi" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "Sem" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "calendar-year-month" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Hora" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Minuto" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Segundo" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "Este campo es requerido" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "Corrige este campo" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "Ingrese un correo electrónico válido" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "Ingrese una URL válida" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "Ingrese una fecha válida" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "Ingrese una fecha ( ISO ) válida" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "Ingrese un número válido" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "Ingrese un número de tarjeta de crédito valido" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "Ingrese solo dígitos" @@ -2909,41 +2888,41 @@ msgstr "Ingrese solo dígitos" msgid "Please enter the same value again" msgstr "Ingrese el mismo valor de nuevo" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "Ingrese no más de {0} caracteres" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "Ingrese al menos {0} caracteres" -#: js/messages.php:896 +#: js/messages.php:907 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:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "Ingrese un valor entre {0} y {1}" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "Ingrese un valor menor o igual a {0}" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "Ingrese un valor mayor o igual a {0}" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "Ingrese una fecha u hora válida" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "Ingrese una entrada HEX válida" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Error" @@ -3034,11 +3013,12 @@ msgstr "Reconsultar" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3080,7 +3060,7 @@ msgstr "durante la sesión actual" msgid "Explain" msgstr "Explicar" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Perfilando" @@ -3114,8 +3094,8 @@ msgid "History" msgstr "Historial" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3262,7 +3242,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Cambiar al tema oscuro" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3270,26 +3250,26 @@ msgstr "" "El servidor no está respondiendo (o el zócalo local al servidor MySQL no " "está configurado correctamente)." -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "El servidor no está respondiendo." -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "Revisa los permisos del directorio que contiene la base de datos." -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Detalles…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "La conexión para controluser, como está definida en su configuración, " "fracasó." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3299,8 +3279,8 @@ msgstr "" msgid "Ascending" msgstr "Ascendente" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3445,8 +3425,8 @@ msgstr[0] "%1$s coincidencia en la tabla %2$s" msgstr[1] "%1$s coincidencias en la tabla %2$s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3488,119 +3468,120 @@ msgstr "Deseleccionar todo" msgid "Inside column:" msgstr "Dentro de la columna:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "Guardar datos editados" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "Restaurar orden de las columnas" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "Filtrar filas" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "Buscar en esta tabla" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "Comenzar" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "Anterior" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "Siguiente" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "Fin" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Todos/as" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Número de filas:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Ordenar según la clave" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "Textos parciales" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "Textos completos" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Clave relacional" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 msgid "Display column for relations" msgstr "Mostrar columna de relaciones" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "Mostrar contenido binario" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "Mostrar contenido BLOB" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "Ocultar transformación del navegador" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "Texto muy conocido" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "Binario muy conocido" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "La fila se ha borrado." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Matar el proceso" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Podría ser aproximado. Ver [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "Su consulta se ejecutó con éxito." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3609,64 +3590,64 @@ msgstr "" "Esta vista tiene al menos este número de filas. Refiérase a la " "%sdocumentation%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "Mostrando filas %1s - %2s" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d en total, %2$d en la consulta" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "total de %d" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "La consulta tardó %01.4f segundos." -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Para los elementos que están marcados:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 msgid "Check all" msgstr "Seleccionar todo" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Vista de impresión" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Operaciones sobre los resultados de la consulta" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Mostrar gráfico" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "Visualizar datos GIS" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "¡No se encontró el enlace!" @@ -3764,19 +3745,19 @@ msgstr "¡No se ha definido ningún índice!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Índices" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3785,24 +3766,24 @@ msgid "Action" msgstr "Acción" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Nombre de la clave" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Único" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Empaquetado" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Cardinalidad" @@ -3810,8 +3791,8 @@ msgstr "Cardinalidad" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3821,8 +3802,8 @@ msgid "Collation" msgstr "Cotejamiento" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3838,15 +3819,15 @@ msgstr "La clave primaria ha sido eliminada." msgid "Index %s has been dropped." msgstr "El índice %s ha sido eliminado." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Eliminar" @@ -3887,12 +3868,13 @@ msgstr "Visualizar" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3900,7 +3882,7 @@ msgstr "Tabla" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3909,8 +3891,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3918,41 +3900,41 @@ msgid "Search" msgstr "Buscar" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Insertar" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilegios" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Operaciones" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Seguimiento" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3963,16 +3945,16 @@ msgstr "Disparadores" msgid "Database seems to be empty!" msgstr "La base de datos, ¡parece estar vacía!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Generar una consulta" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rutinas" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3980,20 +3962,20 @@ msgstr "Rutinas" msgid "Events" msgstr "Eventos" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Diseñador" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "Columnas centrales" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Bases de datos" @@ -4002,33 +3984,33 @@ msgid "User accounts" msgstr "Cuentas de usuarios" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Registro binario" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replicación" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Variables" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Juegos de caracteres" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Motores" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "Complementos" @@ -4328,7 +4310,7 @@ msgstr "¡No se puede cambiar el nombre del índice a PRIMARY!" msgid "No index parts defined!" msgstr "No se han definido las partes del índice!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4815,39 +4797,39 @@ msgstr "La funcionalidad %s está afectada por un fallo conocido, vea %s" msgid "Click to toggle" msgstr "Pulse para conmutar" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Buscar en su ordenador:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" "Seleccionar directorio en el servidor web para subir los archivos %s:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "" "No se puede acceder al directorio que seleccionó para subir los archivos." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "¡No hay archivos para subir!" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Vaciar" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "Ejecutar" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Imprimir" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "Usuarios" @@ -5010,8 +4992,8 @@ msgid "Add new column" msgstr "Añadir columna nueva" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5080,19 +5062,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "Usted debería actualizar su %s a la versión %s o más reciente." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "Error: no coincide un «token»" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "intento de sobre-escritura de la variable GLOBALS" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "posible aprovechamiento" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "telado numérico detectado" @@ -5957,7 +5939,7 @@ msgid "Remember file name template" msgstr "Recordar el nombre de la plantilla del archivo" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Añadir el valor AUTO_INCREMENT" @@ -5997,7 +5979,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Añada %s" @@ -7736,7 +7718,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "Define si la consulta se mostrará aún después de enviar el formulario." -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "Mantener la caja de texto con la consulta" @@ -8047,102 +8029,33 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Texto Open Document" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "¡La lista de favoritos está completa!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Se ha vaciado la tabla %s." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "Se descartó la vista %s." -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "Se ha eliminado la tabla %s." -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "¡La lista de favoritos está completa!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "desconocido" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -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.php:250 -msgid "No column selected." -msgstr "No se seleccionaron columnas." - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "Las columnas fueron movidas exitosamente." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "Los cambios en la Tabla %1$s se hicieron exitosamente." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "Errores de consulta" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Cambiar" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Índice" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "Espacial" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Texto completo" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "Valores distintos" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8156,6 +8069,14 @@ msgstr "No existen columnas numéricas en la tabla a graficar." msgid "No data to display" msgstr "No hay datos para mostrar" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "Los cambios en la Tabla %1$s se hicieron exitosamente." + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "La columna se actualizó satisfactoriamente." @@ -8164,19 +8085,80 @@ msgstr "La columna se actualizó satisfactoriamente." msgid "Internal relations were successfully updated." msgstr "Las relaciones internas se actualizaron satisfactoriamente." -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "Búsqueda de tablas" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "Búsqueda visual" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Buscar y reemplazar" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +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/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "No se seleccionaron columnas." + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "Las columnas fueron movidas exitosamente." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "Errores de consulta" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Cambiar" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Índice" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "Espacial" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Texto completo" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "Valores distintos" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8186,7 +8168,7 @@ msgstr "No se encontró la extensión %s. Revisa la configuración PHP." msgid "possible deep recursion attack" msgstr "posible ataque de recursión extrema" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Sin cambios" @@ -8256,7 +8238,7 @@ msgstr "Crear" msgid "Create database:" msgstr "Crear base de datos:" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Sin privilegios" @@ -9002,66 +8984,66 @@ msgid "Dump has been saved to file %s." msgstr "El volcado ha sido guardado al archivo %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" "MySQL ha devuelto un conjunto de valores vacío (es decir: cero columnas)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "[Ocurrió un ROLLBACK.]" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Las siguientes estructureas fueron creadas o alteradas. Puedes:" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "Puede ver los contenidos de una estructura pulsando en su nombre." -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Cambie cualquiera de sus opciones pulsando el enlace \"Opciones\" " "correspondiente." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "Edite la estructura siguiendo el enlace \"Estructura\"." -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "Ir a la base de datos: %s" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "Editar configuración de %s" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "Ir a la tabla: %s" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "Estructura de %s" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "Ir a la vista: %s" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "Sólo se pueden simular consultas UPDATE y DELETE sobre sólo una tabla." -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9069,7 +9051,7 @@ msgstr "" "Sólo se pueden deshacer («rollback») consultas SQL INSERT, UPDATE, DELETE y " "REPLACE que contengan tablas de motores transaccionales." -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "Crear un índice en  %s columna(s)" @@ -9092,66 +9074,66 @@ msgstr "Función" msgid "Binary" msgstr "Binario" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "Debido a su longitud,
esta columna podría no ser editable." -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Binario - no editar" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "O" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "directorio en el servidor web para subir los archivos:" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "Editar/Insertar" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "Continuar inserción con %s filas" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "y luego" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Insertar como una nueva fila" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "Agregar como nueva fila e ignorar errores" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "Mostrar consulta de inserción" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Volver" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Insertar un nuevo registro" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Volver a esta página" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Editar la siguiente fila" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9161,7 +9143,7 @@ msgstr "" "Use la tecla TAB para saltar de un valor a otro, o CTRL+flechas para moverse " "a cualquier parte" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9173,11 +9155,11 @@ msgstr "" msgid "Value" msgstr "Valor" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "Mostrando la consulta SQL" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "La Id de la fila insertada es: %1$d" @@ -9194,35 +9176,35 @@ msgstr "Ninguno" msgid "Convert to Kana" msgstr "Convertir a Kana" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "¡Éxito!" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "Reemplazar prefijo de la tabla:" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "Copiar tabla con prefijo:" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "De" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "A" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "Agregar prefijo a la tabla:" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "Agregar prefijo" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "¿Realmente desea ejecutar la siguiente consulta?" @@ -9440,8 +9422,8 @@ msgstr "Procedimientos:" msgid "Views:" msgstr "Vistas:" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Mostrar" @@ -9482,18 +9464,15 @@ msgstr[0] "Se encontró %s resultado adicional" msgstr[1] "Se encontró %s resultado adicional" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" -msgstr "Filtrar bases de datos por nombre o expresión regular" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 msgid "Clear fast filter" msgstr "Vaciar filtro rápido" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "Filtrar por nombre o expresión regular" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "Colapsar todos" @@ -9924,7 +9903,7 @@ msgstr "Renombrar base de datos a" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9935,7 +9914,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Ajustar privilegios" @@ -9953,18 +9932,18 @@ msgstr "Eliminar base de datos" msgid "Drop the database (DROP)" msgstr "Eliminar la base de datos (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Únicamente la estructura" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Estructura y datos" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Solamente datos" @@ -9976,7 +9955,7 @@ msgstr "Copiar base de datos a" msgid "CREATE DATABASE before copying" msgstr "CREAR BASE DE DATOS antes de copiar" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Añadir restricciones" @@ -10016,157 +9995,157 @@ msgstr "Motor de almacenamiento" msgid "Change all column collations" msgstr "Cambiar todas las intercalaciones de columna" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Copiar tabla a (base de datos.tabla)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Cambiar a la tabla copiada" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Mantenimiento de la tabla" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Analizar la tabla" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Revisar la tabla" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 msgid "Checksum table" msgstr "Tabla de suma de comprobación" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Defragmentar la tabla" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "Se ha vaciado el caché de la tabla %s." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "Vaciar el caché de la tabla (FLUSH)" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Optimizar la tabla" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Reparar la tabla" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "Borrar datos o tabla" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "Vaciar la tabla (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "Borrar la tabla (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Analice" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Revise" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Optimice" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Reconstruya" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Repare" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "Truncar" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 msgid "Coalesce" msgstr "Fusionar" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "Mantenimiento de la partición" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "Partición %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "Remueva la partición" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Comprobar la integridad referencial:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "¡No es posible mover la tabla a la misma!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "¡No es posible copiar la tabla a la misma!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "La tabla %s se movió a %s. Los privilegios se ajustaron." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "La tabla %s se copió a %s. Los privilegios se ajustaron." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "La tabla %s se movió a %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "La tabla %s se copió a %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "¡El nombre de la tabla está vacío!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "Este formato no tiene opciones" @@ -10345,7 +10324,7 @@ msgstr "Opciones para volcado de datos" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Volcado de datos para la tabla" @@ -10369,21 +10348,21 @@ msgstr "Definición" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Estructura de tabla para la tabla" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Estructura para la vista" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Estructura Stand-in para la vista" @@ -10473,7 +10452,7 @@ msgid "Database:" msgstr "Base de datos:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "Datos:" @@ -10576,7 +10555,7 @@ msgid "Data creation options" msgstr "Opciones de creación de datos" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "Truncar tablas antes de insertar" @@ -10660,8 +10639,8 @@ msgstr "Parece que su base de datos utiliza procedimientos;" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" "exportar los alias no podría funcionar correctamente en todos los casos." @@ -10670,81 +10649,81 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "Parece que su base de datos utiliza funciones;" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 msgid "Metadata" msgstr "Metadatos" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "Metadatos para %s" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Creación:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Última actualización:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Última revisión:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "en uso" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "Parece que su base de datos utiliza vistas;" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Restricciones para tablas volcadas" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Filtros para la tabla" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "Índices para tablas volcadas" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "Indices de la tabla" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT de las tablas volcadas" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT de la tabla" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "TIPOS MIME PARA LA TABLA" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "RELACIONES PARA LA TABLA" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "Parece que su tabla utiliza disparadores («triggers»);" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, 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.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "Error leyendo datos:" @@ -10994,9 +10973,9 @@ msgstr "Esquema relacionado" msgid "Table of contents" msgstr "Tabla de contenidos" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Extra" @@ -11235,47 +11214,47 @@ msgstr "Formatea el texto como una consulta SQL y resalta la sintaxis." msgid "Formats text as XML with syntax highlighting." msgstr "Formatea el texto como XML y resalta la sintaxis." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Error: la relación ya existe." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "Se añadió una relación CLAVE FORÁNEA." -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Error: ¡no se pudo crear la clave ajena!" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "Error: Índice de columna(s) no encontrado." -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "Error: ¡Las funcionalidades relacionales están desactivadas!" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "Se añadió la relación interna." -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 msgid "Error: Internal relation could not be added!" msgstr "Error: ¡no se añadió la relación interna!" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 msgid "FOREIGN KEY relation has been removed." msgstr "Clave ajena eliminada." -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Error: ¡no se pudo borrar la clave ajena!" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 msgid "Error: Internal relation could not be removed!" msgstr "Error: ¡no se pudo borrar la relación interna!" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "Se ha eliminado la relación interna." @@ -11320,70 +11299,70 @@ msgstr "Transformación del navegador" msgid "Please see the documentation on how to update your column_info table. " msgstr "Para actualizar su tabla column_info, revise la documentación. " -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Consulta guardada en favoritos" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "Historial-SQL" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "Tablas persistentes utilizadas recientemente" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 msgid "Persistent favorite tables" msgstr "Tablas favoritas usadas recientemente" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "Preferencias de interfaz de tablas persistentes" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "Preferencias de usuario" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "Menús configurables" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "Ocultar/mostrar elementos de navegación" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "Guardando búsquedas de consulta-con-ejemplo" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "Gestión de la lista central de columnas" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "Recordando ajustes de diseño" # Used as description for SQL syntax Export Type (options are INSERT, UPDATE # and REPLACE) -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 msgid "Saving export templates" msgstr "Guardar exportación de plantillas" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "Pasos rápidos para configurar funcionalidades avanzadas:" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "Crear las tablas necesarias con %screate_tables.sql." -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "Crear un usuario pma y permitir acceso a estas tablas." -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -11392,17 +11371,17 @@ msgstr "" "(config.inc.php), por ejemplo comenzando desde config." "sample.inc.php." -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Inicie sesión en phpMyAdmin nuevamente para cargar el archivo de " "configuración actualizado." -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "Sin descripción" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11412,7 +11391,7 @@ msgstr "" "'phpmyadmin'. Puede ir a la pestaña de 'Operaciones' de cualquier base de " "datos para configurar el almacenamiento de configuración en phpMyAdmin." -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11421,7 +11400,7 @@ msgstr "" "%sCree%s una base de datos llamada 'phpmyadmin' y configure el " "almacenamiento de configuración en phpMyAdmin." -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." @@ -11429,7 +11408,7 @@ msgstr "" "%sCrear%s las tablas de almacenamiento de configuración de phpMyAdmin en la " "base de datos actual." -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11624,8 +11603,8 @@ msgstr "Nombre de usuario:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Nombre de usuario" @@ -11633,7 +11612,7 @@ msgstr "Nombre de usuario" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Contraseña" @@ -12263,7 +12242,7 @@ msgstr[1] "%1$d bases de datos han sido eliminadas exitosamente." msgid "Plugin" msgstr "Complemento" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Versión" @@ -12271,100 +12250,96 @@ msgstr "Versión" msgid "Author" msgstr "Autor" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "Licencia" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "desactivado" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Sin privilegios." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Incluye todos los privilegios excepto GRANT." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Permite leer los datos." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Permite insertar y reemplazar datos." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Permite cambiar los datos." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Permite borrar datos." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Permite crear nuevas bases de datos y tablas." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Permite eliminar bases de datos y tablas." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permite volver a cargar los parámetros del servidor y depurar los cachés del " "servidor." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Permite desconectar el servidor." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "Permite ver los procesos de todos los usuarios." #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "Permite importar y exportar datos de y hacia archivos." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "No tiene efecto en esta versión de MySQL." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Permite crear y eliminar índices." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Permite alterar la estructura de las tablas existentes." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Concede acceso a la lista completa de bases de datos." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12376,22 +12351,22 @@ msgstr "" "usuarios." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Permite la creación de tablas temporales." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Permite poner candados a las tablas para el proceso actual." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Necesario para los esclavos de replicación." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Da el derecho al usuario para preguntar dónde están los esclavos / maestros." @@ -12399,43 +12374,43 @@ msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Permite crear nuevas vistas." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "Permite organizar los eventos para el gestor de eventos." #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "Permite crear y eliminar un disparador." #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permite llevar a cabo las consultas SHOW CREATE VIEW." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Permite crear el almacenamiento de rutinas." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Permite alterar y eliminar las rutinas almacenadas." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permite crear, eliminar y cambiar el nombre de las cuentas de usuario." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Permite ejecutar las rutinas almacenadas." @@ -12447,8 +12422,8 @@ msgstr "Ninguno" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Grupo de usuario" @@ -12494,14 +12469,14 @@ msgstr "" "límite." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limita el número de consultas que el usuario puede enviar al servidor por " "hora." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12510,20 +12485,20 @@ msgstr "" "el usuario puede ejecutar por hora." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Limita el número de conexiones nuevas que el usuario puede abrir por hora." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limita el número de conexiones simultáneas que el usuario pueda tener." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12531,7 +12506,7 @@ msgid "Routine" msgstr "Rutinas" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12552,14 +12527,14 @@ msgstr "Permite ejecutar las rutinas almacenadas." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Privilegios específicos para la tabla" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -12570,7 +12545,7 @@ msgid "Administration" msgstr "Administración" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Privilegios globales" @@ -12579,15 +12554,15 @@ msgid "Global" msgstr "Global" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Privilegios específicos para la base de datos" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Permite la creación de tablas nuevas." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Permite eliminar tablas." @@ -12613,7 +12588,7 @@ msgstr "Autenticación por cookie" # It is talking about the user account not the act of logging in #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Información de la cuenta" @@ -12639,8 +12614,8 @@ msgstr "Nombre de Host:" # It is about binary logs, not about login names #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 msgid "Host name" msgstr "Nombre del servidor" @@ -12658,113 +12633,113 @@ msgstr "Complemento de autenticación" msgid "Password Hashing Method" msgstr "Hashing de la contraseña:" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "La contraseña para %s se cambió exitosamente." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Ha revocado los privilegios para %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 msgid "Add user account" msgstr "Agregar cuenta de usuario" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 msgid "Database for user account" msgstr "Base de datos para la cuenta de usuario" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" "Crear base de datos con el mismo nombre y otorgar todos los privilegios." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Otorgar todos los privilegios al nombre que contiene comodín (username\\_%)." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Otorgar todos los privilegios para la base de datos \"%s\"." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Usuarios con acceso a \"%s\"" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "Se agregó el usuario." -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Conceder" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "Privilegios insuficientes para ver los usuarios." -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "Usuario(s) no encontrado(s)." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "cualquiera" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "específico para la base de datos" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "comodín" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "específico para la tabla" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 msgid "Edit privileges" msgstr "Editar privilegios" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Revocar" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "Editar groupo de usuario" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "…mantener el anterior." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "…borrar el viejo de las tablas de usuario." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "…revocar todos los privilegios activos del viejo y eliminarlo después." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12773,93 +12748,93 @@ msgstr "" "privilegios." # Login refers to the user account not the act of logging in -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "Cambiar información de cuenta / Copiar cuenta de usuario" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "Crear una cuenta de usuario nueva con los mismos privilegios y…" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Privilegios específicos para la columna" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 msgid "Remove selected user accounts" msgstr "Eliminar cuentas de usuario seleccionadas" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revocar todos los privilegios activos de los usuarios y borrarlos después." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" "Eliminar las bases de datos que tienen los mismos nombres que los usuarios." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "¡No se han seleccionado usuarios para eliminar!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Cargando los privilegios nuevamente" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Los usuarios seleccionados fueron borrados exitosamente." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Ha actualizado los privilegios para %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "Borrando %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Los privilegios fueron cargados nuevamente de manera exitosa." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "¡El usuario %s ya existe!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "Privilegios para %s" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Usuario" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "Nuevo" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 msgid "Edit privileges:" msgstr "Editar los privilegios:" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "Cuenta de usuario" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12867,11 +12842,11 @@ msgstr "" "Nota: está intentando editar los privilegios del usuario con el que inició " "la sesión actual." -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "Vista global de las cuentas de usuario" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " @@ -12881,7 +12856,7 @@ msgstr "" "conectarse. Esto evitará conectarse a otros usuarios, si la parte del host " "de su cuenta permite una conexión desde cualquier host (%)." -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12895,7 +12870,7 @@ msgstr "" "manuales en él. En este caso, nuevamente deberá %scargar la página de " "privilegios%s antes de continuar." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12909,11 +12884,11 @@ msgstr "" "manuales en él. En este caso, los privilegios deberán actualizarse pero " "actualmente, no tiene el privilegio RELOAD." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "El usuario que seleccionó no se encontró en la tabla de privilegios." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Ha agregado un nuevo usuario." @@ -13175,24 +13150,24 @@ msgstr "Instrucciones/Configuración" msgid "Done dragging (rearranging) charts" msgstr "Se finalizó el arrastre (reorganización) de gráficos" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "Permitir arrastrar gráficos" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "Velocidad de actualización" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "Columnas del gráfico" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "Ordenación de los gráficos" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -13201,7 +13176,7 @@ msgstr "" "navegador. Sería recomendable exportarla si tiene una configuración " "complicada." -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "Restaurar valor predeterminado" @@ -13257,7 +13232,7 @@ msgid "Statements" msgstr "Sentencias" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "#" @@ -13282,7 +13257,7 @@ msgstr "Mostrar valores sin formato" msgid "Related links:" msgstr "Enlaces relacionados:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -13290,11 +13265,11 @@ msgstr "" "La cantidad de conexiones que fueron abandonadas porque el cliente murió sin " "cerrar la conexión apropiadamente." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Cantidad de intentos de conexión al servidor MySQL fallidos." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13304,19 +13279,19 @@ msgstr "" "binarios pero que excedieron el valor del binlog_cache_size y usaron un " "archivo temporal para almacenar las sentencias de la transacción." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "El número de transacciones que usaron el cache temporal de registros " "binarios." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Cantidad de intentos de conexión al servidor MySQL (fallidos o exitosos)." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13329,11 +13304,11 @@ msgstr "" "tmp_table_size para hacer que las tablas temporales se basen en memoria en " "lugar de basarse en disco." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "El número de archivos temporales que fueron creados por mysqld." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13341,7 +13316,7 @@ msgstr "" "El número de tablas temporales en memoria creadas automáticamente por el " "servidor mientras se ejecutaban las sentencias." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13349,7 +13324,7 @@ msgstr "" "El número de filas escritas con INSERT DELAYED en los cuales ocurrió algún " "error (probablemente una clave duplicada)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13357,23 +13332,23 @@ msgstr "" "El número de procesos gestores INSERT DELAYED en uso. Cada tabla diferente " "en la cual uno usa INSERT DELAYED recibe su propio proceso." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "El número de filas INSERT DELAYED escritas." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "El número de sentencias FLUSH ejecutadas." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "El número de sentencias COMMIT internas." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "El número de veces que una fila fue eliminada de una tabla." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13384,7 +13359,7 @@ msgstr "" "Handler_discover indica el número ocasiones que las tablas han sido " "descubiertas." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13395,7 +13370,7 @@ msgstr "" "de escaneos completos del índice; por ejemplo, SELECT col1 FROM foo, " "asumiendo que col1 está indizado." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -13404,7 +13379,7 @@ msgstr "" "este valor es alto, es una buena indicación de que sus consultas y tablas " "están indexadas apropiadamente." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13414,7 +13389,7 @@ msgstr "" "clave. Este se incrementa si usted está consultando una columna índice con " "un limitante de rango o si usted está haciendo un escaneo del índice." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13423,7 +13398,7 @@ msgstr "" "clave. Este método de lectura se usa principalmente para optimizar a ORDER " "BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13436,7 +13411,7 @@ msgstr "" "requieren que MySQL escanee tablas enteras o usted debe tener vínculos " "(joins) que no usan las claves de manera apropiada." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13449,37 +13424,37 @@ msgstr "" "o que sus consultas no están escritas para tomar ventaja de los índices que " "tiene." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "El número de sentencias ROLLBACK internas." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "El número de solicitudes hechas para actualizar una fila en una tabla." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "El número de solicitudes hechas para insertar una fila en una tabla." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "El número de páginas conteniendo datos (sucias o limpias)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "El número de páginas actualmente sucias." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "El número de páginas de la reserva de búfers que se ha solicitado sean " "vaciadas." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "El número de páginas libres." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13489,7 +13464,7 @@ msgstr "" "páginas en fase de lectura o escritura o que no pueden ser vaciadas o " "removidas por alguna otra razón." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13501,11 +13476,11 @@ msgstr "" "también puede ser calculado como Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "Tamaño total de la reserva de búfers, en páginas." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13514,7 +13489,7 @@ msgstr "" "una consulta va a escanear una gran porción de una tabla pero en orden " "aleatorio." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13522,11 +13497,11 @@ msgstr "" "El número de read-aheads InnoDB secuenciales iniciadas. Esto sucede cuando " "InnoDB hace un escaneo secuencial de la tabla completa." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "El número de solicitudes de lectura lógica hechas por InnoDB." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13534,7 +13509,7 @@ msgstr "" "El número de lecturas lógicas que InnoDB no pudo satisfacer la reserva de " "búfers y donde fue necesario hacer lectura de página sencilla." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13549,55 +13524,55 @@ msgstr "" "Si los parámetros del tamaño de la reserva de búfers se fijaron " "apropiadamente, este valor será pequeño." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "El número de escrituras hechas a la reserva de búfers InnoDB." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "El número de operaciones fsync() hechas hasta el momento." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "El número actual de operaciones fsync() pendientes." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "El número actual de lecturas pendientes." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "El número actual de escrituras pendientess." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "El número de datos leídos hasta el momento, en bytes." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "El número total de lectura de datos." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "El número total de escritura de datos." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "La cantidad de datos escritas hasta el momento, en bytes." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "El número de escrituras doublewrite que se han ejecutado y el número de " "páginas escritas con este propósito." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" "El número de escrituras doublewrite que se han ejecutado y el número de " "páginas escritas con este propósito." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13605,35 +13580,35 @@ msgstr "" "El número de esperas generadas porque el búfer de registro fue demasiado " "pequeño y hubo que esperar a que fuera vaciado antes de continuar." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "El número de solicitudes de escritura al registro." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "El número de escrituras físicas al archivo de registro." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "El número de escrituras fsync() hechas al archivo de registro." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "El número de fsyncs pendientes al archivo de registro." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "Escrituras pendientes al archivo de registro." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "El número de bytes escritos al archivo de registro." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "El número de páginas creadas." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -13642,52 +13617,52 @@ msgstr "" "son contados por páginas; el tamaño de la página permite que pueda " "convertirse fácilmente a bytes." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "El número de páginas leídas." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "El número de páginas escritas." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "El número de row locks que actualmente están en espera." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "El tiempo promedio para adquirir un row lock, en milisegundos." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "El total de tiempo invertido para adquirir los row locks, en milisegundos." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "El tiempo máximo para adquirir un row lock, en milisegundos." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "El número de veces que un row lock tuvo que esperarse." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "El número de filas eliminadas de tablas InnoDB." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "El número de filas insertadas en tablas InnoDB." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "El número de filas leídas de las tablas InnoDB." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "El número de filas actualizadas en tablas InnoDB." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13696,7 +13671,7 @@ msgstr "" "aún no han sido volcados al disco. Antes se conocía como " "Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -13704,7 +13679,7 @@ msgstr "" "El número de bloques sin usar en el caché de claves. Puede usar este valor " "para determinar cuánto del caché de claves está en uso." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13714,15 +13689,15 @@ msgstr "" "de desbordamiento que indica el número máximo de bloques que algún momento " "se llegaron a usar." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "Porcentaje de uso del caché de claves (valor calculado)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "El número de solicitudes para leer un bloque de clave desde el caché." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13733,7 +13708,7 @@ msgstr "" "demasiado pequeño. La tasa de fallos en el caché puede calcularse como " "Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13741,22 +13716,22 @@ msgstr "" "Los fallos en el caché de claves es calculado como la tasa de lecturas " "físicas comparadas con los pedidos de lectura (valor calculado)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "El número de solicitudes para escribir un bloque de claves a la caché." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "El número de escrituras físicas de un bloque de claves al disco." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Porcentaje de escrituras físicas comparadas con pedidos de escritura (valor " "calculado)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13767,7 +13742,7 @@ msgstr "" "planes de consulta para una misma consulta. El valor por omisión de 0 " "significa que ninguna consulta ha sido compilada todavía." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13775,11 +13750,11 @@ msgstr "" "El máximo número de conexiones que han sido utilizadas simultáneamente desde " "que inició el servidor." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "El número de filas esperando ser escritas en las colas INSERT DELAYED." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13787,21 +13762,21 @@ msgstr "" "El número de tablas que han sido abiertas. Si el número de tablas abiertas " "es grande, su valor del cache de tabla probablemente es muy pequeño." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "El número de archivos que están abiertos." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "El número de flujos de datos que están abiertos (usado principalmente para " "registros)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "El número de tablas que están abiertas." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13811,19 +13786,19 @@ msgstr "" "altas pueden indicar problemas de fragmentación que pueden ser solucionados " "ejecutando la consulta FLUSH QUERY CACHE." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "La cantidad de memoria libre para el cache de consultas." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "El número de hits al cache." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "El número de consultas añadidos al cache." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13836,7 +13811,7 @@ msgstr "" "la estrategia Least Recently Used (LRU) para decidir cuáles consultas deben " "ser removidas del cache." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13844,20 +13819,20 @@ msgstr "" "El número de consultas que no ingresaron al cache (porque no es posible o " "porque el parámetro no está activado en query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "El número de consultas registradas en el cache." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "El número total de bloques en el cache de consultas." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" "El estado de la replicación a prueba de fallos (aún no ha sido implementada)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -13865,13 +13840,13 @@ msgstr "" "El número de vínculos (joins) que no usan índices. Si este valor no es 0, " "deberá revisar los índices de sus tablas cuidadosamente." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" "El número de vínculos (joins) que usaron búsqueda por rangos en una tabla de " "referencias." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -13880,7 +13855,7 @@ msgstr "" "de cada fila. (Si no es 0, deberá revisar los índices de sus tablas " "cuidadosamente.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13888,19 +13863,19 @@ msgstr "" "El número de vínculos («joins») con rangos en la primera tabla. (Normalmente " "no es crítico aún cuando sea grande.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" "El número de vínculos (joins) que hicieron un escaneo completo de la primera " "tabla." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "El número de tablas temporales actualmente abiertas por el proceso SQL " "esclavo." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13908,12 +13883,12 @@ msgstr "" "Número total de veces (desde el arranque) que el proceso SQL esclavo de " "replicación ha reintentado hacer transacciones." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Está ENCENDIDO si este servidor es un esclavo que está conectado a un master." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -13921,14 +13896,14 @@ msgstr "" "El número de procesos que han tomado más de los segundos registrados en " "slow_launch_time para crear." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "El número de consultas que han tomado más segundos que los registrados en " "long_query_time." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13938,23 +13913,23 @@ msgstr "" "hacer. Si este valor es grande, debe considerar incrementar el valor de la " "varible de sistema sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "El número de consultas organizar que se ejecutaron con rangos." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "El número de filas sorted." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "El número de consultas organizar que se hicieron escaneando la tabla." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "El número de veces que un table lock fue adquirido inmediatamente." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13966,7 +13941,7 @@ msgstr "" "primero deberá optimizar sus consultas, y luego, ya sea partir sus tablas o " "usar replicación." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13976,11 +13951,11 @@ msgstr "" "puede calcularse como Threads_created/Connections. Si este valor es rojo, " "debe incrementar su thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "El número de conexiones abiertas actualmente." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13992,11 +13967,11 @@ msgstr "" "(Normalmente esto no aporta una mejoría notable en el rendimiento si usted " "tiene una buena implementación de procesos.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "Porcentaje de aciertos del caché de hilos (valor calculado)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "El número de procesos que no están en reposo." @@ -14005,57 +13980,57 @@ msgstr "El número de procesos que no están en reposo." msgid "Users of '%s' user group" msgstr "Usuarios del grupo de usuario '%s'" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "No se encontraron usuarios que pertenezcan a este grupo." -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "Groupos de usuario" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "Pestañas a nivel servidor" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "Pestañas a nivel base de datos" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "Pestañas a nivel tabla" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "Ver usuarios" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "Agregar groupo de usuarios" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "Editar grupo de usuarios: '%s'" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "Menú de asignaciones de grupos de usuario" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "Nombre del grupo:" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "Pestañas a nivel servidor" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "Pestañas a nivel base de datos" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "Pestañas a nivel tabla" @@ -14116,21 +14091,17 @@ msgstr "Se esperaba un corchete de cierre." msgid "Unrecognized data type." msgstr "Tipo de dato desconocido." -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "Corchete de cierre inesperado." - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "Se encontró anteriormente un alias." -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "Punto inesperado." -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 msgid "An alias was expected." msgstr "Se esperaba un alias." @@ -14186,108 +14157,108 @@ msgstr "Se esperaba terminar la cita %1$s." msgid "Variable name was expected." msgstr "Se esperaba el nombre de la variable." -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 msgid "Unexpected beginning of statement." msgstr "Comienzo inesperado de declaración." -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "Tipo de declaración desconocida." -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "Ninguna operación se inició anteriormente." -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "Símbolo (token) inesperado." -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "Este tipo de cláusula se analizó previamente." -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" "Se encontró una nueva declaración, pero no hay delimitador entre éste y el " "anterior." -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "Palabra clave no reconocida." -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "Se esperaba el nombre de la entidad." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 msgid "At least one column definition was expected." msgstr "Se esperaba la definición de al menos una columna." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "Se esperaba una palabra \"RETURNS\"." -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "Perfilación detallada" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "Orden" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "Estado" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "Resumen por estado" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "Tiempo Total" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "% de Tiempo" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "Llamadas" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "ø de Tiempo" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Guardar esta consulta en favoritos" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "Etiqueta:" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Permitir que todo usuario pueda acceder a este favorito" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "¡No se creó el favorito!" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" "Utilizando el favorito \"%s\" como consulta predeterminada para examinar." -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "Mostrar como código PHP" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " @@ -14296,7 +14267,7 @@ msgstr "" "La selección actual no contiene una columna única. La edición de la grilla y " "los enlaces de copiado, eliminación y edición no están disponibles. %s" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " @@ -14306,7 +14277,7 @@ msgstr "" "los enlaces de edición, copiado y eliminación pueden resultar en un " "comportamiento indeseado. %s" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas con los índices de la tabla `%s`" @@ -14334,27 +14305,27 @@ msgstr "Obtener consulta almacenada automáticamente" msgid "Bind parameters" msgstr "Enlazar parámetros" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "Guardar esta consulta en favoritos:" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Reemplazar el favorito existente que tenga el mismo nombre" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Delimitador" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Mostrar esta consulta otra vez" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "Deshacer («rollback») al finalizar" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Solamente ver" @@ -14398,112 +14369,112 @@ msgstr "Desactivar el seguimiento para %s" msgid "Deactivate now" msgstr "Desactivar ahora" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Creado/a" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Actualizado" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 msgid "Delete version" msgstr "Borrar versión" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Informe de seguimiento" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Instantánea de la estructura" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "activo/a" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "no activo/a" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "Realizando el seguimiento de las sentencias" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "Borrar fila de seguimiento de datos del reporte" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "No hay datos" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Muestra %1$s con fechas de %2$s a %3$s por parte del usuario %4$s %5$s" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "Volcado SQL (descarga de archivo)" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "Volcado SQL" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "Esta opción sustituirá tu tabla y los datos que contiene." -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "Ejecución SQL" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "Exportar como %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "Sentencia de manipulación de datos" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "Sentencia de definición de datos" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Fecha" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Nombre de usuario" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Captura de la versión %s (código SQL)" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Ninguna" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "Definición de seguimiento de datos eliminado exitosamente" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "Manipulación de seguimiento de datos eliminada exitosamente" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14511,61 +14482,61 @@ msgstr "" "Puede ejecutar el volcado creando y utilizando una base de datos temporal. " "Asegúrese de tener los privilegios para poder hacerlo." -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "Comenta estas dos líneas si no las necesitas." -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Sentencias SQL exportadas. Copia el volcado o ejecútalo." -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "Informe de seguimiento para la tabla `%s`" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Seguimiento de %1$s activado en versión %2$s." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Seguimiento para %1$s desactivado en versión %2$s." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Se borró la versión %1$s de %2$s." -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Se ha creado la versión %1$s, se ha activado el seguimiento para %2$s." -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Tablas sin seguimiento" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Hacer seguimiento a la tabla" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Tablas con seguimiento" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Última versión" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "Borrando los datos de seguimiento" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Versiones" @@ -14573,11 +14544,11 @@ msgstr "Versiones" msgid "Manage your settings" msgstr "Administrar tu configuración" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "Se guardó la configuración." -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14686,7 +14657,7 @@ msgstr "No hay bases de datos" msgid "View dump (schema) of databases" msgstr "Ver el volcado (schema) de la base de datos" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14713,7 +14684,7 @@ msgstr "" "phpMyAdmin no fue capaz de destruir el proceso %s. Probablemente ya ha sido " "cerrado." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "Privilegios insuficientes para ver las estadísticas de las consultas." @@ -15569,43 +15540,49 @@ msgstr "Dispersión" msgid "Stacked" msgstr "Apiladas" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "Título del gráfico" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "Eje X:" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "Series:" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "Etiqueta del eje X:" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "Valores X" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "Etiqueta del eje Y:" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Valores Y" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "Los nombres de serie se encuentran en una columna" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "Columna de series:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 msgid "Value Column:" msgstr "Valor de columna:" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "Guardar gráfico como archivo" @@ -15660,15 +15637,41 @@ msgstr "Comentario:" msgid "Drag to reorder" msgstr "Arrastrar para reordenar" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +msgid "Foreign key constraints" +msgstr "Restricciones de clave foránea" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "Acciones" + +#: templates/table/relation/common_form.phtml:10 +msgid "Constraint properties" +msgstr "Propiedades de la restricción" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "Sólo se mostrarán columnas con índices. Abajo puede definir un índice." + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "Restricción de clave foránea" + +#: templates/table/relation/common_form.phtml:60 +msgid "+ Add constraint" +msgstr "+ Añadir restricción" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "Relaciones internas" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "Relación interna" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15676,32 +15679,7 @@ msgstr "" "No es necesaria una relación interna cuando existe una relación CLAVE " "FORÁNEA correspondiente." -#: templates/table/relation/common_form.phtml:37 -msgid "Foreign key constraints" -msgstr "Restricciones de clave foránea" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "Acciones" - -#: templates/table/relation/common_form.phtml:41 -msgid "Constraint properties" -msgstr "Propiedades de la restricción" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "Sólo se mostrarán columnas con índices. Abajo puede definir un índice." - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "Restricción de clave foránea" - -#: templates/table/relation/common_form.phtml:83 -msgid "+ Add constraint" -msgstr "+ Añadir restricción" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "Elegir la columna a mostrar:" @@ -15830,7 +15808,7 @@ msgid "at beginning of table" msgstr "Al comienzo de la tabla" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 msgid "Partitions" msgstr "Particiones" @@ -15869,7 +15847,7 @@ msgstr "Dividido por:" msgid "Edit partitioning" msgstr "Remueva la partición" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "Editar vista" @@ -17311,6 +17289,40 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "«concurrent_insert» está definido como 0" +#~ 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" + +#~ 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" + +#~ msgid "tables" +#~ msgstr "mesas" + +#~ msgid "views" +#~ msgstr "Vistas" + +#~ msgid "procedures" +#~ msgstr "procedimientos" + +#~ msgid "events" +#~ msgstr "eventos" + +#~ msgid "functions" +#~ msgstr "Funciones" + +#~ msgid "Filter databases by name or regex" +#~ msgstr "Filtrar bases de datos por nombre o expresión regular" + +#~ msgid "Filter by name or regex" +#~ msgstr "Filtrar por nombre o expresión regular" + +#~ msgid "Unexpected closing bracket." +#~ msgstr "Corchete de cierre inesperado." + #~ msgid "Username and hostname didn't change." #~ msgstr "El nombre del usuario y el nombre del sistema central no cambiaron." diff --git a/po/et.po b/po/et.po index 0f10f37e9a..7ff9936a55 100644 --- a/po/et.po +++ b/po/et.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-27 08:28+0200\n" "Last-Translator: Kristjan Räts \n" -"Language-Team: Estonian " -"\n" +"Language-Team: Estonian \n" "Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,7 +17,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.5-dev\n" -#: changelog.php:37 license.php:30 +#: changelog.php:37 license.php:33 #, php-format msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " @@ -41,7 +41,7 @@ msgstr "Kliki sorteerimiseks." msgid "Showing rows %1$s - %2$s." msgstr "Kuvatakse read %1$s - %2$s." -#: db_create.php:61 +#: db_create.php:62 #, php-format msgid "Database %1$s has been created." msgstr "Andmebaas %1$s on loodud." @@ -50,13 +50,13 @@ msgstr "Andmebaas %1$s on loodud." msgid "Database comment" msgstr "Andmebaasi kommentaar" -#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:601 +#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:599 #: templates/columns_definitions/column_definitions_form.phtml:84 msgid "Table comments:" msgstr "Tabeli kommentaarid:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1568 +#: libraries/insert_edit.lib.php:1575 #: libraries/navigation/nodes/NodeColumn.php:34 #: libraries/plugins/export/ExportHtmlword.php:288 #: libraries/plugins/export/ExportHtmlword.php:384 @@ -66,13 +66,14 @@ msgstr "Tabeli kommentaarid:" #: libraries/plugins/export/ExportTexytext.php:282 #: libraries/plugins/export/ExportTexytext.php:373 #: libraries/plugins/export/PMA_ExportPdf.php:472 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:882 libraries/tracking.lib.php:978 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 +#: libraries/tracking.lib.php:892 libraries/tracking.lib.php:990 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:10 -#: templates/table/relation/common_form.phtml:43 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:27 +#: templates/table/relation/common_form.phtml:79 #: templates/table/relation/foreign_key_row.phtml:176 #: templates/table/relation/foreign_key_row.phtml:188 #: templates/table/relation/internal_relational_row.phtml:73 @@ -92,14 +93,14 @@ msgstr "Veerg" #: libraries/plugins/export/ExportTexytext.php:283 #: libraries/plugins/export/ExportTexytext.php:374 #: libraries/plugins/export/PMA_ExportPdf.php:474 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 #: libraries/rte/rte_list.lib.php:78 libraries/rte/rte_list.lib.php:106 #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2606 libraries/tracking.lib.php:883 -#: libraries/tracking.lib.php:975 +#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -109,7 +110,7 @@ msgstr "Tüüp" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:709 -#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1577 +#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1584 #: libraries/plugins/export/ExportHtmlword.php:294 #: libraries/plugins/export/ExportHtmlword.php:390 #: libraries/plugins/export/ExportLatex.php:517 @@ -118,9 +119,9 @@ msgstr "Tüüp" #: libraries/plugins/export/ExportTexytext.php:284 #: libraries/plugins/export/ExportTexytext.php:375 #: libraries/plugins/export/PMA_ExportPdf.php:476 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 -#: libraries/tracking.lib.php:885 libraries/tracking.lib.php:981 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/tracking.lib.php:895 libraries/tracking.lib.php:993 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 @@ -137,9 +138,9 @@ msgstr "Tühi" #: libraries/plugins/export/ExportTexytext.php:285 #: libraries/plugins/export/ExportTexytext.php:376 #: libraries/plugins/export/PMA_ExportPdf.php:478 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 -#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:886 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:896 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 @@ -151,8 +152,8 @@ msgstr "Vaikimisi" #: libraries/plugins/export/ExportOdt.php:488 #: libraries/plugins/export/ExportTexytext.php:378 #: libraries/plugins/export/PMA_ExportPdf.php:487 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:640 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:663 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 msgid "Links to" msgstr "Viitab aadressile" @@ -163,37 +164,38 @@ msgstr "Viitab aadressile" #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:381 #: libraries/plugins/export/PMA_ExportPdf.php:494 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:651 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:664 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:649 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 #: templates/columns_definitions/table_fields_definitions.phtml:65 msgid "Comments" msgstr "Kommentaarid" -#: db_datadict.php:155 libraries/controllers/TableStructureController.php:1189 -#: libraries/controllers/TableStructureController.php:1194 -#: libraries/tracking.lib.php:925 +#: db_datadict.php:155 +#: libraries/controllers/table/TableStructureController.php:1197 +#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:79 +#: templates/table/structure/display_structure.phtml:80 msgid "Primary" msgstr "Primaarne" -#: db_datadict.php:165 js/messages.php:370 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:371 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 -#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:403 -#: libraries/mult_submits.lib.php:417 +#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:408 +#: libraries/mult_submits.lib.php:422 #: libraries/plugins/export/ExportHtmlword.php:654 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:710 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2971 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3620 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1013 libraries/tracking.lib.php:1018 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2973 +#: libraries/server_privileges.lib.php:2993 +#: libraries/server_privileges.lib.php:3631 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -202,32 +204,32 @@ msgstr "Primaarne" msgid "No" msgstr "Ei" -#: db_datadict.php:165 js/messages.php:515 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:516 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 #: libraries/config/FormDisplay.tpl.php:280 -#: libraries/controllers/TableStructureController.php:770 -#: libraries/controllers/TableStructureController.php:1440 -#: libraries/controllers/TableStructureController.php:1449 -#: libraries/controllers/TableStructureController.php:1454 -#: libraries/controllers/TableStructureController.php:1459 -#: libraries/controllers/TableStructureController.php:1464 -#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:199 -#: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 -#: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 +#: libraries/controllers/table/TableStructureController.php:771 +#: libraries/controllers/table/TableStructureController.php:1448 +#: libraries/controllers/table/TableStructureController.php:1457 +#: libraries/controllers/table/TableStructureController.php:1462 +#: libraries/controllers/table/TableStructureController.php:1467 +#: libraries/controllers/table/TableStructureController.php:1472 +#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:200 +#: libraries/mult_submits.lib.php:344 libraries/mult_submits.lib.php:377 +#: libraries/mult_submits.lib.php:406 libraries/mult_submits.lib.php:420 #: libraries/plugins/export/ExportHtmlword.php:655 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:788 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:711 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2968 -#: libraries/server_privileges.lib.php:2989 -#: libraries/server_privileges.lib.php:3617 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1011 libraries/tracking.lib.php:1016 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2970 +#: libraries/server_privileges.lib.php:2991 +#: libraries/server_privileges.lib.php:3628 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -240,8 +242,8 @@ msgstr "Jah" msgid "View dump (schema) of database" msgstr "Vaata andmebaasi tõmmist (skeemi)" -#: db_export.php:51 db_tracking.php:102 export.php:382 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:176 +#: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 +#: libraries/controllers/DatabaseStructureController.php:157 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "Andmebaasist tabeleid ei leitud." @@ -258,7 +260,7 @@ msgstr "Tabelid" #: db_export.php:66 libraries/Menu.php:320 libraries/Menu.php:427 #: libraries/Util.php:3407 libraries/Util.php:3417 libraries/Util.php:3423 -#: libraries/Util.php:3702 libraries/Util.php:4339 libraries/Util.php:4356 +#: libraries/Util.php:3703 libraries/Util.php:4340 libraries/Util.php:4357 #: libraries/central_columns.lib.php:729 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:320 @@ -266,10 +268,10 @@ msgstr "Tabelid" #: libraries/config/user_preferences.forms.php:218 #: libraries/config/user_preferences.forms.php:259 #: libraries/config/user_preferences.forms.php:285 -#: libraries/import.lib.php:1299 libraries/navigation/nodes/NodeColumn.php:44 +#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:44 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 -#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:877 +#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:887 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -312,11 +314,11 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "phpMyAdmini seadistuse salvestus on deaktiveeritud. %sVaata põhjust%s." -#: db_qbe.php:135 +#: db_qbe.php:136 msgid "You have to choose at least one column to display!" msgstr "Näitamiseks pead valima vähemalt ühe veeru!" -#: db_qbe.php:152 +#: db_qbe.php:154 #, php-format msgid "Switch to %svisual builder%s" msgstr "Mine %sgraafilisele loojale%s" @@ -343,7 +345,7 @@ msgstr "" msgid "No tables selected." msgstr "Ühtegi tabelit ei ole valitud." -#: db_tracking.php:146 +#: db_tracking.php:149 msgid "Database Log" msgstr "Andmebaasi logi" @@ -377,7 +379,7 @@ msgstr "Sa võiksid lehekülje uuesti laadida." msgid "Bad type!" msgstr "Halb tüüp!" -#: export.php:276 +#: export.php:278 msgid "Bad parameters!" msgstr "Halvad parameetrid!" @@ -385,98 +387,98 @@ msgstr "Halvad parameetrid!" msgid "Invalid export type" msgstr "Vale ekspordi tüüp" -#: gis_data_editor.php:119 +#: gis_data_editor.php:117 #, php-format msgid "Value for the column \"%s\"" msgstr "\"%s\" veeru väärtus" -#: gis_data_editor.php:147 +#: gis_data_editor.php:145 #: templates/table/gis_visualization/gis_visualization.phtml:37 msgid "Use OpenStreetMaps as Base Layer" msgstr "Kasuta OpenStreetMaps kaarti põhjana" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:169 +#: gis_data_editor.php:167 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:192 +#: gis_data_editor.php:190 #, php-format msgid "Geometry %d:" msgstr "Geomeetria %d:" -#: gis_data_editor.php:214 +#: gis_data_editor.php:212 msgid "Point:" msgstr "Punkt:" -#: gis_data_editor.php:215 gis_data_editor.php:242 gis_data_editor.php:298 -#: gis_data_editor.php:371 js/messages.php:504 +#: gis_data_editor.php:213 gis_data_editor.php:240 gis_data_editor.php:296 +#: gis_data_editor.php:369 js/messages.php:505 msgid "X" msgstr "X" -#: gis_data_editor.php:218 gis_data_editor.php:246 gis_data_editor.php:302 -#: gis_data_editor.php:377 js/messages.php:505 +#: gis_data_editor.php:216 gis_data_editor.php:244 gis_data_editor.php:300 +#: gis_data_editor.php:375 js/messages.php:506 msgid "Y" msgstr "Y" -#: gis_data_editor.php:240 gis_data_editor.php:296 gis_data_editor.php:369 -#: js/messages.php:507 +#: gis_data_editor.php:238 gis_data_editor.php:294 gis_data_editor.php:367 +#: js/messages.php:508 #, php-format msgid "Point %d" msgstr "Punkt %d" -#: gis_data_editor.php:253 gis_data_editor.php:309 gis_data_editor.php:387 -#: js/messages.php:513 +#: gis_data_editor.php:251 gis_data_editor.php:307 gis_data_editor.php:385 +#: js/messages.php:514 msgid "Add a point" msgstr "Lisa punkt" -#: gis_data_editor.php:270 +#: gis_data_editor.php:268 #, php-format msgid "Linestring %d:" msgstr "Rea sõne %d:" -#: gis_data_editor.php:273 gis_data_editor.php:350 +#: gis_data_editor.php:271 gis_data_editor.php:348 msgid "Outer ring:" msgstr "Välimine ring:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:273 gis_data_editor.php:350 #, php-format msgid "Inner ring %d:" msgstr "Sisemine ring %d:" -#: gis_data_editor.php:312 +#: gis_data_editor.php:310 msgid "Add a linestring" msgstr "Lisa rea sõne" -#: gis_data_editor.php:313 gis_data_editor.php:392 js/messages.php:514 +#: gis_data_editor.php:311 gis_data_editor.php:390 js/messages.php:515 msgid "Add an inner ring" msgstr "Lisa sisemine ring" -#: gis_data_editor.php:334 +#: gis_data_editor.php:332 #, php-format msgid "Polygon %d:" msgstr "Hulktahukas %d:" -#: gis_data_editor.php:398 +#: gis_data_editor.php:396 msgid "Add a polygon" msgstr "Lisa hulktahukas" -#: gis_data_editor.php:404 +#: gis_data_editor.php:402 msgid "Add geometry" msgstr "Lisa geomeetria" -#: gis_data_editor.php:410 js/messages.php:345 libraries/DbSearch.php:462 -#: libraries/DisplayResults.php:1783 libraries/browse_foreigners.lib.php:142 +#: gis_data_editor.php:408 js/messages.php:346 libraries/DbSearch.php:462 +#: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:151 #: libraries/display_export.lib.php:404 libraries/display_export.lib.php:410 -#: libraries/display_import.lib.php:403 libraries/index.lib.php:42 -#: libraries/insert_edit.lib.php:1547 libraries/insert_edit.lib.php:1584 +#: libraries/display_import.lib.php:403 libraries/index.lib.php:45 +#: libraries/insert_edit.lib.php:1554 libraries/insert_edit.lib.php:1591 #: libraries/normalization.lib.php:168 libraries/normalization.lib.php:825 #: libraries/operations.lib.php:47 libraries/operations.lib.php:114 #: libraries/operations.lib.php:266 libraries/operations.lib.php:309 #: libraries/operations.lib.php:806 libraries/operations.lib.php:877 -#: libraries/operations.lib.php:926 libraries/operations.lib.php:1336 -#: libraries/operations.lib.php:1653 +#: libraries/operations.lib.php:926 libraries/operations.lib.php:1339 +#: libraries/operations.lib.php:1656 #: libraries/plugins/auth/AuthenticationCookie.php:239 #: libraries/replication_gui.lib.php:124 libraries/replication_gui.lib.php:163 #: libraries/replication_gui.lib.php:328 libraries/replication_gui.lib.php:465 @@ -485,12 +487,12 @@ msgstr "Lisa geomeetria" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2343 -#: libraries/server_privileges.lib.php:3114 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_user_groups.lib.php:285 -#: libraries/sql_query_form.lib.php:369 libraries/sql_query_form.lib.php:429 -#: libraries/tracking.lib.php:536 libraries/tracking.lib.php:656 +#: libraries/server_privileges.lib.php:2345 +#: libraries/server_privileges.lib.php:3116 +#: libraries/server_privileges.lib.php:3735 +#: libraries/server_user_groups.lib.php:290 +#: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 +#: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 #: prefs_manage.php:280 prefs_manage.php:358 #: templates/columns_definitions/column_definitions_form.phtml:64 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 @@ -503,11 +505,11 @@ msgstr "Lisa geomeetria" msgid "Go" msgstr "Mine" -#: gis_data_editor.php:413 +#: gis_data_editor.php:411 msgid "Output" msgstr "Väljund" -#: gis_data_editor.php:416 +#: gis_data_editor.php:414 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -519,7 +521,7 @@ msgstr "" msgid "Succeeded" msgstr "Õnnestus" -#: import.php:59 js/messages.php:588 +#: import.php:59 js/messages.php:589 msgid "Failed" msgstr "Nurjus" @@ -582,7 +584,7 @@ msgid "Could not load import plugins, please check your installation!" msgstr "" "Ei saanud importimise pluginaid laadida, palun kontrolli oma paigaldust!" -#: import.php:669 libraries/sql.lib.php:744 libraries/sql.lib.php:1468 +#: import.php:669 libraries/sql.lib.php:754 libraries/sql.lib.php:1485 #, php-format msgid "Bookmark %s has been created." msgstr "Loodi järjehoidja %s." @@ -614,7 +616,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "Importimise edenemise laadimine nurjus." -#: import_status.php:111 js/messages.php:444 libraries/Util.php:797 +#: import_status.php:111 js/messages.php:445 libraries/Util.php:797 #: libraries/export.lib.php:523 #: libraries/plugins/schema/ExportRelationSchema.php:301 user_password.php:268 msgid "Back" @@ -638,7 +640,7 @@ msgstr "" msgid "General settings" msgstr "Üldised sätted" -#: index.php:191 js/messages.php:617 +#: index.php:191 js/messages.php:618 #: libraries/display_change_password.lib.php:54 #: libraries/display_change_password.lib.php:57 user_password.php:262 msgid "Change password" @@ -738,7 +740,11 @@ msgstr "Hangi abi" msgid "List of changes" msgstr "Muudatuste nimekiri" -#: index.php:453 +#: index.php:438 libraries/server_plugins.lib.php:83 +msgid "License" +msgstr "Litsents" + +#: index.php:460 msgid "" "You are connected as 'root' with no password, which corresponds to the " "default MySQL privileged account. Your MySQL server is running with this " @@ -750,7 +756,7 @@ msgstr "" "avatud rünnakutele ja sa peaksid kindlasti selle turvaaugu parandama, " "määrates kasutajale 'root' parooli." -#: index.php:470 +#: index.php:477 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -759,7 +765,7 @@ msgstr "" "Oled PHP seadistuses lubanud mbstring.func_overload. See ei ühildu " "phpMyAdminiga ja võib andmeid rikkuda!" -#: index.php:485 +#: index.php:492 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -769,7 +775,7 @@ msgstr "" "märgitabelit. Ilma mbstring laiendita ei suuda phpMyAdmin sõnesid " "korralikult poolitada ja see võib viia ettearvamatute tulemusteni." -#: index.php:502 +#: index.php:509 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than " @@ -781,7 +787,7 @@ msgstr "" "kui phpMyAdminis seadistatud küpsise kehtivus. Seetõttu võib sessioon aeguda " "kiiremini, kui phpMyAdminis seadistatud." -#: index.php:521 +#: index.php:528 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -790,11 +796,11 @@ msgstr "" "küpsise kehtivus, seetõttu sinu sisselogimine aegub varem, kui phpMyAdminis " "seadistatud." -#: index.php:537 +#: index.php:544 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Seadistusfail vajab nüüd turvasõna (blowfish_secret)." -#: index.php:550 +#: index.php:557 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. It is strongly recommended to remove it " @@ -806,7 +812,7 @@ msgstr "" "kataloogi kindlasti kustutama. Vastasel korral võivad su serveri turvalisust " "ohustada isikud, kes on alla laadinud serveri seadistuste faili." -#: index.php:566 +#: index.php:573 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -815,14 +821,14 @@ msgstr "" "phpMyAdmini häälestuse salvestuskoht ei ole lõplikult häälestatud; mõned " "laiendatud funktsioonid ei ole aktiveeritud. %sVaata põhjust%s. " -#: index.php:573 +#: index.php:580 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "Alternatiivina mine suvalises andmebaasis sakile 'Operatsioonid' ja seadista " "ta seal." -#: index.php:619 +#: index.php:626 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -831,7 +837,7 @@ msgstr "" "Sinu PHP MySQL'i teegi versioon %s erineb sinu MySQL serveri versioonist %s. " "See võib põhjustada ettearvamatut käitumist." -#: index.php:647 +#: index.php:654 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -853,7 +859,7 @@ msgstr "Kinnita" msgid "Do you really want to execute \"%s\"?" msgstr "Kas tõesti tahad käivitada \"%s\"?" -#: js/messages.php:45 libraries/mult_submits.lib.php:397 +#: js/messages.php:45 libraries/mult_submits.lib.php:402 msgid "You are about to DESTROY a complete database!" msgstr "Oled KUSTUTAMAS kogu andmebaasi!" @@ -972,13 +978,6 @@ 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:95 -#| msgid "" -#| "Through this operation, MySQL attempts to map the data values between " -#| "collations. If the character sets are incompatible, there may be data " -#| "loss and this lost data may NOT be recoverable simply by changing " -#| "back the column collation(s). To convert existing data, it is " -#| "suggested to use the column(s) editing feature (the \"Change\" Link) on " -#| "the table structure page. " msgid "" "Through this operation, MySQL attempts to map the data values between " "collations. If the character sets are incompatible, there may be data loss " @@ -989,9 +988,10 @@ msgid "" msgstr "" "Selle tegevuse käigus proovib MySQL teisendada ühest sortimisest teise. Kui " "märgistikud ei ühildu, siis võib tekkida andmete kadu ja see kadu EI " -"pruugi olla tagasivõetav minnes tagasi veeru algsele sortimisele. " -"Olemasolevate andmete teisendamiseks on soovitatav kasutada veeru muutmise " -"funktsionaalsust (viit \"Muuda\") selle tabeli struktuuri leheküljel." +"pruugi olla tagasivõetav minnes tagasi veeru algsele sortimisele. " +"Olemasolevate andmete teisendamiseks on soovitatav kasutada veeru " +"muutmise funktsionaalsust (viit \"Muuda\") selle tabeli struktuuri " +"leheküljel." #: js/messages.php:104 msgid "" @@ -1006,7 +1006,7 @@ msgid "Save & close" msgstr "Salvesta ja sule" #: js/messages.php:109 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1551 prefs_manage.php:364 +#: libraries/insert_edit.lib.php:1558 prefs_manage.php:364 #: prefs_manage.php:375 msgid "Reset" msgstr "Lähtesta" @@ -1064,10 +1064,10 @@ msgstr "Palun vali indeksi veerg(u)." msgid "You have to add at least one column." msgstr "Pead lisama vähemalt ühe veeru." -#: js/messages.php:129 libraries/insert_edit.lib.php:1549 +#: js/messages.php:129 libraries/insert_edit.lib.php:1556 #: templates/columns_definitions/column_definitions_form.phtml:159 #: templates/table/index_form.phtml:237 -#: templates/table/relation/common_form.phtml:108 +#: templates/table/relation/common_form.phtml:127 msgid "Preview SQL" msgstr "SQL eelvaade" @@ -1110,8 +1110,8 @@ msgstr "Paroolid ei kattu!" msgid "Removing Selected Users" msgstr "Valitud kasutajate kustutamine" -#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:461 -#: libraries/tracking.lib.php:831 +#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:471 +#: libraries/tracking.lib.php:841 msgid "Close" msgstr "Sulge" @@ -1133,7 +1133,7 @@ msgstr "Mall on kustutatud." #. l10n: Other, small valued, queries #: js/messages.php:155 libraries/ServerStatusData.php:130 -#: libraries/server_status_queries.lib.php:148 +#: libraries/server_status_queries.lib.php:150 msgid "Other" msgstr "Muud" @@ -1300,7 +1300,7 @@ msgstr "Päringud" msgid "Traffic" msgstr "Liiklus" -#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4330 +#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4331 #: libraries/server_status_monitor.lib.php:258 msgid "Settings" msgstr "Sätted" @@ -1313,9 +1313,9 @@ msgstr "Lisa diagramm ruudustikku" msgid "Please add at least one variable to the series!" msgstr "Palun lisa seeriasse vähemalt üks muutuja!" -#: js/messages.php:216 libraries/DisplayResults.php:1477 +#: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1431,7 +1431,7 @@ msgstr "Muuda sätteid" msgid "Current settings" msgstr "Praegused sätted" -#: js/messages.php:253 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:253 msgid "Chart title" msgstr "Diagrammi pealkiri" @@ -1517,21 +1517,21 @@ msgstr "Analüüsimine…" msgid "Explain output" msgstr "Selgita väljundit" -#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4326 +#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4327 #: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:396 #: libraries/rte/rte_list.lib.php:104 -#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:282 -#: libraries/tracking.lib.php:1623 +#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:284 +#: libraries/tracking.lib.php:1639 msgid "Status" msgstr "Olek" -#: js/messages.php:289 js/messages.php:870 +#: js/messages.php:289 js/messages.php:862 #: libraries/plugins/export/ExportHtmlword.php:484 #: libraries/plugins/export/ExportOdt.php:600 #: libraries/plugins/export/ExportTexytext.php:445 #: libraries/plugins/export/PMA_ExportPdf.php:314 #: libraries/rte/rte_list.lib.php:93 -#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:239 +#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:243 msgid "Time" msgstr "Aeg" @@ -1616,10 +1616,10 @@ msgstr "" "Lähtestamine vaikimisi seadistusse…" #: js/messages.php:322 libraries/Menu.php:355 libraries/Menu.php:457 -#: libraries/Menu.php:578 libraries/Util.php:4329 libraries/Util.php:4344 -#: libraries/Util.php:4361 libraries/config/messages.inc.php:260 +#: libraries/Menu.php:578 libraries/Util.php:4330 libraries/Util.php:4345 +#: libraries/Util.php:4362 libraries/config/messages.inc.php:260 #: libraries/display_import.lib.php:108 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:241 +#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:241 #: setup/frames/menu.inc.php:26 msgid "Import" msgstr "Impordi" @@ -1676,7 +1676,13 @@ msgstr "Testi" msgid "Formatting SQL…" msgstr "SQL vormindamine…" -#: js/messages.php:346 libraries/server_variables.lib.php:159 +#: js/messages.php:343 +#, fuzzy +#| msgid "Bad parameters!" +msgid "No parameters found!" +msgstr "Halvad parameetrid!" + +#: js/messages.php:347 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 @@ -1687,59 +1693,59 @@ msgstr "SQL vormindamine…" msgid "Cancel" msgstr "Katkesta" -#: js/messages.php:349 libraries/Header.php:457 +#: js/messages.php:350 libraries/Header.php:457 msgid "Page-related settings" msgstr "Lehega seonduvad sätted" -#: js/messages.php:350 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:351 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Rakenda" -#: js/messages.php:353 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:354 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:124 msgid "Loading…" msgstr "Laadimine…" -#: js/messages.php:354 +#: js/messages.php:355 msgid "Request aborted!!" msgstr "Päring katkestatud!" -#: js/messages.php:355 +#: js/messages.php:356 msgid "Processing request" msgstr "Töödeldakse taotlust" -#: js/messages.php:356 +#: js/messages.php:357 msgid "Request failed!!" msgstr "Päring nurjus!" -#: js/messages.php:357 +#: js/messages.php:358 msgid "Error in processing request" msgstr "Taotluse töötlemisel esines viga" -#: js/messages.php:358 +#: js/messages.php:359 #, php-format msgid "Error code: %s" msgstr "Vea kood: %s" -#: js/messages.php:359 +#: js/messages.php:360 #, php-format msgid "Error text: %s" msgstr "Vea tekst: %s" -#: js/messages.php:360 libraries/db_common.inc.php:73 +#: js/messages.php:361 libraries/db_common.inc.php:73 #: libraries/db_table_exists.lib.php:33 libraries/server_databases.lib.php:462 msgid "No databases selected." msgstr "Ühtegi andmebaasi ei ole valitud." -#: js/messages.php:361 +#: js/messages.php:362 msgid "Dropping column" msgstr "Kustutatakse veergu" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Adding primary key" msgstr "Lisatakse primaarvõtit" -#: js/messages.php:363 +#: js/messages.php:364 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1749,164 +1755,164 @@ msgstr "Lisatakse primaarvõtit" msgid "OK" msgstr "OK" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Click to dismiss this notification" msgstr "Selle teate sulgemiseks kliki sellel" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Renaming databases" msgstr "Andmebaase nimetatakse ümber" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Copying database" msgstr "Andmebaasi kopeeritakse" -#: js/messages.php:369 +#: js/messages.php:370 msgid "Changing charset" msgstr "Märgitabeli muutmine" -#: js/messages.php:373 libraries/Util.php:3289 +#: js/messages.php:374 libraries/Util.php:3289 msgid "Enable foreign key checks" msgstr "Luba võõrvõtme(te) kontrollid" -#: js/messages.php:376 +#: js/messages.php:377 msgid "Failed to get real row count." msgstr "Ridade tegeliku arvu ei suudetud hankida." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Searching" msgstr "Otsimine" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide search results" msgstr "Peida otsingu tulemused" -#: js/messages.php:381 +#: js/messages.php:382 msgid "Show search results" msgstr "Näita otsingu tulemusi" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Browsing" msgstr "Vaatamine" -#: js/messages.php:383 +#: js/messages.php:384 msgid "Deleting" msgstr "Kustutamine" -#: js/messages.php:387 +#: js/messages.php:388 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Salvestatud funktsioon peab sisaldama RETURN käsku!" -#: js/messages.php:388 libraries/DisplayResults.php:4832 -#: libraries/DisplayResults.php:5091 libraries/Menu.php:347 -#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3709 -#: libraries/Util.php:3710 libraries/Util.php:4328 libraries/Util.php:4343 -#: libraries/Util.php:4360 libraries/config/messages.inc.php:254 +#: js/messages.php:389 libraries/DisplayResults.php:4850 +#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 +#: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 +#: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2448 -#: libraries/server_privileges.lib.php:2527 -#: libraries/server_privileges.lib.php:2873 -#: libraries/server_privileges.lib.php:3532 -#: libraries/server_status_monitor.lib.php:321 prefs_manage.php:306 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2875 +#: libraries/server_privileges.lib.php:3543 +#: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 msgid "Export" msgstr "Ekspordi" -#: js/messages.php:391 libraries/rte/rte_routines.lib.php:742 +#: js/messages.php:392 libraries/rte/rte_routines.lib.php:742 msgid "ENUM/SET editor" msgstr "ENUM/SET toimeti" -#: js/messages.php:392 +#: js/messages.php:393 #, php-format msgid "Values for column %s" msgstr "%s veeru väärtused" -#: js/messages.php:393 +#: js/messages.php:394 msgid "Values for a new column" msgstr "Uue veeru väärtused" -#: js/messages.php:394 +#: js/messages.php:395 msgid "Enter each value in a separate field." msgstr "Sisesta iga väärtus eraldi väljale." -#: js/messages.php:395 +#: js/messages.php:396 #, php-format msgid "Add %d value(s)" msgstr "Lisa %d väärtus(t)" -#: js/messages.php:399 +#: js/messages.php:400 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:403 +#: js/messages.php:404 msgid "Hide query box" msgstr "Peida päringu kast" -#: js/messages.php:404 +#: js/messages.php:405 msgid "Show query box" msgstr "Näita päringu kasti" -#: js/messages.php:405 libraries/Console.php:88 libraries/Console.php:217 -#: libraries/DisplayResults.php:3457 libraries/DisplayResults.php:4816 +#: js/messages.php:406 libraries/Console.php:88 libraries/Console.php:217 +#: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4834 #: libraries/Index.php:721 libraries/Util.php:727 libraries/Util.php:1238 -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:119 +#: libraries/server_user_groups.lib.php:121 #: libraries/server_variables.lib.php:242 #: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 msgid "Edit" msgstr "Muuda" -#: js/messages.php:406 libraries/Console.php:89 libraries/DbSearch.php:360 -#: libraries/DisplayResults.php:3526 libraries/DisplayResults.php:4800 +#: js/messages.php:407 libraries/Console.php:89 libraries/DbSearch.php:360 +#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4818 #: libraries/central_columns.lib.php:854 #: libraries/central_columns.lib.php:1200 libraries/display_export.lib.php:227 -#: libraries/server_user_groups.lib.php:129 -#: libraries/sql_query_form.lib.php:416 libraries/tracking.lib.php:480 +#: libraries/server_user_groups.lib.php:131 +#: libraries/sql_query_form.lib.php:417 libraries/tracking.lib.php:490 #: setup/frames/index.inc.php:187 setup/frames/index.inc.php:295 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Kustuta" -#: js/messages.php:407 libraries/DisplayResults.php:915 -#: libraries/DisplayResults.php:923 +#: js/messages.php:408 libraries/DisplayResults.php:919 +#: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d ei ole õige reanumber." -#: js/messages.php:408 -#: libraries/controllers/table/TableSearchController.php:435 -#: libraries/controllers/table/TableSearchController.php:920 -#: libraries/sql.lib.php:193 tbl_change.php:159 +#: js/messages.php:409 +#: libraries/controllers/table/TableSearchController.php:432 +#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "Sirvi võõrvõtme väärtusi" -#: js/messages.php:409 +#: js/messages.php:410 msgid "No auto-saved query" msgstr "Automaatselt salvestatud päringuid ei ole" -#: js/messages.php:410 +#: js/messages.php:411 #, php-format msgid "Variable %d:" msgstr "Muutuja %d:" -#: js/messages.php:413 libraries/normalization.lib.php:889 +#: js/messages.php:414 libraries/normalization.lib.php:889 msgid "Pick" msgstr "Vali" -#: js/messages.php:414 +#: js/messages.php:415 msgid "Column selector" msgstr "Veeru valija" -#: js/messages.php:415 +#: js/messages.php:416 msgid "Search this list" msgstr "Otsi sellest loendist" -#: js/messages.php:417 +#: js/messages.php:418 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1915,15 +1921,15 @@ msgstr "" "Keskne loend ei sisalda veerge. Palun kontrolli, et andmebaasi %s keskne " "veergude loend sisaldaks veerge, mis puuduvad aktiivsest tabelist." -#: js/messages.php:420 +#: js/messages.php:421 msgid "See more" msgstr "Vaata lisaks" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Are you sure?" msgstr "Oled sa kindel?" -#: js/messages.php:423 +#: js/messages.php:424 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1931,51 +1937,51 @@ msgstr "" "See tulemusel võivad muutuda mõnede veergude kirjeldused.
Kas sa oled " "kindel, et jätkata?" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "Jätka" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "Lisa primaarvõti" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "Primaarvõti lisatud." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "Viiakse sind järgmisele sammule…" -#: js/messages.php:433 +#: js/messages.php:434 #, 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:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "Sammu lõpp" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "Normaliseeriminse teine samm (2NK)" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Valmis" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "Kinnita osalised sõltuvused" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "Valitud osalised sõltuvused on järgnevad:" -#: js/messages.php:440 +#: js/messages.php:441 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1983,21 +1989,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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "Ühtegi osalist sõltuvust ei ole valitud!" -#: js/messages.php:446 +#: js/messages.php:447 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:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "Peida osaliste sõltuvuste nimekiri" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2005,166 +2011,166 @@ msgstr "" "Palun oota! See võib võtta aega mõned sekundid olenevalt andmete suurused ja " "tabeli veergude arvust." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "Samm" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "Teostatakse järgnevad päringud:" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "Kustuta (DROP) veerud %s tabelist %s" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "Loo järgmine tabel" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "Normaliseerimise kolmas samm (3NK)" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "Kinnita transitiivsed sõltuvused" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "Valitud sõltuvused on järgnevad:" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "Ühtegi sõltuvust ei ole valitud!" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Salvesta" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Peida otsingu kriteerium" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Näita otsingu kriteeriumi" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "Vahemiku otsing" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "Veeru maksimum:" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "Veeru miinimum:" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "Väikseim väärtus:" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "Suurim väärtus:" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "Peida 'leia ja asenda' kriteerium" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "Kuva 'leia ja asenda' kriteeriumi" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "Iga punkt tähendab andmete rida." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "Kursori üleliigutamisel näitab punkt selle nime." -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Vali graafiku suumitav ala hiirega." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "Algoleku taastamiseks vajuta suurenduse lähtestamise nuppu." -#: js/messages.php:490 +#: js/messages.php:491 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:492 +#: js/messages.php:493 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:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "Vali kaks veergu" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "Vali kaks erinevat veergu" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "Andmepunkti sisu" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignoreeri" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Kopeeri" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Punkt" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Rea sõne" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Hulktahukas" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geomeetria" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "Sisemine ring" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "Välimine ring" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "Kas sa soovid kopeerida krüpteerimisvõtme?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "Krüpteerimisvõti" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2172,24 +2178,24 @@ msgstr "" "Näitab, et lehel on tehtud muudatusi; muudatustest loobumisel küsitakse su " "käest kinnitust" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Vali osutatud võti" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Vali võõrvõti" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "Palun vali primaarvõti või unikaalne nimi!" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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:532 +#: js/messages.php:533 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?" @@ -2197,77 +2203,77 @@ msgstr "" "Sa ei ole muudatusi salvestanud. Kui sa neid ei salvesta, siis need lähevad " "kaotsi. Kas soovid jätkata?" -#: js/messages.php:535 +#: js/messages.php:536 msgid "Page name" msgstr "Lehe nimi" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Salvesta leht" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Ava lehe" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "Kustuta leht" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Nimetu" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "Palun vali jätkamiseks leht" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "Palun sisesta korrektne lehe nimi" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "Kas sa soovid salvestada muudatused sellel leheküljel?" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "Lehekülje kustutamine õnnestus" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "Ekspordi seosteskeem" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Muutused on salvestatud" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "Lisa säte veerule \"%s\"." -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "Loodi %d objekt(i)." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Saada" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "Muutmisest loobumiseks vajuta ESC." -#: js/messages.php:557 +#: js/messages.php:558 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?" @@ -2275,15 +2281,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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "Järjekorra muutmiseks lohista." -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "Klõpsa selle veeru järgi sortimiseks." -#: js/messages.php:563 +#: js/messages.php:564 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 " @@ -2293,26 +2299,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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "Klõpsa valimiseks/mittevalimiseks." -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "Veeru nime kopeerimiseks tee sellel topeltklõps." -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Veeru nähtavuse muutmiseks
vajuta alla suunatud noolele." -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Näita kõiki" -#: js/messages.php:574 +#: js/messages.php:575 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." @@ -2321,12 +2327,12 @@ msgstr "" "märkeruutudega, muutmisega, kopeerimisega ja kustutamisega seotud " "funktsionaalsus ei pruugi pärast salvestamist toimida." -#: js/messages.php:578 +#: js/messages.php:579 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:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2334,124 +2340,93 @@ msgstr "" "Kas sa soovid tõesti näha kõiki ridu? Suur tabel nagu see võib põhjustada " "krahhi lehitsejas." -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "Algne pikkus" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "katkesta" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Katkestatud" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "Õnnestus" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "Impordi olek" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Kukuta failid siia" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "Vali esmalt andmebaas" -#: js/messages.php:598 +#: js/messages.php:599 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:603 +#: js/messages.php:604 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:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "Mine lingile:" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "Kopeeri veeru nimi." -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "Veeru nime kopeerimiseks lõikelauale paremklõpsa sellel." -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Genereeri parool" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Genereeri" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "Rohkem" -#: js/messages.php:623 +#: js/messages.php:624 msgid "Show panel" msgstr "Paneeli kuvamine" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "Peida paneel" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "Kuva peidetud navigeerimispaneeli elemendid." -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "Lingi peapaneeli" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "Kustuta link peapaneeli" -#: js/messages.php:629 -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:631 -#, 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:632 -msgid "tables" -msgstr "tabelid" - -#: js/messages.php:633 -msgid "views" -msgstr "vaated" - -#: js/messages.php:634 -msgid "procedures" -msgstr "toimingud" - -#: js/messages.php:635 -msgid "events" -msgstr "sündmused" - -#: js/messages.php:636 -msgid "functions" -msgstr "funktsioonid" - -#: js/messages.php:640 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:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2461,41 +2436,41 @@ msgstr "" "Uusim versioon on %s, välja antud %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", viimane stabiilne versioon:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "ajakohane" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "Loo vaade" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "Saada vearaport" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "Saada vearaport" -#: js/messages.php:657 +#: js/messages.php:649 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:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "Muuda raporti sätteid" -#: js/messages.php:660 +#: js/messages.php:652 msgid "Show report details" msgstr "Kuva raporti detailid" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2503,7 +2478,7 @@ msgstr "" "Su eksport on mittetäielik, sest PHP skripti töötamiseks lubatud aeg on " "liiga väike!" -#: js/messages.php:667 +#: js/messages.php:659 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2512,58 +2487,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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "Server tuvastas mõned vead!" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "Palun vaata selle akna alumisse serva." -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "Ignoreeri kõiki" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "Palun oota, sinu seadistust saadetakse hetkel." -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "Kas käivitada see päring uuesti?" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "Kas sa soovid tõesti kustutada selle järjehoidja?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "SQL silumisinfo hankimisel esines vigu." -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s päringut käivitati %s korda %s sekundiga." -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "edastati %s argument(i)" -#: js/messages.php:707 +#: js/messages.php:699 msgid "Show arguments" msgstr "Kuva argumendid" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "Peida argumendid" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "Aega kulus:" -#: js/messages.php:711 +#: js/messages.php:703 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 " @@ -2574,291 +2549,291 @@ msgstr "" "töötada. Safaris põhjustab seda tavaliselt \"Privaartrežiimis lehitsemine" "\" (\"Private Mode Browsing\")." -#: js/messages.php:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "Eelmine" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "Järgmine" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Täna" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "Jaanuar" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "Veebruar" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "Märts" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "Aprill" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Mai" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "Juuni" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "Juuli" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "August" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "September" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "Oktoober" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "November" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "Detsember" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Jaan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Veebr" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Märts" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Aprill" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Juuni" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Juuli" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Sept" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Dets" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "Pühapäev" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "Esmaspäev" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "Teisipäev" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "Kolmapäev" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "Neljapäev" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "Reede" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "Laupäev" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "Püh" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Esm" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Tei" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Kol" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Nel" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Ree" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Lau" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "P" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "E" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "T" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "K" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "N" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "R" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "L" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "Näd" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "kalender-kuu-aasta" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "puudub" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Tund" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Minut" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Sekund" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "See väli on kohustuslik" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "Palun paranda see väli" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "Palun sisesta korrektne e-posti aadress" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "Palun sisesta korrektne URL" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "Palun sisesta korrektne kuupäev" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "Palun sisesta korrektne kuupäev (ISO)" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "Palun sisesta korrektne number" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "Palun sisesta korrektne krediitkaardi number" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "Palun sisesta ainult numbrid" @@ -2866,41 +2841,41 @@ msgstr "Palun sisesta ainult numbrid" msgid "Please enter the same value again" msgstr "Palun sisesta sama väärtus uuesti" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "Palun sisesta kuni {0} märki" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "Palun sisesta vähemalt {0} märki" -#: js/messages.php:896 +#: js/messages.php:907 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:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "Palun sisesta väärtus vahemikust {0} kuni {1}" -#: js/messages.php:898 +#: js/messages.php:917 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:899 +#: js/messages.php:922 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:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "Palun sisesta korrektne kuupäev või kellaaeg" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "Palun sisesta korrektne 16-nd väärtus" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Viga" @@ -2987,11 +2962,12 @@ msgstr "Korduspäring" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3033,7 +3009,7 @@ msgstr "Jooksvas sessioonis" msgid "Explain" msgstr "Selgita" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Profileerimine" @@ -3067,8 +3043,8 @@ msgid "History" msgstr "Ajalugu" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3215,31 +3191,31 @@ msgstr "" msgid "Switch to dark theme" msgstr "Vali tume teema" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" "Server ei vasta (või kohaliku serveri sokkel ei ole õigesti seadistatud)." -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "Server ei vasta." -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "Palun kontrolli andmebaasi sisaldava kataloogi õigusi." -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Detailid…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "Sinu seadistuses määratud kontrollkasutajaga ühendamine ebaõnnestus." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3249,8 +3225,8 @@ msgstr "Sinu seadistuses määratud kontrollkasutajaga ühendamine ebaõnnestus. msgid "Ascending" msgstr "Kasvav" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3393,8 +3369,8 @@ msgstr[0] "%1$s vaste %2$s tabelis" msgstr[1] "%1$s vastet %2$s tabelis" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3436,119 +3412,120 @@ msgstr "Ära vali ühtegi" msgid "Inside column:" msgstr "Veerust:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "Salvesta muudetud andmed" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "Taasta veeru järjekord" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "Filtreeritud read" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "Otsi sellest tabelist" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "Algus" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "Eelmine" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "Järgmine" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "Lõpp" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Kõik" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Ridade hulk:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Sorteeri võtme alusel" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "Osalised tekstid" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "Täistekstid" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Seose võti" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 msgid "Display column for relations" msgstr "Kuva suhete nägemiseks veerg" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "Näita binaarsisu" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "Näita BLOB sisu" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "Peida veebilehitseja transformatsioon" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "Harilik tekst" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "Harilik binaar" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "Rida on kustutatud." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Sulge" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Võib olla umbkaudne. Vaata [doc@faq3-11]KKK 3.11[/doc]." -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "Sinu SQL päring teostati edukalt." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3556,64 +3533,64 @@ msgid "" msgstr "" "Sellel vaatel on vähemalt nii palju ridu. Palun loe %sdokumentatsiooni%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "Kuvatakse read %1s - %2s" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "Kokku %1$d, päringus %2$d" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "kokku: %d" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "päring kestis %01.4f sekundit." -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Valitutega:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 msgid "Check all" msgstr "Vali kõik" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Prindi vaade" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Päringu tulemuste tegevused" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Näita diagrammi" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "Visualiseeri GIS andmed" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "Linki ei leitud!" @@ -3707,19 +3684,19 @@ msgstr "Indeksit pole määratud!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Indeksid" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3728,24 +3705,24 @@ msgid "Action" msgstr "Tegevus" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Võtme nimi" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Ainulaadne" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Pakitud" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Hulk" @@ -3753,8 +3730,8 @@ msgstr "Hulk" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3764,8 +3741,8 @@ msgid "Collation" msgstr "Kodeering" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3781,15 +3758,15 @@ msgstr "Primaarvõti on kustutatud." msgid "Index %s has been dropped." msgstr "%s indeks on kustutatud." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Kustuta" @@ -3829,12 +3806,13 @@ msgstr "Vaade" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3842,7 +3820,7 @@ msgstr "Tabel" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3851,8 +3829,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3860,41 +3838,41 @@ msgid "Search" msgstr "Otsi" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Lisa" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Õigused" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Tegevused" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Jälgimine" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3905,16 +3883,16 @@ msgstr "Päästikud" msgid "Database seems to be empty!" msgstr "Andmebaas tundub olevat tühi!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Päring" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Funktsioonid" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3922,20 +3900,20 @@ msgstr "Funktsioonid" msgid "Events" msgstr "Sündmused" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Kujundaja" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "Kesksed veerud" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Andmebaasid" @@ -3944,33 +3922,33 @@ msgid "User accounts" msgstr "Kasutajate kontod" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Binaarne logi" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Paljundamine" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Muutujad" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Märgitabelid" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Mootorid" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "Pluginad" @@ -4265,7 +4243,7 @@ msgstr "Ei saa muuta indeksi nimeks PRIMARY!" msgid "No index parts defined!" msgstr "Indeksi osasid pole defineeritud!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Viga võõrvõtme loomisel kohas %1$s (kontrolli andmete tüüpe)" @@ -4734,37 +4712,37 @@ msgstr "Seda %s funktsionaalsust mõjutas tuntud viga, vaata %s" msgid "Click to toggle" msgstr "Muuda" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Sirvi oma arvutist:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Vali veebiserveri üleslaadimise kataloogist %s:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Valitud üleslaadimise kataloogile ei pääse ligi." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "Puuduvad failid, mida üles laadida!" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Tühjenda" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "Teosta" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Prindi" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "Kasutajad" @@ -4926,8 +4904,8 @@ msgid "Add new column" msgstr "Lisa uus veerg" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -4993,19 +4971,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "Peaksid uuendama %s %s või uuemale versioonile." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "Viga: sobimatu sümbol" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS ülekirjutamise katse" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "võimalik turvaauk" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "tuvastati arvvõti" @@ -5842,7 +5820,7 @@ msgid "Remember file name template" msgstr "Jäta meelde faili nime mall" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Lisa AUTO_INCREMENT väärtus" @@ -5881,7 +5859,7 @@ msgstr "Ekspordi seotud metaandmed phpMyAdmini häälestuse salvestuskohast" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Lisa %s" @@ -7565,7 +7543,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "Määrab, kas päringukast jääb ekraanile pärast päringu saatmist." -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "Säilita päringu kast" @@ -7865,101 +7843,33 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "OpenDocument tekst" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "Lemmikute nimekiri on täis!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Tabel %s on tühjendatud." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "Vaade %s kustutati." -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "Tabel %s kustutati." -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "Lemmikute nimekiri on täis!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "tundmatu" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -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.php:250 -msgid "No column selected." -msgstr "Veergu ei ole valitud." - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "Veerud on edukalt liigutatud." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "Tabeli %1$s muutmine õnnestus." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "Päringu viga" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Muuda" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Indeks" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "Ruumiline" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Täistekst" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "Erista väärtusi" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -7973,6 +7883,14 @@ msgstr "Graafiku loomiseks puuduvad tabelis numbritüüpi veerud." msgid "No data to display" msgstr "Puuduvad kuvatavad andmed" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "Tabeli %1$s muutmine õnnestus." + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "Kuva veergu uuendati edukalt." @@ -7981,19 +7899,79 @@ msgstr "Kuva veergu uuendati edukalt." msgid "Internal relations were successfully updated." msgstr "Sisemised seosete värskendamine oli edukas." -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "Tabeli otsing" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "Laienda otsingut" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Otsi ja asenda" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +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/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "Veergu ei ole valitud." + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "Veerud on edukalt liigutatud." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "Päringu viga" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Muuda" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Indeks" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "Ruumiline" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Täistekst" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "Erista väärtusi" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8003,7 +7981,7 @@ msgstr "%s laiend on puudu. Palun kontrolli oma PHP seadistust." msgid "possible deep recursion attack" msgstr "võimalik tõsine rünnak" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Ei muudetud" @@ -8072,7 +8050,7 @@ msgstr "Loo" msgid "Create database:" msgstr "Loo andmebaas:" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Õigused puuduvad" @@ -8794,65 +8772,65 @@ msgid "Dump has been saved to file %s." msgstr "Tõmmis salvestati %s faili." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL tagastas tühja tulemuse (s.t nulliread)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "[Toimus tagasipööramine.]" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Järgnevaid struktuure on kas loodud või muudetud. Siin saad:" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "Vaata struktuuri sisu, klõpsates selle nimel." -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "Muuda selle mistahes sätet, klõpsates vastaval \"Valikud\" lingil." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "Struktuuri muutmiseks klõpsa lingil \"Struktuur\"." -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "Mine andmebaasi: %s" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "Muuda %s sätteid" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "Mine tabelisse: %s" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "%s struktuur" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "Mine vaatesse: %s" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" "Simuleerida on võimalik ainult ühe tabeli uuendamise ja kustutamise " "päringuid." -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8860,7 +8838,7 @@ msgstr "" "Tagasi on võimalik pöörata ainult lisamise, uuendamise ja asendamise SQL " "päringuid, mis sisaldavad transaktsioonilise mootori tabeleid." -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "Loo indeks  %s veergudesse" @@ -8883,73 +8861,73 @@ msgstr "Funktsioon" msgid "Binary" msgstr "Binaarne" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "Oma pikkuse tõttu ei pruugi
see veerg olla muudetav." -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Binaarne - ära muuda" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Või" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "veebiserveri üleslaadimiskataloog:" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "Muuda/Lisa" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "Jätka %s rea lisamist" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "ja siis" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Lisa uue reana" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "Lisa uue reana ja ignoreeri vigu" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "Näita lisamise päringut" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Mine eelmisele lehele tagasi" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Lisa järgmine uus rida" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Mine tagasi sellele lehele" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Muuda järgmist rida" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" "Ühelt väärtuselt teisele liikumiseks kasuta klahvi TAB; mujale liikumiseks " "kasuta CTRL + nooled." -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -8961,11 +8939,11 @@ msgstr "" msgid "Value" msgstr "Väärtus" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "Näitan SQL päringut" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "Lisatud rea id: %1$d" @@ -8981,35 +8959,35 @@ msgstr "Puudub" msgid "Convert to Kana" msgstr "Konverdi Kana'ks" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Õnnestus!" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "Asenda tabeli eesliide:" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "Kopeeri tabel eesliitega:" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "Kohast" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "Kohta" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "Lisa tabeli eesliide:" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "Lisa eesliide" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "Kas tõesti tahad käivitada selle päringu?" @@ -9227,8 +9205,8 @@ msgstr "Toimingud:" msgid "Views:" msgstr "Vaated:" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Näita" @@ -9268,18 +9246,15 @@ msgstr[0] "%s tulemus leitud" msgstr[1] "%s tulemust leitud" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" -msgstr "Filtreeri andmebaase nime või regulaaravaldise alusel" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 msgid "Clear fast filter" msgstr "Puhasta kiire filter" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "Filtreeri nime või regulaaravaldise alusel" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "Ahenda kõik" @@ -9698,7 +9673,7 @@ msgstr "Andmebaasi uus nimi" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9709,7 +9684,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Kohanda õiguseid" @@ -9727,18 +9702,18 @@ msgstr "Kustuta andmebaas" msgid "Drop the database (DROP)" msgstr "Kustuta andmebaas (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Ainult struktuur" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Struktuur ja andmed" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Ainult andmed" @@ -9750,7 +9725,7 @@ msgstr "Kopeeri andmebaas kohta" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE enne kopeerimist" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Lisa piiranguid" @@ -9790,157 +9765,157 @@ msgstr "Varundusmootor" msgid "Change all column collations" msgstr "Vaheta kõigi veergude sortimist" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Kopeeri tabel kohta (andmebaas.tabel)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Mine kopeeritud tabelisse" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Tabeli hooldus" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Analüüsi tabelit" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Kontrolli tabelit" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 msgid "Checksum table" msgstr "Kontrollsumma tabel" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Defragmendi tabel" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "Tabeli %s välismälu on tühjendatud." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "Puhasta tabel (FLUSH)" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Optimeeri tabelit" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Paranda tabelit" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "Kustuta andmed või tabel" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "Tühjenda tabel (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "Kustuta tabel (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Analüüsi" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Kontrolli" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Optimeeri" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Loo uuesti" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Paranda" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "Kärbi" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 msgid "Coalesce" msgstr "Sulanda kokku" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "Partitsiooni hooldus" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "%s partitsioon" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "Eemalda partitsioneerimine" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Kontrolli pärinevust:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Ei saa tabelit iseendasse liigutada!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Ei saa tabelit iseendasse kopeerida!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabel %s liigutati andmebaasi %s. Õiguseid kohandati vastavalt." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabel %s kopeeriti andmebaasi %s. Õiguseid kohandati vastavalt." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "%s tabel liigutati %s andmebaasi." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "%s tabel kopeeriti %s andmebaasi." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Tabeli nimi on tühi!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "Sellel formaadil pole valikuid" @@ -10112,7 +10087,7 @@ msgstr "Andmete tõmmise valikud" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Andmete tõmmistamine tabelile" @@ -10136,21 +10111,21 @@ msgstr "Definitsioon" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Tabeli struktuur tabelile" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Vaate struktuur" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Sise-vaate struktuur" @@ -10240,7 +10215,7 @@ msgid "Database:" msgstr "Andmebaas:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "Andmed:" @@ -10341,7 +10316,7 @@ msgid "Data creation options" msgstr "Andmete loomise valikud" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "Kärbi tabelit enne lisamist" @@ -10424,8 +10399,8 @@ msgstr "Tundub, et su tabel kasutab protseduure;" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" "aliaste eksportimine võib mõningatel juhtudel töötada mitte usaldusväärselt." @@ -10434,81 +10409,81 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "Tundub, et su tabel kasutab funktsioone;" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 msgid "Metadata" msgstr "Metaandmed" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "%s metaandmed" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Loodud:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Viimati uuendatud:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Viimane kontroll:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "kasutusel" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "Tundub, et su andmebaas kasutab vaateid;" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Tõmmistatud tabelite piirangud" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Piirangud tabelile" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "Indeksid tõmmistatud tabelitele" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "Indeksid tabelile" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT tõmmistatud tabelitele" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT tabelile" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "Tundub, et su tabel kasutab trigereid;" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "Vaate %s struktuur eksporditi tabelina" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "Andmete lugemisel esines viga:" @@ -10750,9 +10725,9 @@ msgstr "Seoseskeem" msgid "Table of contents" msgstr "Sisu tabel" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Lisaks" @@ -10969,47 +10944,47 @@ msgstr "Vormindab teksti süntaksi esiletõstuga JSON objektiks." msgid "Formats text as XML with syntax highlighting." msgstr "Vormindab teksti süntaksi esiletõstuga XML failiks." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Viga: seos on juba olemas." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "FOREIGN KEY seos on lisatud." -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Viga: välisvõtme (FOREIGN KEY) seose lisamine nurjus!" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "Viga: veeru(de)l puuduv(ad) indeks(id)." -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "Viga: Seoste funksionaalsusega seonduv on keelatud!" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "Sisemine seos on loodud." -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 msgid "Error: Internal relation could not be added!" msgstr "Viga: Sisemise seose lisamine nurjus!" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 msgid "FOREIGN KEY relation has been removed." msgstr "Välisvõtme (FOREIGN KEY) seos on kustutatud." -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Viga: Välisvõtme (FOREIGN KEY) seose kustutamine nurjus!" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 msgid "Error: Internal relation could not be removed!" msgstr "Viga: Sisemise seose kustutamine nurjus!" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "Sisemine seos on kustutatud." @@ -11055,68 +11030,68 @@ msgid "Please see the documentation on how to update your column_info table. " msgstr "" "Palun loe dokumentatsioonist, kuidas uuendada oma column_info tabelit. " -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Järjehoidjaga SQL päring" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL ajalugu" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "Püsivad hiljuti kasutatud tabelid" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 msgid "Persistent favorite tables" msgstr "Püsivad lemmiktabelid" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "Püsivate tabelite UI eelistused" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "Kasutaja eelistused" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "Seadistatavad menüüd" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "Peida/kuva navigeerimiselemendid" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "Salvestatakse näidispäringu otsinguid" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "Veergude keskse nimekirja haldamine" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "Disaineri seadistuse meeldejätmine" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 msgid "Saving export templates" msgstr "Ekspordimallide salvestamine" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "Täpsema funktsionaalsuse seadistamise kiirsammud:" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "Loo vajalikud tabelid %screate_tables.sql failiga." -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "Loo pma kasutaja ja anna juurdepääs nendele tabelitele." -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -11124,15 +11099,15 @@ msgstr "" "Luba täpsem funktsionaalsus häälestusfailis (config.inc.php). " "Näiteks alustades config.sample.inc.php failist." -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "Uuendatud seadistuse faili laadimiseks logi phpMyAdmini uuesti sisse." -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "kirjeldus puudub" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11142,7 +11117,7 @@ msgstr "" "suvalise andmebaasi kaardile 'Operatsioonid' ja määrata phpMyAdmini " "häälestuse salvestamine sinna." -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11151,14 +11126,14 @@ msgstr "" "%sLoo%s andmebaas 'phpmyadmin' ja häälesta phpMyAdmini seadistuse " "salvestamine sinna." -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" "%sLoo%s phpMyAdmini seadistuse salvestuse tabelid aktiivses andmebaasis." -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "%sLoo%s puuduvad phpMyAdmini seadistuse salvestuse tabelid." @@ -11345,8 +11320,8 @@ msgstr "Kasutajanimi:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Kasutajanimi" @@ -11354,7 +11329,7 @@ msgstr "Kasutajanimi" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Parool" @@ -11981,7 +11956,7 @@ msgstr[1] "%1$d andmebaasi kustutati edukalt." msgid "Plugin" msgstr "Plugin" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Versioon" @@ -11989,98 +11964,94 @@ msgstr "Versioon" msgid "Author" msgstr "Autor" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "Litsents" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "keelatud" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Õigused puuduvad." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Sisaldab kõiki õigusi, v.a GRANT." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Lubab lugeda andmeid." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Lubab lisada ja asendada andmeid." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Lubab muuta andmeid." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Lubab kustutada andmeid." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Lubab luua uusi andmebaase ja tabeleid." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Lubab kustutada andmebaase ja tabeleid." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Lubab uuesti laadida serveri sätteid ja puhastada serveri puhvreid." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Lubab serveri välja lülitada." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "Lubab kõikide kasutajate protsesside vaatamist." #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "Lubab andmeid failidest importida ja failideks eksportida." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "Muudatusi selles MySQL versioonis ei toimunud." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Lubab luua ja kustutada indekseid." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Lubab muuta olemasolevate tabelite struktuuri." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Annab ligipääsu kogu andmebaaside nimekirjale." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12091,65 +12062,65 @@ msgstr "" "globaalsete muutujate seadmiseks või teiste kasutajate lõimude sulgemiseks." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Lubab luua ajutisi tabeleid." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Lubab käesoleva lõimu jaoks tabeleid lukustada." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Vajalik alluvate paljundamiseks." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "Lubab kasutajal küsida, kus alluvad / ülemad asuvad." #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Lubab luua uusi vaateid." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "Võimaldab luua sündmuste ajastajale sündmuseid." #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "Lubab luua ja kustutada päästikuid." #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Lubab teostada SHOW CREATE VIEW päringuid." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Lubab luua salvestatud funktsioone." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Lubab muuta ja kustutada salvestatud funktsioone." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "Lubab luua, kustutada ja ümber nimetada kasutajakontosid." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Lubab käivitada salvestatud funktsioone." @@ -12161,8 +12132,8 @@ msgstr "Puudub" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Kasutaja grupp" @@ -12206,13 +12177,13 @@ msgstr "" "Märkus: Nende valikute muutmisel väärtuseks 0 (null) eemaldab piirangu." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Piirab päringute hulka, mida kasutaja võib tunni aja jooksul serverile saata." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12221,26 +12192,26 @@ msgstr "" "tunni aja jooksul käivitada." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Piirab uute ühenduste hulka, mida kasutaja võib tunni aja jooksul avada." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "Piirab samaaegsete ühenduste hulka, mida kasutajal võib olla." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Funktsioon" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "Lubab õiguste tabelit laadimata lisada kasutajaid ja õigusi." @@ -12255,14 +12226,14 @@ msgstr "Lubab käivitada selle funktsiooni." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Tabelipõhised õigused" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Märkus: MySQL õigused on inglise keeles." @@ -12272,7 +12243,7 @@ msgid "Administration" msgstr "Administreerimine" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Globaalsed õigused" @@ -12281,15 +12252,15 @@ msgid "Global" msgstr "Globaalne" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Andmebaasipõhised õigused" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Lubab luua uusi tabeleid." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Lubab kustutada tabeleid." @@ -12306,7 +12277,7 @@ msgid "Native MySQL Authentication" msgstr "MySQLi omavahenditega autentimine" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Sisselogimise teave" @@ -12331,8 +12302,8 @@ msgstr "Hosti nimi:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 msgid "Host name" msgstr "Hosti nimi" @@ -12348,212 +12319,212 @@ msgstr "Autentimise pistik" msgid "Password Hashing Method" msgstr "Parooli räsimise algoritm" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "%s parool on edukalt vahetatud." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Tühistasid %s õigused." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 msgid "Add user account" msgstr "Lisa kasutajate konto" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 msgid "Database for user account" msgstr "Andmebaas kasutaja kontole" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "Loo samanimeline andmebaas ja anna kõik õigused." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Anna kõik õigused metamärgiga nimele (kasutajanimi\\_%)." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Anna kõik õigused \"%s\" andmebaasis." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Kasutajad, kellel on ligipääs \"%s\" andmebaasile" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "Kasutaja on lisatud." -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Õigused (GRANT)" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "Puuduvad õigused kasutajate kuvamiseks." -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "Kasutajat ei leitud." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Kõik" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "globaalne" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "andmebaasipõhine" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "metamärk" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "tabelipõhine" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 msgid "Edit privileges" msgstr "Muuda õiguseid" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Tühista" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "Muuda kasutaja grupp" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… hoia eelmine alles." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… kustuta eelmine kasutajate tabelist." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… tühista eelmise kõik aktiivsed õigused ja seejärel kustuta see." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… kustuta eelmine kasutajate tabelist ja seejärel lae õigused uuesti." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "Muuda sisselogimise teavet / Kopeeri kasutaja konto" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "Loo uus kasutaja konto samade õigustega ja …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Funktsioonipõhised õigused" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 msgid "Remove selected user accounts" msgstr "Kustuta valitud kasutajate kontod" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Tühista kasutajatelt kõik aktiivsed õigused ning seejärel kustuta need " "kasutajad." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "Kustuta kasutajatega samanimelised andmebaasid." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "Kustutavaid kasutajaid pole valitud!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Õiguste uuesti laadimine" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Valitud kasutajad on edukalt kustutatud." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Uuendasid %s õigusi." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "%s kustutamine" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Õigused on edukalt uuesti laetud." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "Kasutaja %s on juba olemas!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "%s õigused" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Kasutaja" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "Uus" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 msgid "Edit privileges:" msgstr "Muuda õiguseid:" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "Kasutaja konto" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" "Märkus: sa proovid muuta õiguseid kontol, mida kasutasid sisse logimiseks." -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "Kasutaja kontode ülevaade" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " @@ -12563,7 +12534,7 @@ msgstr "" "olemas. See takistab teistel kasutajatel ühendumast, kui nende konto hosti " "pool lubab ühenduda suvalisest (%) masinast." -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12575,7 +12546,7 @@ msgstr "" "Tabelite sisu võib erineda sellest, mida server kasutab, kui neid on käsitsi " "muudetud. Sellisel juhul peaksid enne jätkamist %sõigused uuesti laadima%s." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12588,11 +12559,11 @@ msgstr "" "muudetud. Sellisel juhul peab õigused uuesti laadima, kuid hetkel puudub sul " "uuesti laadimise õigus." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "Valitud kasutajat õiguste tabelist ei leitud." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Lisasid uue kasutaja." @@ -12844,24 +12815,24 @@ msgstr "Juhendid/Paigaldus" msgid "Done dragging (rearranging) charts" msgstr "Diagrammide korrastamine on lõpetatud" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "Luba diagrammide korrastamine" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "Uuendamise sagedus" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "Diagrammi veerud" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "Diagrammi korrastus" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -12869,7 +12840,7 @@ msgstr "" "Diagrammide korrastust säilitatakse veebilehitseja kohalikus salvestuskohas. " "Kui paigaldamine on keeruline, võid seda eksportida." -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "Lähtesta vaikimisi väärtustele" @@ -12925,7 +12896,7 @@ msgid "Statements" msgstr "Käsud" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "#" @@ -12950,7 +12921,7 @@ msgstr "Näita vormindamata väärtusi" msgid "Related links:" msgstr "Seotud lingid:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -12958,11 +12929,11 @@ msgstr "" "Ühenduste hulk, mis katkestati seetõttu, et klient lahkus liinilt ilma " "ühendust korralikult sulgemata." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Ühenduste hulk, millel ei õnnestunud MySQL serveriga ühendada." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -12972,17 +12943,17 @@ msgstr "" "ületas binlog_cache_size väärtuse ja mis kasutasid ülekannete käskude " "salvestamiseks ajutist faili." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "Ülekannete hulk, mis kasutasid ajutist binaarse logi puhvrit." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Ühenduste hulk, mis üritas (edukalt või mitte) ühendada MySQL serveriga." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12994,11 +12965,11 @@ msgstr "" "suurendada tmp_table_size väärtust, et ajutised tabelid oleksid " "mälupõhised, mitte kettapõhised." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "Mysqld poolt loodud ajutiste failide hulk." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13006,7 +12977,7 @@ msgstr "" "Mälupõhiste ajutiste tabelite hulk, mis on loodud automaatselt serveri poolt " "käskude täitmise ajal." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13014,7 +12985,7 @@ msgstr "" "INSERT DELAYED käsuga kirjutatud ridade hulk, millel esines mõni viga " "(tõenäoliselt korduv võti)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13022,23 +12993,23 @@ msgstr "" "Kasutusel olevate INSERT DELAYED töötleja lõimude hulk. Iga erinev tabel, " "mis kasutab INSERT DELAYED käsku, saab endale isikliku lõimu." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "Kirjutatud INSERT DELAYED ridade hulk." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "Käivitatud FLUSH käskude hulk." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "Sisemiste COMMIT käskude hulk." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "Tabelist kustutatud ridade hulk." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13048,7 +13019,7 @@ msgstr "" "nimega tabelit. Seda nimetatakse avastamiseks. Handler_discover näitab, mitu " "korda on tabeleid avastatud." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13058,7 +13029,7 @@ msgstr "" "tähendada seda, et server teeb väga palju täielikke indeksite kontrolle. " "Näiteks SELECT veerg1 FROM tabel viitab, et veerg1 on indekseeritud." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -13066,7 +13037,7 @@ msgstr "" "Võtmel põhineva rea lugemise taotluste hulk. Kui see on kõrge, siis on see " "hea näitaja, et sinu päringud ja tabelid on korralikult indekseeritud." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13075,7 +13046,7 @@ msgstr "" "Võtme järjekorras järgmise rea lugemise taotluste hulk. See on suurem, kui " "pärid kitsendatud indekseeritud veergu või teed indeksi kontrolli." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13083,7 +13054,7 @@ msgstr "" "Võtme järjekorras eelmise rea lugemise taotluste hulk. Seda lugemise " "meetodit kasutatakse peamiselt ORDER BY … DESC optimeerimiseks." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13095,7 +13066,7 @@ msgstr "" "palju päringuid, millega peab MySQL kontrolliga terveid tabeleid või kasutad " "liitmisi, mis ei kasuta võtmeid korralikult." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13107,35 +13078,35 @@ msgstr "" "korralikult indekseeritud või sinu päringud ei ole kirjutatud selliselt, et " "need kasutaksid ära indeksid, mis sul on." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "Sisemiste ROLLBACK käskude hulk." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "Tabeli rea uuendamise taotluste hulk." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "Tabelisse rea lisamise taotluste hulk." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "Andmeid (räpased või puhtad) sisaldavate lehtede hulk." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "Hetkel räpaseid andmeid sisaldavate lehtede hulk." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Puhvertsooni lehtede hulk, mida on taotletud tühjendama." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "Vabade lehtede hulk." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13145,7 +13116,7 @@ msgstr "" "loetakse või kirjutatakse või mida ei saa mingil muul põhjusel tühjendada " "ega eemaldada." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13157,11 +13128,11 @@ msgstr "" "valemiga Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "Puhvertsooni kogumaht lehtedes." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13169,7 +13140,7 @@ msgstr "" "InnoDB algatatud \"juhuslike\" ettelugemiste hulk. See juhtub siis, kui " "päring peab kontrollima palju tabeleid, aga juhuslikus järjekorras." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13177,11 +13148,11 @@ msgstr "" "InnoDB algatatud järjestike ettelugemiste hulk. See juhtub siis, kui InnoDB " "teeb järjestikulist kogu tabeli kontrolli." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB poolt tehtud loogiliste lugemise taotluste hulk." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13189,7 +13160,7 @@ msgstr "" "Loogiliste lugemiste hulk, mida InnoDB puhvertsoonist teha ei saanud ja mida " "pidi tegema ühelehelise lugemisena." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13203,51 +13174,51 @@ msgstr "" "palju veel ootama peab. Kui puhvertsooni maht on õigesti seadistatud, siis " "see väärtus peaks olema madal." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB puhvertsooni tehtud kirjutamiste hulk." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "Seni tehtud fsync() operatsioonide hulk." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "Hetkel järjekorras olevate fsync() operatsioonide hulk." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "Hetkel järjekorras olevate lugemiste hulk." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "Hetkel järjekorras olevate kirjutamiste hulk." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "Seni loetud andmete koguhulk baitides." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "Andmete lugemiste koguhulk." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "Andmete kirjutamiste koguhulk." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "Seni kirjutatud andmete koguhulk baitides." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "Topeltkirjutamise operatsioonide jaoks kirjutatud lehtede hulk." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "Teostatud topeltkirjutamise operatsioonide hulk." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13255,35 +13226,35 @@ msgstr "" "Ootamiste hulk, mida on põhjustanud väike logi puhver ja mille tõttu on enne " "jätkamist pidanud ootama selle tühjendamist." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "Logi kirjutamise taotluste hulk." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "Logi failisse füüsiliste kirjutamiste hulk." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "fsync() poolt logi failisse tehtud kirjutamiste hulk." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "Järjekorras olevate logifailide fsync() operatsioonide hulk." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "Järjekorras olevad logi faili kirjutamised." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "Logi faili kirjutatud baitide hulk." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "Loodud lehtede hulk." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -13291,51 +13262,51 @@ msgstr "" "Sisseehitatud InnoDB lehe maht (vaikimisi 16KB). Siin lehel on loendatud " "mitmeid väärtusi. Lehe maht lubab neid kergesti baitidesse teisendada." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "Loetud lehtede hulk." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "Kirjutatud lehtede hulk." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "Hetkel ootel olevate rea lukustamiste hulk." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Rea lukustamise saamise keskmine aeg millisekundites." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Rea lukustamise saamiseks kulutatud aeg kokku millisekundites." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Rea lukustamise saamise maksimaalne aeg millisekundites." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "Ootama pidanud rea lukustamised kokku." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB tabelitest kustutatud ridade hulk." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB tabelitesse lisatud ridade hulk." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB tabelitest loetud ridade hulk." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB tabelites uuendatud ridade hulk." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13343,7 +13314,7 @@ msgstr "" "Võtme puhvris võtmeplokkide hulk, mida on küll muudetud, kuid pole veel " "kettale tühjendatud. Seda kasutatakse kui Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -13351,7 +13322,7 @@ msgstr "" "Võtmepuhvris kasutamata plokkide hulk. Seda väärtust saad kasutada kasutusel " "oleva võtme puhvri mahu tuvastamiseks." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13361,15 +13332,15 @@ msgstr "" "näitab maksimaalset plokkide hulka, mis on kunagi samaaegselt kasutusel " "olnud." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "Kasutatud võtme puhvri protsent (arvutatud väärtus)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "Puhvrist võtmeploki lugemise taotluste hulk." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13379,7 +13350,7 @@ msgstr "" "tõenäoliselt on sinu key_buffer_size väärtus liiga väike. Puhvri puudujääki " "saab arvutada valemiga Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13387,22 +13358,22 @@ msgstr "" "Võtme puhvri puudujäägi arvutamisel võrreldakse füüsilisi lugemisi lugemise " "taotlustega (arvutatud väärtus)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "Puhvrisse võtmeploki kirjutamise taotluste hulk." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "Kettale võtmeploki füüsiliste kirjutamiste hulk." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Füüsiliste kirjutamiste ja kirjutamise taotluste võrdlemise protsent " "(arvutatud väärtus)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13412,7 +13383,7 @@ msgstr "" "on kasulik erinevate päringuplaanide kulu võrdlemisel sama päringuga. " "Vaikimisi väärtus 0 tähendab, et ühtegi päringut pole veel koostatud." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13420,12 +13391,12 @@ msgstr "" "Maksimaalne ühenduste hulk, mis on korraga kasutusel olnud alates serveri " "käivitamisest." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "INSERT DELAYED järjekordades kirjutamisvalmis olevate ootel ridade hulk." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13433,19 +13404,19 @@ msgstr "" "Avatud tabelite hulk. Kui see on liiga suur, siis sinu tabeli puhvri väärtus " "on tõenäoliselt liiga väike." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "Avatud failide hulk." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "Avatud striimide hulk (kasutatakse peamiselt sisselogimisel)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "Avatud tabelite hulk." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13455,19 +13426,19 @@ msgstr "" "killustumise probleemidele, mida saab lahendada FLUSH QUERY CACHE käsu " "täitmisega." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "Päringu puhvri jaoks vaba mälu hulk." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "Puhvri kasutamise hulk." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "Puhvrisse lisatud päringute hulk." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13479,7 +13450,7 @@ msgstr "" "puhver kasutab hiljutise kasutamise (LRU) strateegiat, et otsustada, milline " "päring puhvrist kustutada." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13487,19 +13458,19 @@ msgstr "" "Puhverdamata päringute hulk (pole puhverdatav või ei puhverdatud " "query_cache_type sätte tõttu)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "Puhvris registreeritud päringute hulk." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "Päringu puhvris olevate plokkide koguhulk." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "Töökindla paljundamise staatus (pole veel kasutusele võetud)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -13507,11 +13478,11 @@ msgstr "" "Indekseid mittekasutatavate liitmiste hulk. Kui see väärtus ei ole 0, siis " "peaksid hoolikalt kontrollima oma tabelite indekseid." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "Viidete tabelis piirkondlikku otsimist kasutanud liitmiste hulk." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -13520,7 +13491,7 @@ msgstr "" "rida. (Kui see ei ole 0, siis peaksid hoolikalt kontrollima oma tabelite " "indekseid.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13528,15 +13499,15 @@ msgstr "" "Esimeses tabelis piirkonda kasutanud liitmiste hulk. (Tavaliselt pole " "kriitiline, kui see on suur.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "Esimeses tabelis täielikku kontrolli teinud liitmiste hulk." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Alluva SQL lõimu poolt hetkel avatud ajutiste tabelite hulk." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13544,24 +13515,24 @@ msgstr "" "Paljundamisel alluva SQL lõimu poolt ülekannete kordamise hulk kokku (alates " "käivitusest)." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "See on ON, kui see server on alluv, mis on ühendatud ülemaga." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "Lõimude hulk, mille loomiseks kulus rohkem, kui slow_launch_time sekundit." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Päringute hulk, milleks kulus rohkem aega, kui long_query_time sekundit." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13571,23 +13542,23 @@ msgstr "" "suur, siis peaksid kaaluma süsteemi muutuja sort_buffer_size väärtuse " "vähendamist." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "Piirkondlike sorteerimiste hulk." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "Sorteeritud ridade hulk." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "Tabeli kontrollimisel tehtud sorteerimiste hulk." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "Koheselt teostatud tabeli lukustamiste hulk." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13599,7 +13570,7 @@ msgstr "" "peaksid kõigepealt optimeerima oma päringuid ja seejärel kas poolita oma " "tabel või tabelid või kasuta paljundamist." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13609,11 +13580,11 @@ msgstr "" "valemiga Threads_created/Connections. Kui see väärtus on punane, siis " "peaksid vähendama oma thread_cache_size väärtust." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "Hetkel avatud ühenduste hulk." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13624,11 +13595,11 @@ msgstr "" "peaksid suurendama thread_cache_size väärtust. (Tavaliselt ei anna see " "märkimisväärset jõudluse kasvu, kui sul on hea lõimu kasutus.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "Lõimu puhvri kasutushulk (arvutatud väärtus)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "Lõimude hulk, mis ei ole jõude." @@ -13637,57 +13608,57 @@ msgstr "Lõimude hulk, mis ei ole jõude." msgid "Users of '%s' user group" msgstr "Kasutajad grupis '%s'" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "Valitud gruppi ei kuulu mitte ühtegi kasutajat." -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "Kasutajate grupid" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "Serveri tasemete sakid" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "Andmebaasi tasemete sakid" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "Tabeli tasemete sakid" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "Kuva kasutajad" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "Lisa kasutajate grupp" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "Muuda kasutajate gruppi: '%s'" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "Kasutajate grupi menüü seosed" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "Grupi nimi:" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "Serveri tasemete sakid" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "Andmebaasi tasemete sakid" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "Tabeli tasemete sakid" @@ -13747,21 +13718,17 @@ msgstr "Oodati lõpetavat sulgu." msgid "Unrecognized data type." msgstr "Tundmatu andmetüüp." -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "Ootamatu lõpetav sulg." - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "Eelnevalt leiti alias." -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "Ootamatu punkt." -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 msgid "An alias was expected." msgstr "Oodati aliast." @@ -13817,105 +13784,105 @@ msgstr "Oodati lõpetavat sümbolit %1$s." msgid "Variable name was expected." msgstr "Oodati muutuja nime." -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 msgid "Unexpected beginning of statement." msgstr "Ootamatu lause algus." -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "Tundmatut tüüpi lause." -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "Transaktsiooni ei olnud eelnevalt alustatud." -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "Ootamatud märk." -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "Sellist tüüpi klausel parsiti eelnevalt." -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "Leiti uus lause, kuid selle ja talle järgneva vahelt puudub eraldaja." -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "Tundmatu võtmesõna." -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "Oodati olemi nime." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 msgid "At least one column definition was expected." msgstr "Oodati vähemalt ühe veeru kirjeldust." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "Oodati võtmesõna \"RETURNS\"." -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "Detailne profiil" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "Järjestus" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "Olek" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "Olekupõhine kokkuvõte" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "Aeg kokku" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "% aeg" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "Kutsed" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "ø aeg" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Lisa see SQL päring järjehoidjasse" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "Nimi:" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Anna kõikidele kasutajatele juurdepääs sellele järjehoidjale" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "Järjehoidjat ei loodud!" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "\"%s\" järjehoidjat kasutatakse vaikimisi sirvimise päringuna." -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "Näitan PHP koodina" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " @@ -13925,7 +13892,7 @@ msgstr "" "märkekastide, hariliku muutmisega, kopeerimisega ja kustutamisega seotud " "funksionaalsus ei ole saadaval. %s" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " @@ -13935,7 +13902,7 @@ msgstr "" "muutmisega, kopeerimise ja kustutamisega seotud võimalused võivad põhjustada " "soovimatut käitumist. %s" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probleemid `%s` tabeli indeksitega" @@ -13963,27 +13930,27 @@ msgstr "Hangi automaatselt salvestatud päring" msgid "Bind parameters" msgstr "Seostamise parameetrid" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "Lisa see SQL päring järjehoidjasse:" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Asenda samanimelise järjehoidjaga" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Eraldaja" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Näita seda päringut siin uuesti" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "Tagasipööramine lõpetamisel" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Ainult vaata" @@ -14027,113 +13994,113 @@ msgstr "Deaktiveeri %s jälgimine" msgid "Deactivate now" msgstr "Deaktiveeri kohe" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Loodud" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Uuendatud" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 msgid "Delete version" msgstr "Kustuta versioon" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Jälgimise raport" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Struktuuri hetkepilt" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "aktiivne" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "ei ole aktiivne" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "Jälgimise käsud" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "Kustuta raportist jälgimise andmete rida" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "Andmed puuduvad" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" "Näita %1$s koos kuupäevadega alates %2$s kuni %3$s kasutajaks %4$s %5$s" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "SQL tõmmis (faili allalaadimine)" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "SQL tõmmis" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "See valik asendab sinu tabeli ja selles sisalduvad andmed." -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "SQL teostus" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "Ekspordi kui %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "Andmete töötluse käsk" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "Andmete definitsiooni käsk" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Kuupäev" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Kasutajanimi" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Versiooni %s hetkepilt (SQL kood)" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Puudub" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "Jälgimise andmete definitsioon on edukalt kustutatud" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "Jälgimise andmete töötlus on edukalt kustutatud" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14141,61 +14108,61 @@ msgstr "" "Ajutise andmebaasi loomisega ja kasutamisega saad käivitada tõmmise. Palun " "veendu, et sul on selle jaoks õigusi." -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "Kustuta need kaks rida, kui sa ei vaja neid." -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL käsud on eksporditud. Palun kopeeri tõmmis või käivita see." -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "`%s` tabeli jälgimise raport" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "%1$s jälgimine aktiveeriti versioonil %2$s." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "%1$s jälgimine deaktiveeriti versioonil %2$s." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Versioon %1$s kokku %2$s. versioonist kustutati." -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versioon %1$s on loodud, %2$s jälgimine on aktiveeritud." -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Jälgimata tabelid" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Jälgi tabelit" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Jälgitud tabelid" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Viimane versioon" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "Kustuta jälgimine" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Versioonid" @@ -14203,11 +14170,11 @@ msgstr "Versioonid" msgid "Manage your settings" msgstr "Halda oma sätteid" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "Seadistus on salvestatud." -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14310,7 +14277,7 @@ msgstr "Andmebaasid puuduvad" msgid "View dump (schema) of databases" msgstr "Vaata andmebaaside tõmmist (skeemi)" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14338,7 +14305,7 @@ msgid "" msgstr "" "phpMyAdmin ei suutnud katkestada %s lõimu. Tõenäoliselt on see juba suletud." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "Puuduvad õigused päringute statistika kuvamiseks." @@ -15153,43 +15120,49 @@ msgstr "Hajusgraafik" msgid "Stacked" msgstr "Jaotatud ühe tulbana" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "Diagrammi pealkiri" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "X-telg:" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "Seeria:" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "X-telje nimi:" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "X väärtused" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "Y-telje nimi:" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Y väärtused" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "Jadade nimed on veerus" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "Jadade veerg:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 msgid "Value Column:" msgstr "Väärtuste veerg:" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "Salvesta graafik pildina" @@ -15242,48 +15215,49 @@ msgstr "Kommentaar:" msgid "Drag to reorder" msgstr "Järjekorra muutmiseks lohista" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +msgid "Foreign key constraints" +msgstr "Võõrvõtme piirangud" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "Tegevused" + +#: templates/table/relation/common_form.phtml:10 +msgid "Constraint properties" +msgstr "Piirangud omadustele" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" +"Kuvatakse ainult indeksiga veerud. Sa võid defineerida indeksi allpool." + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "Võõrvõtme piirang" + +#: templates/table/relation/common_form.phtml:60 +msgid "+ Add constraint" +msgstr "+ Lisa piirang" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "Sisesed seosed" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "Sisemine seos" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Sisemine seos on mittevajalik, kui vastav FOREIGN KEY seos on juba olemas." -#: templates/table/relation/common_form.phtml:37 -msgid "Foreign key constraints" -msgstr "Võõrvõtme piirangud" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "Tegevused" - -#: templates/table/relation/common_form.phtml:41 -msgid "Constraint properties" -msgstr "Piirangud omadustele" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" -"Kuvatakse ainult indeksiga veerud. Sa võid defineerida indeksi allpool." - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "Võõrvõtme piirang" - -#: templates/table/relation/common_form.phtml:83 -msgid "+ Add constraint" -msgstr "+ Lisa piirang" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "Vali veerg, mida näidata:" @@ -15410,7 +15384,7 @@ msgid "at beginning of table" msgstr "tabeli alguses" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 msgid "Partitions" msgstr "Partitsioonid" @@ -15443,7 +15417,7 @@ msgstr "Partitsioonide tabel" msgid "Edit partitioning" msgstr "Muuda partitsioneerimist" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "Muuda vaadet" @@ -16817,6 +16791,39 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert väärtuseks on määratud 0" +#~ 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" + +#~ msgid "To filter all %s in database, press Enter after a search term" +#~ msgstr "" +#~ "Andmebaasis kõigi %s filtreerimiseks vajuta otsingutermini järel Enter" + +#~ msgid "tables" +#~ msgstr "tabelid" + +#~ msgid "views" +#~ msgstr "vaated" + +#~ msgid "procedures" +#~ msgstr "toimingud" + +#~ msgid "events" +#~ msgstr "sündmused" + +#~ msgid "functions" +#~ msgstr "funktsioonid" + +#~ msgid "Filter databases by name or regex" +#~ msgstr "Filtreeri andmebaase nime või regulaaravaldise alusel" + +#~ msgid "Filter by name or regex" +#~ msgstr "Filtreeri nime või regulaaravaldise alusel" + +#~ msgid "Unexpected closing bracket." +#~ msgstr "Ootamatu lõpetav sulg." + #~ msgid "Username and hostname didn't change." #~ msgstr "Kasutaja ja hosti nimi ei muutunud." diff --git a/po/eu.po b/po/eu.po index 797ad8ea8c..05f4c150da 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:26+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Basque Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Atributuak" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 #, 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:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Jarraipen informea" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 #, fuzzy @@ -2107,283 +2119,283 @@ msgstr "" msgid "End of step" msgstr "Taularen amaieran" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 #, fuzzy #| msgid "None" msgid "Done" msgstr "Batez" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Ez dago datu-baserik aukeratuta." -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Pribilegioak gehitu taula honetan" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Ez dago datu-baserik aukeratuta." -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Gorde" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy msgid "Hide search criteria" msgstr "SQL kontsulta" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy msgid "Show search criteria" msgstr "SQL kontsulta" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Bilatu" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Zutabe izenak" -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Zutabe izenak" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy msgid "Hide find and replace criteria" msgstr "SQL kontsulta" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy msgid "Show find and replace criteria" msgstr "SQL kontsulta" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Gehitu/ezabatu irizpide-zutabea" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Table of contents" msgid "Data point content" msgstr "Edukinen taula" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ezikusi" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Puntu" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Lerro kateak" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Poligono" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Barne eraztuna" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Outer Ring" msgid "Outer ring" msgstr "Kanpo eraztuna" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Orri zenbakia:" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 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:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgctxt "PDF" @@ -2391,267 +2403,231 @@ msgstr "Taulak hautatu" msgid "Open page" msgstr "Erabilpena" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy #| msgid "Select Tables" msgid "Delete page" msgstr "Taulak hautatu" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Aukeratu editatzeko orria mesedez" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Aldatu edo esportatu erlazio-eskema" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Aldaketak gorde dira" -#: js/messages.php:550 +#: js/messages.php:551 #, fuzzy, php-format #| msgid "Value for the column \"%s\"" msgid "Add an option for column \"%s\"." msgstr "\"%s\" zutaberako balioa" -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Bidali" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Zutabe izenak" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Dena erakutsi" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Linestring" msgid "Original length" msgstr "Lerro kateak" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Deuseztatua" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 #, fuzzy msgid "Import status" msgstr "Fitxategiak inportatu" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Taulak hautatu" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 #, fuzzy msgid "Go to link:" msgstr "Datu-baserik ez" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Zutabe izenak" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Pasahitza aldatu" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 #, fuzzy msgid "Generate" msgstr "Egilea:" -#: js/messages.php:620 +#: js/messages.php:621 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Astel" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Dena erakutsi" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "Indizeak" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Sareta erakutsi" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 #, fuzzy msgid "Link with main panel" msgstr "Datu-basea esportatzeko aukerak" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 #, fuzzy msgid "Unlink from main panel" msgstr "Datu-basea esportatzeko aukerak" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 #, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "Taulak" - -#: js/messages.php:633 -#, fuzzy -#| msgid "View" -msgid "views" -msgstr "Ikusipegia" - -#: js/messages.php:634 -#, fuzzy -msgid "procedures" -msgstr "Prozesuak" - -#: js/messages.php:635 -#, fuzzy -msgid "events" -msgstr "Bidalita" - -#: js/messages.php:636 -#, fuzzy -msgid "functions" -msgstr "Funtzioak" - -#: js/messages.php:640 -#, 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:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2659,135 +2635,135 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr "" -#: js/messages.php:649 +#: js/messages.php:641 #, fuzzy msgid "up to date" msgstr "Datu-baserik ez" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 #, fuzzy msgid "Create view" msgstr "Zerbitzariaren bertsioa" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy msgid "Send error report" msgstr "Zerbitzariaren hautaketa" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy msgid "Submit error report" msgstr "Zerbitzariaren hautaketa" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Erlazioen ezaaugarri orokorrak" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy msgid "Show report details" msgstr "Taulak erakutsi" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ezikusi" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Kontsulta hau hemen berriz erakutsi" -#: js/messages.php:701 +#: js/messages.php:693 #, 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:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL kontsulta" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Taularen iruzkinak" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy msgid "Hide arguments" msgstr "SQL kontsulta" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Aurrekoa" -#: js/messages.php:748 +#: js/messages.php:740 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2795,96 +2771,96 @@ msgid "Next" msgstr "Hurrengoa" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Gutira" -#: js/messages.php:755 +#: js/messages.php:747 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binarioa " -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:749 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:758 +#: js/messages.php:750 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Api" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Mai" -#: js/messages.php:760 +#: js/messages.php:752 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Eka" -#: js/messages.php:761 +#: js/messages.php:753 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Uzt" -#: js/messages.php:762 +#: js/messages.php:754 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Abu" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:756 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Urr" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Urt" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Ots" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Api" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2892,78 +2868,78 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Eka" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Uzt" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Abu" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Ira" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Urr" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Aza" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Abe" -#: js/messages.php:801 +#: js/messages.php:793 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Iga" -#: js/messages.php:802 +#: js/messages.php:794 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Astel" -#: js/messages.php:803 +#: js/messages.php:795 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Astea" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:798 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Osti" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2971,157 +2947,157 @@ msgid "Sun" msgstr "Iga" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Astel" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Astea" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Astez" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Oste" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Osti" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Lar" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Iga" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Astel" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Astea" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Astez" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Oste" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Osti" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Lar" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Batez" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:864 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "lanean" -#: js/messages.php:873 +#: js/messages.php:865 #, fuzzy #| msgid "per second" msgid "Second" msgstr "segunduko" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Testu-eremua erabili" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Please select a database" msgid "Please enter a valid date" msgstr "Datu-base bat hautatu mesedez" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "" @@ -3129,43 +3105,43 @@ msgstr "" msgid "Please enter the same value again" msgstr "" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:901 +#: js/messages.php:928 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please enter a valid date or time" msgstr "Aukeratu editatzeko orria mesedez" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Errorea" @@ -3252,11 +3228,12 @@ msgstr "kontsultan" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3304,7 +3281,7 @@ msgstr "" msgid "Explain" msgstr "SQL-a azaldu" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "" @@ -3344,8 +3321,8 @@ msgid "History" msgstr "SQL-historia" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3530,30 +3507,30 @@ msgstr "" msgid "Switch to dark theme" msgstr "Kopiatutako taulara aldatu" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3563,8 +3540,8 @@ msgstr "" msgid "Ascending" msgstr "Goranzko" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3733,8 +3710,8 @@ msgstr[0] "%s emaitza %s taulan" msgstr[1] "%s emaitzak %s taulan" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3777,28 +3754,28 @@ msgstr "Desautatu dena" msgid "Inside column:" msgstr "Zutabearen barnean:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "Gehitu/ezabatu irizpide-zutabea" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 #, fuzzy msgid "Filter rows" msgstr "Eremuak" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Search in database" msgid "Search this table" msgstr "Datu-basean bilatu" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 #, fuzzy #| msgid "Begin" @@ -3806,7 +3783,7 @@ msgctxt "First page" msgid "Begin" msgstr "Hasi" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 #, fuzzy @@ -3815,7 +3792,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Aurrekoa" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 #, fuzzy @@ -3824,7 +3801,7 @@ msgctxt "Next page" msgid "Next" msgstr "Hurrengoa" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 #, fuzzy #| msgid "End" @@ -3832,84 +3809,84 @@ msgctxt "Last page" msgid "End" msgstr "Amaiera" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Guztiak" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of rows per page" msgid "Number of rows:" msgstr "Errenkada kopurua orriko" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Gakoaren arabera ordenatu" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Testu partzialak" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Testu osoak" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 #, fuzzy msgid "Relational key" msgstr "Erlazio-eskema" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display column for relations" msgstr "Zutabearen iruzkinak erakusten" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Nabigatzailearen eraldaketa" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Errenkada ezabatua izan da" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Hil" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -3917,7 +3894,8 @@ msgstr "" msgid "Your SQL query has been executed successfully." msgstr "Zure SQL-kontsula arrakastaz burutu da" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3926,43 +3904,43 @@ msgstr "" "Ikuspegi honek gutxienez errenkada kopuru hau dauka. Mesedez %sdocumentation" "%s erreferentzia egin." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Errenkadak erakusten" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "guztira" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "Kontsulta exekutatzeko denbora %01.4f seg" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Ikurdunak:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3970,27 +3948,27 @@ msgstr "Ikurdunak:" msgid "Check all" msgstr "Guztiak egiaztatu" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Inprimatzeko ikuspegia" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF eskema erakutsi" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 #, fuzzy #| msgid "Link not found" msgid "Link not found!" @@ -4089,19 +4067,19 @@ msgstr "Ez dago indizerik definituta!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Indizeak" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -4110,24 +4088,24 @@ msgid "Action" msgstr "Ekintza" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Giltza-izena" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Bakarra" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Kardinalitatea" @@ -4135,8 +4113,8 @@ msgstr "Kardinalitatea" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -4146,8 +4124,8 @@ msgid "Collation" msgstr "Ordenamendua" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -4164,15 +4142,15 @@ msgstr "Lehen mailako gakoa ezabatu da." msgid "Index %s has been dropped." msgstr "%s indizea ezabatu da." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Ezabatu" @@ -4209,12 +4187,13 @@ msgstr "Ikusipegia" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4222,7 +4201,7 @@ msgstr "Taula" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4231,8 +4210,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4240,41 +4219,41 @@ msgid "Search" msgstr "Bilatu" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Txertatu" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Pribilegioak" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Eragiketak" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4285,16 +4264,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Kontsulta" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4302,22 +4281,22 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Gehitu/ezabatu irizpide-zutabea" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Datu-baseak" @@ -4328,34 +4307,34 @@ msgid "User accounts" msgstr "Erabiltzailea" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 #, fuzzy msgid "Binary log" msgstr "Binarioa " #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Ihardetsi" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Aldagaiak" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Karaktere-multzoa" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4678,7 +4657,7 @@ msgstr "Ezinezkoa indizearen izena ¡PRIMARY! berrizendatzea" msgid "No index parts defined!" msgstr "Ez da indiziaren zatiak definitu!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5103,38 +5082,38 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "Fitxategiak igotzeko web-zerbitzariaren direktorioa" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Igoerentzat ezarri duzun direktorioa ez dago eskuragarri." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Hutsik" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Inprimatu" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 #, fuzzy #| msgid "User" msgid "Users" @@ -5315,8 +5294,8 @@ msgid "Add new column" msgstr "Gehitu %s zutabe" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5384,19 +5363,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "%s %s bertsiora edo handiago batera eguneratu beharko zenuke." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -6230,7 +6209,7 @@ msgid "Remember file name template" msgstr "Txantiloi-fitxategiaren izena" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Gehitu AUTO_INCREMENT balioa" @@ -6273,7 +6252,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "%s gehitu" @@ -7949,7 +7928,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 #, fuzzy msgid "Retain query box" msgstr "SQL kontsulta" @@ -8238,111 +8217,35 @@ msgstr "" msgid "OpenDocument Text" msgstr "Dokumentazioa" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "%s taula hustu egin da." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "%s Ikuspegia ezabatua izan da" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "%s taula ezabatu egin da" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "ezezaguna" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" - -#: libraries/controllers/TableStructureController.php:250 -#, fuzzy -#| msgid "No databases selected." -msgid "No column selected." -msgstr "Ez dago datu-baserik aukeratuta." - -#: libraries/controllers/TableStructureController.php:484 -#, 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.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, fuzzy, php-format -msgid "Table %1$s has been altered successfully." -msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -#, fuzzy -#| msgid "Query type" -msgid "Query error" -msgstr "Kontsulta mota" - -#: libraries/controllers/TableStructureController.php:967 -#, fuzzy, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira." - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Aldatu" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Indizea" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Testu osoa" - -#: libraries/controllers/TableStructureController.php:1201 -#, fuzzy -#| msgid "Session value" -msgid "Distinct values" -msgstr "Saioaren balioa" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8358,6 +8261,14 @@ msgstr "" msgid "No data to display" msgstr "Datu-baserik ez" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, fuzzy, php-format +msgid "Table %1$s has been altered successfully." +msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira." + #: libraries/controllers/table/TableRelationController.php:212 #, fuzzy #| msgid "Thread %s was successfully killed." @@ -8369,24 +8280,92 @@ msgstr "%s haria arrakastaz ezabatu da." msgid "Internal relations were successfully updated." msgstr "Barne-erlazioak" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Search" msgid "Table search" msgstr "Bilatu" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Search" msgid "Zoom search" msgstr "Bilatu" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy msgid "Find and replace" msgstr "SQL kontsulta" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" + +#: libraries/controllers/table/TableStructureController.php:251 +#, fuzzy +#| msgid "No databases selected." +msgid "No column selected." +msgstr "Ez dago datu-baserik aukeratuta." + +#: libraries/controllers/table/TableStructureController.php:485 +#, fuzzy +#| msgid "The selected users have been deleted successfully." +msgid "The columns have been moved successfully." +msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +#, fuzzy +#| msgid "Query type" +msgid "Query error" +msgstr "Kontsulta mota" + +#: libraries/controllers/table/TableStructureController.php:975 +#, fuzzy, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira." + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Aldatu" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Indizea" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Testu osoa" + +#: libraries/controllers/table/TableStructureController.php:1209 +#, fuzzy +#| msgid "Session value" +msgid "Distinct values" +msgstr "Saioaren balioa" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8396,7 +8375,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Aldaketarik ez" @@ -8469,7 +8448,7 @@ msgstr "Sortu" msgid "Create database:" msgstr "Datu-base berri bat sortu" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Pribilegiorik gabe" @@ -9203,70 +9182,70 @@ msgid "Dump has been saved to file %s." msgstr "Iraulketa %s fitxategian gorde da." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL-k emaitza hutsa itzuli du. (i.e. zero errenkada)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Datu-baserik ez" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Datu-baserik ez" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Egitura soilik" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" @@ -9290,77 +9269,77 @@ msgstr "Funtzioak" msgid "Binary" msgstr "Binarioa" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "Bere luzeragatik,
eremu hau ez da editagarria " -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Binarioa - ez editatu" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Edo" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "Fitxategiak igotzeko web-zerbitzariaren direktorioa" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Txertatu" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "eta orduan" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Txertatu errenkada berri batean" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Itzuli" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Erregistro berria gehitu" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Egin atzera orri honetara" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Editatu hurrengo lerroa" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9372,11 +9351,11 @@ msgstr "" msgid "Value" msgstr "balioa" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9394,43 +9373,43 @@ msgstr "Batez" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table prefix:" msgstr "Taularen aurrizkia aldatu" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Copy table with prefix" msgid "Copy table with prefix:" msgstr "Taula aurrizkiarekin kopiatu" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Osti" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Replace table prefix" msgid "Add table prefix:" msgstr "Taularen aurrizkia aldatu" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -9663,8 +9642,8 @@ msgstr "Prozesuak" msgid "Views:" msgstr "Ikusipegia" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Erakutsi" @@ -9704,10 +9683,9 @@ msgstr[0] "" msgstr[1] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "Alter table order by" -msgid "Filter databases by name or regex" -msgstr "Taularen \"Order By\" aldatu" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -9716,12 +9694,6 @@ msgstr "Taularen \"Order By\" aldatu" msgid "Clear fast filter" msgstr "Bidali" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "Alter table order by" -msgid "Filter by name or regex" -msgstr "Taularen \"Order By\" aldatu" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -10124,7 +10096,7 @@ msgstr "Datu-basea berrizendatu izen honetara" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10135,7 +10107,7 @@ msgstr "Ez daukazu baimen nahikorik hemen orain egoteko!" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -10155,18 +10127,18 @@ msgstr "Datu-basea kendu" msgid "Drop the database (DROP)" msgstr "Datu-basea ezabatu (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Egitura soilik" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Egitura eta datuak" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Datuak soilik" @@ -10180,7 +10152,7 @@ msgstr "Datu-basea kopiatu" msgid "CREATE DATABASE before copying" msgstr "DATU-BASEA SORTU kopiatu aurretik" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Murrizketak gehitu" @@ -10220,63 +10192,63 @@ msgstr "" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Taula hona kopiatu: (datu-base.taula)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Kopiatutako taulara aldatu" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Taularen mantenua" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Taula aztertu" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Taula egiaztatu" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Taula egiaztatu" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "%s taularen cachea hustu egin da." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Taularen cachea hustu (\"FLUSH\")" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Taula optimizatu" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Taula konpondu" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 #, fuzzy @@ -10284,107 +10256,107 @@ msgstr "Taula konpondu" msgid "Delete data or table" msgstr "Taula honen datuak irauli" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 #, fuzzy msgid "Delete the table (DROP)" msgstr "Datu-baserik ez" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Aztertu" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 #, fuzzy msgid "Check" msgstr "Txekiera" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 #, fuzzy msgid "Repair" msgstr "Taula konpondu" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "Itxi" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 #, fuzzy msgid "Partition maintenance" msgstr "Taularen mantenua" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Erreferentzien integritatea egiaztatu:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Ezin taula berberara mugitu!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Ezinezkoa da taula berberera kopiatzea!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "%s taula hona mugitu da: %s." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "%s taula hona kopiatua izan da: %s." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "%s taula hona mugitu da: %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "%s taula hona kopiatua izan da: %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Taularen izena hutsik dago!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10572,7 +10544,7 @@ msgstr "Datu-basea esportatzeko aukerak" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Taula honen datuak irauli" @@ -10599,14 +10571,14 @@ msgstr "Deskribapena" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Taularen egitura taula honentzat" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 #, fuzzy msgid "Structure for view" @@ -10614,7 +10586,7 @@ msgstr "Egitura soilik" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10726,7 +10698,7 @@ msgid "Database:" msgstr "Datu-basea" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10841,7 +10813,7 @@ msgid "Data creation options" msgstr "Eraldaketen hobespenak" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -10910,8 +10882,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10919,96 +10891,96 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy msgid "Metadata" msgstr "Datu estatikoak" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 #, fuzzy #| msgid "Creation" msgid "Creation:" msgstr "Sortzea" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 #, fuzzy #| msgid "Last update" msgid "Last update:" msgstr "Azken eguneraketa" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 #, fuzzy #| msgid "Last check" msgid "Last check:" msgstr "Azken egiaztapena" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "lanean" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Iraulitako taulentzako murrizketak" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Taularentzako murrizketak" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Iraulitako taulentzako murrizketak" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Taulen barnean:" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Gehitu AUTO_INCREMENT balioa" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Gehitu AUTO_INCREMENT balioa" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Egitura soilik" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11262,9 +11234,9 @@ msgstr "Erlazio-eskema" msgid "Table of contents" msgstr "Edukinen taula" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Extra" @@ -11479,60 +11451,60 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been added." msgstr "Aldaketak gorde dira" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Ezinezkoa fitxategia irakurtzea" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy msgid "Internal relation has been added." msgstr "Barne-erlazioak" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be added!" msgstr "Ezinezkoa fitxategia irakurtzea" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been removed." msgstr "Aldaketak gorde dira" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Ezinezkoa fitxategia irakurtzea" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be removed!" msgstr "Ezinezkoa fitxategia irakurtzea" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy msgid "Internal relation has been removed." msgstr "Barne-erlazioak" @@ -11589,109 +11561,109 @@ msgstr "" "Mesedez, Dokumentazioa begiratu zure zutabeen iruzkinen Taula nola " "eguneratzeko." -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Kontsulta gogokoetan gordea" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL-historia" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy msgid "Persistent favorite tables" msgstr "Kontsulta mota" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Modifications have been saved" msgid "Configurable menus" msgstr "Aldaketak gorde dira" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Rename table to" msgid "Remembering Designer Settings" msgstr "Taula berrizendatu izen honetara: " -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "Esportatze mota baliogabea" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "Deskribapenik ez" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11873,8 +11845,8 @@ msgstr "Erabiltzaile-izena" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Erabiltzaile-izena" @@ -11882,7 +11854,7 @@ msgstr "Erabiltzaile-izena" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Pasahitza" @@ -12569,7 +12541,7 @@ msgstr[1] "%s datu-base arrakastaz ezabatu dira." msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 #, fuzzy msgid "Version" msgstr "PHP Bertsioa" @@ -12578,76 +12550,72 @@ msgstr "PHP Bertsioa" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Ezgaituta" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Pribilegiorik ez." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Pribilegio guztiak, GRANT(baimendu) izanezik, dauzka." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Datuak irakurtzea baimentzen du." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Datuak txertatu eta ordezkatzea baimentzen du." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Datuak aldatzea baimentzen du." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Datuak ezabatzea baimentzen du." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Datu-base eta taula berriak sortzea baimentzen du." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Datu-base eta taulak ezabatzea baimentzen du." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Zerbitzariaren hobespenak berkargatu eta beraren cacheak hustea baimentzen " "du." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Zerbitzaria amatatzea baimentzen du." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" "Datuak fitxategietatik inportatzea eta fitxategietara esportatzea baimentzen " @@ -12655,27 +12623,27 @@ msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "Ez du eraginik MySQL bertsio honetan." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Indizeak sortu eta ezabatzea baimentzen du." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Uneko taulen egiturak aldatzea baimentzen du." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Datu-base zenrrenda osorako sarrera ahalbidetzen du." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12686,71 +12654,71 @@ msgstr "" "bezalako kudeaketa-eragiketa gehienentzat beharrezkoa da." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Aldi baterako taulak sortzea baimentzen du." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Momentuko harian taulak blokeatzea baimentzen du." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Erreplikazio morroientzat beharrezkoa." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "Erabiltzailea baimentzen du morroiak / nagusiak non dauden galdetzeko." #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 #, fuzzy msgid "Allows creating new views." msgstr "Taula berriak sortzea baimentzen du." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 #, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Allows to set up events for the event scheduler." msgstr "Momentuko harian taulak blokeatzea baimentzen du." #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 #, fuzzy msgid "Allows creating and dropping triggers." msgstr "Indizeak sortu eta ezabatzea baimentzen du." #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 #, fuzzy msgid "Allows creating stored routines." msgstr "Taula berriak sortzea baimentzen du." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Indizeak sortu eta ezabatzea baimentzen du." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -12764,8 +12732,8 @@ msgstr "Batez" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12809,14 +12777,14 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Oharra: Aukera hauek zerora ezarriz gero muga kentzen da." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Erabiltzaileak orduko zerbitzarira bidali dezakeen kontsulta kopurua " "mugatzen du." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12825,22 +12793,22 @@ msgstr "" "komando kopurua mugatzen du." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Add %s field(s)" @@ -12848,7 +12816,7 @@ msgid "Routine" msgstr "Gehitu %s zutabe" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12867,14 +12835,14 @@ msgstr "Taula berriak sortzea baimentzen du." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Taularen pribilegio espezifikoak" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -12886,7 +12854,7 @@ msgid "Administration" msgstr "Kudeaketa" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Pribilegio orokorrak" @@ -12897,15 +12865,15 @@ msgid "Global" msgstr "orokorra" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Datu-basearen pribilegio espezifikoak" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Taula berriak sortzea baimentzen du." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Taulak ezabatzea baimentzen du." @@ -12928,7 +12896,7 @@ msgid "Native MySQL Authentication" msgstr "Dokumentazioa" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Saioa hasteko informazioa" @@ -12953,8 +12921,8 @@ msgstr "Erabiltzaile-izena" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Constraints for table" msgid "Host name" @@ -12976,124 +12944,124 @@ msgstr "Dokumentazioa" msgid "Password Hashing Method" msgstr "Pasahitza:" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "%s-arentzako pasahitza arrakastaz aldatua izan da." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Zuk %s-(r)en pribilegioak ezeztatu dituzu." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Gehitu erabiltzailea" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database export options" msgid "Database for user account" msgstr "Datu-basea esportatzeko aukerak" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, fuzzy, php-format msgid "Grant all privileges on database \"%s\"." msgstr "\"%s\" datu-basearen pribilegioak egiaztatu." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\"-(e)ra sarbidea duten erabiltzaileak" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 #, fuzzy msgid "User has been added." msgstr "%s eremua ezabatu da" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Baimendu" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Ez da erabiltzailerik aurkitu." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Edozein" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "orokorra" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "Datubasearentzat espezifikoa" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "komodina" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Datubasearentzat espezifikoa" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Editatu Pribilegioak" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Ezeztatu" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "Editatu hurrengo lerroa" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… mantendu aurrekoa." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… zaharra ezabatu erabiltzaileen tauletatik." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… zaharraren pribilegio aktibo guztiak errebokatu eta ondoren ezabatu." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -13101,122 +13069,122 @@ msgstr "" "… zaharra ezabatu erabiltzaileen tauletatik eta ondoren berkargatu " "pribilegioak." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Aldatu saioa hasteko informazioa / Erabiltzailea kopiatu" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Erabiltzaile berri bat sortu pribilegio berdinekin eta …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Zutabearen pribilegio espezifikoak" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Hautatutako erabiltzaileak baztertu" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Erabiltzaileen pribilegio aktibo guztiak ezeztatu eta ondoren denak ezabatu." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "Erabiltzaileen izen berdina duten datu-baseak ezabatu." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Pribilegioak berkargatzen" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "%s-aren pribilegioak eguneratu dituzu." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "%s ezabatzen" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Pribilegioak arrakastaz berkargatu dira." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "%s erabiltzailea badago lehendik ere!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Pribilegioak" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Erabiltzailea" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Editatu Pribilegioak" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "User" msgid "User account" msgstr "Erabiltzailea" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Erabiltzailearen info orokorra" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13230,7 +13198,7 @@ msgstr "" "daitezke. Kasu honetan, jarraitu aurretik %spribilegioak berkargatu%s " "beharko zenituzke." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13250,11 +13218,11 @@ msgstr "" "daitezke. Kasu honetan, jarraitu aurretik %spribilegioak berkargatu%s " "beharko zenituzke." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "Hautatutako erabiltzailea ez da pribilegioen taulan aurkitu." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Erabiltzaile berria gehitu duzu." @@ -13496,33 +13464,33 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 #, fuzzy msgid "Refresh rate" msgstr "Egilea:" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Gehitu/ezabatu irizpide-zutabea" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -13589,7 +13557,7 @@ msgid "Statements" msgstr "Sententziak" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -13620,35 +13588,35 @@ msgstr "Taulak erakutsi" msgid "Related links:" msgstr "Erlazioak" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13656,78 +13624,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13735,7 +13703,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13743,42 +13711,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13786,33 +13754,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13821,243 +13789,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Fitxategiaren karaktereen kodeketa:" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14065,99 +14033,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14165,18 +14133,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14184,12 +14152,12 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "Kontsulta mota" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -14198,76 +14166,76 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 #, fuzzy #| msgid "User" msgid "User groups" msgstr "Erabiltzailea" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "Zerbitzariaren bertsioa" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Databases" msgid "Database level tabs" msgstr "Datu-baseak" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table comments" msgid "Table level tabs" msgstr "Taularen iruzkinak" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy msgid "View users" msgstr "Gehitu erabiltzailea" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "Gehitu erabiltzailea" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Pribilegiorik ez." -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "Zutabe izenak" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Zerbitzariaren bertsioa" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Databases" msgid "Database-level tabs" msgstr "Datu-baseak" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14331,21 +14299,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14408,139 +14372,139 @@ msgstr "%s taula ezabatu egin da" msgid "Variable name was expected." msgstr "Txantiloi-fitxategiaren izena" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Taularen hasieran" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Errenkada ezabatua izan da" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 #, fuzzy msgid "Detailed profile" msgstr "Datuak soilik" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Beste" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy msgid "State" msgstr "Egoera" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Gutira" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Denbora" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Itxi" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Denbora" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Kontsulta hau gogokoetan gorde" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Label" msgid "Label:" msgstr "Etiketa" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Gogokoen erregistro hau edozein erabiltzailearentzat erabilgarri" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created!" msgstr "%s laster-marka sortu da" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -14571,29 +14535,29 @@ msgstr "" msgid "Bind parameters" msgstr "Parametro okerrak!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 #, fuzzy #| msgid "Bookmark this SQL query" msgid "Bookmark this SQL query:" msgstr "Kontsulta hau gogokoetan gorde" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Kontsulta hau hemen berriz erakutsi" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Soilik ikusi" @@ -14639,105 +14603,105 @@ msgstr "Ezabatu taula honetako jarraipen datuak" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Sortua" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Eguneratua" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy msgid "Delete version" msgstr "Zerbitzariaren bertsioa" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Jarraipen informea" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Egitura kaptura" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "aktibo" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "ez aktibo" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Datuak txertatu eta ordezkatzea baimentzen du." -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Datu-baserik ez" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 #, fuzzy msgid "Date" msgstr "Datuak" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 #, fuzzy msgid "Username" msgstr "Erabiltzaile-izena:" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -14745,79 +14709,79 @@ msgctxt "None for default" msgid "None" msgstr "Batez" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Jarraipena aktibatuta dago." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Jarraipena aktibatuta dago." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Zerbitzariaren bertsioa" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Jarraipen gabeko taulak" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Taularen jarraipena egin" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Taulak jarraipenarekin" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Azken bertsioa" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "Jarraipen datuak ezabatzen" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Bertsioak" @@ -14827,13 +14791,13 @@ msgstr "Bertsioak" msgid "Manage your settings" msgstr "Erlazioen ezaaugarri orokorrak" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." msgstr "Aldaketak gorde dira" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14934,7 +14898,7 @@ msgstr "Datu-baserik ez" msgid "View dump (schema) of databases" msgstr "Ikusi datu-baseen iraulketa (eskema)" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14961,7 +14925,7 @@ msgstr "" "phpMyAdmin-ek ezin izan du %s haria deuseztatu. Seguruena aurretik itxia " "izatea." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -15895,52 +15859,58 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Import files" +msgid "Chart title:" +msgstr "Fitxategiak inportatu" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 #, fuzzy msgid "Series:" msgstr "SQL kontsulta" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "balioa" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "balioa" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside column:" msgid "Series column:" msgstr "Zutabearen barnean:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Values for column %s" msgid "Value Column:" msgstr "%s zutaberako balioak" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -16006,54 +15976,55 @@ msgstr "Iruzkinak" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 -msgid "Internal relations" -msgstr "Barne-erlazioak" - -#: templates/table/relation/common_form.phtml:11 -#, fuzzy -#| msgid "Internal relations" -msgid "Internal relation" -msgstr "Barne-erlazioak" - -#: templates/table/relation/common_form.phtml:14 -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "" - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 #, fuzzy #| msgid "Add constraints" msgid "Foreign key constraints" msgstr "Murrizketak gehitu" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 msgid "Actions" msgstr "Ekintzak" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 #, fuzzy #| msgid "Constraints for table" msgid "Constraint properties" msgstr "Taularentzako murrizketak" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Murrizketak gehitu" -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +msgid "Internal relations" +msgstr "Barne-erlazioak" + +#: templates/table/relation/common_form.phtml:80 +#, fuzzy +#| msgid "Internal relations" +msgid "Internal relation" +msgstr "Barne-erlazioak" + +#: templates/table/relation/common_form.phtml:83 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "" + +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -16210,7 +16181,7 @@ msgid "at beginning of table" msgstr "Taularen hasieran" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Relations" msgid "Partitions" @@ -16255,7 +16226,7 @@ msgstr "Erlazioak" msgid "Edit partitioning" msgstr "Inprimatzeko ikuspegia" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -17504,6 +17475,38 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "Taulak" + +#, fuzzy +#~| msgid "View" +#~ msgid "views" +#~ msgstr "Ikusipegia" + +#, fuzzy +#~ msgid "procedures" +#~ msgstr "Prozesuak" + +#, fuzzy +#~ msgid "events" +#~ msgstr "Bidalita" + +#, fuzzy +#~ msgid "functions" +#~ msgstr "Funtzioak" + +#, fuzzy +#~| msgid "Alter table order by" +#~ msgid "Filter databases by name or regex" +#~ msgstr "Taularen \"Order By\" aldatu" + +#, fuzzy +#~| msgid "Alter table order by" +#~ msgid "Filter by name or regex" +#~ msgstr "Taularen \"Order By\" aldatu" + #, fuzzy #~| msgid "Tracking report" #~ msgid "Taking you to %s." diff --git a/po/fa.po b/po/fa.po index 6c6a1abf9d..72bef20ab1 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:32+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Persian Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "همکاری" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "يك كليد اصلي در %s اضافه شد" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "گزارشات دنبال شده" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 #, fuzzy @@ -2070,256 +2082,256 @@ msgstr "" msgid "End of step" msgstr "در انتهاي جدول" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "انجام شد" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "هیچ پایگاه داده ای انتخاب نشده است." -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 #, fuzzy #| msgid "Create table on database %s" msgid "Create the following table" msgstr "ساخت جدول جديد در پايگاه داده %s" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "هیچ پایگاه داده ای انتخاب نشده است." -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "ذخيره" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "پنهان سازی ضوابط جستجو" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "نمایش معیارهای جستجو" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "جستجو" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "نام ستونها" -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "نام ستونها" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "پنهان سازی ضوابط جستجو" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "نمایش معیارهای جستجو" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "هر نقطه نشان دهنده یک سطر داده ها." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "برچسب ن برفزار یک نقطه نشان داده خواهد شد." -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "برای بزرگنمایی,یک بخش را با موس انتخاب نمایید." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" "با کیک بر روی داده ها ان ها را بینید و احتمالا ردیف داده ها راویرایش کنید." -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "تغییر اندازه طرح با کشیدن آن در امتداد گوشه پایین سمت راس میتواند انجام " "گیرد." -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "انتخاب دو ستون" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "انتخاب دو ستون متفاوت" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "محتوای داده ها" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "در نظر نگرفتن" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "کپی" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "درجه" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "رشته خطی" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "چند گوشه" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "هندسه" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "حلقه داخلی" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "حلقه بیرونی:" -#: js/messages.php:516 +#: js/messages.php:517 #, fuzzy #| msgid "Do you want to import remaining settings?" msgid "Do you want to copy encryption key?" msgstr "آیا میخواهید تنظیمات باقی مانده را وارد کنید؟" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "انتخاب کلید اشاره" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "انتخاب کلید خارجی" -#: js/messages.php:529 +#: js/messages.php:530 #, 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:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "ستون را براي نمايش انتخاب نماييد" -#: js/messages.php:532 +#: js/messages.php:533 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?" @@ -2327,98 +2339,98 @@ msgstr "" "تغییر در طرح شما ذخیره نشده است. آنها از دست خواهد رفت اگر شما آنها را ذخیره " "نکنید. ایا شما میخواهید ادامه دهید؟" -#: js/messages.php:535 +#: js/messages.php:536 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "شماره صفحه:" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 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:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 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:539 +#: js/messages.php:540 #, fuzzy #| msgid "Select Tables" msgid "Delete page" msgstr "Select Tables" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "واحد" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "لطفا يك صفحه را براي ويرايش انتخاب نماييد" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "ویرایش یا صدور نمای رابطه ای" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "اصلاحات ذخيره گرديد" -#: js/messages.php:550 +#: js/messages.php:551 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "اضافه کردن تنظیمات برای ستون " -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "ارسال" -#: js/messages.php:555 +#: js/messages.php:556 #, fuzzy #| msgid "Press escape to cancel editing" msgid "Press escape to cancel editing." msgstr "دکمه ی escape را برای صرفنظر کردن از ویرایش" -#: js/messages.php:557 +#: js/messages.php:558 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?" @@ -2426,49 +2438,49 @@ msgstr "" "شما مقداری داده ویرایش کردید و ان ها ذخیره نشده اند.ایا شما برای ترک این " "صفحه بدون ذخیره کردن داده ها اطمینان دارید؟" -#: js/messages.php:560 +#: js/messages.php:561 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder." msgstr "برای دوباره مرتب کردن drag کنید" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "برای علامتگذاری / برداشتن علامت اینجا را کلبک کن" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "نام ستونها" -#: js/messages.php:570 +#: js/messages.php:571 #, 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:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "نمايش همه" -#: js/messages.php:574 +#: js/messages.php:575 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." @@ -2476,53 +2488,53 @@ msgstr "" "این جدول هیچ مقدار کلیدی ندارد. امکانات ویرایش جدولی، چک باکس ها ، ویرایش ، " "کپی و حذف ممکن است کار نکنند." -#: js/messages.php:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "موقعیت اصلی" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "لغو کردن" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 #, fuzzy #| msgid "Import files" msgid "Import status" msgstr "وارد کردن فایل ها" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Select Tables" -#: js/messages.php:598 +#: js/messages.php:599 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -2530,7 +2542,7 @@ msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "شما همچنین می توانید بیشتر ستون ها را
با کلیک روی آنها ویرایش کنید." -#: js/messages.php:603 +#: js/messages.php:604 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -2538,108 +2550,70 @@ msgid "You can also edit most values
by clicking directly on them." msgstr "" "شما همچنین می توانید بیشتر ستون ها را
با کلیک روی آنها ویرایش کنید." -#: js/messages.php:609 +#: js/messages.php:610 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "به لینک بروید" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "نام ستونها" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "تغيير اسم رمز" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "توليد‌ کن" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "بیشتر" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "نمايش همه" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Hide indexes" msgid "Hide panel" msgstr "مخفی کردن فهرست ها" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Show hint" msgid "Show hidden navigation tree items." msgstr "Show grid" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 #, fuzzy #| msgid "Customize text input fields" msgid "Link with main panel" msgstr "سفارشی کردن فیلدهای ورودی متن" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 #, fuzzy #| msgid "Customize text input fields" msgid "Unlink from main panel" msgstr "سفارشی کردن فیلدهای ورودی متن" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -#, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "جدولها" - -#: js/messages.php:633 -#, fuzzy -#| msgid "View" -msgid "views" -msgstr "نمایش" - -#: js/messages.php:634 -#, fuzzy -#| msgid "Processes" -msgid "procedures" -msgstr "پروسه ها" - -#: js/messages.php:635 -#, fuzzy -#| msgid "Events" -msgid "events" -msgstr "رویدادها" - -#: js/messages.php:636 -#, fuzzy -msgid "functions" -msgstr "تابع" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2649,135 +2623,135 @@ msgstr "" "نسخه %s و در %s بیرون آمده است." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr "نسخه قبلی:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "به روز" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 #, fuzzy msgid "Create view" msgstr "نسخه سرور" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "پورت سرور" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "پورت سرور" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "تغيير تنظیمات" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy msgid "Show report details" msgstr "نمايش جدولها" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "در نظر نگرفتن" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "نمايش دوباره اين پرس و جو در اينجا" -#: js/messages.php:701 +#: js/messages.php:693 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "آيا مطمئن هستيد " -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "توضيحات جدول" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "مخفی کردن نتایج جستجو" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "قبل" -#: js/messages.php:748 +#: js/messages.php:740 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2785,294 +2759,294 @@ msgid "Next" msgstr "بعد" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "امروز" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "ژانویه" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "فوریه" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "مارس" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "آوريل" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "مي" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "ژوئن" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "جولاي" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "آگوست" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "سپتامبر" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "اكتبر" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "نوامبر" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "دسامبر" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "ژانويه" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "فوريه" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "مارس" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "آوريل" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "مي" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "ژوئن" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "جولاي" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "آگوست" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "سپتامبر" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "اكتبر" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "نوامبر" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "دسامبر" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "يكشنبه" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "دوشنبه" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "سه‌شنبه" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "چهارشنبه" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "پنجشنبه" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "جمعه" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "شنبه" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "يكشنبه" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "دوشنبه" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "سه‌شنبه" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "چهارشنبه" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "پنج‌شنبه" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "جمعه" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "شنبه" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "يكشنبه" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "دوشنبه" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "سه‌شنبه" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "چهارشنبه" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "پنج‌شنبه" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "جمعه" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "شنبه" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "هفته" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "تقویم-ماه-سال" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "هیچ" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "ساعت" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "دقیقه" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "ثانیه" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Text fields" msgid "Please fix this field" msgstr "فیلد های متنی" -#: js/messages.php:886 +#: js/messages.php:878 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:887 +#: js/messages.php:879 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:889 +#: js/messages.php:883 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:890 +#: js/messages.php:885 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:891 +#: js/messages.php:888 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:892 +#: js/messages.php:890 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" @@ -3084,53 +3058,53 @@ msgstr "شماره پورت معتبر نیست" msgid "Please enter the same value again" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:898 +#: js/messages.php:917 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:899 +#: js/messages.php:922 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:901 +#: js/messages.php:928 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:902 +#: js/messages.php:933 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "خطا" @@ -3217,11 +3191,12 @@ msgstr "کوئری داخلی" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3269,7 +3244,7 @@ msgstr "" msgid "Explain" msgstr "شرح دادن SQL" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "استفاده از پروفایل" @@ -3314,8 +3289,8 @@ msgid "History" msgstr "معتبرسازي SQL" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3502,30 +3477,30 @@ msgstr "" msgid "Switch to dark theme" msgstr "تعویض به پایگاه داده ی کپی شده" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3535,8 +3510,8 @@ msgstr "" msgid "Ascending" msgstr "صعودي" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3703,8 +3678,8 @@ msgstr[0] "%1$s همتا در %2$s" msgstr[1] "%1$s همتا در %2$s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3748,129 +3723,129 @@ msgstr "عدم انتخاب همه" msgid "Inside column:" msgstr "در ستونها:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "اضافه يا حذف ستونها" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 #, fuzzy #| msgid "Filter" msgid "Filter rows" msgstr "فیلتر" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Search in database" msgid "Search this table" msgstr "جستجو در پايگاه‌ داده" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "شروع" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "قبلی" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "بعدی" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "انتها" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "همه" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of rows per page" msgid "Number of rows:" msgstr "تعداد سطرها در هر صفحه" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 #, fuzzy msgid "Partial texts" msgstr "متغییر" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "كاملا متن" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display column for relations" msgstr "نمايش توضيحات ستون" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 #, fuzzy msgid "Hide browser transformation" msgstr "اطلاعات ورود" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "سطر حذف گرديد" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "از کار انداختن" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -3878,7 +3853,8 @@ msgstr "" msgid "Your SQL query has been executed successfully." msgstr "اجرای فرایند شما با موفقيت اجرا گرديد" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3887,41 +3863,41 @@ msgstr "" "در این نما حداقل این تعداد از سطرها موجود می باشد . لطفا به %sنوشتار%s " "مراجعه کنید ." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "جمع كل" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "موارد انتخاب‌ شده :" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3929,27 +3905,27 @@ msgstr "موارد انتخاب‌ شده :" msgid "Check all" msgstr "انتخاب همه" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "نماي چاپ" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "نمايش توضيحات ستون" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 #, fuzzy #| msgid "Link not found" msgid "Link not found!" @@ -4053,19 +4029,19 @@ msgstr "هيچ فهرستي تعريف‌نشده‌است!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "فهرست‌ها" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -4074,24 +4050,24 @@ msgid "Action" msgstr "عمل" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "نام کلید" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "يكتا" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "" @@ -4099,8 +4075,8 @@ msgstr "" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -4110,8 +4086,8 @@ msgid "Collation" msgstr "مقایسه" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -4127,15 +4103,15 @@ msgstr "كليد اصلي حذف گرديد." msgid "Index %s has been dropped." msgstr "فهرست %s حذف گرديد." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "حذف" @@ -4172,12 +4148,13 @@ msgstr "نمایه" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4185,7 +4162,7 @@ msgstr "جدول" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4194,8 +4171,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4203,41 +4180,41 @@ msgid "Search" msgstr "جستجو" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "درج" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "امتيازات" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "عمليات" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4248,16 +4225,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "پرس و جو" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4265,22 +4242,22 @@ msgstr "" msgid "Events" msgstr "رویدادها" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "طرّاح" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "Textarea columns" msgid "Central columns" msgstr "اضافه يا حذف ستونها" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "پايگاههاي داده" @@ -4291,35 +4268,35 @@ msgid "User accounts" msgstr "كاربر" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 #, fuzzy msgid "Binary log" msgstr "دودويي" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "تکرار" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 #, fuzzy msgid "Variables" msgstr "متغییر" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "موتور" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4644,7 +4621,7 @@ msgstr "بازناميدن فهرست به PRIMARY مقدور نمي‌باشد! msgid "No index parts defined!" msgstr "هيچ فهرستي تعريف‌نشده‌است!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5074,39 +5051,39 @@ msgstr "" msgid "Click to toggle" msgstr "برای انتخاب کلیک کنبد" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "رایانه خود را مشاهده نمایید:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "انتخاب از مسیر آپلود در سرور %s:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "پوشه‌اي را كه براي انتقال فايل انتخاب كرده‌ايد قابل دسترسي نيست." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 #, fuzzy #| msgid "There are no files to upload" msgid "There are no files to upload!" msgstr "فایلی برای آپلود موجود نیست" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "خالي" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "اجرا" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "چاپ" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 #, fuzzy #| msgid "User" msgid "Users" @@ -5283,8 +5260,8 @@ msgid "Add new column" msgstr "افزودن ستون جديد" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5348,19 +5325,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "شما باید به %s %s یا جدیدتر به روز شوید." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "احتمال وجود exploit" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "کلید عددی یافت شد" @@ -6190,7 +6167,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "مقدار افزایشی خودکار اضافه شود" @@ -6231,7 +6208,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "افزودن %s" @@ -7900,7 +7877,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "پرس و جوي SQL" @@ -8190,112 +8167,35 @@ msgstr "" msgid "OpenDocument Text" msgstr "مستندات باز" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "جدول %s خالی شد." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "نمای %s حذف شد" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "جدول %s حذف شد" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "ناشناس" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" - -#: libraries/controllers/TableStructureController.php:250 -#, fuzzy -#| msgid "No rows selected" -msgid "No column selected." -msgstr "هیچ سطری انتخاب نشده است" - -#: libraries/controllers/TableStructureController.php:484 -#, fuzzy -#| msgid "Database %s has been dropped." -msgid "The columns have been moved successfully." -msgstr "پايگاه داده %s حذف گرديد." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -#, fuzzy -#| msgid "Query" -msgid "Query error" -msgstr "پرس و جو" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "تغيير" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "فهرست" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "كاملا متن" - -#: libraries/controllers/TableStructureController.php:1201 -#, fuzzy -#| msgid "Use this value" -msgid "Distinct values" -msgstr "این مقدار را استفاده کنید" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8311,6 +8211,14 @@ msgstr "" msgid "No data to display" msgstr "اطلاعاتی یافت نشد" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "" + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "" @@ -8321,25 +8229,94 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr "ارتباط داخلی افزوده شد" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Search" msgid "Table search" msgstr "جستجو" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Zoom Search" msgid "Zoom search" msgstr "زوم جستجو" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "Hide search criteria" msgid "Find and replace" msgstr "پنهان سازی ضوابط جستجو" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" + +#: libraries/controllers/table/TableStructureController.php:251 +#, fuzzy +#| msgid "No rows selected" +msgid "No column selected." +msgstr "هیچ سطری انتخاب نشده است" + +#: libraries/controllers/table/TableStructureController.php:485 +#, fuzzy +#| msgid "Database %s has been dropped." +msgid "The columns have been moved successfully." +msgstr "پايگاه داده %s حذف گرديد." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +#, fuzzy +#| msgid "Query" +msgid "Query error" +msgstr "پرس و جو" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "تغيير" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "فهرست" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "كاملا متن" + +#: libraries/controllers/table/TableStructureController.php:1209 +#, fuzzy +#| msgid "Use this value" +msgid "Distinct values" +msgstr "این مقدار را استفاده کنید" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8349,7 +8326,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8422,7 +8399,7 @@ msgstr "ساختن" msgid "Create database:" msgstr "ساخت پايگاه داده جديد" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "امتيازات" @@ -9144,70 +9121,70 @@ msgid "Dump has been saved to file %s." msgstr "اطلاعات دریافت شده در فایل %s ذخیره شد‬." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL يك نتيجه خالي داد. (مثلا 0 سطر)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, fuzzy, php-format msgid "Go to database: %s" msgstr "No databases" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, fuzzy, php-format msgid "Go to table: %s" msgstr "No databases" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "فقط ساختار" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" @@ -9231,75 +9208,75 @@ msgstr "تابع" msgid "Binary" msgstr "دودويي" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "يا" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 #, fuzzy #| msgid "Select from the web server upload directory %s:" msgid "web server upload directory:" msgstr "انتخاب از مسیر آپلود در سرور %s:" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "درج" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "و سپس" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "درج به عنوان يك سطر جديد" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "برو به صفحه قبل" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "درج يك سطر جديد ديگر" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "برگرد به این صفحه" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "ویرایش کردن ردیف بعدی" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9311,11 +9288,11 @@ msgstr "" msgid "Value" msgstr "مقدار" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9333,43 +9310,43 @@ msgstr "خير" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table prefix:" msgstr "جایگزینی پیشوند جدول" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Copy table with prefix" msgid "Copy table with prefix:" msgstr "کپی کردن جدول با پیشوند" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 #, fuzzy #| msgid "Fri" msgid "From" msgstr "جمعه" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Replace table prefix" msgid "Add table prefix:" msgstr "جایگزینی پیشوند جدول" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -9603,8 +9580,8 @@ msgstr "پروسه ها" msgid "Views:" msgstr "نمایش" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "نمايش" @@ -9646,10 +9623,9 @@ msgstr[0] "" msgstr[1] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "Alter table order by" -msgid "Filter databases by name or regex" -msgstr "تغيير جدول مرتب شده با" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -9658,12 +9634,6 @@ msgstr "تغيير جدول مرتب شده با" msgid "Clear fast filter" msgstr "ذخيره به صورت پرونده" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "Alter table order by" -msgid "Filter by name or regex" -msgstr "تغيير جدول مرتب شده با" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -10086,7 +10056,7 @@ msgstr "تغییر نام پایگاه داده به" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -10095,7 +10065,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -10115,18 +10085,18 @@ msgstr "حذف پایگاه داده" msgid "Drop the database (DROP)" msgstr "حذف پایگاه داده" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "فقط ساختار" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "ساختار و داده‌ها" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "فقط داده‌ها" @@ -10140,7 +10110,7 @@ msgstr "کپی کردن پابگاه داده به" msgid "CREATE DATABASE before copying" msgstr "پیش از کپی پایگاه داده ایجاد شود" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "اعمال محدودیت ها" @@ -10180,63 +10150,63 @@ msgstr "" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "كپي كردن جدول به (پايگاه داده.جدول)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "نگهداشت جدول" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "انالیز جدول" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "بررسي جدول" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "بررسي جدول" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, fuzzy, php-format msgid "Table %s has been flushed." msgstr "جدول %s حذف گرديد" -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Flush the table (\"FLUSH\")" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "بهينه‌سازي جدول" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "بازسازی جدول" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 #, fuzzy @@ -10244,105 +10214,105 @@ msgstr "بازسازی جدول" msgid "Delete data or table" msgstr "حذف داده‌هاي جدول" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 #, fuzzy msgid "Delete the table (DROP)" msgstr "No databases" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "تعمیر" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "بستن" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 #, fuzzy msgid "Partition maintenance" msgstr "نگهداشت جدول" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "جدول %s به %s انتقال داده‌شد." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "جدول %s به %s كپي شد." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "جدول %s به %s انتقال داده‌شد." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "جدول %s به %s كپي شد." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "نام جدول وارد نشده‌است !" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "" @@ -10528,7 +10498,7 @@ msgstr "آمار پايگاههاي داده" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "حذف داده‌هاي جدول" @@ -10554,14 +10524,14 @@ msgstr "توضیحات" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 #, fuzzy msgid "Structure for view" @@ -10569,7 +10539,7 @@ msgstr "فقط ساختار" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10677,7 +10647,7 @@ msgid "Database:" msgstr "پايگاه داده" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10791,7 +10761,7 @@ msgid "Data creation options" msgstr "آمار پايگاههاي داده" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -10860,8 +10830,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10869,92 +10839,92 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Missing data for %s" msgid "Metadata" msgstr "داده برای %s وارد نشده است" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Metadata for %s" msgstr "داده برای %s وارد نشده است" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "ایجاد:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "آخرین به روز رسانی:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "آخرین بازدید:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "در حال استفاده" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for dumped tables" msgstr "درجدول های:" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "درجدول های:" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "مقدار افزایشی خودکار اضافه شود" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "مقدار افزایشی خودکار اضافه شود" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "فقط ساختار" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "" @@ -11205,9 +11175,9 @@ msgstr "" msgid "Table of contents" msgstr "توضيحات جدول" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "اضافي" @@ -11371,63 +11341,63 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "خطا : رابطه قبلا ایجاد شده است." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "رابطه کلید خارجی اضافه شد" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "خطا : رابطه اضافه نشده است ." -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Relational features are disabled!" msgstr "خطا : رابطه اضافه نشده است ." -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "ارتباط داخلی افزوده شد" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "خطا : رابطه اضافه نشده است ." -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "رابطه کلید خارجی اضافه شد" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "خطا : رابطه اضافه نشده است ." -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "خطا : رابطه اضافه نشده است ." -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11480,110 +11450,110 @@ msgstr "" msgid "Please see the documentation on how to update your column_info table. " msgstr "" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "There are no recent tables" msgid "Persistent favorite tables" msgstr "جدول های اخیری وجود ندارد" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Modifications have been saved" msgid "Configurable menus" msgstr "اصلاحات ذخيره گرديد" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Remember table's sorting" msgid "Remembering Designer Settings" msgstr "به یاد ماندن نوع جدول" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "نوع صدور معتبر نیست" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "no Description" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11764,8 +11734,8 @@ msgstr "نام كاربر" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "نام كاربر" @@ -11773,7 +11743,7 @@ msgstr "نام كاربر" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "اسم رمز" @@ -12434,7 +12404,7 @@ msgstr[0] "پايگاه داده %s حذف گرديد." msgid "Plugin" msgstr "افزونه" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "نسخه" @@ -12442,99 +12412,95 @@ msgstr "نسخه" msgid "Author" msgstr "نویسنده" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "اعتبار" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "غيرفعال" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 #, fuzzy msgid "No privileges." msgstr "امتيازات" -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "وارد کردن تمام دسترسی ها به غیر از GRANT." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "دادن مجوز برای حذف اطلاعات." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "دادن مجوز برای ساخت پایگاه داده و جدول جدید." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "دادن مجوز برای حذف پایگاه داده و جدول ها." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "دادن اجازه برای وارد و خارج کردن اطلاعات از فایل ها." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "دادن مجوز برای تغییر ساختار جدول های ایجاد شده ." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12542,41 +12508,41 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "دادن مجوز برای ایجاد جدول موقت." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "دادن مجوز برای ایجاد نمایه جدید." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "دادن مجوز برای قرار دهی رویداد برای لیست رویدادهای زمانی" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 #, fuzzy #| msgid "Allows altering and dropping stored routines." msgid "Allows creating and dropping triggers." @@ -12584,27 +12550,27 @@ msgstr "دادن مجوز برای تغییر یا حذف روال های ذخی #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "دادن مجوز برای ایجاد روال ." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "دادن مجوز برای تغییر یا حذف روال های ذخیره شده." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "دادن مجوز برای ایجاد , حذف و تغییر نام کاربران." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -12618,8 +12584,8 @@ msgstr "خير" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12661,38 +12627,38 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy msgid "Routine" msgstr "افزودن ستون جديد" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12712,14 +12678,14 @@ msgstr "دادن مجوز برای ایجاد روال ." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -12731,7 +12697,7 @@ msgid "Administration" msgstr "مدیریت" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "" @@ -12740,15 +12706,15 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "دادن مجوز برای ایجاد جدول جدید." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "" @@ -12771,7 +12737,7 @@ msgid "Native MySQL Authentication" msgstr "ورود" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "اطلاعات ورود" @@ -12796,8 +12762,8 @@ msgstr "نام كاربر" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Log name" msgid "Host name" @@ -12819,240 +12785,240 @@ msgstr "ورود" msgid "Password Hashing Method" msgstr "رمزگذاری پسورد" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "شما امتيازات %s را ابطال كرديد." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "افزودن کاربر" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database export options" msgid "Database for user account" msgstr "آمار پايگاههاي داده" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "نمای %s حذف گرديد." -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 #, fuzzy msgid "Grant" msgstr "چاپ" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "هيچ كاربري وچود ندارد." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "همه" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "ويرايش امتيازات" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "ابطال" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "ویرایش کردن ردیف بعدی" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Check Privileges" msgid "Routine-specific privileges" msgstr "چک سطح دسترسی" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Removing Selected Users" msgid "Remove selected user accounts" msgstr "حذف کاربران انتخاب شده" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "امتيازات %s به هنگام گرديد." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "در حال پاک کردن %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "امتيازات" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "كاربر" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 #, fuzzy #| msgid "New" msgctxt "Create new user" msgid "New" msgstr "جدید" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "ويرايش امتيازات" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "User" msgid "User account" msgstr "كاربر" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13061,7 +13027,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -13070,11 +13036,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "شما يك كاربر جديد اضافه كرديد." @@ -13312,33 +13278,33 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 #, fuzzy msgid "Refresh rate" msgstr "توليد‌شده توسط" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "اضافه يا حذف ستونها" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -13405,7 +13371,7 @@ msgid "Statements" msgstr "شرج" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -13435,33 +13401,33 @@ msgstr "نمايش جدولها" msgid "Related links:" msgstr "عمليات" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13469,78 +13435,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13548,7 +13514,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13556,42 +13522,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13599,33 +13565,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13634,243 +13600,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "مجموعه كاراكترهاي پرونده:" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13878,99 +13844,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13978,18 +13944,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13997,13 +13963,13 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "پیگردی فعال نمی باشد." -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -14012,76 +13978,76 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 #, fuzzy #| msgid "User" msgid "User groups" msgstr "كاربر" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "نسخه سرور" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Database server" msgid "Database level tabs" msgstr "سرور پایگاه داده" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table comments" msgid "Table level tabs" msgstr "توضيحات جدول" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy #| msgid "View" msgid "View users" msgstr "نمایش" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "افزودن کاربر" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy msgid "User group menu assignments" msgstr "امتيازات" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "نام ستونها" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "نسخه سرور" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "سرور پایگاه داده" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14145,21 +14111,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14221,126 +14183,126 @@ msgstr "جدول %s حذف گرديد" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "در ابتداي جدول" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "سطر حذف گرديد" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 #, fuzzy msgid "Detailed profile" msgstr "فقط داده‌ها" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 #, fuzzy #| msgid "Other" msgid "Order" msgstr "دیگر" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy #| msgid "Start" msgid "State" msgstr "شنبه" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "زمان کل:" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "زمان" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "بستن" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "زمان" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Data Label" msgid "Label:" msgstr "پايگاه داده" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created!" msgstr "بوک مارک %s ایجاد شده" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -14352,7 +14314,7 @@ msgstr "" "این جدول هیچ مقدار کلیدی ندارد. امکانات ویرایش جدولی، چک باکس ها ، ویرایش ، " "کپی و حذف ممکن است کار نکنند." -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -14364,7 +14326,7 @@ msgstr "" "این جدول هیچ مقدار کلیدی ندارد. امکانات ویرایش جدولی، چک باکس ها ، ویرایش ، " "کپی و حذف ممکن است کار نکنند." -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -14395,27 +14357,27 @@ msgstr "" msgid "Bind parameters" msgstr "ورودی های اشتباه!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "نمايش دوباره اين پرس و جو در اينجا" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "" @@ -14460,102 +14422,102 @@ msgstr "" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "ایجاد شده" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "به روز شده" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy msgid "Delete version" msgstr "نسخه سرور" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "گزارشات دنبال شده" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "تصویر لحظه ای ساختار" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "فعال" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "غیر فعال" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "No databases" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 #, fuzzy msgid "Date" msgstr "داده" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "نام كاربر" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -14563,79 +14525,79 @@ msgctxt "None for default" msgid "None" msgstr "خير" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "پیگردی فعال می باشد." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "پیگردی فعال می باشد." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format msgid "Version %1$s of %2$s was deleted." msgstr "نسخه سرور" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "جدول های پیگیری نشده" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "پیگیری جدول" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "جدول های پیگیری شده" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "آخرین نسخه" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "در حال حذف اطلاعات پیگیری" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "نسخه ها" @@ -14643,13 +14605,13 @@ msgstr "نسخه ها" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." msgstr "اصلاحات ذخيره گرديد" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14752,7 +14714,7 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "نمايش الگوي(طرح) پايگاه داده" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14777,7 +14739,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -15696,52 +15658,57 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +msgid "Chart title:" +msgstr "No tables" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 #, fuzzy msgid "Series:" msgstr "پرس و جوي SQL" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "مقدار" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "مقدار" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside column:" msgid "Series column:" msgstr "در ستونها:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Values for column %s" msgid "Value Column:" msgstr "تعداد ستون ها %s" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -15808,56 +15775,57 @@ msgstr "توضيحات" msgid "Drag to reorder" msgstr "برای دوباره مرتب کردن drag کنید" -#: templates/table/relation/common_form.phtml:7 -#, fuzzy -msgid "Internal relations" -msgstr "اروپای غربی" - -#: templates/table/relation/common_form.phtml:11 -#, fuzzy -msgid "Internal relation" -msgstr "اروپای غربی" - -#: templates/table/relation/common_form.phtml:14 -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "" - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 #, fuzzy #| msgid "Add constraints" msgid "Foreign key constraints" msgstr "اعمال محدودیت ها" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 #, fuzzy #| msgid "Action" msgid "Actions" msgstr "عمل" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 #, fuzzy #| msgid "Column names" msgid "Constraint properties" msgstr "نام ستونها" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "اعمال محدودیت ها" -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +#, fuzzy +msgid "Internal relations" +msgstr "اروپای غربی" + +#: templates/table/relation/common_form.phtml:80 +#, fuzzy +msgid "Internal relation" +msgstr "اروپای غربی" + +#: templates/table/relation/common_form.phtml:83 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "" + +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16013,7 +15981,7 @@ msgid "at beginning of table" msgstr "در ابتداي جدول" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16058,7 +16026,7 @@ msgstr "موقعیت" msgid "Edit partitioning" msgstr "نماي چاپ" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -17315,6 +17283,40 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "مقدار concurrent_insert صفر شده است" +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "جدولها" + +#, fuzzy +#~| msgid "View" +#~ msgid "views" +#~ msgstr "نمایش" + +#, fuzzy +#~| msgid "Processes" +#~ msgid "procedures" +#~ msgstr "پروسه ها" + +#, fuzzy +#~| msgid "Events" +#~ msgid "events" +#~ msgstr "رویدادها" + +#, fuzzy +#~ msgid "functions" +#~ msgstr "تابع" + +#, fuzzy +#~| msgid "Alter table order by" +#~ msgid "Filter databases by name or regex" +#~ msgstr "تغيير جدول مرتب شده با" + +#, fuzzy +#~| msgid "Alter table order by" +#~ msgid "Filter by name or regex" +#~ msgstr "تغيير جدول مرتب شده با" + #, fuzzy #~| msgid "Tracking report" #~ msgid "Taking you to %s." diff --git a/po/fi.po b/po/fi.po index 70a8b23221..279da4a1f9 100644 --- a/po/fi.po +++ b/po/fi.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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-11-12 10:38+0000\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Finnish " -"\n" +"Language-Team: Finnish \n" "Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.5-dev\n" -#: changelog.php:37 license.php:30 +#: changelog.php:37 license.php:33 #, php-format msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " @@ -37,7 +37,7 @@ msgstr "Järjestä napsauttamalla." msgid "Showing rows %1$s - %2$s." msgstr "Näytetään rivi(t) %1$s–%2$s." -#: db_create.php:61 +#: db_create.php:62 #, php-format msgid "Database %1$s has been created." msgstr "Tietokanta %1$s on luotu." @@ -46,13 +46,13 @@ msgstr "Tietokanta %1$s on luotu." msgid "Database comment" msgstr "Tietokannan kommentti" -#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:601 +#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:599 #: templates/columns_definitions/column_definitions_form.phtml:84 msgid "Table comments:" msgstr "Taulun kommentit:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1568 +#: libraries/insert_edit.lib.php:1575 #: libraries/navigation/nodes/NodeColumn.php:34 #: libraries/plugins/export/ExportHtmlword.php:288 #: libraries/plugins/export/ExportHtmlword.php:384 @@ -62,13 +62,14 @@ msgstr "Taulun kommentit:" #: libraries/plugins/export/ExportTexytext.php:282 #: libraries/plugins/export/ExportTexytext.php:373 #: libraries/plugins/export/PMA_ExportPdf.php:472 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:882 libraries/tracking.lib.php:978 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 +#: libraries/tracking.lib.php:892 libraries/tracking.lib.php:990 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:10 -#: templates/table/relation/common_form.phtml:43 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:27 +#: templates/table/relation/common_form.phtml:79 #: templates/table/relation/foreign_key_row.phtml:176 #: templates/table/relation/foreign_key_row.phtml:188 #: templates/table/relation/internal_relational_row.phtml:73 @@ -88,14 +89,14 @@ msgstr "Sarake" #: libraries/plugins/export/ExportTexytext.php:283 #: libraries/plugins/export/ExportTexytext.php:374 #: libraries/plugins/export/PMA_ExportPdf.php:474 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 #: libraries/rte/rte_list.lib.php:78 libraries/rte/rte_list.lib.php:106 #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2606 libraries/tracking.lib.php:883 -#: libraries/tracking.lib.php:975 +#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -105,7 +106,7 @@ msgstr "Tyyppi" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:709 -#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1577 +#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1584 #: libraries/plugins/export/ExportHtmlword.php:294 #: libraries/plugins/export/ExportHtmlword.php:390 #: libraries/plugins/export/ExportLatex.php:517 @@ -114,9 +115,9 @@ msgstr "Tyyppi" #: libraries/plugins/export/ExportTexytext.php:284 #: libraries/plugins/export/ExportTexytext.php:375 #: libraries/plugins/export/PMA_ExportPdf.php:476 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 -#: libraries/tracking.lib.php:885 libraries/tracking.lib.php:981 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/tracking.lib.php:895 libraries/tracking.lib.php:993 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 @@ -133,9 +134,9 @@ msgstr "Tyhjä" #: libraries/plugins/export/ExportTexytext.php:285 #: libraries/plugins/export/ExportTexytext.php:376 #: libraries/plugins/export/PMA_ExportPdf.php:478 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 -#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:886 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:896 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 @@ -147,8 +148,8 @@ msgstr "Oletusarvo" #: libraries/plugins/export/ExportOdt.php:488 #: libraries/plugins/export/ExportTexytext.php:378 #: libraries/plugins/export/PMA_ExportPdf.php:487 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:640 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:663 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 msgid "Links to" msgstr "Viittaa sarakkeeseen" @@ -159,37 +160,38 @@ msgstr "Viittaa sarakkeeseen" #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:381 #: libraries/plugins/export/PMA_ExportPdf.php:494 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:651 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:664 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:649 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 #: templates/columns_definitions/table_fields_definitions.phtml:65 msgid "Comments" msgstr "Kommentit" -#: db_datadict.php:155 libraries/controllers/TableStructureController.php:1189 -#: libraries/controllers/TableStructureController.php:1194 -#: libraries/tracking.lib.php:925 +#: db_datadict.php:155 +#: libraries/controllers/table/TableStructureController.php:1197 +#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:79 +#: templates/table/structure/display_structure.phtml:80 msgid "Primary" msgstr "Perusavain" -#: db_datadict.php:165 js/messages.php:370 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:371 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 -#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:403 -#: libraries/mult_submits.lib.php:417 +#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:408 +#: libraries/mult_submits.lib.php:422 #: libraries/plugins/export/ExportHtmlword.php:654 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:710 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2971 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3620 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1013 libraries/tracking.lib.php:1018 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2973 +#: libraries/server_privileges.lib.php:2993 +#: libraries/server_privileges.lib.php:3631 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -198,32 +200,32 @@ msgstr "Perusavain" msgid "No" msgstr "Ei" -#: db_datadict.php:165 js/messages.php:515 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:516 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 #: libraries/config/FormDisplay.tpl.php:280 -#: libraries/controllers/TableStructureController.php:770 -#: libraries/controllers/TableStructureController.php:1440 -#: libraries/controllers/TableStructureController.php:1449 -#: libraries/controllers/TableStructureController.php:1454 -#: libraries/controllers/TableStructureController.php:1459 -#: libraries/controllers/TableStructureController.php:1464 -#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:199 -#: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 -#: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 +#: libraries/controllers/table/TableStructureController.php:771 +#: libraries/controllers/table/TableStructureController.php:1448 +#: libraries/controllers/table/TableStructureController.php:1457 +#: libraries/controllers/table/TableStructureController.php:1462 +#: libraries/controllers/table/TableStructureController.php:1467 +#: libraries/controllers/table/TableStructureController.php:1472 +#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:200 +#: libraries/mult_submits.lib.php:344 libraries/mult_submits.lib.php:377 +#: libraries/mult_submits.lib.php:406 libraries/mult_submits.lib.php:420 #: libraries/plugins/export/ExportHtmlword.php:655 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:788 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:711 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2968 -#: libraries/server_privileges.lib.php:2989 -#: libraries/server_privileges.lib.php:3617 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1011 libraries/tracking.lib.php:1016 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2970 +#: libraries/server_privileges.lib.php:2991 +#: libraries/server_privileges.lib.php:3628 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -236,8 +238,8 @@ msgstr "Kyllä" msgid "View dump (schema) of database" msgstr "Tee vedos tietokannasta" -#: db_export.php:51 db_tracking.php:102 export.php:382 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:176 +#: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 +#: libraries/controllers/DatabaseStructureController.php:157 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "Tietokannassa ei ole tauluja." @@ -254,7 +256,7 @@ msgstr "Taulut" #: db_export.php:66 libraries/Menu.php:320 libraries/Menu.php:427 #: libraries/Util.php:3407 libraries/Util.php:3417 libraries/Util.php:3423 -#: libraries/Util.php:3702 libraries/Util.php:4339 libraries/Util.php:4356 +#: libraries/Util.php:3703 libraries/Util.php:4340 libraries/Util.php:4357 #: libraries/central_columns.lib.php:729 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:320 @@ -262,10 +264,10 @@ msgstr "Taulut" #: libraries/config/user_preferences.forms.php:218 #: libraries/config/user_preferences.forms.php:259 #: libraries/config/user_preferences.forms.php:285 -#: libraries/import.lib.php:1299 libraries/navigation/nodes/NodeColumn.php:44 +#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:44 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 -#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:877 +#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:887 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -310,11 +312,11 @@ msgstr "" "phpMyAdminin asetusmuisti on poistettu käytöstä. Virheenkorjaukseksi, ole " "hyvä ja katso %slisätietoja%s." -#: db_qbe.php:135 +#: db_qbe.php:136 msgid "You have to choose at least one column to display!" msgstr "Valitse vähintään yksi sarake!" -#: db_qbe.php:152 +#: db_qbe.php:154 #, php-format msgid "Switch to %svisual builder%s" msgstr "Vaihda %svisuaaliseen muokkaimeen%s" @@ -340,7 +342,7 @@ msgstr "Versio %1$s luotiin valituille tauluille, seuranta on käytössä." msgid "No tables selected." msgstr "Yhtään taulua ei ole valittu." -#: db_tracking.php:146 +#: db_tracking.php:149 msgid "Database Log" msgstr "Tietokantaloki" @@ -376,7 +378,7 @@ msgstr "Haluat ehkä päivittää tämän sivun." msgid "Bad type!" msgstr "Virheellinen tyyppi!" -#: export.php:276 +#: export.php:278 msgid "Bad parameters!" msgstr "Virheelliset parametrit!" @@ -384,98 +386,98 @@ msgstr "Virheelliset parametrit!" msgid "Invalid export type" msgstr "Virheellinen vientitapa" -#: gis_data_editor.php:119 +#: gis_data_editor.php:117 #, php-format msgid "Value for the column \"%s\"" msgstr "Arvo sarakkeelle %s" -#: gis_data_editor.php:147 +#: gis_data_editor.php:145 #: templates/table/gis_visualization/gis_visualization.phtml:37 msgid "Use OpenStreetMaps as Base Layer" msgstr "Käytä perustasossa OpenStreetMaps-karttaa" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:169 +#: gis_data_editor.php:167 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:192 +#: gis_data_editor.php:190 #, php-format msgid "Geometry %d:" msgstr "Geometria %d:" -#: gis_data_editor.php:214 +#: gis_data_editor.php:212 msgid "Point:" msgstr "Piste:" -#: gis_data_editor.php:215 gis_data_editor.php:242 gis_data_editor.php:298 -#: gis_data_editor.php:371 js/messages.php:504 +#: gis_data_editor.php:213 gis_data_editor.php:240 gis_data_editor.php:296 +#: gis_data_editor.php:369 js/messages.php:505 msgid "X" msgstr "X" -#: gis_data_editor.php:218 gis_data_editor.php:246 gis_data_editor.php:302 -#: gis_data_editor.php:377 js/messages.php:505 +#: gis_data_editor.php:216 gis_data_editor.php:244 gis_data_editor.php:300 +#: gis_data_editor.php:375 js/messages.php:506 msgid "Y" msgstr "Y" -#: gis_data_editor.php:240 gis_data_editor.php:296 gis_data_editor.php:369 -#: js/messages.php:507 +#: gis_data_editor.php:238 gis_data_editor.php:294 gis_data_editor.php:367 +#: js/messages.php:508 #, php-format msgid "Point %d" msgstr "Piste %d" -#: gis_data_editor.php:253 gis_data_editor.php:309 gis_data_editor.php:387 -#: js/messages.php:513 +#: gis_data_editor.php:251 gis_data_editor.php:307 gis_data_editor.php:385 +#: js/messages.php:514 msgid "Add a point" msgstr "Lisää piste" -#: gis_data_editor.php:270 +#: gis_data_editor.php:268 #, php-format msgid "Linestring %d:" msgstr "Rivimerkkijono %d:" -#: gis_data_editor.php:273 gis_data_editor.php:350 +#: gis_data_editor.php:271 gis_data_editor.php:348 msgid "Outer ring:" msgstr "Ulkokehä:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:273 gis_data_editor.php:350 #, php-format msgid "Inner ring %d:" msgstr "Sisäkehä %d:" -#: gis_data_editor.php:312 +#: gis_data_editor.php:310 msgid "Add a linestring" msgstr "Lisää rivimerkkijono" -#: gis_data_editor.php:313 gis_data_editor.php:392 js/messages.php:514 +#: gis_data_editor.php:311 gis_data_editor.php:390 js/messages.php:515 msgid "Add an inner ring" msgstr "Lisää sisäympyrä" -#: gis_data_editor.php:334 +#: gis_data_editor.php:332 #, php-format msgid "Polygon %d:" msgstr "Monikulmio %d:" -#: gis_data_editor.php:398 +#: gis_data_editor.php:396 msgid "Add a polygon" msgstr "Lisää monikulmio" -#: gis_data_editor.php:404 +#: gis_data_editor.php:402 msgid "Add geometry" msgstr "Lisää geometria" -#: gis_data_editor.php:410 js/messages.php:345 libraries/DbSearch.php:462 -#: libraries/DisplayResults.php:1783 libraries/browse_foreigners.lib.php:142 +#: gis_data_editor.php:408 js/messages.php:346 libraries/DbSearch.php:462 +#: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:151 #: libraries/display_export.lib.php:404 libraries/display_export.lib.php:410 -#: libraries/display_import.lib.php:403 libraries/index.lib.php:42 -#: libraries/insert_edit.lib.php:1547 libraries/insert_edit.lib.php:1584 +#: libraries/display_import.lib.php:403 libraries/index.lib.php:45 +#: libraries/insert_edit.lib.php:1554 libraries/insert_edit.lib.php:1591 #: libraries/normalization.lib.php:168 libraries/normalization.lib.php:825 #: libraries/operations.lib.php:47 libraries/operations.lib.php:114 #: libraries/operations.lib.php:266 libraries/operations.lib.php:309 #: libraries/operations.lib.php:806 libraries/operations.lib.php:877 -#: libraries/operations.lib.php:926 libraries/operations.lib.php:1336 -#: libraries/operations.lib.php:1653 +#: libraries/operations.lib.php:926 libraries/operations.lib.php:1339 +#: libraries/operations.lib.php:1656 #: libraries/plugins/auth/AuthenticationCookie.php:239 #: libraries/replication_gui.lib.php:124 libraries/replication_gui.lib.php:163 #: libraries/replication_gui.lib.php:328 libraries/replication_gui.lib.php:465 @@ -484,12 +486,12 @@ msgstr "Lisää geometria" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2343 -#: libraries/server_privileges.lib.php:3114 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_user_groups.lib.php:285 -#: libraries/sql_query_form.lib.php:369 libraries/sql_query_form.lib.php:429 -#: libraries/tracking.lib.php:536 libraries/tracking.lib.php:656 +#: libraries/server_privileges.lib.php:2345 +#: libraries/server_privileges.lib.php:3116 +#: libraries/server_privileges.lib.php:3735 +#: libraries/server_user_groups.lib.php:290 +#: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 +#: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 #: prefs_manage.php:280 prefs_manage.php:358 #: templates/columns_definitions/column_definitions_form.phtml:64 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 @@ -502,11 +504,11 @@ msgstr "Lisää geometria" msgid "Go" msgstr "Siirry" -#: gis_data_editor.php:413 +#: gis_data_editor.php:411 msgid "Output" msgstr "Tulos" -#: gis_data_editor.php:416 +#: gis_data_editor.php:414 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -518,7 +520,7 @@ msgstr "" msgid "Succeeded" msgstr "Kirjanmerkki lisätty onnistuneesti" -#: import.php:59 js/messages.php:588 +#: import.php:59 js/messages.php:589 msgid "Failed" msgstr "Tuonti epäonnistui" @@ -581,7 +583,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "Tuontiin tarvittavaa lisäosaa ei voida tuoda, tarkista asetukset!" -#: import.php:669 libraries/sql.lib.php:744 libraries/sql.lib.php:1468 +#: import.php:669 libraries/sql.lib.php:754 libraries/sql.lib.php:1485 #, php-format msgid "Bookmark %s has been created." msgstr "Kirjanmerkki %s on nyt luotu." @@ -613,7 +615,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "Tuonnin tilaa ei voitu ladata." -#: import_status.php:111 js/messages.php:444 libraries/Util.php:797 +#: import_status.php:111 js/messages.php:445 libraries/Util.php:797 #: libraries/export.lib.php:523 #: libraries/plugins/schema/ExportRelationSchema.php:301 user_password.php:268 msgid "Back" @@ -638,7 +640,7 @@ msgstr "" msgid "General settings" msgstr "Yleiset asetukset" -#: index.php:191 js/messages.php:617 +#: index.php:191 js/messages.php:618 #: libraries/display_change_password.lib.php:54 #: libraries/display_change_password.lib.php:57 user_password.php:262 msgid "Change password" @@ -738,7 +740,11 @@ msgstr "Hanki tukea" msgid "List of changes" msgstr "Muutoslista" -#: index.php:453 +#: index.php:438 libraries/server_plugins.lib.php:83 +msgid "License" +msgstr "Lisenssi" + +#: index.php:460 msgid "" "You are connected as 'root' with no password, which corresponds to the " "default MySQL privileged account. Your MySQL server is running with this " @@ -750,7 +756,7 @@ msgstr "" "hyökkäyksille, joten tämä tietoturvariski on syytä korjata pikimmiten, " "asettamalla root-käyttäjälle salasana." -#: index.php:470 +#: index.php:477 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -760,7 +766,7 @@ msgstr "" "valinta ei sovi yhteen phpMyAdminin kanssa ja saattaa johtaa tietojen " "katoamiseen!" -#: index.php:485 +#: index.php:492 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -770,7 +776,7 @@ msgstr "" "olevan käytössä. Ilman mbstring-laajennusta phpMyAdmin ei osaa jaotella " "merkkijonoja oikein, ja tästä saattaa koitua odottamattomia seurauksia." -#: index.php:502 +#: index.php:509 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than " @@ -782,7 +788,7 @@ msgstr "" "phpMyAdminissa määritetty evästekelpoisuus. Siksi kirjautumisesi saattaa " "erääntyä nopeammin kuin phpMyAdminissa on määritetty." -#: index.php:521 +#: index.php:528 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -790,11 +796,11 @@ msgstr "" "Kirjautumistunnuksesi vanhenee nopeammin kuin phpMyAdminissa määritetty. " "Siksi kirjautumisesi erääntyy nopeammin kuin phpMyAdminissa on määritetty." -#: index.php:537 +#: index.php:544 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Asetustiedosto vaatii nyt salalausetta (blowfish_secret)." -#: index.php:550 +#: index.php:557 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. It is strongly recommended to remove it " @@ -806,7 +812,7 @@ msgstr "" "asetukset on määritetty. Muuten palvelimen turvallisuus saattaa vaarantua " "luvattoman asetuksien lataamisen takia." -#: index.php:566 +#: index.php:573 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -816,14 +822,14 @@ msgstr "" "tauluihin liittyvät lisäominaisuudet eivät ole käytössä. Katso miksi " "%slisätietoja%s. " -#: index.php:573 +#: index.php:580 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "Vaihtoehtoisesti, navigoi minkä tahansa tietokannan \"Toiminnot\" - " "välilehdelle." -#: index.php:619 +#: index.php:626 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -832,7 +838,7 @@ msgstr "" "PHP:n MySQL-kirjaston versio %s poikkeaa MySQL-palvelimen versiosta %s. " "Tästä voi koitua arvaamattomia seurauksia." -#: index.php:647 +#: index.php:654 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -854,7 +860,7 @@ msgstr "Vahvista" msgid "Do you really want to execute \"%s\"?" msgstr "Haluatko varmasti suorittaa \"%s\"?" -#: js/messages.php:45 libraries/mult_submits.lib.php:397 +#: js/messages.php:45 libraries/mult_submits.lib.php:402 msgid "You are about to DESTROY a complete database!" msgstr "Olet aikeissasi HÄVITTÄÄ kokonaisen tietokannan!" @@ -1008,7 +1014,7 @@ msgid "Save & close" msgstr "Tallenna & sulje" #: js/messages.php:109 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1551 prefs_manage.php:364 +#: libraries/insert_edit.lib.php:1558 prefs_manage.php:364 #: prefs_manage.php:375 msgid "Reset" msgstr "Palauta" @@ -1066,10 +1072,10 @@ msgstr "Ole hyvä ja valitse sarakkeet avainta varten." msgid "You have to add at least one column." msgstr "Sinun tulee lisätä vähintään yksi sarake." -#: js/messages.php:129 libraries/insert_edit.lib.php:1549 +#: js/messages.php:129 libraries/insert_edit.lib.php:1556 #: templates/columns_definitions/column_definitions_form.phtml:159 #: templates/table/index_form.phtml:237 -#: templates/table/relation/common_form.phtml:108 +#: templates/table/relation/common_form.phtml:127 msgid "Preview SQL" msgstr "Esikatsele SQL" @@ -1112,8 +1118,8 @@ msgstr "Salasanat eivät ole samat!" msgid "Removing Selected Users" msgstr "Poista valitut käyttäjät" -#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:461 -#: libraries/tracking.lib.php:831 +#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:471 +#: libraries/tracking.lib.php:841 msgid "Close" msgstr "Sulje" @@ -1135,7 +1141,7 @@ msgstr "Malli on poistettu." #. l10n: Other, small valued, queries #: js/messages.php:155 libraries/ServerStatusData.php:130 -#: libraries/server_status_queries.lib.php:148 +#: libraries/server_status_queries.lib.php:150 msgid "Other" msgstr "Toinen" @@ -1302,7 +1308,7 @@ msgstr "Kysymykset" msgid "Traffic" msgstr "Liikenne" -#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4330 +#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4331 #: libraries/server_status_monitor.lib.php:258 msgid "Settings" msgstr "Asetukset" @@ -1315,9 +1321,9 @@ msgstr "Lisää taulukko ruudukkoon" msgid "Please add at least one variable to the series!" msgstr "Lisää sarjaan vähintään yksi muuttuja!" -#: js/messages.php:216 libraries/DisplayResults.php:1477 +#: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1433,7 +1439,7 @@ msgstr "Muuta asetuksia" msgid "Current settings" msgstr "Nykyiset asetukset" -#: js/messages.php:253 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:253 msgid "Chart title" msgstr "Kaavion otsikko" @@ -1520,21 +1526,21 @@ msgstr "Analysointi…" msgid "Explain output" msgstr "Selitä SQL-kysely" -#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4326 +#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4327 #: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:396 #: libraries/rte/rte_list.lib.php:104 -#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:282 -#: libraries/tracking.lib.php:1623 +#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:284 +#: libraries/tracking.lib.php:1639 msgid "Status" msgstr "Tila" -#: js/messages.php:289 js/messages.php:870 +#: js/messages.php:289 js/messages.php:862 #: libraries/plugins/export/ExportHtmlword.php:484 #: libraries/plugins/export/ExportOdt.php:600 #: libraries/plugins/export/ExportTexytext.php:445 #: libraries/plugins/export/PMA_ExportPdf.php:314 #: libraries/rte/rte_list.lib.php:93 -#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:239 +#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:243 msgid "Time" msgstr "Aika" @@ -1621,10 +1627,10 @@ msgstr "" "oletusmäärityksiä…" #: js/messages.php:322 libraries/Menu.php:355 libraries/Menu.php:457 -#: libraries/Menu.php:578 libraries/Util.php:4329 libraries/Util.php:4344 -#: libraries/Util.php:4361 libraries/config/messages.inc.php:260 +#: libraries/Menu.php:578 libraries/Util.php:4330 libraries/Util.php:4345 +#: libraries/Util.php:4362 libraries/config/messages.inc.php:260 #: libraries/display_import.lib.php:108 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:241 +#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:241 #: setup/frames/menu.inc.php:26 msgid "Import" msgstr "Tuonti" @@ -1681,7 +1687,13 @@ msgstr "Testaa" msgid "Formatting SQL…" msgstr "Formatoidaan SQL-kyselyä…" -#: js/messages.php:346 libraries/server_variables.lib.php:159 +#: js/messages.php:343 +#, fuzzy +#| msgid "Bad parameters!" +msgid "No parameters found!" +msgstr "Virheelliset parametrit!" + +#: js/messages.php:347 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 @@ -1692,59 +1704,59 @@ msgstr "Formatoidaan SQL-kyselyä…" msgid "Cancel" msgstr "Peruuta" -#: js/messages.php:349 libraries/Header.php:457 +#: js/messages.php:350 libraries/Header.php:457 msgid "Page-related settings" msgstr "Sivuun liittyvät asetukset" -#: js/messages.php:350 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:351 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Käytä" -#: js/messages.php:353 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:354 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:124 msgid "Loading…" msgstr "Lataa…" -#: js/messages.php:354 +#: js/messages.php:355 msgid "Request aborted!!" msgstr "Pyyntö keskeytetty!" -#: js/messages.php:355 +#: js/messages.php:356 msgid "Processing request" msgstr "Pyyntöä käsitellään" -#: js/messages.php:356 +#: js/messages.php:357 msgid "Request failed!!" msgstr "Pyyntö epäonnistui!" -#: js/messages.php:357 +#: js/messages.php:358 msgid "Error in processing request" msgstr "Virhe pyynnön käsittelyssä" -#: js/messages.php:358 +#: js/messages.php:359 #, php-format msgid "Error code: %s" msgstr "Virhekoodi: %s" -#: js/messages.php:359 +#: js/messages.php:360 #, php-format msgid "Error text: %s" msgstr "Virhekoodi: %s" -#: js/messages.php:360 libraries/db_common.inc.php:73 +#: js/messages.php:361 libraries/db_common.inc.php:73 #: libraries/db_table_exists.lib.php:33 libraries/server_databases.lib.php:462 msgid "No databases selected." msgstr "Yhtään tietokantaa ei ole valittu." -#: js/messages.php:361 +#: js/messages.php:362 msgid "Dropping column" msgstr "Saraketta poistetaan" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Adding primary key" msgstr "Lisätään pääavain" -#: js/messages.php:363 +#: js/messages.php:364 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1754,165 +1766,165 @@ msgstr "Lisätään pääavain" msgid "OK" msgstr "OK" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Click to dismiss this notification" msgstr "Poista tämä huomautus napsauttamalla" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Renaming databases" msgstr "Uudelleennimetään tietokantoja" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Copying database" msgstr "Kopioidaan tietokantoja" -#: js/messages.php:369 +#: js/messages.php:370 msgid "Changing charset" msgstr "Vaihdetaan merkistökoodausta" -#: js/messages.php:373 libraries/Util.php:3289 +#: js/messages.php:374 libraries/Util.php:3289 msgid "Enable foreign key checks" msgstr "Kytke viiteavaimien tarkistus päälle" -#: js/messages.php:376 +#: js/messages.php:377 msgid "Failed to get real row count." msgstr "Oikean rivimäärän nouto epäonnistui." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Searching" msgstr "Etsi" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide search results" msgstr "Piilota hakutulokset" -#: js/messages.php:381 +#: js/messages.php:382 msgid "Show search results" msgstr "Näytä hakutulokset" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Browsing" msgstr "Selaaminen" -#: js/messages.php:383 +#: js/messages.php:384 msgid "Deleting" msgstr "Poisto" -#: js/messages.php:387 +#: js/messages.php:388 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:388 libraries/DisplayResults.php:4832 -#: libraries/DisplayResults.php:5091 libraries/Menu.php:347 -#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3709 -#: libraries/Util.php:3710 libraries/Util.php:4328 libraries/Util.php:4343 -#: libraries/Util.php:4360 libraries/config/messages.inc.php:254 +#: js/messages.php:389 libraries/DisplayResults.php:4850 +#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 +#: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 +#: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2448 -#: libraries/server_privileges.lib.php:2527 -#: libraries/server_privileges.lib.php:2873 -#: libraries/server_privileges.lib.php:3532 -#: libraries/server_status_monitor.lib.php:321 prefs_manage.php:306 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2875 +#: libraries/server_privileges.lib.php:3543 +#: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 msgid "Export" msgstr "Vienti" -#: js/messages.php:391 libraries/rte/rte_routines.lib.php:742 +#: js/messages.php:392 libraries/rte/rte_routines.lib.php:742 msgid "ENUM/SET editor" msgstr "ENUM/SET-muokkaus" -#: js/messages.php:392 +#: js/messages.php:393 #, php-format msgid "Values for column %s" msgstr "Arvot sarakkeelle %s" -#: js/messages.php:393 +#: js/messages.php:394 msgid "Values for a new column" msgstr "Arvot uudelle sarakkeelle" -#: js/messages.php:394 +#: js/messages.php:395 msgid "Enter each value in a separate field." msgstr "Syötä jokainen arvo eri kenttään." -#: js/messages.php:395 +#: js/messages.php:396 #, php-format msgid "Add %d value(s)" msgstr "Lisää %d arvo(a)" -#: js/messages.php:399 +#: js/messages.php:400 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:403 +#: js/messages.php:404 msgid "Hide query box" msgstr "Piilota SQL-kyselykenttä" -#: js/messages.php:404 +#: js/messages.php:405 msgid "Show query box" msgstr "Näytä kyselykenttä" -#: js/messages.php:405 libraries/Console.php:88 libraries/Console.php:217 -#: libraries/DisplayResults.php:3457 libraries/DisplayResults.php:4816 +#: js/messages.php:406 libraries/Console.php:88 libraries/Console.php:217 +#: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4834 #: libraries/Index.php:721 libraries/Util.php:727 libraries/Util.php:1238 -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:119 +#: libraries/server_user_groups.lib.php:121 #: libraries/server_variables.lib.php:242 #: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 msgid "Edit" msgstr "Muokkaa" -#: js/messages.php:406 libraries/Console.php:89 libraries/DbSearch.php:360 -#: libraries/DisplayResults.php:3526 libraries/DisplayResults.php:4800 +#: js/messages.php:407 libraries/Console.php:89 libraries/DbSearch.php:360 +#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4818 #: libraries/central_columns.lib.php:854 #: libraries/central_columns.lib.php:1200 libraries/display_export.lib.php:227 -#: libraries/server_user_groups.lib.php:129 -#: libraries/sql_query_form.lib.php:416 libraries/tracking.lib.php:480 +#: libraries/server_user_groups.lib.php:131 +#: libraries/sql_query_form.lib.php:417 libraries/tracking.lib.php:490 #: setup/frames/index.inc.php:187 setup/frames/index.inc.php:295 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Poista" -#: js/messages.php:407 libraries/DisplayResults.php:915 -#: libraries/DisplayResults.php:923 +#: js/messages.php:408 libraries/DisplayResults.php:919 +#: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d on virheellinen rivinumero." -#: js/messages.php:408 -#: libraries/controllers/table/TableSearchController.php:435 -#: libraries/controllers/table/TableSearchController.php:920 -#: libraries/sql.lib.php:193 tbl_change.php:159 +#: js/messages.php:409 +#: libraries/controllers/table/TableSearchController.php:432 +#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "Selaa viitearvoja" -#: js/messages.php:409 +#: js/messages.php:410 msgid "No auto-saved query" msgstr "Ei automaattisesti tallennettuja kyselyitä" -#: js/messages.php:410 +#: js/messages.php:411 #, php-format msgid "Variable %d:" msgstr "Muuttuja %d:" -#: js/messages.php:413 libraries/normalization.lib.php:889 +#: js/messages.php:414 libraries/normalization.lib.php:889 msgid "Pick" msgstr "Poimi sarake" -#: js/messages.php:414 +#: js/messages.php:415 msgid "Column selector" msgstr "Sarakkeenvalitsin" -#: js/messages.php:415 +#: js/messages.php:416 msgid "Search this list" msgstr "Hae tästä listasta" -#: js/messages.php:417 +#: js/messages.php:418 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1922,15 +1934,15 @@ msgstr "" "sarakelistaus tietokantaa %s varten sisältää sarakkeita jotka eivät ole " "tämän hetkisessä taulussa." -#: js/messages.php:420 +#: js/messages.php:421 msgid "See more" msgstr "Katso lisää" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Are you sure?" msgstr "Oletko varma?" -#: js/messages.php:423 +#: js/messages.php:424 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1938,51 +1950,51 @@ msgstr "" "Tämä toiminto saattaa muuttaa joidenkin sarakkeiden määritelmiä.
Oletko " "varma että haluat jatkaa?" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "Jatka" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "Lisää pääavain" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "Pääavain lisätty." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "Viedään sinut seuraavaan vaiheeseen…" -#: js/messages.php:433 +#: js/messages.php:434 #, 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:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "Vaiheen loppu" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "Normalisaation toinen askel (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Valmis" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "Vahvista todeksi osittaiset riippuvuudet" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "Osittaiset riippuvuudet ovat seuraavat:" -#: js/messages.php:440 +#: js/messages.php:441 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1990,20 +2002,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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "Osittaisia riippuvuuksia ei ole valittu!" -#: js/messages.php:446 +#: js/messages.php:447 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:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "Piilota osittaisten riippuvuuksien lista" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2012,165 +2024,165 @@ msgstr "" "viedä sekunnin tai kaksi riippuen tietojen koosta ja taulun sarakkeiden " "määrästä." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "Askel" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "Seuraavat toiminnot tullaan suorittamaan:" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "DROP sarakkeet %s taulusta %s" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "Luo seuraava taulu" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "Normalisaation kolmas askel (3NF)" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "Vahvista todeksi transitiiviset riippuvuudet" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "Valitut riippuvuudet ovat seuraavat:" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "Yhtään riippuvuutta ei ole valittu!" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Tallenna" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Piilota hakukriteerit" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Näytä hakukriteerit" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "Aluehaku" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "Sarakkeiden enimmäismäärä:" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "Sarakkeiden vähimmäismäärä:" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "Vähimmäisarvo:" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "Enimmäisarvo:" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "Piilota etsi ja korvaa kriteerit" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "Näytä etsi ja korvaa kriteerit" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "Kukin piste kuvaa tietoriviä." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "Pisteen nimi näkyy, kun osoitin viedään sen ylle." -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Lähennä, valitse kohta hiirellä." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "Palaa alkuperäiseen tilaan napsauttamalla nollaa zoomaus painikeeta." -#: js/messages.php:490 +#: js/messages.php:491 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:492 +#: js/messages.php:493 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:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "Valitse kaksi saraketta" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "Valitse kaksi eri saraketta" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "Tietopisteen sisältö" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Älä huomioi" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Kopioi" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Piste" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Rivimerkkijono" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Monikulmio" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "Sisäkehä" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "Ulkokehä" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "Haluatko kopioida salausavaimen?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "Salausavain" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2178,24 +2190,24 @@ msgstr "" "Olet tehnyt muutoksia tähän sivuun; sinua pyydetään vahvistamaan ennen kuin " "hylkäät muutokset" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Valitse viitattava avain" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Valitse liiteavain" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "Valitse pää- tai uniikkiavain!" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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:532 +#: js/messages.php:533 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?" @@ -2203,77 +2215,77 @@ msgstr "" "Asettelumuutoksia ei ole tallennettu. Tallentamattomat muutokset menetetään. " "Haluatko silti jatkaa?" -#: js/messages.php:535 +#: js/messages.php:536 msgid "Page name" msgstr "Sivun nimi" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Tallenna sivu" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Tallenna sivu nimellä" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Avaa sivu" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "Poista sivu" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Nimetön" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "Valitse sivu jatkaaksesi" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "Annathan kelvollisen sivun nimen" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "Haluatko tallentaa nykyisen sivun muutokset?" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "Sivu poistettu onnistuneesti" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "Vie relaatioskeema" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Muutokset tallennettu" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "Lisää valinta sarakkeelle ”%s”." -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "%d objekti(a) luotu." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Lähetä" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "Peruuta muokkaaminen painamalla Esc-näppäintä." -#: js/messages.php:557 +#: js/messages.php:558 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?" @@ -2281,15 +2293,15 @@ msgstr "" "Olet muuttanut joitakin tietoja ja niitä ei ole tallennettu. Haluatko " "varmasti poistua tältä sivulta ennen tietojen tallentamista?" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "Muuta järjestystä vetämällä." -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "Järjestä tämän sarakkeen tulokset napsauttamalla." -#: js/messages.php:563 +#: js/messages.php:564 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 " @@ -2299,26 +2311,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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "Merkitse tai poista merkintä napsauttamalla." -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "Kopioi kentän nimi kaksoisnapsauttamalla." -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Muuta sarakkeen näkyvyyttä
napsauttamalla pudotusvalikon nuolta." -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Näytä kaikki" -#: js/messages.php:574 +#: js/messages.php:575 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." @@ -2327,13 +2339,13 @@ msgstr "" "valintaneliöihin, Muokkaa-, Kopioi- ja Poista-linkkeihin liittyvät " "ominaisuudet eivät ehkä ole toiminnassa tallennuksen jälkeen." -#: js/messages.php:578 +#: js/messages.php:579 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:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2341,127 +2353,97 @@ msgstr "" "Oletko varma että haluat nähdä kaikki rivit? Suuret taulut voivat kaataa " "selaimesi." -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "Alkuperäinen pituus" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "peruuta" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Keskeytetty" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "Onnistui" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "Tuo tila" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Vedä tiedostot tähän" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "Valitse ensin tietokanta" -#: js/messages.php:598 +#: js/messages.php:599 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:603 +#: js/messages.php:604 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:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "Siirry linkkiin:" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "Kopioi kentän nimi." -#: js/messages.php:612 +#: js/messages.php:613 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:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Keksi salasana" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Keksi" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "Lisää" -#: js/messages.php:623 +#: js/messages.php:624 msgid "Show panel" msgstr "Näytä paneeli" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "Piilota paneeli" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "Näytä piilotetut navigointipuun kohteet." -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "Linkitä pääpaneelin kanssa" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "Poista pääpaneelin linkki" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" -"Suodattaaksesi kaikki palvelimen tietokannat, paina Enter hakutermin jälkeen" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "Suodattaaksesi kaikki %s tietokannassa, paina Enter hakutermin jälkeen" - #: js/messages.php:632 -msgid "tables" -msgstr "taulut" - -#: js/messages.php:633 -msgid "views" -msgstr "näkymät" - -#: js/messages.php:634 -msgid "procedures" -msgstr "proseduurit" - -#: js/messages.php:635 -msgid "events" -msgstr "tapahtumat" - -#: js/messages.php:636 -msgid "functions" -msgstr "funktiot" - -#: js/messages.php:640 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:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2471,48 +2453,48 @@ msgstr "" "Uusin versio on %s, ja se on julkaistu %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", viimeisin vakaa versio:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "ajan tasalla" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "Luo näkymä" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "Lähetä virheraportti" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "Lähetä virheraportti" -#: js/messages.php:657 +#: js/messages.php:649 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:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "Muuta raportin asetuksia" -#: js/messages.php:660 +#: js/messages.php:652 msgid "Show report details" msgstr "Näytä raportin tarkemmat tiedot" -#: js/messages.php:663 +#: js/messages.php:655 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:667 +#: js/messages.php:659 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2522,60 +2504,60 @@ msgstr "" "lomake jotkut kentät voidaan jättää huomiotta, PHP:n max_input_vars " "konfiguraation vuoksi." -#: js/messages.php:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "Palvelimella on havaittu joitakin virheitä!" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "Ole hyvä ja katso tämän ikkunan alalaitaan." -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "Sivuuta kaikki" -#: js/messages.php:689 +#: js/messages.php:681 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:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "Suoritetaanko tämä kysely uudelleen?" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "Haluatko varmasti poistaa tämän kirjanmerkin?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "SQL-virheenkorjauksen tietoja haettaessa tapahtui virhe." -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s SQL-kyselyä suoritettu %s kertaa %s sekunnissa." -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "%s argumenttia syötetty" -#: js/messages.php:707 +#: js/messages.php:699 msgid "Show arguments" msgstr "Näytä argumentit" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "Piilota argumentit" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "Aikaa kului:" -#: js/messages.php:711 +#: js/messages.php:703 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 " @@ -2586,291 +2568,291 @@ msgstr "" "Safari-verkkoselainta, tämä ongelma on yleensä yksityisen selauksen " "aiheuttama." -#: js/messages.php:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "Edellinen kuukausi" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "Seuraava kuukausi" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Tänään" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "Tammikuu" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "Helmikuu" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "Maaliskuu" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "Huhtikuu" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Toukokuu" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "Kesäkuu" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "Heinäkuu" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "Elokuu" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "Syyskuu" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "Lokakuu" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "Marraskuu" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "Joulukuu" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Tammi" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Helmi" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Maalis" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Huhti" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "Touko" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Kesä" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Heinä" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Elo" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Syys" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Loka" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Marras" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Joulu" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "Sunnuntai" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "Maanantai" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "Tiistai" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "Keskiviikko" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "Torstai" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "Perjantai" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "Lauantai" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "Su" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Ti" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Ke" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "To" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Pe" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "La" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "Ti" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "Ke" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "To" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "Pe" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "La" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "Vko" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "kalenteri-kuukausi-vuosi" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Tunti" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Minuutti" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Sekunti" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "Kenttä on pakollinen" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "Ole hyvä ja korjaa tämä kenttä" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "Ole hyvä ja anna pätevä sähköpostiosoite" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "Ole hyvä ja anna pätevä URL" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "Ole hyvä ja anna pätevä päivämäärä" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "Ole hyvä ja anna pätevä päivämäärä (ISO)" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "Ole hyvä ja anna pätevä numero" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "Ole hyvä ja anna pätevä luottokortin numero" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "Ole hyvä ja kirjoita vain numeroita" @@ -2878,41 +2860,41 @@ msgstr "Ole hyvä ja kirjoita vain numeroita" msgid "Please enter the same value again" msgstr "Ole hyvä ja annat saman arvon uudelleen" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "Ole hyvä ja kirjoita maksimissaan {0} merkkiä" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "Ole hyvä ja kirjoita vähintään {0} merkkiä" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "Ole hyvä ja anna arvo joka on pituudeltaan {0} ja {1} merkin välillä" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "Ole hyvä ja kirjoita arvo väliltä {0} ja {1}" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "Ole hyvä ja anna arvo joka on enintään {0}" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "Ole hyvä ja kirjoita arvo joka on vähintään {0}" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "Ole hyvä ja anna pätevä päivämäärä tai aika" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "Ole hyvä ja anna pätevä heksadesimaalinen arvo" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Virhe" @@ -3003,11 +2985,12 @@ msgstr "Suorita hakulause uudelleen" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3049,7 +3032,7 @@ msgstr "Nykyisen istunnon aikana" msgid "Explain" msgstr "Selitä" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Profilointi" @@ -3083,8 +3066,8 @@ msgid "History" msgstr "Historia" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3231,7 +3214,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Vaihda tummaan teemaan" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3239,25 +3222,25 @@ msgstr "" "Palvelin ei vastaa (tai paikallisen palvelimen pistokke ei ole määritelty " "oikein)." -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "Palvelin ei vastaa." -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "Tarkista käyttöoikeudet hakemisto sisältää tietokannan." -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Lisätiedot…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Yhteyden muodostus asetuksissa määriteltyyn superuser-käyttäjään epäonnistui." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3267,8 +3250,8 @@ msgstr "" msgid "Ascending" msgstr "Nouseva" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3411,8 +3394,8 @@ msgstr[0] "%1$s hakutulosta taulussa %2$s" msgstr[1] "%1$s hakutulosta taulussa %2$s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3454,119 +3437,120 @@ msgstr "Poista valinta kaikista" msgid "Inside column:" msgstr "Sarakkeen sisällä:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "Tallenna muokatut tiedot" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "Palauta sarakkeiden järjestys" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "Suodata rivejä" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "Hae tästä taulusta" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "Aloitus" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "Edellinen sivu" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "Seuraava sivu" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "Viimeinen sivu" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Kaikki" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Rivien määrä:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Lajittele avaimen mukaan" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "Osittaiset tekstit" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "Koko tekstit" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Relaatioavain" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 msgid "Display column for relations" msgstr "Näytä sarakkeet relaatioille" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "Näytä binäärisisältö" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "Näytä BLOB-sisältö" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "piilota webselaimen muunnos" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "Hyvin tunnettu teksti" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "Hyvin tunnettu ohjelmakoodi" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "Rivi on nyt poistettu." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Lopeta" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Saattaa olla likimääräinen. Katso [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "SQL-kyselysi on suoritettu onnistuneesti." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3575,64 +3559,64 @@ msgstr "" "Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja " "%sohjeista%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "Näytetään rivit %1s–%2s" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d kokonaisuudessaan, %2$d hakulauseessa" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "%d tulos" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "Kysely kesti %01.4f sekuntia." -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Valitut:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 msgid "Check all" msgstr "Valitse kaikki" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Tulostusversio" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Kyselytulosten toimenpiteet" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Näytä kaavio" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "Visualisoi paikkatieto" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "Linkkiä ei löydy!" @@ -3729,19 +3713,19 @@ msgstr "Indeksiä ei ole määritelty!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Indeksit" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3750,24 +3734,24 @@ msgid "Action" msgstr "Toiminnot" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Avaimen nimi" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Uniikki" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Pakattu" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Kardinaliteetti" @@ -3775,8 +3759,8 @@ msgstr "Kardinaliteetti" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3786,8 +3770,8 @@ msgid "Collation" msgstr "Aakkosjärjestys" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3803,15 +3787,15 @@ msgstr "Perusavain on poistettu." msgid "Index %s has been dropped." msgstr "Indeksi %s on poistettu." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Tuhoa" @@ -3852,12 +3836,13 @@ msgstr "Näkymä" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3865,7 +3850,7 @@ msgstr "Taulu" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3874,8 +3859,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3883,41 +3868,41 @@ msgid "Search" msgstr "Etsi" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Lisää rivi" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Käyttöoikeudet" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Toiminnot" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Seuranta" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3928,16 +3913,16 @@ msgstr "Herättimet" msgid "Database seems to be empty!" msgstr "Tietokanta on tyhjä!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Haku" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rutiinit" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3945,20 +3930,20 @@ msgstr "Rutiinit" msgid "Events" msgstr "Tapahtumat" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Suunnittelija" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "Keskisarakkeet" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Tietokannat" @@ -3967,33 +3952,33 @@ msgid "User accounts" msgstr "Käyttäjätilit" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Binääriloki" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Kahdennus" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Muuttujat" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Merkistöt" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Moottorit" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "Liitännäiset" @@ -4290,7 +4275,7 @@ msgstr "Indeksiä ei voi muuttaa PRIMARY-nimiseksi!" msgid "No index parts defined!" msgstr "Indeksin osia ei ole määritelty!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Virhe luotaessa kohteen %1$s viiteavainta (tarkista tietotyypit)" @@ -4760,37 +4745,37 @@ msgstr "Toimintoon %s vaikuttaa tunnettu vika, katso %s" msgid "Click to toggle" msgstr "Vaihda painamalla" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Selaa tietokonettasi:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Valitse verkkopalvelimen lähetyskansiosta %s:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Tiedostojen lähetykseen valittua hakemistoa ei voida käyttää." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "Palvelimelle ladattavia tiedostoja ei ole!" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Tyhjennä" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "Suorita" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Tulosta" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "Käyttäjät" @@ -4952,8 +4937,8 @@ msgid "Add new column" msgstr "Lisää uusi sarake" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5018,19 +5003,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "Sinun tulisi päivittää versioon %s %s tai sitä uudempaan." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "Virhe: Tunnus ei täsmää" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS ylikirjoitus yritys" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "mahdollinen turva-aukko" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "numeerinen avain tunnistettu" @@ -5252,7 +5237,6 @@ msgid "Allow users to customize this value" msgstr "Anna käyttäjien mukauttaa tätä arvoa" #: libraries/config/PageSettings.php:141 -#| msgid "Cannot save settings, submitted form contains errors" msgid "Cannot save settings, submitted configuration form contains errors!" msgstr "" "Asetuksia ei voitu tallentaa, sillä lähetetyssä konfiguraatiolomakkeessa on " @@ -5304,9 +5288,6 @@ msgstr "" #: libraries/config/ServerConfigChecks.php:409 #, php-format -#| msgid "" -#| "ge=form&formset=features#tab_Import_export]Bzip2 compression " -#| "ompression[/a] requires functions (%s) which are unavailable on s system." msgid "" "%sBzip2 compression and decompression%s requires functions (%s) which are " "unavailable on this system." @@ -5330,9 +5311,6 @@ msgstr "Tämä %svalinta%s tulisi olla valittuna, jos verkkopalvelin tukee sitä #: libraries/config/ServerConfigChecks.php:433 #, php-format -#| msgid "" -#| "ge=form&formset=features#tab_Import_export]GZip compression and " -#| "ression[/a] requires functions (%s) which are unavailable on this tem." msgid "" "%sGZip compression and decompression%s requires functions (%s) which are " "unavailable on this system." @@ -5346,16 +5324,12 @@ msgid "" "%sLogin cookie validity%s greater than %ssession.gc_maxlifetime%s may cause " "random session invalidation (currently session.gc_maxlifetime is %d)." msgstr "" -"%sKirjautumisevästeen voimassaoloaika%s joka on suurempi kuin " -"%ssession.gc_maxlifetime%s voi aiheuttaa satunnaisen session mitätöitymisen (" -"tällä hetkellä session.gc_maxlifetime on %d)." +"%sKirjautumisevästeen voimassaoloaika%s joka on suurempi kuin %ssession." +"gc_maxlifetime%s voi aiheuttaa satunnaisen session mitätöitymisen (tällä " +"hetkellä session.gc_maxlifetime on %d)." #: libraries/config/ServerConfigChecks.php:460 #, php-format -#| msgid "" -#| "ge=form&formset=features#tab_Security]Login cookie validity[/a] uld be " -#| "to 1800 seconds (30 minutes) at most. Values larger than 0 may pose a " -#| "urity risk such as impersonation." msgid "" "%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at " "most. Values larger than 1800 may pose a security risk such as impersonation." @@ -5370,18 +5344,12 @@ msgid "" "If using [kbd]cookie[/kbd] authentication and %sLogin cookie store%s is not " "0, %sLogin cookie validity%s must be set to a value less or equal to it." msgstr "" -"Mikäli käytät [kbd]cookie[/kbd] kirjautumista ja %skirjautumisevästeen " -"muisti%s ei ole 0, %skirjautumisevästeen pätevyyden%s arvo tulee olla " -"enintään sen verran." +"Mikäli käytät [kbd]cookie[/kbd] kirjautumista ja %skirjautumisevästeen muisti" +"%s ei ole 0, %skirjautumisevästeen pätevyyden%s arvo tulee olla enintään sen " +"verran." #: libraries/config/ServerConfigChecks.php:485 #, php-format -#| msgid "" -#| " feel this is necessary, use additional protection settings - ?" -#| "e=servers&mode=edit&id=%1$d#tab_Server_config]host tication[/a] " -#| "settings and ?page=form&mset=features#tab_Security]trusted proxies " -#| "list[/a]. ever, IP-based tection may not be reliable if your IP belongs " -#| "to an ISP re usands of users, including you, are connected to." msgid "" "If you feel this is necessary, use additional protection settings - %shost " "authentication%s settings and %strusted proxies list%s. However, IP-based " @@ -5396,12 +5364,6 @@ msgstr "" #: libraries/config/ServerConfigChecks.php:500 #, php-format -#| msgid "" -#| "t the [kbd]config[/kbd] authentication type and included username sword " -#| "for auto-login, which is not a desirable option for live ts. Anyoneo " -#| "knows or guesses your phpMyAdmin URL can directly ess your phpMyAdmin el. " -#| "Set [a@?page=servers&mode=edit&id=d#tab_Server]authenticationpe[/" -#| "a] to [kbd]cookie[/kbd] or [kbd]httpbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " @@ -5417,9 +5379,6 @@ msgstr "" #: libraries/config/ServerConfigChecks.php:513 #, php-format -#| msgid "" -#| "ge=form&formset=features#tab_Import_export]Zip compression[/a] uires " -#| "ctions (%s) which are unavailable on this system." msgid "" "%sZip compression%s requires functions (%s) which are unavailable on this " "system." @@ -5429,9 +5388,6 @@ msgstr "" #: libraries/config/ServerConfigChecks.php:524 #, php-format -#| msgid "" -#| "ge=form&formset=features#tab_Import_export]Zip ompression[/requires " -#| "functions (%s) which are unavailable on this system." msgid "" "%sZip decompression%s requires functions (%s) which are unavailable on this " "system." @@ -5462,8 +5418,6 @@ msgstr "" "todennustapaa!" #: libraries/config/Validator.php:355 -#| msgid "" -#| "Empty phpMyAdmin control user while using phpMyAdmin configuration storage" msgid "" "Empty phpMyAdmin control user while using phpMyAdmin configuration storage!" msgstr "" @@ -5471,9 +5425,6 @@ msgstr "" "storage-kantaa!" #: libraries/config/Validator.php:362 -#| msgid "" -#| "Empty phpMyAdmin control user password while using phpMyAdmin " -#| "configuration storage" msgid "" "Empty phpMyAdmin control user password while using phpMyAdmin configuration " "storage!" @@ -5491,8 +5442,6 @@ msgid "Incorrect IP address: %s" msgstr "Virheellinen IP-osoite: %s" #: libraries/config/messages.inc.php:18 -#| msgid "" -#| "If enabled user can enter any MySQL server in login form for cookie auth" msgid "" "If enabled, user can enter any MySQL server in login form for cookie auth." msgstr "" @@ -5514,15 +5463,10 @@ msgstr "" "MySQL-palvelimeen säännöllisellä lausekkeella." #: libraries/config/messages.inc.php:26 -#| msgid "Cannot log in to the MySQL server" msgid "Restrict login to MySQL server" msgstr "Rajoittaa MySQL-palvelimelle kirjautumista" #: libraries/config/messages.inc.php:28 -#| msgid "" -#| "Enabling this allows a page located on a different domain to call " -#| "phpMyAdmin inside a frame, and is a potential [strong]security hole[/" -#| "strong] allowing cross-frame scripting attacks" msgid "" "Enabling this allows a page located on a different domain to call phpMyAdmin " "inside a frame, and is a potential [strong]security hole[/strong] allowing " @@ -5541,9 +5485,6 @@ msgid "Show \"Drop database\" link to normal users" msgstr "Näytä tavallisille käyttäjille \"Tuhoa tietokanta\"" #: libraries/config/messages.inc.php:36 -#| msgid "" -#| "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " -#| "authentication" msgid "" "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " "authentication." @@ -5570,25 +5511,18 @@ msgid "Highlight pointer" msgstr "Korosta osoitin" #: libraries/config/messages.inc.php:47 -#| msgid "" -#| "Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for " -#| "import and export operations" msgid "" "Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for " "import operations." msgstr "" -"Käytä tuontitoiminnoissa " -"[a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a]-pakkausta." +"Käytä tuontitoiminnoissa [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a]-" +"pakkausta." #: libraries/config/messages.inc.php:50 msgid "Bzip2" msgstr "Bzip2" #: libraries/config/messages.inc.php:52 -#| msgid "" -#| "Defines which type of editing controls should be used for CHAR and " -#| "VARCHAR columns; [kbd]input[/kbd] - allows limiting of input length, " -#| "[kbd]textarea[/kbd] - allows newlines in columns" msgid "" "Defines which type of editing controls should be used for CHAR and VARCHAR " "columns; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/" @@ -5623,7 +5557,6 @@ msgstr "" "CodeMirror - toiminnon kytkemistä päälle." #: libraries/config/messages.inc.php:67 -#| msgid "Enable %s" msgid "Enable linter" msgstr "Ota koodin tarkistus käyttöön" @@ -5672,10 +5605,6 @@ msgid "Check config file permissions" msgstr "Tarkista asetustiedoston käyttöoikeudet" #: libraries/config/messages.inc.php:86 -#| msgid "" -#| "Compress gzip/bzip2 exports on the fly without the need for much memory; " -#| "if you encounter problems with created gzip/bzip2 files disable this " -#| "feature" msgid "" "Compress gzip exports on the fly without the need for much memory; if you " "encounter problems with created gzip files disable this feature." @@ -5711,7 +5640,6 @@ msgstr "" "Kirjaa SQL-hakulausekkeet ja niiden suoritusajat lokiin, näytetään konsolissa" #: libraries/config/messages.inc.php:101 -#| msgid "Tab that is displayed when entering a database" msgid "Tab that is displayed when entering a database." msgstr "Tietokantaa syötettäessä näytettävä välilehti." @@ -5720,7 +5648,6 @@ msgid "Default database tab" msgstr "Oletusarvoinen tietokantavälilehti" #: libraries/config/messages.inc.php:104 -#| msgid "Tab that is displayed when entering a server" msgid "Tab that is displayed when entering a server." msgstr "Palvelinta syötettäessä näytettävä välilehti." @@ -5729,7 +5656,6 @@ msgid "Default server tab" msgstr "Oletusarvoinen palvelinvälilehti" #: libraries/config/messages.inc.php:107 -#| msgid "Tab that is displayed when entering a table" msgid "Tab that is displayed when entering a table." msgstr "Taulua syötettäessä näytettävä välilehti." @@ -5738,18 +5664,15 @@ msgid "Default table tab" msgstr "Oletusarvoinen tauluvälilehti" #: libraries/config/messages.inc.php:110 -#| msgid "Enclose table and column names with backquotes" msgid "Autocomplete of the table and column names in the SQL queries." msgstr "" "Täydennä taulun ja sarakkeiden nimet automaattisesti SQL-hakukyselyissä." #: libraries/config/messages.inc.php:113 -#| msgid "Enclose table and column names with backquotes" msgid "Enable autocomplete for table and column names" msgstr "Kytke taulujen ja sarakkeiden nimien automaattinen täydennys päälle" #: libraries/config/messages.inc.php:116 -#| msgid "Whether the table structure actions should be hidden" msgid "Whether the table structure actions should be hidden." msgstr "Mikäli taulun rakenteiden toiminnot pitäisi olla piilossa." @@ -5791,7 +5714,6 @@ msgstr "Suorituksen enimmäiskesto" #: libraries/config/messages.inc.php:132 libraries/display_export.lib.php:801 #, php-format -#| msgid "Add %s statement" msgid "Use %s statement" msgstr "Käytä %s lauseketta" @@ -5933,7 +5855,6 @@ msgid "Overwrite existing file(s)" msgstr "Korvaa jo olemassa oleva(t) tiedosto(t)" #: libraries/config/messages.inc.php:181 -#| msgid "Export table headers" msgid "Export as separate files" msgstr "Vie erillisinä tiedostoina" @@ -5942,7 +5863,7 @@ msgid "Remember file name template" msgstr "Muista tiedostonimen pohja" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Lisää AUTO_INCREMENT-arvo" @@ -5981,7 +5902,7 @@ msgstr "Vie yhteenkuuluvat metatiedot phpMyAdminin konfiguraatiomuistista" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Lisää %s" @@ -7696,7 +7617,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "Säilytä SQL-kyselylaatikko" @@ -8020,110 +7941,35 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "OpenDocument teksti" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "Suosikkilista on täynnä!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Taulu %s on tyhjennetty." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "Näkymä %s on poistettu" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "Taulu %s on poistettu" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "Suosikkilista on täynnä!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "tuntematon" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "Ei valittua saraketta." - -#: libraries/controllers/TableStructureController.php:484 -#, 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.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "Taulun %1$s muuttaminen onnistui." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -#, fuzzy -#| msgid "Ignore errors" -msgid "Query error" -msgstr "Älä välitä virheistä" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Muokkaa" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Indeksi" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Koko teksti" - -#: libraries/controllers/TableStructureController.php:1201 -#, fuzzy -#| msgid "Browse distinct values" -msgid "Distinct values" -msgstr "Selaa erilaisia arvoja" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8139,6 +7985,14 @@ msgstr "" msgid "No data to display" msgstr "Tietoa ei löydy" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "Taulun %1$s muuttaminen onnistui." + #: libraries/controllers/table/TableRelationController.php:212 #, fuzzy #| msgid "Thread %s was successfully killed." @@ -8151,25 +8005,92 @@ msgstr "Säikeen %s lopetus onnistui." msgid "Internal relations were successfully updated." msgstr "Sisäinen relaatio luotu" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Table Search" msgid "Table search" msgstr "Taulu haku" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Zoom Search" msgid "Zoom search" msgstr "Zoomaushaku" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "Find and Replace" msgid "Find and replace" msgstr "Etsi ja Korvaa" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "Ei valittua saraketta." + +#: libraries/controllers/table/TableStructureController.php:485 +#, 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/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +#, fuzzy +#| msgid "Ignore errors" +msgid "Query error" +msgstr "Älä välitä virheistä" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Muokkaa" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Indeksi" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Koko teksti" + +#: libraries/controllers/table/TableStructureController.php:1209 +#, fuzzy +#| msgid "Browse distinct values" +msgid "Distinct values" +msgstr "Selaa erilaisia arvoja" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8179,7 +8100,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Ei muutoksia" @@ -8246,7 +8167,7 @@ msgstr "Luo" msgid "Create database:" msgstr "Luo tietokanta:" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Ei käyttöoikeuksia" @@ -9011,27 +8932,27 @@ msgid "Dump has been saved to file %s." msgstr "Vedos tallennettiin tiedostoon %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL palautti tyhjän tulosjoukon (siis nolla riviä)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Seuraavat rakenteet on joko luotu tai niitä on muutettu. Voit:" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 #, fuzzy #| msgid "View a structure's contents by clicking on its name" msgid "View a structure's contents by clicking on its name." msgstr "Tarkastele rakenteen sisältöä napsauttamalla sen nimeä" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -9040,48 +8961,48 @@ msgid "" msgstr "" "muuttaa mitä tahansa sen asetuksia painamalla vastaavaa \"Valinnat\"-linkkiä" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 #, fuzzy #| msgid "Edit structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link." msgstr "Muokkaa rakennetta seuraamalla \"Rakenne\" linkkiä" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "Siirry tietokantaan: %s" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "Muokkaa asetuksia: %s" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "Siirry taulukkoon: %s" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "Rakenne %s" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "Siirry näkymään: %s" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "Luo  %s sarakkeen indeksi" @@ -9104,72 +9025,72 @@ msgstr "Funktio" msgid "Binary" msgstr "Binääritietoa" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 #, fuzzy #| msgid "Because of its length,
this column might not be editable" msgid "Because of its length,
this column might not be editable." msgstr "Koska sen pituus,
Tätä saraketta ei ehkä voi muokata" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Binääritietoa - älä muokkaa" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Tai" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "palvelimen lähetyshakemisto" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "Muokkaa/lisää" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Aloita lisäys alusta %s rivillä" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "ja sen jälkeen" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Lisää uutena rivinä" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 #, fuzzy msgid "Show insert query" msgstr "Näytetään SQL-kysely" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Takaisin" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Lisää uusi rivi" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Palaa tälle sivulle" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Muokkaa seuraavaa riviä" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9179,7 +9100,7 @@ msgstr "" "Sarkaimella voi siirtyä arvosta seuraavaan, Ctrl- ja nuolinäppäimillä pystyy " "siirtymään minne suuntaan tahansa" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9191,11 +9112,11 @@ msgstr "" msgid "Value" msgstr "Arvo" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "Näytetään SQL-kysely" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "Lisätyn rivin tunnus: %1$d" @@ -9213,45 +9134,45 @@ msgstr "Ei mitään" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table prefix:" msgstr "Korvaa taulun etuliite" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Copy table with prefix" msgid "Copy table with prefix:" msgstr "Kopioi taulun etuliite" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 #, fuzzy #| msgid "Fr" msgid "From" msgstr "Pe" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Apply index(s)" msgid "Add table prefix:" msgstr "Käytä indeksiä/indeksejä" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 #, fuzzy #| msgid "Apply index(s)" msgid "Add prefix" msgstr "Käytä indeksiä/indeksejä" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -9483,8 +9404,8 @@ msgstr "Proseduurit" msgid "Views:" msgstr "Näkymät" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Näytä" @@ -9526,10 +9447,9 @@ msgstr[0] "" msgstr[1] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "Alter table order by" -msgid "Filter databases by name or regex" -msgstr "Lajittele taulu" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -9538,12 +9458,6 @@ msgstr "Lajittele taulu" msgid "Clear fast filter" msgstr "Tallenna tiedostoon" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "Alter table order by" -msgid "Filter by name or regex" -msgstr "Lajittele taulu" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -9948,7 +9862,7 @@ msgstr "Muuta tietokannan nimeksi" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -9959,7 +9873,7 @@ msgstr "Sinulla ei ole riittäviä oikeuksia!" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9979,18 +9893,18 @@ msgstr "Tuhoa tietokanta" msgid "Drop the database (DROP)" msgstr "Tuhoa tietokanta (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Vain rakenne" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Rakenne ja tiedot" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Vain tiedot" @@ -10004,7 +9918,7 @@ msgstr "Luo tietokannasta toinen tietokanta nimellä" msgid "CREATE DATABASE before copying" msgstr "Suorita CREATE DATABASE ennen kopiointia" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Lisää rajoitteet" @@ -10044,63 +9958,63 @@ msgstr "Tallennusmoottori" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Kopioi taulu toiseen tauluun nimellä (tietokanta.taulu)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Siirry kopioituun tauluun" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Taulun ylläpito" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Analysoi taulu" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Tarkista taulu" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Tarkista taulu" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Eheytä taulu" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "Taulun %s välimuisti on tyhjennetty." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Tyhjennä taulun välimuisti (\"FLUSH\")" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Optimoi taulu" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Korjaa taulu" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 #, fuzzy @@ -10108,105 +10022,105 @@ msgstr "Korjaa taulu" msgid "Delete data or table" msgstr "Poista tämän taulun seurantatiedot" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "Tyhjennä taulu (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 #, fuzzy #| msgid "Go to database" msgid "Delete the table (DROP)" msgstr "Siirry tietokantaan" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Analysoi" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Tarkasta" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Optimoi" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Rakenna uudestaan" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Korjaa" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Collapse" msgid "Coalesce" msgstr "Paina kokoon" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "Osituksen ylläpito" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "Ositus %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "Poista ositus" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Tarkista viitteiden eheys:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Taulua ei voi siirtää itseensä!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Taulua ei voi kopioida itseensä!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Taulu %s on siirretty %s." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Taulu %s on kopioitu uuteen tauluun %s." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "Taulu %s on siirretty %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "Taulu %s on kopioitu uuteen tauluun %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Taulun nimi puuttuu!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10392,7 +10306,7 @@ msgstr "Tiedon vedostusasetukset" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Vedos taulusta" @@ -10416,21 +10330,21 @@ msgstr "Määritys" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Rakenne taululle" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Näkymän rakenne" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Näkymän vararakenne" @@ -10536,7 +10450,7 @@ msgid "Database:" msgstr "Tietokanta" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10643,7 +10557,7 @@ msgid "Data creation options" msgstr "Objektin luontivaihtoehdot" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -10712,8 +10626,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10721,93 +10635,93 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Missing data for %s" msgid "Metadata" msgstr "Kohteesta %s puuttuu tiedot" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Metadata for %s" msgstr "Kohteesta %s puuttuu tiedot" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Luotu:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Viimeksi päivitetty:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Viimeksi tarkistettu:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "käytössä" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Rajoitteet vedostauluille" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Rajoitteet taululle" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Rajoitteet vedostauluille" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Tauluissa:" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "Älä käytä nolla-arvoissa AUTO_INCREMENT:iä" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Lisää AUTO_INCREMENT-arvo" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "MIME-TYYPIT TAULULLE" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "RELAATIOT TAULULLE" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, 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.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11073,9 +10987,9 @@ msgstr "Relaatioskeema" msgid "Table of contents" msgstr "Sisällysluettelo" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Lisätiedot" @@ -11324,61 +11238,61 @@ msgstr "Käyttää SQL-kyselyssä syntaksinväritystä." msgid "Formats text as XML with syntax highlighting." msgstr "Käyttää SQL-kyselyssä syntaksinväritystä." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Virhe: relaatio on jo olemassa." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "FOREIGN KEY -relaatio lisätty" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Virhe: Relaatiota ei luotu." -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "Virhe: Relaatio ominaisuudet ovat poissa käytöstä!" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "Sisäinen relaatio luotu" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "Virhe: Relaatiota ei luotu." -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "FOREIGN KEY -relaatio lisätty" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Virhe: Relaatiota ei luotu." -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "Virhe: Relaatiota ei luotu." -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11434,101 +11348,101 @@ msgstr "Selaimen muunnos (transformation)" msgid "Please see the documentation on how to update your column_info table. " msgstr "Lue ohjeista, kuinka column_comments-taulut päivitetään." -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Tallennettu SQL-kysely" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL-historia" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 #, fuzzy #| msgid "Persistent connections" msgid "Persistent recently used tables" msgstr "Jatkuvat yhteydet" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "Persistent connections" msgid "Persistent favorite tables" msgstr "Jatkuvat yhteydet" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Configuration file" msgid "Configurable menus" msgstr "Asetustiedosto" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 #, fuzzy #| msgid "Reload navigation frame" msgid "Hide/show navigation items" msgstr "Lataa navigointikehys uudelleen" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Remember table's sorting" msgid "Remembering Designer Settings" msgstr "Muista taulun järjestys" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "Virheellinen vientitapa" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "ei kuvausta" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, fuzzy, php-format #| msgid "" #| "Empty phpMyAdmin control user while using phpMyAdmin configuration storage" @@ -11539,13 +11453,13 @@ msgstr "" "Tyhjennä phpMyAdminin hallintakäyttäjä käytettäessä phpMyAdmin configuration " "storage-kantaa" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, fuzzy, php-format #| msgid "" #| "Empty phpMyAdmin control user while using phpMyAdmin configuration storage" @@ -11763,8 +11677,8 @@ msgstr "Käyttäjänimi" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Käyttäjänimi" @@ -11772,7 +11686,7 @@ msgstr "Käyttäjänimi" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Salasana" @@ -12515,7 +12429,7 @@ msgstr[1] "%s tietokantaa poistettiin onnistuneesti." msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Versio" @@ -12523,104 +12437,100 @@ msgstr "Versio" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "Lisenssi" - #: libraries/server_plugins.lib.php:114 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Pois päältä" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Ei käyttöoikeuksia." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Sisältää kaikki käyttöoikeudet GRANT-oikeutta lukuun ottamatta." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Sallii tietojen lukemisen." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Sallii tietojen lisäämisen ja korvaamisen." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Sallii tietojen muuttamisen." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Sallii tietojen poistamisen." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Sallii uusien tietokantojen ja taulujen luomisen." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Sallii tietokantojen ja taulujen poistamisen." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Sallii palvelinasetusten uudelleenlataamisen ja palvelimen välimuistin " "tyhjentämisen." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Sallii palvelimen sammuttamisen." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 #, fuzzy #| msgid "Allows viewing processes of all users" msgid "Allows viewing processes of all users." msgstr "Sallii kaikkien käyttäjien prosessien näyttämisen" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "Sallii tietojen tuomisen ja viemisen." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "Ei vaikutusta tässä MySQL-palvelimen versiossa." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Sallii indeksien luomisen ja poistamisen." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Sallii muuttaa olemassa olevien taulujen rakennetta." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Sallii koko tietokantaluettelon käytön." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12631,41 +12541,41 @@ msgstr "" "muuttujien asettamisessa ja muitten käyttäjien säikeiden lopettamisessa." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Sallii tilapäisten taulujen luomisen." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Sallii taulujen lukitsemisen nykyiselle säikeelle." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Tarvitaan kahdennusta käyttävissä alipalvelimissa." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "Sallii käyttäjän kysyä, missä ali- ja pääpalvelimet sijaitsevat." #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Sallii uusien näkymien luomisen." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "Sallii luoda tapahtuma-ajastimelle tapahtumia" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 #, fuzzy #| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." @@ -12673,27 +12583,27 @@ msgstr "Sallii herättimien eli laukaisinten luomisen ja poistamisen" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Sallii SHOW CREATE VIEW -kyselyjen suorittamisen." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Sallii talletettujen rutiinien luomisen." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Sallii talletettujen rutiinien muuntamisen ja poistamisen." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "Sallii käyttäjätilien luomisen, poistamisen ja uudelleennimeämisen." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Sallii talletettujen rutiinien suorittamisen." @@ -12707,8 +12617,8 @@ msgstr "Ei mitään" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12752,13 +12662,13 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Huom: Näiden valintojen asettaminen nollaksi (0) poistaa rajoituksen." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Rajoittaa käyttäjän tunnissa palvelimelle lähettämien kyselyjen määrän." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12767,19 +12677,19 @@ msgstr "" "tietokantoihin muutoksia tekeviä komentoja tunnin aikana." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "Rajoittaa käyttäjän tunnissa luomien uusien yhteyksien määrän." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "Rajoittaa käyttäjän yhtäaikaisten yhteyksien määrän." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12787,7 +12697,7 @@ msgid "Routine" msgstr "Rutiinit" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12808,14 +12718,14 @@ msgstr "Sallii talletettujen rutiinien suorittamisen." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Taulukohtaiset käyttöoikeudet" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -12827,7 +12737,7 @@ msgid "Administration" msgstr "Hallinta" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Globaalit käyttöoikeudet" @@ -12838,15 +12748,15 @@ msgid "Global" msgstr "globaali" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Tietokantakohtaiset käyttöoikeudet" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Sallii uusien taulujen luomisen." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Sallii taulujen poistamisen." @@ -12869,7 +12779,7 @@ msgid "Native MySQL Authentication" msgstr "Eväste tunnistautuminen" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Kirjautumistiedot" @@ -12894,8 +12804,8 @@ msgstr "Käyttäjänimi" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Log name" msgid "Host name" @@ -12917,128 +12827,128 @@ msgstr "Todennus" msgid "Password Hashing Method" msgstr "Salasanan salaus:" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "Käyttäjän %s salasanan vaihto onnistui." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Käyttäjän %s käyttöoikeudet on poistettu." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Lisää käyttäjä" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Tietokanta käyttäjälle" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "Luo samanniminen tietokanta ja anna kaikki oikeudet." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Anna kaikki oikeudet tietokannalle käyttäen korvausmerkkiä (username\\_%)." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Anna tietokannalle \"%s\" kaikki oikeudet." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Käyttäjät, joilla on oikeus käyttää kohdetta \"%s\"" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Näkymä %s on poistettu" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Valtuudet (GRANT)" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Käyttäjiä ei ole." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Mikä tahansa" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "globaali" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "tietokantakohtainen" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "korvausmerkki" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "tietokantakohtainen" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Muokkaa käyttöoikeuksia" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Pura käyttöoikeudet" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Muokkaa palvelinta" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… säilytä vanha käyttäjä." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… poista vanha käyttäjä käyttäjätauluista." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… peruuta kaikki vanhan käyttäjän aktiiviset käyttöoikeudet ja tuhoa " "käyttäjä sen jälkeen." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -13046,122 +12956,122 @@ msgstr "" "… poista käyttäjätauluista vanha käyttäjä ja päivitä sen jälkeen " "käyttöoikeudet." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Vaihda kirjautumistietoja / Kopioi käyttäjä" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Luo uusi käyttäjä samoilla käyttöoikeuksilla ja …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Sarakekohtaiset käyttöoikeudet" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Poista valitut käyttäjät" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Pura kaikki käyttäjän aktiiviset käyttöoikeudet, ja poista ne sen jälkeen." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "Poista tietokannat, joilla on sama nimi kuin käyttäjillä." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "Yhtään käyttäjää ei valittu poistettavaksi!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Ladataan käyttöoikeuksia uudelleen" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Valitsemiesi käyttäjien poisto onnistui." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Käyttäjän %s käyttöoikeudet on päivitetty." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "Poistetaan: %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Käyttöoikeuksien uudelleenlataus onnistui." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "Käyttäjä %s on jo olemassa!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Käyttöoikeudet" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Käyttäjä" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Muokkaa käyttöoikeuksia" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "Users" msgid "User account" msgstr "Käyttäjät" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Käyttäjien yleiskatsaus" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13174,7 +13084,7 @@ msgstr "" "käyttämistä käyttöoikeuksista, jos tauluihin on tehty muutoksia käsin. " "Tällöin %skäyttöoikeudet on ladattava uudestaan%s ennen jatkamista." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13193,11 +13103,11 @@ msgstr "" "käyttämistä käyttöoikeuksista, jos tauluihin on tehty muutoksia käsin. " "Tällöin %skäyttöoikeudet on ladattava uudestaan%s ennen jatkamista." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "Valittua käyttäjää ei löytynyt käyttöoikeustaulusta." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Uusi käyttäjä lisätty." @@ -13453,37 +13363,37 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 #, fuzzy #| msgid "Enable highlighting" msgid "Enable charts dragging" msgstr "Käytä korostusta" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 #, fuzzy msgid "Refresh rate" msgstr "Päivitä" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 #, fuzzy #| msgid "CHAR textarea columns" msgid "Chart columns" msgstr "CHAR-tekstikentän sarakkeet" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "Virheiden hallinta:" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "Palauta oletusarvoon" @@ -13553,7 +13463,7 @@ msgid "Statements" msgstr "Tieto" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -13586,19 +13496,19 @@ msgstr "Näytä avoimet taulut" msgid "Related links:" msgstr "Relaatiot" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL-palvelimeen ei voitu yhdistää" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13609,16 +13519,16 @@ msgstr "" "\"binlog_cache_size\"-muuttujan arvon ja käyttäneet tilapäistiedostoa " "transaktiokyselyjen tallentamiseen." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "Binäärilokin tilapäistä välimuistia käyttäneiden transaktioiden määrä." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13630,11 +13540,11 @@ msgstr "" "nosta tmp_table_size:n arvoa, jotta tilapäisiä tauluja säilytettäisiin " "muistissa eikä levyllä." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "Mysqld-palvelun luomien tilapäistiedostojen määrä." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13642,7 +13552,7 @@ msgstr "" "Kertoo, kuinka monta tilapäistaulua palvelin on automaattisesti luonut " "kyselyjä suorittaessaan." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13650,7 +13560,7 @@ msgstr "" "Virheen aiheuttaneiden, INSERT DELAYED -kyselyllä kirjoitettujen rivien " "määrä (virheenä todennäköisesti päällekkäinen avain)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13658,23 +13568,23 @@ msgstr "" "Käytössä olevien INSERT DELAYED -käsittelijäsäikeiden määrä. Jokainen INSERT " "DELAYED -kyselyä käyttävä taulu saa käyttöönsä oman säikeensä." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED -rivien kirjoituksia." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "FLUSH-kyselyjä suoritettu." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "Sisäisten COMMIT-kyselyjen määrä." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "Kertoo, kuinka monta kertaa taulusta on poistettu rivi." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13684,7 +13594,7 @@ msgstr "" "tietyn nimisen taulun. Tätä toimintoa kutsutaan selvittämiseksi (engl. " "discovery). Handler_discover ilmaisee selvitettyjen taulujen määrän." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13695,7 +13605,7 @@ msgstr "" "läpikäyntejä; näin käy esimerkiksi lauseessa SELECT col1 FROM foo, olettaen " "col1:sen olevan indeksoitu sarake." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -13703,7 +13613,7 @@ msgstr "" "Kertoo, kuinka monta kertaa rivejä on luettu avaimen perusteella. Jos tämä " "on suuri, kyselyjen ja taulujen indeksointi suoritetaan oikein." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13713,7 +13623,7 @@ msgstr "" "avainjärjestyksessä. Tämä arvo kasvaa, jos haetaan indeksisarakkeita " "käyttämällä rajauksia tai jos suoritetaan indeksihaku." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13722,7 +13632,7 @@ msgstr "" "avainjärjestyksessä. Tätä lukumenetelmää käytetään lähinnä ORDER BY … DESC -" "kyselyllä optimoimiseen." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13735,7 +13645,7 @@ msgstr "" "pakottavat MySQL-palvelimen käymään läpi kaikki taulut, tai käytät " "liitoksia, jotka käyttävät avaimia virheellisesti." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13747,35 +13657,35 @@ msgstr "" "yleensä siitä, että tauluja ei ole indeksoitu hyvin, tai että kyselyjä ei " "ole kirjoitettu siten, että ne hyödyntäisivät luomiasi indeksejä." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "Sisäisten ROLLBACK-kyselyjen määrä." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "Taulun rivien päivityspyyntöjen määrä." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "Kertoo tauluihin lisättyjen rivien määrän." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "Tietoa (epäsiistiä tai siistiä) sisältävien sivujen määrä." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "Tällä hetkellä epäsiistinä olevien sivujen määrä." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Siistittäviksi pyydettyjen, puskurivarannossa olevien sivujen määrä." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "Vapaiden sivujen määrä." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13785,7 +13695,7 @@ msgstr "" "parhaillaan luetaan tai kirjoitetaan tai joita ei voida poistaa tai joiden " "välimuistia ei voida tyhjentää syystä tai toisesta." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13797,11 +13707,11 @@ msgstr "" "takia. Tämä arvo voidaan laskea näinkin: Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "Puskurivarannon kokonaiskoko sivuina." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13809,7 +13719,7 @@ msgstr "" "InnoDB:n käynnistämien umpimähkäisten ennakkolukujen määrä. Näin käy kyselyn " "lukiessa satunnaisessa järjestyksessä läpi laajoja alueita taulusta." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13817,11 +13727,11 @@ msgstr "" "InnoDB:n käynnistämien perättäisten ennakkolukujen määrä. Näin käy kun " "InnoDB lukee läpi kokonaisen taulun tavallisessa järjestyksessä." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB:n suorittamien loogisten lukupyyntöjen määrä." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13829,7 +13739,7 @@ msgstr "" "Sellaisten loogisten lukujen määrä, joita InnoDB ei voinut toteuttaa " "puskurivarannon avulla vaan joutui lukemaan yksittäisen sivun." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13843,55 +13753,55 @@ msgstr "" "kertoo tällaisten odotusten määrän. Jos puskurivarannon koko on asetettu " "sopivaksi, tämän arvon pitäisi olla alhainen." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB:n puskurivarannon kirjoituspyyntöjen määrä." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "Fsync()-toimenpiteitä tähän mennessä." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "Tällä hetkellä käynnissä olevien fsync()-toimenpiteiden määrä." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "Tällä hetkellä käynnissä olevien lukutoimenpiteiden määrä." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "Tällä hetkellä käynnissä olevien kirjoitustoimenpiteiden määrä." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "Tähän mennessä luetun tiedon määrä tavuina." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "Kertoo, kuinka monta kertaa tietoja on luettu kaikkiaan." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "Kertoo, kuinka monta kertaa tietoja on kirjoitettu kaikkiaan." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "Kertoo, kuinka paljon on tähän mennessä tietoja kirjoitettu (tavuina)." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Suoritettujen päällekkäisten kirjoitustoimenpiteiden määrä ja tätä varten " "kirjoitettujen sivujen määrä." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" "Suoritettujen päällekkäisten kirjoitustoimenpiteiden määrä ja tätä varten " "kirjoitettujen sivujen määrä." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13899,35 +13809,35 @@ msgstr "" "Liian pienestä lokipuskurista johtuneiden odotusten määrä, jolloin puskurin " "tyhjentymistä jouduttiin odottamaan ennen jatkamista." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "Kertoo, kuinka monta kertaa lokitiedostoon on pyydetty kirjoittaa." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "Kertoo, kuinka monta kertaa lokitiedostoon on fyysisesti kirjoitettu." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "Lokitiedostojen fsync()-kirjoitusten määrä." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "Lokitiedoston avointen fsync-synkronointien määrä." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "Avoimet lokitiedostokirjoitukset." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "Lokitiedostoon kirjoitettujen tavujen määrä." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "Luotujen sivujen määrä." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -13936,52 +13846,52 @@ msgstr "" "arvoja lasketaan sivuina; sivukoon avulla voidaan helposti laskea sivujen " "koko tavuina." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "Luettujen rivien määrä." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "Kirjoitettujen sivujen määrä." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "Tällä hetkellä odotettavien rivilukitusten määrä." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Rivilukituksen valmistumiseen kuluva aika keskimäärin, millisekunteina." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Rivilukitusten valmistumiseen kuluva aika yhteensä, millisekunteina." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Rivilukituksen noutamiseen kulunut aika enimmillään, millisekunteina." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "Kertoo, kuinka monta kertaa rivilukitusta on jouduttu odottamaan." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB-tauluista poistettujen rivien määrä." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB-tauluihin lisättyjen rivien määrä." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB-taulusta luettujen rivien määrä." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB-taulun päivitettyjen rivien määrä." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13990,7 +13900,7 @@ msgstr "" "muutoksia, mutta joita ei vielä ole tallennettu levylle. Tämä toiminto " "tunnetaan yleisesti nimellä Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -13999,26 +13909,26 @@ msgstr "" "avulla voi määrittää, kuinka paljon avainvälimuistia halutaan olevan " "käytössä." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "Samaan aikaan avainvälimuistissa olleiden lohkojen määrä enimmillään." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Tuotavan tiedoston muoto" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" "Kertoo, kuinka monta pyyntöä on suoritettu avainlohkon hakemiseksi " "välimuistista." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -14029,27 +13939,27 @@ msgstr "" "asetettu liian alhainen arvo. Välimuistin käyttötahti voidaan laskea " "lausekkeella Key_reads / Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "Kertoo, kuinka monta kertaa välimuistiin on kirjoitettu avainlohko." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" "Kertoo, kuinka monta kertaa levylle on fyysisesti kirjoitettu avainlohko." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -14060,18 +13970,18 @@ msgstr "" "kyselytapausta varten. Oletusarvo 0 tarkoittaa, että yhtään kyselyä ei ole " "vielä koottu." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Kertoo, kuinka monta riviä INSERT DELAYED -jonoissa odottaa kirjoittamista." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -14079,39 +13989,39 @@ msgstr "" "Avattujen taulujen määrä. Jos määrä on suuri, tauluvälimuistin arvo saattaa " "olla liian alhainen." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "Avoinna olevien tiedostojen määrä." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Avoinna olevien tietovirtojen määrä (käytetään pääasiassa kirjauksessa)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "Avoinna olevien taulujen määrä." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "Kyselyvälimuistin vapaan muistin määrä." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "Välimuistiosumien määrä." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "Välimuistiin lisättyjen kyselyjen määrä." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14124,7 +14034,7 @@ msgstr "" "Kyselyvälimuisti päättää välimuistista poistettavat kyselyt LRU-käytännön " "avulla (\"least recently used\" eli \"äskettäin vähiten käytetyt kyselyt\")." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -14133,19 +14043,19 @@ msgstr "" "tallentaa välimuistiin tai ei muuten vain ole tallennettu sinne " "query_cache_type-asetuksen takia)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "Rekisteröityjen kyselyjen määrä välimuistissa." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "Lohkojen kokonaismäärä kyselyvälimuistissa." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "Kahdennuksen vikasietotila (ei vielä toteutettu)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -14153,11 +14063,11 @@ msgstr "" "Kertoo, kuinka moni liitos ei käytä indeksejä. Jos tämä arvo ei ole 0, " "taulujen indeksit olisi hyvä tarkistaa tarkkaan." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "Niiden liitosten määrä, jotka käyttivät viitetaulussa aluehakua." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -14166,7 +14076,7 @@ msgstr "" "rivin jälkeen. (Jos tämä ei ole 0, taulujen indeksit tulisi tarkistaa " "huolella.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -14174,17 +14084,17 @@ msgstr "" "Kertoo niiden liitosten määrän, jotka käyttävät rajausta ensimmäisessä " "taulussa. (Yleensä ei ole vakavaa, vaikka tämä arvo olisi suuri.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" "Kertoo niiden liitosten määrän, jotka suorittivat ensimmäisestä taulusta " "täydellisen tarkistuksen." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "SQL-alisäikeen avointen tilapäistaulujen määrä tällä hetkellä." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -14192,13 +14102,13 @@ msgstr "" "Kertoo, kuinka monta kertaa kahdennusalipalvelimen SQL-säie on " "käynnistyksestään lähtien yrittänut suorittaa transaktioita." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Tämän on päällä (ON), mikäli kyseinen palvelin on pääpalvelimeen kytketty " "alipalvelin." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -14206,14 +14116,14 @@ msgstr "" "Niiden säikeiden määrä, joiden luomiseen on kulunut aikaa enemmän kuin " "slow_launch_time sekuntia." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Niiden kyselyjen määrä, joiden suorittamiseen on kulunut aikaa enemmän kuin " "long_query_time sekuntia." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -14222,25 +14132,25 @@ msgstr "" "Lajittelualgoritmiin tarvittavien lomitusten määrä. Jos tämä arvo on suuri, " "sort_buffer-muuttujan arvoa voi suurentaa." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "Arvolillä suoritettujen lajittelutoimenpiteiden määrä." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "Lajiteltujen rivien määrä." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" "Niiden lajittelutoimenpiteiden määrä, jotka on suoritettu lukemalla taulu " "läpi." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "Kertoo, kuinka usein taulu on saatu lukittua heti." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14252,7 +14162,7 @@ msgstr "" "hyvä ensin optimoida kyselyjä ja sitten joko jakaa taulu useampaan osaan tai " "käyttää hyödyksi kahdennusta." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -14262,11 +14172,11 @@ msgstr "" "voidaan laskea täten kaavalla Threads_created / yhteyksien lkm. Jos tämä " "arvo on punainen, thread_cache_size-muuttujan arvoa tulisi nostaa." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "Tällä hetkellä avoinna olevien yhteyksien määrä." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14278,13 +14188,13 @@ msgstr "" "säikeet on toteutettu hyvin, tällä ei ole kovin suurta vaikutusta " "suorituskykyyn.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Seuranta ei ole käytössä." -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "Hereillä olevien säikeiden määrä." @@ -14293,77 +14203,77 @@ msgstr "Hereillä olevien säikeiden määrä." msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 #, fuzzy #| msgid "Users" msgid "User groups" msgstr "Käyttäjät" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "Palvelimen versio" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Database server" msgid "Database level tabs" msgstr "Tietokantapalvelin" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table comments" msgid "Table level tabs" msgstr "Taulun kommentit" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy #| msgid "Views" msgid "View users" msgstr "Näkymät" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "Lisää käyttäjä" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Ei käyttöoikeuksia." -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "Sarakkeiden nimet" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Palvelimen versio" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "Tietokantapalvelin" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14429,21 +14339,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14514,131 +14420,131 @@ msgstr "Taulu %1$s on luotu." msgid "Variable name was expected." msgstr "Taulunimen pohja" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Taulun alkuun" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 #, fuzzy #| msgid "Unexpected characters on line %s." msgid "Unexpected token." msgstr "Odottamattomia merkkejä rivillä %s." -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 #, fuzzy #| msgid "The number of tables that are open." msgid "The name of the entity was expected." msgstr "Avoinna olevien taulujen määrä." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Rivi on nyt poistettu." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Tiedoston koonkasvatusmäärä" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Toinen" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy #| msgid "Startup" msgid "State" msgstr "Käynnistys" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Kokonaisaika:" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Aika" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Sulje" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Aika" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Tallenna SQL-kysely" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Label" msgid "Label:" msgstr "Tunniste" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Anna kaikkien käyttäjien käyttää tätä kirjanmerkkiä" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created!" msgstr "Kirjanmerkki %s luotu" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "Näytetään PHP-koodina" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -14651,7 +14557,7 @@ msgstr "" "valintaneliöihin, Muokkaa-, Kopioi- ja Poista-linkkeihin liittyvät " "ominaisuudet eivät ehkä ole toiminnassa tallennuksen jälkeen." -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -14664,7 +14570,7 @@ msgstr "" "valintaneliöihin, Muokkaa-, Kopioi- ja Poista-linkkeihin liittyvät " "ominaisuudet eivät ehkä ole toiminnassa tallennuksen jälkeen." -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Taulun \"%s\" indeksien kanssa on ongelmia" @@ -14695,29 +14601,29 @@ msgstr "" msgid "Bind parameters" msgstr "Virheelliset parametrit!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 #, fuzzy #| msgid "Bookmark this SQL query" msgid "Bookmark this SQL query:" msgstr "Tallenna SQL-kysely" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Korvaa samanniminen, olemassa oleva kirjanmerkki" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Erotinmerkki" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Näytä tämä kyselylause uudestaan" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Näytä" @@ -14765,105 +14671,105 @@ msgstr "Poista kohteen %s.%s seuranta" msgid "Deactivate now" msgstr "Poista käytöstä nyt" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Luotu" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Päivitetty" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "Luo versio" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Seurantaraportti" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Rakenteen kuvaus" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "käytössä" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "ei käytössä" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "Seurantalauseet" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Poista tämän taulun seurantatiedot" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Ei tietokantoja" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, fuzzy, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Näytä %s päiväyksestä %s päiväykseen %s käyttäjän %s %s osalta" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "SQL-vedos (tiedoston lataus)" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "SQL-vedos" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "Tämä valinta korvaa taulun ja sen sisältämät tiedot." -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "SQL-suoritus" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "Vie kohteena %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "Tiedon käsittelyn lause" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "Tiedon määritelmän lause" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Päiväys" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Käyttäjänimi" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Version %s kuvaus (SQL-koodi)" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -14871,19 +14777,19 @@ msgctxt "None for default" msgid "None" msgstr "Ei mitään" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 #, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" msgstr "Seuraa näitä tiedon määritelmän lauseita:" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 #, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "Seuraa näitä tiedon käsittelyn lauseita:" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14891,65 +14797,65 @@ msgstr "" "Voit tehdä vedoksen luomalla ja käyttämällä tilapäistietokantaa. Varmista, " "että sinulla on oikeudet toiminnon suorittamiseen." -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "Kommentoi nämä kaksi riviä pois, mikäli et tarvitse niitä." -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL-lauseet viety. Kopioi vedos tai suorita se." -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "Taulun `%s` seurantaraportti" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Kohteen %s.%s seuranta on käytössä." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Kohteen %s.%s seuranta on käytössä." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Version %1$s of %2$s was deleted." msgstr "Luo versio %s kohteesta %s.%s" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versio %s on luotu, kohteen %s.%s seuranta on käytössä." -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Seuraamattomat taulut" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Seuraa taulua" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Seurattavat taulut" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Viimeinen versio" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "Poista seurantatiedot" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Versiot" @@ -14959,13 +14865,13 @@ msgstr "Versiot" msgid "Manage your settings" msgstr "Muut ydinasetukset" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." msgstr "Muutokset tallennettu" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -15077,7 +14983,7 @@ msgstr "Ei tietokantoja" msgid "View dump (schema) of databases" msgstr "Näytä tietokannoista vedos (skeema)" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -15102,7 +15008,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "PhpMyAdmin ei voinut lopettaa säiettä %s. Se on ehkä jo suljettu." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -16065,51 +15971,57 @@ msgstr "" msgid "Stacked" msgstr "Pakattu" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "Kaavion otsikko" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 #, fuzzy #| msgid "SQL queries" msgid "Series:" msgstr "SQL-kyselyt" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Arvo" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Y Arvot" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside column:" msgid "Series column:" msgstr "Sarakkeen sisällä:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Values for column %s" msgid "Value Column:" msgstr "Arvot sarakkeelle %s" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -16179,17 +16091,53 @@ msgstr "Kommentti:" msgid "Drag to reorder" msgstr "Muuta järjestystä vetämällä." -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +#, fuzzy +#| msgid "Foreign key limit" +msgid "Foreign key constraints" +msgstr "Viiteavaimen rajoitus" + +#: templates/table/relation/common_form.phtml:9 +#, fuzzy +#| msgid "Action" +msgid "Actions" +msgstr "Toiminnot" + +#: templates/table/relation/common_form.phtml:10 +#, fuzzy +#| msgid "Constraints for table" +msgid "Constraint properties" +msgstr "Rajoitteet taululle" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" + +#: templates/table/relation/common_form.phtml:18 +#, fuzzy +#| msgid "Foreign key limit" +msgid "Foreign key constraint" +msgstr "Viiteavaimen rajoitus" + +#: templates/table/relation/common_form.phtml:60 +#, fuzzy +#| msgid "Add constraints" +msgid "+ Add constraint" +msgstr "Lisää rajoitteet" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "Sisäiset relaatiot" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Sisäiset relaatiot" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -16197,42 +16145,7 @@ msgstr "" "Sisäistä relaatiota ei tarvita, kun vastaava FOREIGN KEY -relaatio on " "olemassa." -#: templates/table/relation/common_form.phtml:37 -#, fuzzy -#| msgid "Foreign key limit" -msgid "Foreign key constraints" -msgstr "Viiteavaimen rajoitus" - -#: templates/table/relation/common_form.phtml:40 -#, fuzzy -#| msgid "Action" -msgid "Actions" -msgstr "Toiminnot" - -#: templates/table/relation/common_form.phtml:41 -#, fuzzy -#| msgid "Constraints for table" -msgid "Constraint properties" -msgstr "Rajoitteet taululle" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" - -#: templates/table/relation/common_form.phtml:49 -#, fuzzy -#| msgid "Foreign key limit" -msgid "Foreign key constraint" -msgstr "Viiteavaimen rajoitus" - -#: templates/table/relation/common_form.phtml:83 -#, fuzzy -#| msgid "Add constraints" -msgid "+ Add constraint" -msgstr "Lisää rajoitteet" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16330,7 +16243,6 @@ msgid "Reset zoom" msgstr "Palauta zoomaus" #: templates/table/secondary_tabs.phtml:14 -#| msgid "Relation view" msgid "Relation view" msgstr "Relaationäkymä" @@ -16374,7 +16286,7 @@ msgid "at beginning of table" msgstr "Taulun alkuun" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16423,7 +16335,7 @@ msgstr "ositettu" msgid "Edit partitioning" msgstr "Poista ositus" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -17765,6 +17677,40 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert on asetettu arvoon 0" +#~ msgid "To filter all databases on server, press Enter after a search term" +#~ msgstr "" +#~ "Suodattaaksesi kaikki palvelimen tietokannat, paina Enter hakutermin " +#~ "jälkeen" + +#~ msgid "To filter all %s in database, press Enter after a search term" +#~ msgstr "" +#~ "Suodattaaksesi kaikki %s tietokannassa, paina Enter hakutermin jälkeen" + +#~ msgid "tables" +#~ msgstr "taulut" + +#~ msgid "views" +#~ msgstr "näkymät" + +#~ msgid "procedures" +#~ msgstr "proseduurit" + +#~ msgid "events" +#~ msgstr "tapahtumat" + +#~ msgid "functions" +#~ msgstr "funktiot" + +#, fuzzy +#~| msgid "Alter table order by" +#~ msgid "Filter databases by name or regex" +#~ msgstr "Lajittele taulu" + +#, fuzzy +#~| msgid "Alter table order by" +#~ msgid "Filter by name or regex" +#~ msgstr "Lajittele taulu" + #, fuzzy #~| msgid "Tracking report" #~ msgid "Taking you to %s." diff --git a/po/fr.po b/po/fr.po index dd96f415d7..6eee5623c8 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-28 12:02+0200\n" "Last-Translator: Marc Delisle \n" -"Language-Team: French " -"\n" +"Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 2.5-dev\n" -#: changelog.php:37 license.php:30 +#: changelog.php:37 license.php:33 #, php-format msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " @@ -38,7 +38,7 @@ msgstr "Cliquer pour trier." msgid "Showing rows %1$s - %2$s." msgstr "Affichage des lignes %1$s - %2$s." -#: db_create.php:61 +#: db_create.php:62 #, php-format msgid "Database %1$s has been created." msgstr "La base de données %1$s a été créée." @@ -47,13 +47,13 @@ msgstr "La base de données %1$s a été créée." msgid "Database comment" msgstr "Commentaire sur la base de données :" -#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:601 +#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:599 #: templates/columns_definitions/column_definitions_form.phtml:84 msgid "Table comments:" msgstr "Commentaires sur la table : " #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1568 +#: libraries/insert_edit.lib.php:1575 #: libraries/navigation/nodes/NodeColumn.php:34 #: libraries/plugins/export/ExportHtmlword.php:288 #: libraries/plugins/export/ExportHtmlword.php:384 @@ -63,13 +63,14 @@ msgstr "Commentaires sur la table : " #: libraries/plugins/export/ExportTexytext.php:282 #: libraries/plugins/export/ExportTexytext.php:373 #: libraries/plugins/export/PMA_ExportPdf.php:472 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:882 libraries/tracking.lib.php:978 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 +#: libraries/tracking.lib.php:892 libraries/tracking.lib.php:990 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:10 -#: templates/table/relation/common_form.phtml:43 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:27 +#: templates/table/relation/common_form.phtml:79 #: templates/table/relation/foreign_key_row.phtml:176 #: templates/table/relation/foreign_key_row.phtml:188 #: templates/table/relation/internal_relational_row.phtml:73 @@ -89,14 +90,14 @@ msgstr "Colonne" #: libraries/plugins/export/ExportTexytext.php:283 #: libraries/plugins/export/ExportTexytext.php:374 #: libraries/plugins/export/PMA_ExportPdf.php:474 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 #: libraries/rte/rte_list.lib.php:78 libraries/rte/rte_list.lib.php:106 #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2606 libraries/tracking.lib.php:883 -#: libraries/tracking.lib.php:975 +#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -106,7 +107,7 @@ msgstr "Type" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:709 -#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1577 +#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1584 #: libraries/plugins/export/ExportHtmlword.php:294 #: libraries/plugins/export/ExportHtmlword.php:390 #: libraries/plugins/export/ExportLatex.php:517 @@ -115,9 +116,9 @@ msgstr "Type" #: libraries/plugins/export/ExportTexytext.php:284 #: libraries/plugins/export/ExportTexytext.php:375 #: libraries/plugins/export/PMA_ExportPdf.php:476 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 -#: libraries/tracking.lib.php:885 libraries/tracking.lib.php:981 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/tracking.lib.php:895 libraries/tracking.lib.php:993 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 @@ -134,9 +135,9 @@ msgstr "Null" #: libraries/plugins/export/ExportTexytext.php:285 #: libraries/plugins/export/ExportTexytext.php:376 #: libraries/plugins/export/PMA_ExportPdf.php:478 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 -#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:886 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:896 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 @@ -148,8 +149,8 @@ msgstr "Défaut" #: libraries/plugins/export/ExportOdt.php:488 #: libraries/plugins/export/ExportTexytext.php:378 #: libraries/plugins/export/PMA_ExportPdf.php:487 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:640 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:663 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 msgid "Links to" msgstr "Relié à" @@ -160,37 +161,38 @@ msgstr "Relié à" #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:381 #: libraries/plugins/export/PMA_ExportPdf.php:494 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:651 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:664 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:649 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 #: templates/columns_definitions/table_fields_definitions.phtml:65 msgid "Comments" msgstr "Commentaires" -#: db_datadict.php:155 libraries/controllers/TableStructureController.php:1189 -#: libraries/controllers/TableStructureController.php:1194 -#: libraries/tracking.lib.php:925 +#: db_datadict.php:155 +#: libraries/controllers/table/TableStructureController.php:1197 +#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:79 +#: templates/table/structure/display_structure.phtml:80 msgid "Primary" msgstr "Primaire" -#: db_datadict.php:165 js/messages.php:370 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:371 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 -#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:403 -#: libraries/mult_submits.lib.php:417 +#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:408 +#: libraries/mult_submits.lib.php:422 #: libraries/plugins/export/ExportHtmlword.php:654 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:710 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2971 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3620 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1013 libraries/tracking.lib.php:1018 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2973 +#: libraries/server_privileges.lib.php:2993 +#: libraries/server_privileges.lib.php:3631 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -199,32 +201,32 @@ msgstr "Primaire" msgid "No" msgstr "Non" -#: db_datadict.php:165 js/messages.php:515 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:516 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 #: libraries/config/FormDisplay.tpl.php:280 -#: libraries/controllers/TableStructureController.php:770 -#: libraries/controllers/TableStructureController.php:1440 -#: libraries/controllers/TableStructureController.php:1449 -#: libraries/controllers/TableStructureController.php:1454 -#: libraries/controllers/TableStructureController.php:1459 -#: libraries/controllers/TableStructureController.php:1464 -#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:199 -#: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 -#: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 +#: libraries/controllers/table/TableStructureController.php:771 +#: libraries/controllers/table/TableStructureController.php:1448 +#: libraries/controllers/table/TableStructureController.php:1457 +#: libraries/controllers/table/TableStructureController.php:1462 +#: libraries/controllers/table/TableStructureController.php:1467 +#: libraries/controllers/table/TableStructureController.php:1472 +#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:200 +#: libraries/mult_submits.lib.php:344 libraries/mult_submits.lib.php:377 +#: libraries/mult_submits.lib.php:406 libraries/mult_submits.lib.php:420 #: libraries/plugins/export/ExportHtmlword.php:655 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:788 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:711 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2968 -#: libraries/server_privileges.lib.php:2989 -#: libraries/server_privileges.lib.php:3617 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1011 libraries/tracking.lib.php:1016 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2970 +#: libraries/server_privileges.lib.php:2991 +#: libraries/server_privileges.lib.php:3628 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -237,8 +239,8 @@ msgstr "Oui" msgid "View dump (schema) of database" msgstr "Voir une exportation (schéma) de la base de données" -#: db_export.php:51 db_tracking.php:102 export.php:382 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:176 +#: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 +#: libraries/controllers/DatabaseStructureController.php:157 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "Aucune table n'a été trouvée dans cette base." @@ -255,7 +257,7 @@ msgstr "Tables" #: db_export.php:66 libraries/Menu.php:320 libraries/Menu.php:427 #: libraries/Util.php:3407 libraries/Util.php:3417 libraries/Util.php:3423 -#: libraries/Util.php:3702 libraries/Util.php:4339 libraries/Util.php:4356 +#: libraries/Util.php:3703 libraries/Util.php:4340 libraries/Util.php:4357 #: libraries/central_columns.lib.php:729 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:320 @@ -263,10 +265,10 @@ msgstr "Tables" #: libraries/config/user_preferences.forms.php:218 #: libraries/config/user_preferences.forms.php:259 #: libraries/config/user_preferences.forms.php:285 -#: libraries/import.lib.php:1299 libraries/navigation/nodes/NodeColumn.php:44 +#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:44 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 -#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:877 +#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:887 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -311,11 +313,11 @@ msgstr "" "Le stockage de configurations phpMyAdmin a été désactivé. %sVoir l'analyse " "du problème%s." -#: db_qbe.php:135 +#: db_qbe.php:136 msgid "You have to choose at least one column to display!" msgstr "Vous devez choisir au moins une colonne à afficher !" -#: db_qbe.php:152 +#: db_qbe.php:154 #, php-format msgid "Switch to %svisual builder%s" msgstr "Passer au %smode visuel%s" @@ -343,7 +345,7 @@ msgstr "" msgid "No tables selected." msgstr "Aucune table n'a été sélectionnée." -#: db_tracking.php:146 +#: db_tracking.php:149 msgid "Database Log" msgstr "Journal de la base de données" @@ -381,7 +383,7 @@ msgstr "Veuillez rafraîchir la page." msgid "Bad type!" msgstr "Type incorrect !" -#: export.php:276 +#: export.php:278 msgid "Bad parameters!" msgstr "Paramètres incorrects !" @@ -389,98 +391,98 @@ msgstr "Paramètres incorrects !" msgid "Invalid export type" msgstr "Type d'exportation invalide" -#: gis_data_editor.php:119 +#: gis_data_editor.php:117 #, php-format msgid "Value for the column \"%s\"" msgstr "Valeur pour la colonne «%s»" -#: gis_data_editor.php:147 +#: gis_data_editor.php:145 #: templates/table/gis_visualization/gis_visualization.phtml:37 msgid "Use OpenStreetMaps as Base Layer" msgstr "Utiliser OpenStreetMaps comme couche de base" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:169 +#: gis_data_editor.php:167 msgid "SRID:" msgstr "SRID : " -#: gis_data_editor.php:192 +#: gis_data_editor.php:190 #, php-format msgid "Geometry %d:" msgstr "Géométrie %d : " -#: gis_data_editor.php:214 +#: gis_data_editor.php:212 msgid "Point:" msgstr "Point : " -#: gis_data_editor.php:215 gis_data_editor.php:242 gis_data_editor.php:298 -#: gis_data_editor.php:371 js/messages.php:504 +#: gis_data_editor.php:213 gis_data_editor.php:240 gis_data_editor.php:296 +#: gis_data_editor.php:369 js/messages.php:505 msgid "X" msgstr "X" -#: gis_data_editor.php:218 gis_data_editor.php:246 gis_data_editor.php:302 -#: gis_data_editor.php:377 js/messages.php:505 +#: gis_data_editor.php:216 gis_data_editor.php:244 gis_data_editor.php:300 +#: gis_data_editor.php:375 js/messages.php:506 msgid "Y" msgstr "Y" -#: gis_data_editor.php:240 gis_data_editor.php:296 gis_data_editor.php:369 -#: js/messages.php:507 +#: gis_data_editor.php:238 gis_data_editor.php:294 gis_data_editor.php:367 +#: js/messages.php:508 #, php-format msgid "Point %d" msgstr "Point %d" -#: gis_data_editor.php:253 gis_data_editor.php:309 gis_data_editor.php:387 -#: js/messages.php:513 +#: gis_data_editor.php:251 gis_data_editor.php:307 gis_data_editor.php:385 +#: js/messages.php:514 msgid "Add a point" msgstr "Ajouter un point" -#: gis_data_editor.php:270 +#: gis_data_editor.php:268 #, php-format msgid "Linestring %d:" msgstr "Ligne %d : " -#: gis_data_editor.php:273 gis_data_editor.php:350 +#: gis_data_editor.php:271 gis_data_editor.php:348 msgid "Outer ring:" msgstr "Anneau extérieur : " -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:273 gis_data_editor.php:350 #, php-format msgid "Inner ring %d:" msgstr "Anneau intérieur %d : " -#: gis_data_editor.php:312 +#: gis_data_editor.php:310 msgid "Add a linestring" msgstr "Ajouter une ligne" -#: gis_data_editor.php:313 gis_data_editor.php:392 js/messages.php:514 +#: gis_data_editor.php:311 gis_data_editor.php:390 js/messages.php:515 msgid "Add an inner ring" msgstr "Ajouter un anneau intérieur" -#: gis_data_editor.php:334 +#: gis_data_editor.php:332 #, php-format msgid "Polygon %d:" msgstr "Polygone %d : " -#: gis_data_editor.php:398 +#: gis_data_editor.php:396 msgid "Add a polygon" msgstr "Ajouter un polygone" -#: gis_data_editor.php:404 +#: gis_data_editor.php:402 msgid "Add geometry" msgstr "Ajouter géométrie" -#: gis_data_editor.php:410 js/messages.php:345 libraries/DbSearch.php:462 -#: libraries/DisplayResults.php:1783 libraries/browse_foreigners.lib.php:142 +#: gis_data_editor.php:408 js/messages.php:346 libraries/DbSearch.php:462 +#: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:151 #: libraries/display_export.lib.php:404 libraries/display_export.lib.php:410 -#: libraries/display_import.lib.php:403 libraries/index.lib.php:42 -#: libraries/insert_edit.lib.php:1547 libraries/insert_edit.lib.php:1584 +#: libraries/display_import.lib.php:403 libraries/index.lib.php:45 +#: libraries/insert_edit.lib.php:1554 libraries/insert_edit.lib.php:1591 #: libraries/normalization.lib.php:168 libraries/normalization.lib.php:825 #: libraries/operations.lib.php:47 libraries/operations.lib.php:114 #: libraries/operations.lib.php:266 libraries/operations.lib.php:309 #: libraries/operations.lib.php:806 libraries/operations.lib.php:877 -#: libraries/operations.lib.php:926 libraries/operations.lib.php:1336 -#: libraries/operations.lib.php:1653 +#: libraries/operations.lib.php:926 libraries/operations.lib.php:1339 +#: libraries/operations.lib.php:1656 #: libraries/plugins/auth/AuthenticationCookie.php:239 #: libraries/replication_gui.lib.php:124 libraries/replication_gui.lib.php:163 #: libraries/replication_gui.lib.php:328 libraries/replication_gui.lib.php:465 @@ -489,12 +491,12 @@ msgstr "Ajouter géométrie" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2343 -#: libraries/server_privileges.lib.php:3114 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_user_groups.lib.php:285 -#: libraries/sql_query_form.lib.php:369 libraries/sql_query_form.lib.php:429 -#: libraries/tracking.lib.php:536 libraries/tracking.lib.php:656 +#: libraries/server_privileges.lib.php:2345 +#: libraries/server_privileges.lib.php:3116 +#: libraries/server_privileges.lib.php:3735 +#: libraries/server_user_groups.lib.php:290 +#: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 +#: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 #: prefs_manage.php:280 prefs_manage.php:358 #: templates/columns_definitions/column_definitions_form.phtml:64 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 @@ -507,11 +509,11 @@ msgstr "Ajouter géométrie" msgid "Go" msgstr "Exécuter" -#: gis_data_editor.php:413 +#: gis_data_editor.php:411 msgid "Output" msgstr "Résultat" -#: gis_data_editor.php:416 +#: gis_data_editor.php:414 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -523,7 +525,7 @@ msgstr "" msgid "Succeeded" msgstr "Succès" -#: import.php:59 js/messages.php:588 +#: import.php:59 js/messages.php:589 msgid "Failed" msgstr "Échec" @@ -589,7 +591,7 @@ msgstr "" "Chargement impossible des greffons d'importation, veuillez vérifier votre " "installation !" -#: import.php:669 libraries/sql.lib.php:744 libraries/sql.lib.php:1468 +#: import.php:669 libraries/sql.lib.php:754 libraries/sql.lib.php:1485 #, php-format msgid "Bookmark %s has been created." msgstr "Signet %s créé." @@ -621,7 +623,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:111 js/messages.php:444 libraries/Util.php:797 +#: import_status.php:111 js/messages.php:445 libraries/Util.php:797 #: libraries/export.lib.php:523 #: libraries/plugins/schema/ExportRelationSchema.php:301 user_password.php:268 msgid "Back" @@ -646,7 +648,7 @@ msgstr "" msgid "General settings" msgstr "Paramètres généraux" -#: index.php:191 js/messages.php:617 +#: index.php:191 js/messages.php:618 #: libraries/display_change_password.lib.php:54 #: libraries/display_change_password.lib.php:57 user_password.php:262 msgid "Change password" @@ -746,7 +748,11 @@ msgstr "Obtenir de l'aide" msgid "List of changes" msgstr "Liste des changements" -#: index.php:453 +#: index.php:438 libraries/server_plugins.lib.php:83 +msgid "License" +msgstr "Licence" + +#: index.php:460 msgid "" "You are connected as 'root' with no password, which corresponds to the " "default MySQL privileged account. Your MySQL server is running with this " @@ -758,7 +764,7 @@ msgstr "" "intrusions, et vous devriez corriger ce problème de sécurité en assignant un " "mot de passe à l'utilisateur «root »." -#: index.php:470 +#: index.php:477 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -768,7 +774,7 @@ msgstr "" "option est incompatible avec phpMyAdmin et peut nuire au traitement des " "données !" -#: index.php:485 +#: index.php:492 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -779,7 +785,7 @@ msgstr "" "phpMyAdmin est incapable de gérer correctement les caractères et il peut en " "résulter des problèmes." -#: index.php:502 +#: index.php:509 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than " @@ -791,7 +797,7 @@ msgstr "" "petite que la durée du cookie configurée dans phpMyAdmin; donc, votre " "session de travail pourrait expirer plus tôt." -#: index.php:521 +#: index.php:528 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -800,13 +806,13 @@ msgstr "" "LoginCookieValidity; donc, votre session de travail expirera plus tôt que la " "valeur configurée dans phpMyAdmin." -#: index.php:537 +#: index.php:544 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Vous devez ajouter dans le fichier de configuration une phrase de passe " "secrète (blowfish_secret)." -#: index.php:550 +#: index.php:557 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. It is strongly recommended to remove it " @@ -819,7 +825,7 @@ msgstr "" "serveur peut être compromise par le téléchargement de votre configuration " "par des personnes non autorisées." -#: index.php:566 +#: index.php:573 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -829,14 +835,14 @@ msgstr "" "certaines fonctionnalités ont été désactivées. %sVoir l'analyse du problème" "%s. " -#: index.php:573 +#: index.php:580 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "Ou encore allez sur l'onglet «Opérations», de n'importe quelle base de " "données pour l'y placer à cet endroit." -#: index.php:619 +#: index.php:626 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -845,7 +851,7 @@ msgstr "" "La version de votre bibliothèque MySQL (%s) de PHP diffère de la version de " "votre serveur MySQL (%s). Ceci peut occasionner un comportement imprévisible." -#: index.php:647 +#: index.php:654 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -867,7 +873,7 @@ msgstr "Confirmer" msgid "Do you really want to execute \"%s\"?" msgstr "Voulez-vous vraiment exécuter «%s» ?" -#: js/messages.php:45 libraries/mult_submits.lib.php:397 +#: js/messages.php:45 libraries/mult_submits.lib.php:402 msgid "You are about to DESTROY a complete database!" msgstr "Vous êtes sur le point de DÉTRUIRE une base de données !" @@ -988,13 +994,6 @@ msgstr "" "données ?" #: js/messages.php:95 -#| msgid "" -#| "Through this operation, MySQL attempts to map the data values between " -#| "collations. If the character sets are incompatible, there may be data " -#| "loss and this lost data may NOT be recoverable simply by changing " -#| "back the column collation(s). To convert existing data, it is " -#| "suggested to use the column(s) editing feature (the \"Change\" Link) on " -#| "the table structure page. " msgid "" "Through this operation, MySQL attempts to map the data values between " "collations. If the character sets are incompatible, there may be data loss " @@ -1024,7 +1023,7 @@ msgid "Save & close" msgstr "Sauvegarder et fermer" #: js/messages.php:109 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1551 prefs_manage.php:364 +#: libraries/insert_edit.lib.php:1558 prefs_manage.php:364 #: prefs_manage.php:375 msgid "Reset" msgstr "Réinitialiser" @@ -1082,10 +1081,10 @@ msgstr "Veuillez sélectionner les colonnes de l'index." msgid "You have to add at least one column." msgstr "Vous devez ajouter au moins une colonne." -#: js/messages.php:129 libraries/insert_edit.lib.php:1549 +#: js/messages.php:129 libraries/insert_edit.lib.php:1556 #: templates/columns_definitions/column_definitions_form.phtml:159 #: templates/table/index_form.phtml:237 -#: templates/table/relation/common_form.phtml:108 +#: templates/table/relation/common_form.phtml:127 msgid "Preview SQL" msgstr "Aperçu SQL" @@ -1128,8 +1127,8 @@ msgstr "Les mots de passe doivent être identiques !" msgid "Removing Selected Users" msgstr "Effacement des utilisateurs sélectionnés" -#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:461 -#: libraries/tracking.lib.php:831 +#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:471 +#: libraries/tracking.lib.php:841 msgid "Close" msgstr "Fermer" @@ -1151,7 +1150,7 @@ msgstr "Le modèle a été supprimé." #. l10n: Other, small valued, queries #: js/messages.php:155 libraries/ServerStatusData.php:130 -#: libraries/server_status_queries.lib.php:148 +#: libraries/server_status_queries.lib.php:150 msgid "Other" msgstr "Autres" @@ -1318,7 +1317,7 @@ msgstr "Questions" msgid "Traffic" msgstr "Trafic" -#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4330 +#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4331 #: libraries/server_status_monitor.lib.php:258 msgid "Settings" msgstr "Paramètres" @@ -1331,9 +1330,9 @@ msgstr "Ajouter graphique à la grille" msgid "Please add at least one variable to the series!" msgstr "Veuillez ajouter au moins une variable à la série !" -#: js/messages.php:216 libraries/DisplayResults.php:1477 +#: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1449,7 +1448,7 @@ msgstr "Changer les paramètres" msgid "Current settings" msgstr "Paramètres courants" -#: js/messages.php:253 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:253 msgid "Chart title" msgstr "Titre du graphique" @@ -1539,21 +1538,21 @@ msgstr "Analyse en cours…" msgid "Explain output" msgstr "Expliquer les résultats" -#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4326 +#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4327 #: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:396 #: libraries/rte/rte_list.lib.php:104 -#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:282 -#: libraries/tracking.lib.php:1623 +#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:284 +#: libraries/tracking.lib.php:1639 msgid "Status" msgstr "État" -#: js/messages.php:289 js/messages.php:870 +#: js/messages.php:289 js/messages.php:862 #: libraries/plugins/export/ExportHtmlword.php:484 #: libraries/plugins/export/ExportOdt.php:600 #: libraries/plugins/export/ExportTexytext.php:445 #: libraries/plugins/export/PMA_ExportPdf.php:314 #: libraries/rte/rte_list.lib.php:93 -#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:239 +#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:243 msgid "Time" msgstr "Moment" @@ -1639,10 +1638,10 @@ msgstr "" "Réinitialisation à la configuration par défaut…" #: js/messages.php:322 libraries/Menu.php:355 libraries/Menu.php:457 -#: libraries/Menu.php:578 libraries/Util.php:4329 libraries/Util.php:4344 -#: libraries/Util.php:4361 libraries/config/messages.inc.php:260 +#: libraries/Menu.php:578 libraries/Util.php:4330 libraries/Util.php:4345 +#: libraries/Util.php:4362 libraries/config/messages.inc.php:260 #: libraries/display_import.lib.php:108 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:241 +#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:241 #: setup/frames/menu.inc.php:26 msgid "Import" msgstr "Importer" @@ -1699,7 +1698,13 @@ msgstr "Test" msgid "Formatting SQL…" msgstr "Formatage SQL…" -#: js/messages.php:346 libraries/server_variables.lib.php:159 +#: js/messages.php:343 +#, fuzzy +#| msgid "Bad parameters!" +msgid "No parameters found!" +msgstr "Paramètres incorrects !" + +#: js/messages.php:347 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 @@ -1710,59 +1715,59 @@ msgstr "Formatage SQL…" msgid "Cancel" msgstr "Annuler" -#: js/messages.php:349 libraries/Header.php:457 +#: js/messages.php:350 libraries/Header.php:457 msgid "Page-related settings" msgstr "Paramètres liés à la page" -#: js/messages.php:350 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:351 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Appliquer" -#: js/messages.php:353 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:354 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:124 msgid "Loading…" msgstr "Chargement en cours…" -#: js/messages.php:354 +#: js/messages.php:355 msgid "Request aborted!!" msgstr "Requête abandonnée !" -#: js/messages.php:355 +#: js/messages.php:356 msgid "Processing request" msgstr "Requête en traitement" -#: js/messages.php:356 +#: js/messages.php:357 msgid "Request failed!!" msgstr "Échec de cette requête !" -#: js/messages.php:357 +#: js/messages.php:358 msgid "Error in processing request" msgstr "Erreur dans le traitement de la requête" -#: js/messages.php:358 +#: js/messages.php:359 #, php-format msgid "Error code: %s" msgstr "Code d'erreur : %s" -#: js/messages.php:359 +#: js/messages.php:360 #, php-format msgid "Error text: %s" msgstr "Texte de l'erreur : %s" -#: js/messages.php:360 libraries/db_common.inc.php:73 +#: js/messages.php:361 libraries/db_common.inc.php:73 #: libraries/db_table_exists.lib.php:33 libraries/server_databases.lib.php:462 msgid "No databases selected." msgstr "Aucune base de données n'a été sélectionnée." -#: js/messages.php:361 +#: js/messages.php:362 msgid "Dropping column" msgstr "Suppression de la colonne" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Adding primary key" msgstr "Ajout de clé primaire" -#: js/messages.php:363 +#: js/messages.php:364 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1772,165 +1777,165 @@ msgstr "Ajout de clé primaire" msgid "OK" msgstr "OK" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Click to dismiss this notification" msgstr "Cliquer pour éliminer ce message" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Renaming databases" msgstr "Changement de nom de la base de données" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Copying database" msgstr "Copie de la base de données" -#: js/messages.php:369 +#: js/messages.php:370 msgid "Changing charset" msgstr "Changement du jeu de caractères" -#: js/messages.php:373 libraries/Util.php:3289 +#: js/messages.php:374 libraries/Util.php:3289 msgid "Enable foreign key checks" msgstr "Activer la vérification des clés étrangères" -#: js/messages.php:376 +#: js/messages.php:377 msgid "Failed to get real row count." msgstr "Impossible d'obtenir le nombre réel de lignes." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Searching" msgstr "En recherche" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide search results" msgstr "Cacher les résultats de recherche" -#: js/messages.php:381 +#: js/messages.php:382 msgid "Show search results" msgstr "Afficher les résultats de recherche" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Browsing" msgstr "Affichage en cours" -#: js/messages.php:383 +#: js/messages.php:384 msgid "Deleting" msgstr "Destruction en cours" -#: js/messages.php:387 +#: js/messages.php:388 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:388 libraries/DisplayResults.php:4832 -#: libraries/DisplayResults.php:5091 libraries/Menu.php:347 -#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3709 -#: libraries/Util.php:3710 libraries/Util.php:4328 libraries/Util.php:4343 -#: libraries/Util.php:4360 libraries/config/messages.inc.php:254 +#: js/messages.php:389 libraries/DisplayResults.php:4850 +#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 +#: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 +#: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2448 -#: libraries/server_privileges.lib.php:2527 -#: libraries/server_privileges.lib.php:2873 -#: libraries/server_privileges.lib.php:3532 -#: libraries/server_status_monitor.lib.php:321 prefs_manage.php:306 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2875 +#: libraries/server_privileges.lib.php:3543 +#: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 msgid "Export" msgstr "Exporter" -#: js/messages.php:391 libraries/rte/rte_routines.lib.php:742 +#: js/messages.php:392 libraries/rte/rte_routines.lib.php:742 msgid "ENUM/SET editor" msgstr "Éditeur ENUM/SET" -#: js/messages.php:392 +#: js/messages.php:393 #, php-format msgid "Values for column %s" msgstr "Valeurs pour la colonne %s" -#: js/messages.php:393 +#: js/messages.php:394 msgid "Values for a new column" msgstr "Valeurs pour une nouvelle colonne" -#: js/messages.php:394 +#: js/messages.php:395 msgid "Enter each value in a separate field." msgstr "Saisir chaque valeur dans un champ séparé." -#: js/messages.php:395 +#: js/messages.php:396 #, php-format msgid "Add %d value(s)" msgstr "Ajouter %d valeur(s)" -#: js/messages.php:399 +#: js/messages.php:400 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:403 +#: js/messages.php:404 msgid "Hide query box" msgstr "Cacher zone SQL" -#: js/messages.php:404 +#: js/messages.php:405 msgid "Show query box" msgstr "Montrer zone SQL" -#: js/messages.php:405 libraries/Console.php:88 libraries/Console.php:217 -#: libraries/DisplayResults.php:3457 libraries/DisplayResults.php:4816 +#: js/messages.php:406 libraries/Console.php:88 libraries/Console.php:217 +#: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4834 #: libraries/Index.php:721 libraries/Util.php:727 libraries/Util.php:1238 -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:119 +#: libraries/server_user_groups.lib.php:121 #: libraries/server_variables.lib.php:242 #: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 msgid "Edit" msgstr "Modifier" -#: js/messages.php:406 libraries/Console.php:89 libraries/DbSearch.php:360 -#: libraries/DisplayResults.php:3526 libraries/DisplayResults.php:4800 +#: js/messages.php:407 libraries/Console.php:89 libraries/DbSearch.php:360 +#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4818 #: libraries/central_columns.lib.php:854 #: libraries/central_columns.lib.php:1200 libraries/display_export.lib.php:227 -#: libraries/server_user_groups.lib.php:129 -#: libraries/sql_query_form.lib.php:416 libraries/tracking.lib.php:480 +#: libraries/server_user_groups.lib.php:131 +#: libraries/sql_query_form.lib.php:417 libraries/tracking.lib.php:490 #: setup/frames/index.inc.php:187 setup/frames/index.inc.php:295 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Effacer" -#: js/messages.php:407 libraries/DisplayResults.php:915 -#: libraries/DisplayResults.php:923 +#: js/messages.php:408 libraries/DisplayResults.php:919 +#: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d n'est pas un numéro de ligne valable." -#: js/messages.php:408 -#: libraries/controllers/table/TableSearchController.php:435 -#: libraries/controllers/table/TableSearchController.php:920 -#: libraries/sql.lib.php:193 tbl_change.php:159 +#: js/messages.php:409 +#: libraries/controllers/table/TableSearchController.php:432 +#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "Afficher les valeurs de la table liée" -#: js/messages.php:409 +#: js/messages.php:410 msgid "No auto-saved query" msgstr "Aucune requête sauvegardée automatiquement" -#: js/messages.php:410 +#: js/messages.php:411 #, php-format msgid "Variable %d:" msgstr "Variable %d :" -#: js/messages.php:413 libraries/normalization.lib.php:889 +#: js/messages.php:414 libraries/normalization.lib.php:889 msgid "Pick" msgstr "Choisir" -#: js/messages.php:414 +#: js/messages.php:415 msgid "Column selector" msgstr "Sélecteur de colonne" -#: js/messages.php:415 +#: js/messages.php:416 msgid "Search this list" msgstr "Chercher dans cette liste" -#: js/messages.php:417 +#: js/messages.php:418 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1940,15 +1945,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:420 +#: js/messages.php:421 msgid "See more" msgstr "Plus" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Are you sure?" msgstr "Êtes-vous certain ?" -#: js/messages.php:423 +#: js/messages.php:424 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1956,51 +1961,51 @@ msgstr "" "Cette action peut changer certaines définitions de colonnes.
Êtes-vous " "sûr de vouloir continuer ?" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "Continuer" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "Ajouter une clé primaire" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "Une clé primaire a été ajoutée." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "Vous êtes redirigé vers l'étape suivante…" -#: js/messages.php:433 +#: js/messages.php:434 #, 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:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "Fin d'étape" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "Deuxième étape de la normalisation (2FN)" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Fermer" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "Confirmer les dépendances partielles" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "Les dépendances partielles sélectionnées sont les suivantes :" -#: js/messages.php:440 +#: js/messages.php:441 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2008,21 +2013,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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "Pas de dépendances partielles sélectionnées !" -#: js/messages.php:446 +#: js/messages.php:447 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:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "Masquer la liste des dépendances partielles" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2030,168 +2035,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:452 +#: js/messages.php:453 msgid "Step" msgstr "Étape" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "Les actions suivantes seront effectuées :" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "Supprimer les colonnes %s de la table %s" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "Créer la table suivante :" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "Troisième étape de la normalisation (3FN)" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "Confirmer les dépendances transitives" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "Les dépendances sélectionnées sont les suivantes :" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "Aucune dépendance sélectionnée !" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Sauvegarder" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Cacher les critères de recherche" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Afficher les critères de recherche" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "Recherche en intervalle" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "Maximum pour la colonne :" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "Valeur minimum pour la colonne :" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "Valeur minimum :" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "Valeur maximum :" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "Cacher les critères de recherche et remplacement" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "Afficher les critères de recherche et remplacement" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "Chaque point représente une ligne de données." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "Survoler un point montrera sa description." -#: js/messages.php:486 +#: js/messages.php:487 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:488 +#: js/messages.php:489 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:490 +#: js/messages.php:491 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:492 +#: js/messages.php:493 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:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "Sélectionnez deux colonnes" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "Sélectionnez deux colonnes différentes" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "Données reliées à ce point" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Copier" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Point" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Ligne" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Polygone" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Géométrie" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "Anneau intérieur" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "Anneau extérieur" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "Voulez-vous copier la clé de cryptage ?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "Clé de cryptage" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2199,24 +2204,24 @@ msgstr "" "Indique que vous avez fait des modifications à cette page; on vous demandera " "confirmation avant d'abandonner les modifications" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Sélectionnez la clé référencée" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Choisissez la clé étrangère" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "Veuillez choisir la clé primaire ou un index unique !" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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:532 +#: js/messages.php:533 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?" @@ -2224,77 +2229,77 @@ msgstr "" "Vous n'avez pas sauvegardé les changements. Ils seront perdus si vous ne les " "sauvegardez pas. Voulez-vous continuer ?" -#: js/messages.php:535 +#: js/messages.php:536 msgid "Page name" msgstr "Nom de la page" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Sauvegarder la page" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Ouvrir la page" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "Supprimer la page" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Sans titre" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "Veuillez sélectionner une page pour continuer" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "Veuillez saisir un nom de page valide" -#: js/messages.php:544 +#: js/messages.php:545 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:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "La page a été correctement supprimée" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "Exporter un schéma relationnel" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Les modifications ont été sauvegardées" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "Ajouter une option pour la colonne «%s»." -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "%d objet(s) créé(s)." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Exécuter" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "Appuyez sur la touche d'échappement pour annuler l'édition." -#: js/messages.php:557 +#: js/messages.php:558 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?" @@ -2302,15 +2307,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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "Faire glisser pour réordonner." -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "Cliquer pour trier les résultats sur cette colonne." -#: js/messages.php:563 +#: js/messages.php:564 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 " @@ -2320,26 +2325,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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "Cliquer pour marquer/enlever les marques." -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "Double-cliquez pour copier le nom de la colonne." -#: js/messages.php:570 +#: js/messages.php:571 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:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Tout afficher" -#: js/messages.php:574 +#: js/messages.php:575 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." @@ -2348,13 +2353,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:578 +#: js/messages.php:579 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:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2362,132 +2367,99 @@ msgstr "" "Voulez-vous vraiment voir toutes les lignes ? Pour une grande table, cela " "pourrait faire planter le navigateur." -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "Longueur originale" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "annuler" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Arrêts prématurés" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "Succès" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "État de l'importation" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Déposez des fichiers ici" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "Choisissez d'abord une base de données" -#: js/messages.php:598 +#: js/messages.php:599 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:603 +#: js/messages.php:604 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:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "Suivre le lien :" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "Copier le nom de la colonne." -#: js/messages.php:612 +#: js/messages.php:613 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:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Générer un mot de passe" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Générer" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "plus" -#: js/messages.php:623 +#: js/messages.php:624 msgid "Show panel" msgstr "Montrer le panneau" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "Cacher le panneau" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "Montrer les éléments de navigation cachés." -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "Relier au panneau principal" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "Supprimer la liaison au panneau principal" -#: js/messages.php:629 -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:631 -#, 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:632 -msgid "tables" -msgstr "tables" - -#: js/messages.php:633 -msgid "views" -msgstr "vues" - -#: js/messages.php:634 -msgid "procedures" -msgstr "procédures" - -#: js/messages.php:635 -msgid "events" -msgstr "événements" - -#: js/messages.php:636 -msgid "functions" -msgstr "fonctions" - -#: js/messages.php:640 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:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2497,27 +2469,27 @@ msgstr "" "une mise à niveau. La version la plus récente est %s, publiée le %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", dernière version stable : " -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "à jour" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "Créer une vue" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "Envoyer le rapport d'erreurs" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "Soumettre un rapport d'erreurs" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2525,15 +2497,15 @@ msgstr "" "Une erreur JavaScript fatale s'est produite. Désirez-vous envoyer un rapport " "d'erreur ?" -#: js/messages.php:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "Changer les paramètres du rapport" -#: js/messages.php:660 +#: js/messages.php:652 msgid "Show report details" msgstr "Montrer les détails du rapport" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2541,7 +2513,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:667 +#: js/messages.php:659 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2551,61 +2523,61 @@ msgstr "" "l'envoi, certains des champs pourraient être ignorés, en raison de la " "configuration max_input_vars de PHP." -#: js/messages.php:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "Des erreurs ont été détectées sur le serveur !" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "Veuillez regarder au bas de cette fenêtre." -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "Ignorer tout" -#: js/messages.php:689 +#: js/messages.php:681 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:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "Exécuter cette requête à nouveau ?" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "Voulez-vous vraiment supprimer ce signet ?" -#: js/messages.php:703 +#: js/messages.php:695 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:705 +#: js/messages.php:697 #, 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:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "%s arguments passés" -#: js/messages.php:707 +#: js/messages.php:699 msgid "Show arguments" msgstr "Montrer les arguments" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "Cacher les arguments" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "Temps nécessaire :" -#: js/messages.php:711 +#: js/messages.php:703 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,291 +2588,291 @@ msgstr "" "fonctionner correctement pour vous. Dans Safari, ce problème est souvent " "causée par le « Mode de navigation privée »." -#: js/messages.php:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "Précédent" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "Suivant" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Aujourd'hui" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "Janvier" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "Février" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "Mars" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "Avril" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Mai" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "Juin" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "Juillet" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "Août" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "Septembre" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "Octobre" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "Novembre" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "Décembre" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Janvier" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Février" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Mars" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Avril" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Juin" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Juillet" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Août" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Septembre" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Octobre" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Novembre" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Décembre" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "Dimanche" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "Lundi" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "Mardi" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "Mercredi" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "Jeudi" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "Vendredi" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "Samedi" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "Dim" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Jeu" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Sam" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "Je" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "Sem" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Heure" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Minute" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Seconde" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "Ce champ est obligatoire" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "Corrigez ce champ" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "Veuillez saisir une adresse courriel valide" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "Veuillez saisir une URL valide" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "Veuillez saisir une date valide" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "Veuillez saisir une date valide (ISO)" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "Veuillez saisir un nombre valide" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "Veuillez saisir un numéro de carte de crédit valide" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "Veuillez saisir uniquement des chiffres" @@ -2908,41 +2880,41 @@ msgstr "Veuillez saisir uniquement des chiffres" msgid "Please enter the same value again" msgstr "Veuillez saisir la même valeur à nouveau" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "Veuillez saisir au maximum {0} caractères" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "Veuillez saisir au moins {0} caractères" -#: js/messages.php:896 +#: js/messages.php:907 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:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "Veuillez saisir une valeur entre {0} et {1}" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "Veuillez saisir une valeur inférieure ou égale à {0}" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "Veuillez saisir une valeur supérieure ou égale à {0}" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "Veuillez saisir une date ou une heure valide" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "Veuillez saisir une valeur hexadécimale valide" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Erreur" @@ -3033,11 +3005,12 @@ msgstr "Exécuter la requête à nouveau" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3079,7 +3052,7 @@ msgstr "Durant la session en cours" msgid "Explain" msgstr "Expliquer" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Profilage" @@ -3113,8 +3086,8 @@ msgid "History" msgstr "Historique" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3261,7 +3234,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Passer au thème sombre" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3269,26 +3242,26 @@ msgstr "" "Le serveur ne répond pas (ou l'interface de connexion vers le serveur MySQL " "local n'est pas correctement configurée)." -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "Le serveur ne répond pas." -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" "Veuillez vérifier les privilèges du répertoire contenant la base de données." -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Détails…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "La connexion au controluser tel que défini dans votre configuration a échoué." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3298,8 +3271,8 @@ msgstr "" msgid "Ascending" msgstr "Croissant" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3442,8 +3415,8 @@ msgstr[0] "%1$s correspondance dans %2$s" msgstr[1] "%1$s correspondances dans %2$s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3485,119 +3458,120 @@ msgstr "Tout désélectionner" msgid "Inside column:" msgstr "Dans la colonne : " -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "Sauvegarder les données modifiées" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "Restaurer l'ordre des colonnes" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "Filtrer les lignes" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "Chercher dans cette table" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "Début" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "Précédent" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "Suivant" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "Fin" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Tout" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Nombre de lignes : " -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Trier sur l'index" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "Textes réduits" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "Textes complets" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Relations : clés" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 msgid "Display column for relations" msgstr "Colonne d'affichage pour les relations" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "Montrer le contenu binaire" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "Montrer le contenu BLOB" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "Masquer les transformations" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "Well Known Text" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "Well Known Binary" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "La ligne a été effacée." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Supprimer" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Peut être approximatif. Voir [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "Votre requête SQL a été exécutée avec succès." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3606,64 +3580,64 @@ msgstr "" "Cette vue contient au moins ce nombre de lignes. Veuillez référer à " "%sdocumentation%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "Affichage des lignes %1s - %2s" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d au total, %2$d dans la requête" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "total de %d" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "Traitement en %01.4f secondes." -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Pour la sélection : " -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 msgid "Check all" msgstr "Tout cocher" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Version imprimable" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Opérations sur les résultats de la requête" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Afficher le graphique" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "Visualiser les données GIS" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "Lien absent !" @@ -3762,19 +3736,19 @@ msgstr "Aucun index n'est défini !" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Index" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3783,24 +3757,24 @@ msgid "Action" msgstr "Action" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Nom de l'index" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Unique" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Compressé" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Cardinalité" @@ -3808,8 +3782,8 @@ msgstr "Cardinalité" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3819,8 +3793,8 @@ msgid "Collation" msgstr "Interclassement" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3836,15 +3810,15 @@ msgstr "La clé primaire a été effacée." msgid "Index %s has been dropped." msgstr "L'index %s a été effacé." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Supprimer" @@ -3885,12 +3859,13 @@ msgstr "Vue" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3898,7 +3873,7 @@ msgstr "Table" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3907,8 +3882,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3916,41 +3891,41 @@ msgid "Search" msgstr "Rechercher" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Insérer" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilèges" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Opérations" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Suivi" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3961,16 +3936,16 @@ msgstr "Déclencheurs" msgid "Database seems to be empty!" msgstr "La base de données semble vide !" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Requête" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Procédures stockées" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3978,20 +3953,20 @@ msgstr "Procédures stockées" msgid "Events" msgstr "Événements" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Concepteur" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "Colonnes centrales" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Bases de données" @@ -4000,33 +3975,33 @@ msgid "User accounts" msgstr "Comptes d'utilisateurs" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Log binaire" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Réplication" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Variables" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Jeux de caractères" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Moteurs" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "Greffons" @@ -4324,7 +4299,7 @@ msgstr "La clé ne peut être renommée PRIMARY !" msgid "No index parts defined!" msgstr "Aucune colonne n'a été définie pour cet index !" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4809,38 +4784,38 @@ msgstr "La fonctionnalité %s est affectée par une anomalie connue, voir %s" msgid "Click to toggle" msgstr "Cliquer pour basculer" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Parcourir : " -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" "Choisissez depuis le répertoire de téléchargement du serveur web %s : " -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Le répertoire de transfert est inaccessible." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "Aucun fichier n'est disponible pour le transfert !" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Vider" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "Exécuter" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Imprimer" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "Utilisateurs" @@ -5003,8 +4978,8 @@ msgid "Add new column" msgstr "Ajouter une colonne" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5075,19 +5050,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "Vous devriez utiliser %s en version %s ou plus récente." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "Erreur: disparité du jeton" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "Tentative d'écrasement de GLOBALS" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "vulnérabilité possible" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "Clé numérique détectée" @@ -5936,7 +5911,7 @@ msgid "Remember file name template" msgstr "Se souvenir du modèle de nom de fichier" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Inclure la valeur courante de l'AUTO_INCREMENT" @@ -5977,7 +5952,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Ajouter %s" @@ -7707,7 +7682,7 @@ msgid "" msgstr "" "Détermine si la boîte de requêtes devrait rester afficher après exécution." -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "Conserver la boîte de requêtes" @@ -8016,102 +7991,33 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Texte OpenDocument" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "La liste des tables favorites est pleine !" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "La table %s a été vidée." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "La vue %s a été supprimée." -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "La table %s a été effacée." -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "La liste des tables favorites est pleine !" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "inconnu" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -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.php:250 -msgid "No column selected." -msgstr "Aucune colonne n'a été sélectionnée." - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "Les colonnes ont été déplacées avec succès." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "La table %1$s a été modifiée avec succès." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "Erreur de requête" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Modifier" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Index" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "Spatial" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Texte entier" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "Valeurs distinctes" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8125,6 +8031,14 @@ msgstr "Aucune colonne numérique n'existe dans la table." msgid "No data to display" msgstr "Rien à afficher" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "La table %1$s a été modifiée avec succès." + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "La colonne descriptive a été correctement modifiée." @@ -8133,19 +8047,80 @@ msgstr "La colonne descriptive a été correctement modifiée." msgid "Internal relations were successfully updated." msgstr "Les relations internes ont été correctement modifiées." -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "Recherche dans la table" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "Recherche par zoom" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Chercher et remplacer" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +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/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "Aucune colonne n'a été sélectionnée." + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "Les colonnes ont été déplacées avec succès." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "Erreur de requête" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Modifier" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Index" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "Spatial" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Texte entier" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "Valeurs distinctes" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8155,7 +8130,7 @@ msgstr "Il manque l'extension %s. Veuillez vérifier votre configuration PHP." msgid "possible deep recursion attack" msgstr "possible attaque récursive" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Pas de modifications" @@ -8227,7 +8202,7 @@ msgstr "Créer" msgid "Create database:" msgstr "Créer une base de données : " -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Aucun privilège" @@ -8972,67 +8947,67 @@ msgid "Dump has been saved to file %s." msgstr "Le fichier d'exportation a été sauvegardé sous %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL a retourné un résultat vide (aucune ligne)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "[Un ROLLBACK a eu lieu]" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Les structures suivantes ont été créées ou modifiées. Ici vous pouvez :" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "Consulter le contenu d'une structure en cliquant sur son nom." -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Modifiez l'un des paramètres en cliquant le lien «Options» correspondant." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "Modifier sa structure via le lien «Structure»." -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "Aller à la base de données : %s" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "Paramètres de modification pour %s" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "Aller à la table : %s" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "Structure de %s" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "Aller à la vue : %s" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" "Seulement les requêtes UPDATE et DELETE portant sur une seule table peuvent " "être simulées." -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9040,7 +9015,7 @@ msgstr "" "Seules les requêtes SQL INSERT, UPDATE, DELETE et REPLACE portant sur des " "tables d'un moteur transactionnel peuvent être annulées." -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "Créer un index sur  %s colonnes" @@ -9063,75 +9038,75 @@ msgstr "Fonction" msgid "Binary" msgstr "Binaire" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "" "Il est possible que cette colonne
ne soit pas éditable en raison de sa " "longueur." -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Binaire - ne pas éditer" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Ou" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "répertoire de transfert du serveur web : " -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "Modifier/Insérer" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "Continuer l'insertion avec %s lignes" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "et ensuite" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Sauvegarder une nouvelle ligne" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "Sauvegarder une nouvelle ligne en ignorant les erreurs" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "Afficher l'énoncé d'insertion" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Retourner à la page précédente" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Insérer une nouvelle ligne" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Demeurer sur cette page" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Modifier la ligne suivante" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" "Utilisez la tabulation pour aller d'une valeur à l'autre, ou CTRL+flèches " "pour aller n'importe où." -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9143,11 +9118,11 @@ msgstr "" msgid "Value" msgstr "Valeur" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "Affichage de la requête SQL" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "Identifiant de la ligne insérée : %1$d" @@ -9163,35 +9138,35 @@ msgstr "Aucune" msgid "Convert to Kana" msgstr "Conversion en kana" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Succès !" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "Remplacer le préfixe de table : " -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "Copier la table avec un préfixe : " -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "Depuis" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "Vers" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "Ajouter un préfixe de table : " -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "Ajouter un préfixe" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "Voulez-vous vraiment exécuter la requête suivante ?" @@ -9409,8 +9384,8 @@ msgstr "Procédures : " msgid "Views:" msgstr "Vues : " -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Afficher" @@ -9451,18 +9426,15 @@ msgstr[0] "%s résultat trouvé" msgstr[1] "%s résultats trouvés" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" -msgstr "Filtrer par nom de bd ou regex" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 msgid "Clear fast filter" msgstr "Effacer le filtrage" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "Filtrer par nom ou regex" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "Tout réduire" @@ -9889,7 +9861,7 @@ msgstr "Renommer la base de données comme suit" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9900,7 +9872,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Ajuster les privilèges" @@ -9918,18 +9890,18 @@ msgstr "Supprimer la base de données" msgid "Drop the database (DROP)" msgstr "Supprimer la base de données (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Structure seule" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Structure et données" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Données seulement" @@ -9941,7 +9913,7 @@ msgstr "Copier la base de données vers" msgid "CREATE DATABASE before copying" msgstr "Faire CREATE DATABASE avant la copie" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Inclure les contraintes de clés étrangères" @@ -9981,157 +9953,157 @@ msgstr "Moteur de stockage" msgid "Change all column collations" msgstr "Changer le classement de toutes les colonnes" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Copier la table vers (base.table)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Aller à la table copiée" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Maintenance de la table" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Analyser la table" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Vérifier la table" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 msgid "Checksum table" msgstr "Table de somme de contrôle" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Défragmenter la table" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "La table %s a été rechargée." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "Recharger la table (FLUSH)" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Optimiser la table" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Réparer la table" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "Supprimer les données ou la table" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "Vider la table (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "Supprimer la table (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Analyser" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Vérifier" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Optimiser" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Reconstruire" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Réparer" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "Tronquer" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 msgid "Coalesce" msgstr "Unifier" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "Gestion des partitions" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "Partition %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "Supprimer le partitionnement" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Vérifier l'intégrité référentielle : " -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "On ne peut déplacer la table sur elle-même !" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "On ne peut copier la table sur elle-même !" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "La table %s a été déplacée vers %s. Les privilèges ont été ajustés." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "La table %s a été copiée vers %s. Les privilèges ont été ajustés." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "La table %s a été déplacée vers %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "La table %s a été copiée vers %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Le nom de la table est vide !" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "Ce format ne comporte pas d'options" @@ -10306,7 +10278,7 @@ msgstr "Options d'exportation" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Contenu de la table" @@ -10330,21 +10302,21 @@ msgstr "Définition" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Structure de la table" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Structure de la vue" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Doublure de structure pour la vue" @@ -10434,7 +10406,7 @@ msgid "Database:" msgstr "Base de données : " #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "Données : " @@ -10536,7 +10508,7 @@ msgid "Data creation options" msgstr "Options de création de données" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "Vider la table avant d'insérer" @@ -10621,8 +10593,8 @@ msgstr "Il semble que votre base de données utilise des procédures;" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 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 " @@ -10632,81 +10604,81 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "Il semble que votre base de données utilise des fonctions;" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 msgid "Metadata" msgstr "Métadonnées" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "Métadonnées pour %s" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Création : " -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Dernière modification : " -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Dernière vérification : " -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "utilisé" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "Il semble que votre base de données utilise des vues;" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Contraintes pour les tables exportées" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Contraintes pour la table" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "Index pour les tables exportées" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "Index pour la table" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT pour les tables exportées" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT pour la table" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "TYPES MIME POUR LA TABLE" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS POUR LA TABLE" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "Il semble que votre table utilise des déclencheurs;" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, 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.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "Erreur de lecture des données : " @@ -10951,9 +10923,9 @@ msgstr "Schéma relationnel" msgid "Table of contents" msgstr "Table des matières" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Extra" @@ -11177,47 +11149,47 @@ msgstr "Formate le texte en JSON avec la coloration syntaxique." msgid "Formats text as XML with syntax highlighting." msgstr "Formate le texte en XML avec la coloration syntaxique." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Erreur: relation déjà existante." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "Relation de type FOREIGN KEY ajoutée." -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Erreur: relation de clé étrangère non ajoutée !" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "Erreur : Un index est manquant sur la colonne." -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "Erreur : fonctionnalités relationnelles désactivées !" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "Relation interne ajoutée." -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 msgid "Error: Internal relation could not be added!" msgstr "Erreur: relation interne non ajoutée !" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 msgid "FOREIGN KEY relation has been removed." msgstr "Relation de type FOREIGN KEY supprimée." -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Erreur: relation de type FOREIGN KEY non ajoutée !" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 msgid "Error: Internal relation could not be removed!" msgstr "Erreur : relation interne non ajoutée !" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "Relation interne supprimée." @@ -11263,69 +11235,69 @@ msgid "Please see the documentation on how to update your column_info table. " msgstr "" "La documentation indique comment mettre à jour votre table column_info. " -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Requêtes SQL en signets" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "Historique SQL" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "Tables récemment utilisées (persistantes)" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 msgid "Persistent favorite tables" msgstr "Tables préférées (persistantes)" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "Préférences d'interface de tables (persistantes)" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "Préférences de l'utilisateur" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "Menus configurables" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "Cacher/montrer des éléments de navigation" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "Enregistrement des recherches (requête par un exemple)" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "Gestion de la liste centrale de colonnes" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "Se souvenir des paramètres du Concepteur" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 msgid "Saving export templates" msgstr "Sauvegarde des modèles d'exportation" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "Guide rapide de configuration des fonctions avancées : " -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" "Créez les tables requises au moyen de %screate_tables.sql." -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "Créez un utilisateur pma et donnez-lui accès à ces tables." -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -11334,17 +11306,17 @@ msgstr "" "(config.inc.php), en vous basant par exemple sur config." "sample.inc.php." -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Reconnectez-vous à phpMyAdmin afin d'utiliser le fichier de configuration " "modifié." -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "pas de description" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11355,7 +11327,7 @@ msgstr "" "base de données pour y mettre en place la configuration de stockage " "phpMyAdmin." -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11364,7 +11336,7 @@ msgstr "" "%sCréer%s une base de données nommée « phpmyadmin » et la configuration du " "stockage de phpMyAdmin dans cette base." -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." @@ -11372,7 +11344,7 @@ msgstr "" "%sCréer%s le stockage de configurations phpMyAdmin dans la base de données " "active." -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11567,8 +11539,8 @@ msgstr "Nom d'utilisateur : " #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Nom d'utilisateur" @@ -11576,7 +11548,7 @@ msgstr "Nom d'utilisateur" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Mot de passe" @@ -12207,7 +12179,7 @@ msgstr[1] "%1$d bases de données ont été supprimées." msgid "Plugin" msgstr "Greffon" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Version" @@ -12215,74 +12187,70 @@ msgstr "Version" msgid "Author" msgstr "Auteur" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "Licence" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "désactivé" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Pas de privilèges." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Tous les privilèges sauf GRANT." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Permission de lire des données." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Permission d'ajouter et de remplacer des données." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Permission de changer des données." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Permission de détruire des données." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Permission de créer des bases de données et des tables." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Permission d'effacer des bases de données et des tables." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permission de recharger les paramètres du serveur, et de vidanger la mémoire " "cache." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Permission d'arrêter le serveur." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "Permission de voir les processus de tous les utilisateurs." #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" "Permission d'importer et d'exporter des données à partir de / dans des " @@ -12290,27 +12258,27 @@ msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "Non effectif dans cette version de MySQL." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Permission de créer et d'effacer des index." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Permission de modifier la structure des tables existantes." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Permission de voir la liste complète des noms de bases de données." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12322,24 +12290,24 @@ msgstr "" "destruction de processus." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Permission de créer des tables temporaires." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" "Permission de verrouiller des enregistrements dans le fil courant (unité " "d'exécution)." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Nécessaire pour les esclaves (système de duplication)." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Permission de demander où sont les maîtres et les esclaves (système de " @@ -12348,45 +12316,45 @@ msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Permission de créer des vues." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "" "Permission de mettre en place des événements pour le programmateur " "d'événements." #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "Permission de créer et de supprimer des déclencheurs." #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permission d'exécuter SHOW CREATE VIEW." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Permission de créer des procédures stockées." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Permission de modifier et de supprimer des procédures stockées." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permission de créer, supprimer et renommer des comptes utilisateurs." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Permission d'exécuter des procédures stockées." @@ -12398,8 +12366,8 @@ msgstr "Aucun" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Groupe d'utilisateurs" @@ -12443,14 +12411,14 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Note: Une valeur de 0 (zero) enlève la limite." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limite du nombre de requêtes qu'un utilisateur peut envoyer au serveur, par " "heure." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12459,28 +12427,28 @@ msgstr "" "utilisateur peut exécuter, par heure." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Limite du nombre de nouvelles connexions qu'un utilisateur peut démarrer, " "par heure." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Limite le nombre de connexions simultanées autorisées pour un utilisateur." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Procédure stockée" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12497,14 +12465,14 @@ msgstr "Permission d'exécuter cette procédure." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Privilèges spécifiques à une table" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Veuillez noter que les noms de privilèges sont exprimés en anglais." @@ -12514,7 +12482,7 @@ msgid "Administration" msgstr "Administration" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Privilèges globaux" @@ -12523,15 +12491,15 @@ msgid "Global" msgstr "Global" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Privilèges spécifiques à une base de données" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Permission de créer des tables." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Permission d'effacer des tables." @@ -12548,7 +12516,7 @@ msgid "Native MySQL Authentication" msgstr "Authentification MySQL native" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Information pour la connexion" @@ -12573,8 +12541,8 @@ msgstr "Nom d'hôte :" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 msgid "Host name" msgstr "Nom d'hôte" @@ -12590,204 +12558,204 @@ msgstr "Greffon d'authentification" msgid "Password Hashing Method" msgstr "Hachage du mot de passe" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "Le mot de passe de %s a été changé." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Vous avez révoqué les privilèges pour %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 msgid "Add user account" msgstr "Ajouter un compte d'utilisateur" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 msgid "Database for user account" msgstr "Base de données pour ce compte d'utilisateur" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" "Créer une base portant son nom et donner à cet utilisateur tous les " "privilèges sur cette base." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Donner les privilèges passepartout (utilisateur\\_%)." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Donner tous les privilèges sur la base de données \"%s\"." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Utilisateurs ayant accès à \"%s\"" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "La vue %s a été supprimée." -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "«Grant»" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "Privilèges insuffisants pour visualiser les utilisateurs." -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "Aucun utilisateur n'a été trouvé." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "N'importe quel" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "spécifique à cette base de données" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "passepartout" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "spécifique à cette table" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 msgid "Edit privileges" msgstr "Changer les privilèges" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Révoquer" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "Modifier un groupe d'utilisateurs" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… conserver intact l'ancien utilisateur." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… supprimer l'ancien utilisateur." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… effacer tous les privilèges de l'ancien utilisateur, puis l'effacer." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… supprimer l'ancien utilisateur, puis recharger les privilèges au serveur." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "" "Changement des informations de connexion / Copie de compte d'utilisateur" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "Créer un nouveau compte d'utilisateur avec les mêmes privilèges et …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Privilèges spécifiques à la procédure stockée" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 msgid "Remove selected user accounts" msgstr "Effacer les comptes d'utilisateurs sélectionnés" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Effacer tous les privilèges de ces utilisateurs, puis les effacer." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" "Supprimer les bases de données portant le même nom que les utilisateurs." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "Aucun utilisateur n'a été choisi en vue de le détruire !" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Chargement des privilèges en cours" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Les utilisateurs sélectionnés ont été effacés." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Vous avez modifié les privilèges pour %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "Destruction de %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Les privilèges ont été rechargés." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "L'utilisateur %s existe déjà !" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "Privilèges pour %s" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Utilisateur" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "Nouvel utilisateur" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 msgid "Edit privileges:" msgstr "Changer les privilèges :" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "Compte d'utilisateur" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12795,11 +12763,11 @@ msgstr "" "Remarque : Vous tentez de modifier les privilèges de l'utilisateur avec " "lequel vous êtes actuellement connecté." -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "Aperçu des comptes d'utilisateur" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " @@ -12810,7 +12778,7 @@ msgstr "" "connecter si la partie hôte de leur compte permet une connexion de n'importe " "quel hôte (%)." -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12823,7 +12791,7 @@ msgstr "" "effectifs, si des changements manuels ont été apportés. Dans ce cas, vous " "devriez %srecharger les privilèges%s avant de continuer." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12836,11 +12804,11 @@ msgstr "" "effectifs, si des changements manuels ont été apportés. Dans ce cas, les " "privilèges doivent être rechargés mais il vous manque le privilège RELOAD." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "L'utilisateur choisi n'existe pas dans la table des privilèges." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Vous avez ajouté un utilisateur." @@ -13100,24 +13068,24 @@ msgstr "Consignes / réglages" msgid "Done dragging (rearranging) charts" msgstr "La modification par glissement des graphiques est terminée" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "Active le mode glissement" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "Taux de rafraîchissement" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "Colonnes du graphique" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "Disposition du graphique" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -13125,7 +13093,7 @@ msgstr "" "La disposition du graphique est stockée dans le navigateur. Vous pouvez " "vouloir l'exporter si vous avez une configuration complexe." -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "Ramener la valeur par défaut" @@ -13181,7 +13149,7 @@ msgid "Statements" msgstr "Information" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "#" @@ -13206,7 +13174,7 @@ msgstr "Afficher les valeurs non formattées" msgid "Related links:" msgstr "Liens connexes : " -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -13214,11 +13182,11 @@ msgstr "" "Le nombre de connexions avortées en raison d'une interruption du client sans " "fermeture adéquate de la connexion." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Le nombre de tentatives de connexion au serveur MySQL infructueuses." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13228,18 +13196,18 @@ msgstr "" "mais qui ont excédé la valeur de binlog_cache_size et ont utilisé un fichier " "temporaire pour stocker les énoncés de la transaction." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Le nombre de transactions qui ont utilisé la cache temporaire du log binaire." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Le nombre de tentatives de connexion (réussies ou non) au serveur MySQL." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13252,11 +13220,11 @@ msgstr "" "tmp_table_size afin que les tables temporaires soient maintenues en mémoire " "au lieu d'être sur disque." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "Le nombre de fichiers temporaires créés par mysqld." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13264,7 +13232,7 @@ msgstr "" "Le nombre de tables temporaires en mémoire créées automatiquement par le " "serveur lors de l'exécution d'énoncés." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13272,7 +13240,7 @@ msgstr "" "Le nombre de lignes écrites avec INSERT DELAYED pour lesquels une erreur est " "survenue (probablement un doublon sur la clé)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13280,23 +13248,23 @@ msgstr "" "Le nombre de fils d'exécution utilisés pour INSERT DELAYED. Un fil est " "utilisé pour chacune des tables sur lesquelles un INSERT DELAYED a lieu." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "Le nombre de lignes écrites via INSERT DELAYED." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "Le nombre de commandes FLUSH exécutées." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "Le nombre de commandes COMMIT internes." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "Le nombre de fois qu'une ligne a été supprimée d'une table." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13306,7 +13274,7 @@ msgstr "" "une table portant un certain nom. Ceci est appelé \"découverte\". Ce " "paramètre indique le nombre de fois que des tables ont été découvertes." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13317,7 +13285,7 @@ msgstr "" "d'un index; par exemple, SELECT col1 FROM foo, en assumant que col1 est une " "colonne indexée." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -13325,7 +13293,7 @@ msgstr "" "Le nombre de requêtes pour lire une ligne via une clé. Si élevé, c'est une " "bonne indication que vos tables sont correctement indexées." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13335,7 +13303,7 @@ msgstr "" "Ceci est augmenté si vous interrogez une colonne indexée avec un critère de " "fourchette ou si vous parcourez l'index." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13343,7 +13311,7 @@ msgstr "" "Le nombre de requêtes de lecture de la ligne précédente, en ordre de clé. " "Utilisé surtout pour optimiser ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13356,7 +13324,7 @@ msgstr "" "demandent à MySQL de parcourir des tables en entier, ou vous avez des " "jointures qui n'utilisent pas correctement les clés." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13368,35 +13336,35 @@ msgstr "" "tables ne sont pas correctement indexées ou que vos requêtes ne sont pas " "écrites de façon à tirer parti des index que vous avez définis." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "Le nombre d'énoncés ROLLBACK internes." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "Le nombre de requêtes de mise à jour de lignes dans une table." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "Le nombre de requêtes d'insertion de lignes dans une table." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "Le nombre de pages contenant des données." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "Le nombre de pages contenant des données «dirty»." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Le nombre de pages de mémoire-tampon qui ont été effacées." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "Le nombre de pages libres." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13406,7 +13374,7 @@ msgstr "" "train d'être lues ou écrites, ou qui ne peuvent être supprimées pour une " "autre raison." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13418,11 +13386,11 @@ msgstr "" "comme suit: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "Taille totale de la réserve, en pages." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13431,7 +13399,7 @@ msgstr "" "lorsqu'une requête doit balayer une large portion de table en ordre " "discontinu." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13439,11 +13407,11 @@ msgstr "" "Le nombre de lectures séquentielles effectuées par InnoDB. Ceci survient " "quand InnoDB fait un parcours séquentiel intégral de la table." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "Le nombre de requêtes de lectures logiques effectuées par InnoDB." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13451,7 +13419,7 @@ msgstr "" "Le nombre de lectures que InnoDB n'a pu faire à partir de la réserve, menant " "à une lecture directe d'une page." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13465,51 +13433,51 @@ msgstr "" "Ceci compte le nombre de fois qu'une telle attente a été nécessaire. Si la " "taille de la réserve est adéquate, cette valeur devrait être petite." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "Le nombre d'écritures faites dans la réserve InnoDB." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "Le nombre d'opérations fsync() faites jusqu'à présent." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "Le nombre d'opérations fsync() actuellement en attente." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "Le nombre actuel de lectures en attente." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "Le nombre actuel d'écritures en attente." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "La quantité d'octets lus jusqu'à présent." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "Le nombre total de lectures de données." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "Le nombre total d'écritures de données." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "La quantité d'octets écrits jusqu'à présent." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "Le nombre de pages utilisées pour des opérations «doublewrite»." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "Le nombre d'opérations «doublewrite» effectuées." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13517,35 +13485,35 @@ msgstr "" "Le nombre d'attentes en raison d'un tampon du fichier témoin trop petit; il " "fallait attendre qu'il se libère avant de continuer." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "Le nombre de requêtes d'écritures sur le fichier témoin." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "Le nombre d'écritures physiques au fichier témoin." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "Le nombre d'écritures fsync() sur le fichier témoin." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "Le nombre de synchronisations (fsync) du fichier témoin en attente." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "Le nombre d'écritures du fichier témoin en attente." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "Le nombre d'octets écrits sur le fichier témoin." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "Le nombre de pages créées." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -13554,51 +13522,51 @@ msgstr "" "valeurs sont comptées par page; la taille de page leur permet d'être " "facilement converties en octets." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "Le nombre de pages lues." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "Le nombre de pages écrites." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "Le nombre de verrous d'enregistrements actuellement en attente." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Le temps d'attente moyen pour acquérir un verrou, en millisecondes." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Le temps total utilisé pour acquérir un verrou, en millisecondes." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Le temps d'attente maximum pour acquérir un verrou, en millisecondes." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "Le nombre de fois qu'on a dû attendre pour un verrou." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "Le nombre de lignes supprimées des tables InnoDB." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "Le nombre de lignes insérées dans des tables InnoDB." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "Le nombre de lignes lues dans des tables InnoDB." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "Le nombre de lignes mises à jour dans des tables InnoDB." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13607,7 +13575,7 @@ msgstr "" "pas encore transférés sur disque. Anciennement connu sous le nom " "Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -13616,7 +13584,7 @@ msgstr "" "cette valeur pour déterminer la proportion de la cache de clés qui est " "utilisée." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13626,15 +13594,15 @@ msgstr "" "maximum du nombre de blocs qui ont été utilisés en même temps dans le cache " "de clés." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "Pourcentage de la cache de clés qui est utilisé (valeur calculée)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "Le nombre de requêtes de lecture d'un bloc de clés depuis la cache." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13645,7 +13613,7 @@ msgstr "" "petite. Le taux d'échec de la cache peut être calculé par Key reads/Key read " "requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13653,22 +13621,22 @@ msgstr "" "Échecs dans la cache de clés, en calculant le taux de lectures physiques " "comparé aux requêtes de lecture (valeur calculée)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "Le nombre de requêtes en vue d'écrire un bloc de clé dans la cache." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "Le nombre d'écritures physiques d'un bloc de clés vers le disque." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Pourcentage d'écritures physiques versus les requêtes d'écriture (valeur " "calculée)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13679,18 +13647,18 @@ msgstr "" "pour une même requête. La valeur de 0 indique qu'aucune requête n'a encore " "été compilée." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" "Le nombre maximum de connexions simultanées depuis le démarrage du serveur." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Le nombre de lignes en attente d'écriture (INSERT DELAYED)." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13698,19 +13666,19 @@ msgstr "" "Le nombre de tables qui ont été ouvertes. Si trop élevé, votre cache de " "table est probablement trop petite." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "Le nombre de fichiers qui sont ouverts." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "Le nombre de flux de données qui sont ouverts." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "Le nombre de tables qui sont ouvertes." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13720,19 +13688,19 @@ msgstr "" "peut indiquer des problèmes de fragmentation, qui peuvent être réglés par la " "commande FLUSH QUERY CACHE." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "La quantité de mémoire libre dans la cache de requêtes." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "Le nombre de succès dans la cache." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "Le nombre de requêtes ajoutées à la cache." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13744,7 +13712,7 @@ msgstr "" "afin de peaufiner la taille de la cache. La stratégie utilisée pour " "déterminer quelles requêtes seront retirées est LRU (least recently used)." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13752,19 +13720,19 @@ msgstr "" "Le nombre de requêtes non en cache (impossible à placer en cache, ou non " "cachée en raison du paramètre query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "Le nombre de requêtes enregistrées dans la cache." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "Le nombre total de blocs dans la cache de requêtes." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "L'état de la réplication sans échec (pas encore implantée)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -13772,13 +13740,13 @@ msgstr "" "Le nombre de jointures qui n'ont pas utilisé d'index. Si cette valeur est " "supérieure à 0, vérifiez soigneusement les indexes de vos tables." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" "Le nombre de jointures qui ont utilisé une recherche par plage sur une table " "de référence." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -13787,7 +13755,7 @@ msgstr "" "ligne. (Si ceci est supérieur à 0, vérifiez soigneusement les indexes de vos " "tables.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13795,19 +13763,19 @@ msgstr "" "Le nombre de jointures qui ont utilisé des plages sur la première table. " "(Normalement non critique même si cette valeur est élevée.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" "Le nombre de jointures qui ont nécessité le parcours complet de la première " "table." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Le nombre de tables temporaires actuellement ouvertes par le fil d'exécution " "SQL de l'esclave." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13815,11 +13783,11 @@ msgstr "" "Nombre de fois (depuis le démarrage) que le fil d'exécution SQL de l'esclave " "a envoyé à nouveau des transactions." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ceci est à ON si ce serveur est un esclave connecté à un maître." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -13827,14 +13795,14 @@ msgstr "" "Le nombre de fils d'exécution dont le temps de création a excédé " "slow_launch_time secondes." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Le nombre de requêtes dont le temps d'exécution a excédé long_query_time " "secondes." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13843,23 +13811,23 @@ msgstr "" "Le nombre d'opérations de fusion effectuées par l'algorithme de tri. Si ce " "nombre est élevé, augmentez la valeur du paramètre sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "Le nombre de tri effectués avec des plages." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "Le nombre de lignes triées." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "Le nombre de tri effectués via un parcours de la table." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "Le nombre de fois qu'un verrou de table a été acquis immédiatement." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13871,7 +13839,7 @@ msgstr "" "des problèmes de performance, commencez par optimiser vos requêtes, puis " "subdivisez vos tables ou encore utiliser la réplication." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13881,11 +13849,11 @@ msgstr "" "calculé via Nombre de fils / connexion. Si cette valeur est en rouge, vous " "devriez augmenter la taille de cette cache." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "Le nombre de connexions ouvertes actuellement." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13898,11 +13866,11 @@ msgstr "" "perceptible de la performance si votre serveur gère correctement les fils " "d'exécution.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "Taux de succès de la cache des fils d'exécution (valeur calculée)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "Le nombre de fils d'exécution non suspendus." @@ -13911,57 +13879,57 @@ msgstr "Le nombre de fils d'exécution non suspendus." msgid "Users of '%s' user group" msgstr "Utilisateurs du groupe « %s »" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "Ce groupe ne contient aucun utilisateur." -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "Groupes d'utilisateurs" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "Onglets de niveau serveur" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "Onglets de niveau base de données" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "Onglets de niveau table" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "Vue utilisateurs" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "Ajouter un groupe d'utilisateurs" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "Modifier le groupe : « %s »" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "Attributions de menu du groupe d'utilisateurs" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "Nom du groupe : " -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "Onglets de niveau serveur" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "Onglets de niveau base de données" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "Onglets de niveau table" @@ -14021,21 +13989,17 @@ msgstr "Une parenthèse droite était attendue." msgid "Unrecognized data type." msgstr "Type de données non reconnu." -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "Parenthèse droite inattendue." - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "Un alias a été constaté précédemment." -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "Point inattendu." -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 msgid "An alias was expected." msgstr "Un alias était attendu." @@ -14091,107 +14055,107 @@ msgstr "Un guillemet %1$s était attendu." msgid "Variable name was expected." msgstr "Un nom de variable était attendu." -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 msgid "Unexpected beginning of statement." msgstr "Début d'énoncé inattendu." -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "Type d'énoncé non reconnu." -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "Aucune transaction n'a été précédemment démarrée." -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "Jeton inattendu." -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "Ce type de clause a été analysé précédemment." -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" "Un nouvel énoncé a été trouvé, mais il n'y a aucun délimiteur entre celui-ci " "et le précédent." -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "Mot clé non reconnu." -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "Le nom de l'entité était attendu." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 msgid "At least one column definition was expected." msgstr "La définition d'au moins une colonne était attendue." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "Le mot clé « RETURNS » était attendu." -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "Profil détaillé" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "Ordre" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "État" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "Résumé par état" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "Temps total" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "% Temps" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "Appels" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "Temps moyen" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Conserver cette requête SQL dans les signets" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "Intitulé : " -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Signet visible pour les autres utilisateurs" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "Signet non créé !" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Le signet «%s» a été utilisé comme requête par défaut." -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "Affichage du code PHP" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " @@ -14201,7 +14165,7 @@ msgstr "" "d'édition, les cases à cocher ainsi que les liens Edition, Copie et " "Supprimer ne sont pas disponibles. %s" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " @@ -14211,7 +14175,7 @@ msgstr "" "d'édition, les liens Edition, Copie et Supprimer peuvent provoquer un " "résultat indésirable. %s" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Il y a des problèmes avec les index de la table `%s`" @@ -14239,27 +14203,27 @@ msgstr "Récupérer la requête auto-sauvegardée" msgid "Bind parameters" msgstr "Lier les paramètres" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "Conserver cette requête SQL dans les signets : " -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Remplacer un signet existant du même nom" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Délimiteur" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Afficher à nouveau la requête après exécution" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "ROLLBACK à la fin" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Voir uniquement" @@ -14303,112 +14267,112 @@ msgstr "Désactiver le suivi de %s" msgid "Deactivate now" msgstr "Désactiver maintenant" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Créé" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Mis à jour" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 msgid "Delete version" msgstr "Supprimer la version" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Rapport de suivi" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Instantané" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "actif" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "non activé" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "Suivi des énoncés" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "Supprimer du rapport le suivi des données" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "Aucune donnée" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Montrer %1$s depuis le %2$s jusqu'au %3$s par l'utilisateur %4$s %5$s" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "Exportation SQL (télécharger)" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "Exportation SQL" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "Cette option remplacera votre table et son contenu." -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "Exécution SQL" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "Exporter en tant que %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "Énoncé de manipulation de données" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "Énoncé de définition de données" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Date" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Utilisateur" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Instantané de la version %s (code SQL)" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Aucune" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "Le suivi des définitions de données a été effacé avec succès" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "Le suivi des manipulations de données a été effacé avec succès" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14417,61 +14381,61 @@ msgstr "" "temporaire. Veuillez vous assurer que vous avez les privilèges appropriés à " "cette opération." -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "Enlevez les deux lignes suivantes si elles sont inutiles." -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Énoncés SQL exportés. Vous pouvez copier le fichier ou l'exécuter." -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "Rapport de suivi pour la table `%s`" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Le suivi de %1$s a été activé à la version %2$s." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Le suivi de %1$s a été désactivé à la version %2$s." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "La version %1$s de %2$s a été supprimée." -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Version %1$s créée, le suivi pour %2$s est activé." -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Tables ne faisant pas l'objet d'un suivi" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Suivre la table" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Tables faisant l'objet d'un suivi" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Dernière version" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "Supprimer le suivi" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Versions" @@ -14479,11 +14443,11 @@ msgstr "Versions" msgid "Manage your settings" msgstr "Gérer vos paramètres" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "La configuration a été sauvegardée." -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14593,7 +14557,7 @@ msgstr "Aucune base de données" msgid "View dump (schema) of databases" msgstr "Schéma et/ou contenu des bases de données" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14622,7 +14586,7 @@ msgid "" msgstr "" "phpMyAdmin n'a pu éliminer le processus %s. Il était probablement déjà fermé." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "Privilèges insuffisants pour visualiser les statistiques de requêtes." @@ -15436,43 +15400,49 @@ msgstr "Nuage de points" msgid "Stacked" msgstr "En piles" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "Titre du graphique" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "Axe des X : " -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "Séries : " -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "Intitulé pour l'axe des X :" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "Valeurs en X" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "Intitulé pour l'axe des Y :" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Valeurs en Y" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "Les noms de la série sont dans une colonne" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "Colonne pour la série :" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 msgid "Value Column:" msgstr "Colonne pour la valeur :" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "Enregistrer le graphique en tant qu'image" @@ -15526,15 +15496,43 @@ msgstr "Commentaire : " msgid "Drag to reorder" msgstr "Faire glisser pour réordonner" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +msgid "Foreign key constraints" +msgstr "Contraintes de clé étrangère" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "Actions" + +#: templates/table/relation/common_form.phtml:10 +msgid "Constraint properties" +msgstr "Propriétés de la contrainte" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" +"Seules les colonnes avec un index seront affichées. Vous pouvez définir un " +"index ci-dessous." + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "Contrainte de clé étrangère" + +#: templates/table/relation/common_form.phtml:60 +msgid "+ Add constraint" +msgstr "+ Ajouter une contrainte" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "Relations internes" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "Relation interne" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15542,34 +15540,7 @@ msgstr "" "Une relation interne n'est pas nécessaire lorsqu'une clé correspondante de " "type FOREIGN KEY existe." -#: templates/table/relation/common_form.phtml:37 -msgid "Foreign key constraints" -msgstr "Contraintes de clé étrangère" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "Actions" - -#: templates/table/relation/common_form.phtml:41 -msgid "Constraint properties" -msgstr "Propriétés de la contrainte" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" -"Seules les colonnes avec un index seront affichées. Vous pouvez définir un " -"index ci-dessous." - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "Contrainte de clé étrangère" - -#: templates/table/relation/common_form.phtml:83 -msgid "+ Add constraint" -msgstr "+ Ajouter une contrainte" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "Colonne descriptive : " @@ -15697,7 +15668,7 @@ msgid "at beginning of table" msgstr "en début de table" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 msgid "Partitions" msgstr "Partitions" @@ -15730,7 +15701,7 @@ msgstr "Partitionner la table :" msgid "Edit partitioning" msgstr "Modifier le partitionnement" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "Modifier la vue" @@ -17132,6 +17103,40 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Le paramètre concurrent_insert a une valeur de 0" +#~ 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" + +#~ 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" + +#~ msgid "tables" +#~ msgstr "tables" + +#~ msgid "views" +#~ msgstr "vues" + +#~ msgid "procedures" +#~ msgstr "procédures" + +#~ msgid "events" +#~ msgstr "événements" + +#~ msgid "functions" +#~ msgstr "fonctions" + +#~ msgid "Filter databases by name or regex" +#~ msgstr "Filtrer par nom de bd ou regex" + +#~ msgid "Filter by name or regex" +#~ msgstr "Filtrer par nom ou regex" + +#~ msgid "Unexpected closing bracket." +#~ msgstr "Parenthèse droite inattendue." + #~ msgid "Username and hostname didn't change." #~ msgstr "Ni le code utilisateur ni le nom du serveur n'ont été modifiés." diff --git a/po/fy.po b/po/fy.po index afd1bdfaa4..a7943cb809 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-04-15 22:05+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Frisian Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Klear" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "Stap" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Bewarje" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "Kolommaksimum:" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "Kolomminimum:" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "Minimumwearde:" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "Maksimumwearde:" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometry" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "Fersiferingskaai" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 msgid "Page name" msgstr "Sidenamme" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Side bewarje" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:550 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:551 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:552 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Ferstjoere" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "annulearje" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Wachtwurd generearje" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Generearje" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "Mear" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Table comments" msgid "Show panel" msgstr "Tabelopmerkings" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Main panel" msgid "Hide panel" msgstr "Haadpaniel" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -#, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "Tabellen" - -#: js/messages.php:633 -#, fuzzy -#| msgid "Overview" -msgid "views" -msgstr "Oersjoch" - -#: js/messages.php:634 -#, fuzzy -#| msgid "Procedures" -msgid "procedures" -msgstr "Prosedueres" - -#: js/messages.php:635 -#, fuzzy -#| msgid "event" -msgid "events" -msgstr "barren" - -#: js/messages.php:636 -#, fuzzy -#| msgid "Functions" -msgid "functions" -msgstr "Funksjes" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2382,406 +2355,406 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr "" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Serverpoarte" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "Serverpoarte" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "Ynstellingen wizigjen" -#: js/messages.php:660 +#: js/messages.php:652 msgid "Show report details" msgstr "" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Tabelopmerkings" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "Folgjende" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Hjoed" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "jannewaris" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "febrewaris" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "maart" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "april" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "maaie" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "juny" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "july" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "augustus" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "septimber" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "oktober" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "novimber" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "desimber" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "mrt" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "mai" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "des" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "snein" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "moandei" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "tiisdei" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "woansdei" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "tongersdei" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "freed" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "sneon" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "si" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "mo" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "ti" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "wo" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "to" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "fr" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "so" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "si" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "mo" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "ti" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "wo" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "to" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "fr" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "so" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "Wike" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Oere" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Minút" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Sekonde" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Search in database" msgid "Please enter a valid date" msgstr "Sykje yn de database" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "" @@ -2789,41 +2762,41 @@ msgstr "" msgid "Please enter the same value again" msgstr "" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Flater" @@ -2908,11 +2881,12 @@ msgstr "" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -2954,7 +2928,7 @@ msgstr "" msgid "Explain" msgstr "" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "" @@ -2988,8 +2962,8 @@ msgid "History" msgstr "Skiednis" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3150,30 +3124,30 @@ msgstr "" msgid "Switch to dark theme" msgstr "" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Details…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3183,8 +3157,8 @@ msgstr "" msgid "Ascending" msgstr "Oprinnend" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3327,8 +3301,8 @@ msgstr[0] "" msgstr[1] "" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3370,161 +3344,162 @@ msgstr "" msgid "Inside column:" msgstr "" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "Begjin" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "Folgjende" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Alle" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Oantal rigen:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "Folsleine teksten" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Relasjonele kaai" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Add column" msgid "Display column for relations" msgstr "Kolom tafoegje" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3532,25 +3507,25 @@ msgstr "" msgid "Check all" msgstr "Kontrolearje" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "" @@ -3642,19 +3617,19 @@ msgstr "" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3663,24 +3638,24 @@ msgid "Action" msgstr "Aksje" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Kaainamme" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Unike wearde" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "" @@ -3688,8 +3663,8 @@ msgstr "" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3699,8 +3674,8 @@ msgid "Collation" msgstr "Kollaasje" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3716,15 +3691,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Fuortsmite" @@ -3761,12 +3736,13 @@ msgstr "" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3774,7 +3750,7 @@ msgstr "Tabel" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3783,8 +3759,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3792,41 +3768,41 @@ msgid "Search" msgstr "Sykje" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Ynfoegje" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Rjochten" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Hannelingen" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Trasearje" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3837,16 +3813,16 @@ msgstr "Triggers" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Query" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Routines" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3854,20 +3830,20 @@ msgstr "Routines" msgid "Events" msgstr "Barrens" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Untwerper" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Databases" @@ -3878,33 +3854,33 @@ msgid "User accounts" msgstr "Brûkersgroepen" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikaasje" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Fariabelen" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Karaktersets" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4195,7 +4171,7 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4608,37 +4584,37 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Leegje" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "Brûkers" @@ -4801,8 +4777,8 @@ msgid "Add new column" msgstr "Nije kolom tafoegje" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -4861,19 +4837,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -5653,7 +5629,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -5692,7 +5668,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "%s tafoegje" @@ -7252,7 +7228,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "" @@ -7524,101 +7500,33 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "OpenDocument-tekst" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "ûnbekend" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "" - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "Queryflater" - -#: libraries/controllers/TableStructureController.php:967 -#, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "" - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Feroarje" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Yndeks" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "Romtlik" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Folsleine tekst" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "Underskiedbere wearden" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -7632,6 +7540,14 @@ msgstr "" msgid "No data to display" msgstr "" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "" + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "" @@ -7640,21 +7556,81 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr "" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Tables" msgid "Table search" msgstr "Tabellen" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "Queryflater" + +#: libraries/controllers/table/TableStructureController.php:975 +#, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Feroarje" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Yndeks" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "Romtlik" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Folsleine tekst" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "Underskiedbere wearden" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -7664,7 +7640,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7729,7 +7705,7 @@ msgstr "" msgid "Create database:" msgstr "" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "" @@ -8405,69 +8381,69 @@ msgid "Dump has been saved to file %s." msgstr "" #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "Struktuer fan %s" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "" @@ -8490,71 +8466,71 @@ msgstr "Funksje" msgid "Binary" msgstr "Binêr" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Of" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "en dan" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Werom" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -8566,11 +8542,11 @@ msgstr "" msgid "Value" msgstr "Wearde" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -8586,35 +8562,35 @@ msgstr "Gjin" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "Fan" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "Nei" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "Foarheaksel tafoegje" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "" @@ -8836,8 +8812,8 @@ msgstr "Prosedueres:" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "" @@ -8877,7 +8853,8 @@ msgstr[0] "" msgstr[1] "" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" msgstr "" #: libraries/navigation/NavigationTree.php:1371 @@ -8885,10 +8862,6 @@ msgstr "" msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "Alles gearteare" @@ -9261,7 +9234,7 @@ msgstr "" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9270,7 +9243,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9290,18 +9263,18 @@ msgstr "" msgid "Drop the database (DROP)" msgstr "" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Struktuer en gegevens" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "" @@ -9313,7 +9286,7 @@ msgstr "" msgid "CREATE DATABASE before copying" msgstr "" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "" @@ -9353,161 +9326,161 @@ msgstr "" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Tabelûnderhâld" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Users table" msgid "Checksum table" msgstr "Brûkerstabel" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Tabel optimalisearje" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Reparearje tabel" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Analysearje" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Kontrolearje" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Optimalisearje" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Reparearje" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Collapse" msgid "Coalesce" msgstr "Gearteare" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "Partysje %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "" @@ -9672,7 +9645,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -9696,21 +9669,21 @@ msgstr "Definysje" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Tabelstruktuer foar tabel" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -9800,7 +9773,7 @@ msgid "Database:" msgstr "Database:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "Gegevens:" @@ -9899,7 +9872,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -9968,8 +9941,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9977,83 +9950,83 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "data" msgid "Metadata" msgstr "gegevens" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "" @@ -10292,9 +10265,9 @@ msgstr "" msgid "Table of contents" msgstr "Ynhâldsopjefte" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Ekstra" @@ -10458,47 +10431,47 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 msgid "Error: Internal relation could not be added!" msgstr "" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 msgid "FOREIGN KEY relation has been removed." msgstr "" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 msgid "Error: Internal relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "" @@ -10543,102 +10516,102 @@ msgstr "" msgid "Please see the documentation on how to update your column_info table. " msgstr "" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL-skiednis" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 msgid "Persistent favorite tables" msgstr "" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "Brûkersfoarkarren" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 msgid "Saving export templates" msgstr "" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "gjin beskriuwing" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -10810,8 +10783,8 @@ msgstr "Brûkersnamme:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Brûkersnamme" @@ -10819,7 +10792,7 @@ msgstr "Brûkersnamme" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Wachtwurd" @@ -11437,7 +11410,7 @@ msgstr[1] "" msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Ferzje" @@ -11445,98 +11418,94 @@ msgstr "Ferzje" msgid "Author" msgstr "Auteur" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "Lisinsje" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "útskeakele" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "" #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "" #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "" #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -11544,65 +11513,65 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "" #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "" #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -11614,8 +11583,8 @@ msgstr "Gjin" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Brûkersgroep" @@ -11655,31 +11624,31 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -11687,7 +11656,7 @@ msgid "Routine" msgstr "Routines" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -11702,14 +11671,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11719,7 +11688,7 @@ msgid "Administration" msgstr "Administraasje" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "" @@ -11728,15 +11697,15 @@ msgid "Global" msgstr "Globaal" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "" @@ -11755,7 +11724,7 @@ msgid "Native MySQL Authentication" msgstr "" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Oanmeldingsynformaasje" @@ -11780,8 +11749,8 @@ msgstr "Brûkersnamme:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Log name" msgid "Host name" @@ -11801,228 +11770,228 @@ msgstr "" msgid "Password Hashing Method" msgstr "Wachtwurd-hashing:" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Brûker tafoegje" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database structure" msgid "Database for user account" msgstr "Databasestruktuer" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Takenne" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Elke" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "globaal" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "jokerteken" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "Rjochten bewurkje:" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "Brûkersgroep bewurkje" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Privileges" msgid "Routine-specific privileges" msgstr "Rjochten" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 msgid "Remove selected user accounts" msgstr "" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "Rjochten foar %s" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Brûker" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "Nij" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "Rjochten bewurkje:" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "User group" msgid "User account" msgstr "Brûkersgroep" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12031,7 +12000,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12040,11 +12009,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "" @@ -12268,30 +12237,30 @@ msgstr "Ynstruksjes/Setup" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "Grafykkolommen" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -12347,7 +12316,7 @@ msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "#" @@ -12372,33 +12341,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12406,78 +12375,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12485,7 +12454,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12493,42 +12462,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12536,33 +12505,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12571,242 +12540,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12814,99 +12783,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12914,18 +12883,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12933,11 +12902,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -12946,57 +12915,57 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "Brûkersgroepen" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "Groepnamme:" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "" @@ -13056,21 +13025,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 msgid "An alias was expected." msgstr "" @@ -13126,121 +13091,121 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "Number of tables:" msgid "Unexpected beginning of statement." msgstr "Oantal tabellen:" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 msgid "At least one column definition was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "Folchoarder" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "Tastân" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "Totale tiid" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "% Tiid" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "Oproppen" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "Gemiddelde tiid" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "Label:" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -13271,27 +13236,27 @@ msgstr "" msgid "Bind parameters" msgstr "Routineparameters" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Skiedingsteken" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "" @@ -13335,172 +13300,172 @@ msgstr "" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 msgid "Delete version" msgstr "" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "net aktyf" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "Gjin gegevens" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "Eksportearje as %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Datum" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Brûkersnamme" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Gjin" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Lêste ferzje" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Ferzjes" @@ -13508,11 +13473,11 @@ msgstr "Ferzjes" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -13611,7 +13576,7 @@ msgstr "Gjin databases" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -13636,7 +13601,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -14448,45 +14413,51 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "Grafyktitel" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "X-wearden" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Y-wearden" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Value column:" msgid "Value Column:" msgstr "Weardekolom:" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "" @@ -14543,46 +14514,47 @@ msgstr "Opmerking:" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +msgid "Foreign key constraints" +msgstr "" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "Aksjes" + +#: templates/table/relation/common_form.phtml:10 +msgid "Constraint properties" +msgstr "" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "" + +#: templates/table/relation/common_form.phtml:60 +msgid "+ Add constraint" +msgstr "" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "Ynterne relaasjes" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "Ynterne relaasje" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:37 -msgid "Foreign key constraints" -msgstr "" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "Aksjes" - -#: templates/table/relation/common_form.phtml:41 -msgid "Constraint properties" -msgstr "" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "" - -#: templates/table/relation/common_form.phtml:83 -msgid "+ Add constraint" -msgstr "" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "" @@ -14712,7 +14684,7 @@ msgid "at beginning of table" msgstr "Oantal tabellen:" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -14757,7 +14729,7 @@ msgstr "Partysje %s" msgid "Edit partitioning" msgstr "Routine bewurkje" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "" @@ -15916,6 +15888,31 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "Tabellen" + +#, fuzzy +#~| msgid "Overview" +#~ msgid "views" +#~ msgstr "Oersjoch" + +#, fuzzy +#~| msgid "Procedures" +#~ msgid "procedures" +#~ msgstr "Prosedueres" + +#, fuzzy +#~| msgid "event" +#~ msgid "events" +#~ msgstr "barren" + +#, fuzzy +#~| msgid "Functions" +#~ msgid "functions" +#~ msgstr "Funksjes" + #, fuzzy #~| msgid "Generate password" #~ msgid "MySQL native password" diff --git a/po/gl.po b/po/gl.po index df06cad21b..7d867fb3ce 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:45+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Galician Are you sure you " "want to continue?" @@ -1937,51 +1949,51 @@ msgstr "" "Esta acción pode cambiar algunha definición das columnas.
Confirma que " "desexa continuar?" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "Proseguir" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "Engadir unha chave primaria" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "Engadiuse unha chave primaria." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "Procedemos co paso seguinte…" -#: js/messages.php:433 +#: js/messages.php:434 #, 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:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "Fin do paso" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "Segundo paso da normalización (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Feito" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "Confirmar as dependencias parciais" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "As dependencias parciais seleccionadas son as seguintes:" -#: js/messages.php:440 +#: js/messages.php:441 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,184 +2001,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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "Non se seleccionaron dependencias parciais!" -#: js/messages.php:446 +#: js/messages.php:447 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:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "Agochar a lista de dependencias parciais" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "Paso" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "Hanse executar as accións seguintes:" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "ELIMINAR (DROP) as columnas %s da táboa %s" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "Crear a táboa seguinte" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "Terceiro paso da normalización (3NF)" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "Confirmar as dependencias transitivas" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "As dependencias seleccionadas son as seguintes:" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "Non hai ningunha dependencia seleccionada!" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Gardar" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Agochar o criterio de busca" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Mostrar o criterio de busca" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "Busca de intervalo" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "Máximo de columnas:" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "Mínimo de columnas:" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "Valor mínimo:" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "Valor máximo:" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "Agochar os criterios de busca e substitución" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "Mostrar os criterios de busca e substitución" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "Cada punto representa unha fila de datos." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "Situar o rato sobre o punto mostra a súa etiqueta." -#: js/messages.php:486 +#: js/messages.php:487 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:488 +#: js/messages.php:489 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:490 +#: js/messages.php:491 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:492 +#: js/messages.php:493 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:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "Escoller dúas columnas" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "Escolle dúas columnas diferentes" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "Contido do punto de datos" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Copiar" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Punto" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Cadea de liñas" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Polígono" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Xeometría" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "Anel interno" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "Anel externo" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "Desexa copiar a clave de cifrado?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "Clave de cifrado" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2174,24 +2186,24 @@ msgstr "" "Indica que vostede fixo cambios nesta páxina; háselle pedir confirmación " "antes de abandonar os cambios" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Escoller a chave referida" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Escoller unha chave externa" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "Selecciona a clave primaria ou unha clave única!" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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:532 +#: js/messages.php:533 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?" @@ -2199,77 +2211,77 @@ msgstr "" "Non gardou as alteracións da disposición. Hanse perder se non se gardan. " "Desexa continuar?" -#: js/messages.php:535 +#: js/messages.php:536 msgid "Page name" msgstr "Nome da páxina" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 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:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Abrir páxina" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "Eliminar a páxina" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Sen título" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "Seleccione unha páxina para continuar" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "Introduza un nome de páxina aceptábel" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "Desexa gardar os cambios desta páxina?" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "A páxina foi eliminada correctamente" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "Exportar o esquema relacional" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Gardáronse as modificacións" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "Engadir unha opción para a columna «%s»." -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "Creáronse %d obxecto(s)." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Enviar" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "Prema escape para cancelar a edición." -#: js/messages.php:557 +#: js/messages.php:558 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?" @@ -2277,15 +2289,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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "Arrastre para reordenar." -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "Prema para ordenar os resultados por esta columna." -#: js/messages.php:563 +#: js/messages.php:564 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 " @@ -2295,27 +2307,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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "Prema para marcar/desmarcar." -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "Prema dúas veces para copiar o nome da columna." -#: js/messages.php:570 +#: js/messages.php:571 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:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Mostrar todo" -#: js/messages.php:574 +#: js/messages.php:575 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." @@ -2324,13 +2336,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:578 +#: js/messages.php:579 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:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2338,128 +2350,97 @@ msgstr "" "Confirma que desexa ver todas as filas? Se a táboa é grande o navegador " "podería fallar." -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "Tamaño orixinal" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "cancelar" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Interrompido" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "Éxito" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "Estado da importación" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Soltar os ficheiros aquí" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "Seleccione a base de datos antes" -#: js/messages.php:598 +#: js/messages.php:599 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:603 +#: js/messages.php:604 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:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "Ir á ligazón:" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "Copiar o nome da columna." -#: js/messages.php:612 +#: js/messages.php:613 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:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Xerar un contrasinal" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Xerar" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "Máis" -#: js/messages.php:623 +#: js/messages.php:624 msgid "Show panel" msgstr "Mostrar o panel" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "Agochar o panel" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "Mostrar os elementos agochados da árbore de navegación." -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "Ligar co panel principal" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "Desligar do panel principal" -#: js/messages.php:629 -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:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -msgid "tables" -msgstr "táboas" - -#: js/messages.php:633 -msgid "views" -msgstr "vistas" - -#: js/messages.php:634 -msgid "procedures" -msgstr "procedementos" - -#: js/messages.php:635 -msgid "events" -msgstr "acontecementos" - -#: js/messages.php:636 -msgid "functions" -msgstr "funcións" - -#: js/messages.php:640 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:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2469,42 +2450,42 @@ msgstr "" "A versión máis recente é %s, publicada o %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ",última versión estable:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "actualizada" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "Crear unha vista" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "Enviar un informe de erro" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "Entregar o informe de erro" -#: js/messages.php:657 +#: js/messages.php:649 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:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "Cambiar a configuración dos informes" -#: js/messages.php:660 +#: js/messages.php:652 msgid "Show report details" msgstr "Mostrar os detalles do informe" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2512,356 +2493,356 @@ msgstr "" "A exportación está incompleta debido a un límite de tempo de execución baixo " "no nivel de PHP!" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "Detectáronse algúns erros no servidor!" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "Mire na parte inferior desta xanela." -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "Ignorar todo" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "Executar esta consulta de novo?" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "Confirma que desexa eliminar este marcador?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s consultas executadas %s veces en %s segundos." -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "Paráronse %s argumento(s)" -#: js/messages.php:707 +#: js/messages.php:699 msgid "Show arguments" msgstr "Mostrar os argumentos" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "Agochar os argumentos" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "Tempo que levou:" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "Anterior" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "Seguinte" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Hoxe" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "Xaneiro" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "Febreiro" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "Marzo" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "Abril" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Maio" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "Xuño" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "Xullo" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "Agosto" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "Setembro" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "Outubro" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "Novembro" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "Decembro" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Xan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "Maio" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Xuño" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Xullo" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Dec" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "Domingo" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "Luns" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "Martes" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "Mércores" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "Xoves" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "Venres" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "Sábado" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Lu" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Mé" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Xo" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Ve" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Sá" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "Mé" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "X" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "Sá" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "Sm" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "calendario-mes-ano" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Hora" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Minuto" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Segundo" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "Este campo é obrigatorio" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "Arranxe este campo" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "Introduza un enderezo de correo aceptábel" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "Introduza un URL aceptábel" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "Introduza unha data aceptábel" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "Introduza unha data aceptábel (ISO)" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "Introduza un número aceptábel" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "Introduza un número de tarxeta de crédito aceptábel" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "Introduza unicamente díxitos" @@ -2869,41 +2850,41 @@ msgstr "Introduza unicamente díxitos" msgid "Please enter the same value again" msgstr "Introduza o mesmo valor de novo" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "Non introduza máis de {0} caracteres" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "Introduza ao menos {0} caracteres" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "Introduza un valor entre {0} e {1}" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "Introduza valores inferiores ou iguais a {0}" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "Introduza un valor maior ou igual a {0}" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "Introduza unha data ou hora aceptábeis" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "Introduza unha entrada hexadecimal aceptábel" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Produciuse un erro" @@ -2996,11 +2977,12 @@ msgstr "subconsulta" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3044,7 +3026,7 @@ msgstr "Durante esta sesión" msgid "Explain" msgstr "Explicar" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Análise do desempeño" @@ -3080,8 +3062,8 @@ msgid "History" msgstr "Historial" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3226,7 +3208,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Usar o tema escuro" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3234,26 +3216,26 @@ msgstr "" "O servidor non responde (ou o socket local do servidor non se configurou " "correctamente)." -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "O servidor non responde." -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "Comprobe os privilexios do directorio que contén a base de datos." -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Detalles…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Fallou a conexión para «controluser» tal e como está definida na " "configuración." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3263,8 +3245,8 @@ msgstr "" msgid "Ascending" msgstr "Ascendente" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3409,8 +3391,8 @@ msgstr[0] "%1$s coincidencia en %2$s" msgstr[1] "%1$s coincidencias en %2$s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3452,120 +3434,121 @@ msgstr "Anular toda a selección" msgid "Inside column:" msgstr "Dentro da columna:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "Gardar os datos editados" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "Restaurar orde das columnas" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "Filtrar filas" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "Buscar nesta táboa" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "Inicio" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "Anterior" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "Seguinte" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "Fin" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Todo" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Número de filas:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Ordenar pola chave" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "Textos parciais" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "Textos completos" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Chave relacional" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 msgid "Display column for relations" msgstr "Mostrar as columnas para as relacións" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "Mostrar os contidos binarios" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "Mostrar os contidos BLOB" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "Ocultar a transformación do navegador" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "Texto moi coñecido" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "Binario moi coñecido" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "A fila foi eliminada." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Matar (kill)" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" "Pode non ser exacto. Consulte a [doc@faq3-11]pregunta frecuente 3.11[/doc]." -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "A consulta de SQL executouse sen problemas." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3574,64 +3557,64 @@ msgstr "" "Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation" "%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "A mostrar as filas %1s + %2s" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "%d total" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "A consulta levou %01.4f segundos." -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Cos marcados:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 msgid "Check all" msgstr "Marcar todo" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Visualización previa da impresión" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Operacións cos resultados da consulta" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Mostrar a gráfica" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "Ver os datos GIS" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "Non se atopou a ligazón!" @@ -3729,19 +3712,19 @@ msgstr "Non se definiu ningún índice!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Índices" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3750,24 +3733,24 @@ msgid "Action" msgstr "Acción" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Nome da chave" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Único" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Empaquetado" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Cardinalidade" @@ -3775,8 +3758,8 @@ msgstr "Cardinalidade" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3786,8 +3769,8 @@ msgid "Collation" msgstr "Orde alfabética" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3803,15 +3786,15 @@ msgstr "Eliminouse a chave primaria." msgid "Index %s has been dropped." msgstr "Eliminouse o índice %s." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Eliminar" @@ -3850,12 +3833,13 @@ msgstr "Vista" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3863,7 +3847,7 @@ msgstr "Táboa" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3872,8 +3856,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3881,41 +3865,41 @@ msgid "Search" msgstr "Buscar" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Inserir" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilexios" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Operacións" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Seguimento" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3926,16 +3910,16 @@ msgstr "Disparadores" msgid "Database seems to be empty!" msgstr "Parece ser que a táboa está baleira!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Consulta" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rutinas" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3943,20 +3927,20 @@ msgstr "Rutinas" msgid "Events" msgstr "Acontecementos" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Deseñador" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "Columnas centrais" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Bases de datos" @@ -3965,33 +3949,33 @@ msgid "User accounts" msgstr "Contas de usuario" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Rexistro binario" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replicación" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Variábeis" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Conxuntos de caracteres" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Motores" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "Engadidos" @@ -4298,7 +4282,7 @@ msgstr "Non se pode facer que este índice sexa PRIMARIO!" msgid "No index parts defined!" msgstr "Non se definiron partes do índice!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4783,37 +4767,37 @@ msgstr "A función %s vese afectada por un erro descoñecido; consulte %s" msgid "Click to toggle" msgstr "Prema para conmutar" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Examinar o computador:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Escoller o directorio de subida do servidor web %s:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Non é posíbel acceder ao directorio que designou para os envíos." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "Non hai ficheiros para subir!" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Baleirar" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "Executar" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Imprimir" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "Usuarios" @@ -4976,8 +4960,8 @@ msgid "Add new column" msgstr "Engadir unha columna nova" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5042,19 +5026,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "Debería actualizar a %s %s ou posterior." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "Erro: o token non coincide" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "Tentouse substituír GLOBALS" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "posíbel vulnerabilidade (exploit)" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "detectouse unha tecla numérica" @@ -5922,7 +5906,7 @@ msgid "Remember file name template" msgstr "Lembrar o modelo do nome de ficheiro" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Engadir o valor incremental (AUTO_INCREMENT)" @@ -5963,7 +5947,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Engadir %s" @@ -7833,7 +7817,7 @@ msgstr "" "Define se a caixa de consultas debe permanecer en pantalla despois da súa " "execución" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "Reter a caixa de consultas" @@ -8207,105 +8191,35 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Texto de OpenDocument" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Baleirouse a táboa %s." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "Deixouse a vista %s" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "Eliminouse a táboa %s" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "descoñecido" -#: libraries/controllers/TableStructureController.php:162 -#, fuzzy, php-format -#| msgid "The column name '%s' is a MySQL reserved keyword." -msgid "The name '%s' is a MySQL reserved keyword." -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.php:250 -msgid "No column selected." -msgstr "Non seleccionou ningunha columna." - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "Movéronse as columnas satisfactoriamente." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "Alterouse a táboa %1$s sen problemas." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "Hai un erro na consulta" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Mudar" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Índice" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "Espacial" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Texto completo" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "Valores diferentes" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8319,6 +8233,14 @@ msgstr "Na táboa que se quere debuxar non existe ningunha columna numérica." msgid "No data to display" msgstr "Non hai datos que mostrar" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "Alterouse a táboa %1$s sen problemas." + #: libraries/controllers/table/TableRelationController.php:212 #, fuzzy #| msgid "Thread %s was successfully killed." @@ -8331,25 +8253,87 @@ msgstr "Finalizouse o fío %s." msgid "Internal relations were successfully updated." msgstr "Engadiuse a relación interna" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Table Search" msgid "Table search" msgstr "Busca na táboa" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Zoom Search" msgid "Zoom search" msgstr "Busca gráfica" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "Find and Replace" msgid "Find and replace" msgstr "Buscar e substituír" +#: libraries/controllers/table/TableStructureController.php:163 +#, fuzzy, php-format +#| msgid "The column name '%s' is a MySQL reserved keyword." +msgid "The name '%s' is a MySQL reserved keyword." +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/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "Non seleccionou ningunha columna." + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "Movéronse as columnas satisfactoriamente." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "Hai un erro na consulta" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Mudar" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Índice" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "Espacial" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Texto completo" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "Valores diferentes" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8359,7 +8343,7 @@ msgstr "Falta a extensión %s. Comprobe a configuración do PHP." msgid "possible deep recursion attack" msgstr "posible ataque tipo deep recursion" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Sen cambios" @@ -8426,7 +8410,7 @@ msgstr "Crear" msgid "Create database:" msgstr "Crear unha base de datos:" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Sen privilexios" @@ -9206,27 +9190,27 @@ msgid "Dump has been saved to file %s." msgstr "Gardouse o envorcado no ficheiro %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "O MySQL retornou un conxunto baleiro (isto é, cero fileiras)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "As estruturas seguintes foron creadas ou alteradas. Aquí pode:" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 #, fuzzy #| msgid "View a structure's contents by clicking on its name" msgid "View a structure's contents by clicking on its name." msgstr "Ver o contido dunha estrutura premendo o seu nome" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -9235,48 +9219,48 @@ msgid "" msgstr "" "Mudar calquera destas opcións premendo a ligazón «Opcións» correspondente" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 #, fuzzy #| msgid "Edit structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link." msgstr "Editar a estrutura seguindo a ligazón «Estrutura»" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "Ir á base de datos: %s" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "Editar a configuración de %s" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "Ir á táboa: %s" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "Estrutura de %s" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "Ir á vista: %s" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "Crear un índice en  %s columnas" @@ -9299,68 +9283,68 @@ msgstr "Función" msgid "Binary" msgstr "Binario" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 #, fuzzy #| msgid "Because of its length,
this column might not be editable" msgid "Because of its length,
this column might not be editable." msgstr "Por causa da súa lonxitude,
este campo pode non ser editábel" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Binario - non editar" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "ou" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "directorio de recepción do servidor web:" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "Editar/Inserir" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "Continuar a inserción con %s fileiras" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "e despois" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Inserir unha columna nova" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "Inserir como fila nova e ignorar os erros" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "Mostrar a consulta de inserción" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Volver para páxina anterior" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Inserir un rexistro novo" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Volver para esta páxina" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Modificar a fileira seguinte" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9370,7 +9354,7 @@ msgstr "" "Use a tecla do tabulador para moverse de valor en valor ou a tecla CONTROL " "combinada cunha frecha para moverse a calquera sitio" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9382,11 +9366,11 @@ msgstr "" msgid "Value" msgstr "Valor" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "Mostrar a consulta de SQL" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "Identificador da fileira inserida: %1$d" @@ -9402,35 +9386,35 @@ msgstr "Ningunha" msgid "Convert to Kana" msgstr "Converter a Kana" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "Substituír o prefixo da táboa:" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "Copiar a táboa con prefixo:" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "Desde" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "Até" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "Engadir un prefixo á táboa:" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "Engadir un prefixo" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "Está realmente seguro de executar a seguinte petición?" @@ -9662,8 +9646,8 @@ msgstr "Procedementos" msgid "Views:" msgstr "Vistas" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Mostrar" @@ -9707,10 +9691,9 @@ msgstr[0] "atopouse %s resultado máis" msgstr[1] "atopáronse outros %s resultados" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "filter databases by name" -msgid "Filter databases by name or regex" -msgstr "filtrar as bases de dato polo nome" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -9719,12 +9702,6 @@ msgstr "filtrar as bases de dato polo nome" msgid "Clear fast filter" msgstr "Limpar o filtro rápido" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "filter items by name" -msgid "Filter by name or regex" -msgstr "filtrar os elementos polo nome" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -10131,7 +10108,7 @@ msgstr "Renomear a base de datos como" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10142,7 +10119,7 @@ msgstr "Non ten dereitos suficientes para estar aquí agora!" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -10162,18 +10139,18 @@ msgstr "Eliminar base de datos" msgid "Drop the database (DROP)" msgstr "Eliminar a base de datos (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Só a estrutura" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Estrutura e datos" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Só os datos" @@ -10185,7 +10162,7 @@ msgstr "Copiar a base de datos a" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE antes de copiar" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Engadir limitacións" @@ -10225,163 +10202,163 @@ msgstr "Motor de almacenamento" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Copiar a táboa a (base_de_datos.táboa)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Ir á táboa copiada" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Táboa de mantemento" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Analizar a táboa" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Comprobar a táboa" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Comprobar a táboa" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Táboa de desfragmentación" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "Borrouse a táboa %s." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "Borrar a táboa («FLUSH»)" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Optimizar a táboa" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Reparar a táboa" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "Eliminar datos ou táboa" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "Baleirar a táboa (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "Eliminar a táboa (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Analizar" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Comprobar" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Optimizar" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Reconstruír" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Arranxar" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "Fechar" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "Mantemento de particións" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "Partición %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "Eliminar particións" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Comprobar a integridade das referencias:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Non se pode mover unha táboa sobre si mesma!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Non se pode copiar unha táboa sobre si mesma!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Moveuse a táboa %s para %s." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Copiouse a táboa %s para %s." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "Moveuse a táboa %s para %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "Copiouse a táboa %s para %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "O nome da táboa está baleiro!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "Este formato non ten opcións" @@ -10559,7 +10536,7 @@ msgstr "Opcións de envorcado dos datos" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "A extraer os datos da táboa" @@ -10583,21 +10560,21 @@ msgstr "Definición" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Estrutura da táboa" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Estrutura para a vista" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Estrutura existente para a vista" @@ -10687,7 +10664,7 @@ msgid "Database:" msgstr "Base de datos:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "Datos:" @@ -10797,7 +10774,7 @@ msgid "Data creation options" msgstr "Opcións de creación de datos" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "Baleirar a táboa antes de inserir" @@ -10885,8 +10862,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10894,93 +10871,93 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Missing data for %s" msgid "Metadata" msgstr "Faltan datos de %s" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Metadata for %s" msgstr "Faltan datos de %s" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Creación:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Última actualización:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Última revisión:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "en uso" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Restricións para os envorcados das táboas" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Restricións para a táboa" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Restricións para os envorcados das táboas" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Dentro das táboas:" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "Non empregar AUTO_INCREMENT cos valores cero" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Engadir o valor incremental (AUTO_INCREMENT)" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "TIPOS MIME PARA A TÁBOA" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "RELACIÓNS PARA A TÁBOA" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, 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.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "Produciuse un erro ao ler os datos:" @@ -11241,9 +11218,9 @@ msgstr "Esquema relacional" msgid "Table of contents" msgstr "Índice" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Extra" @@ -11481,61 +11458,61 @@ msgstr "Formata texto como consulta de SQL e realza a sintaxe." msgid "Formats text as XML with syntax highlighting." msgstr "Formata texto como consulta de SQL e realza a sintaxe." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Erro: xa existe unha relación." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "Engadiuse unha relación cunha CHAVE EXTERNA" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Erro: non se engadiu a relación." -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "Erro: As funcionalidades relacionais están desactivadas!" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "Engadiuse a relación interna" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "Erro: non se engadiu a relación." -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "Engadiuse unha relación cunha CHAVE EXTERNA" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Erro: non se engadiu a relación." -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "Erro: non se engadiu a relación." -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11590,80 +11567,80 @@ msgid "Please see the documentation on how to update your column_info table. " msgstr "" "Consulte a documentación para saber como actualizar a táboa Column_comments." -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Gardouse a consulta de SQL" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "Historial de SQL" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "Táboas persistentes usadas recentemente" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "Persistent recently used tables" msgid "Persistent favorite tables" msgstr "Táboas persistentes usadas recentemente" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "Preferencias de IU das táboas persistentes" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "Preferencia do usuario" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Configuration: %s" msgid "Configurable menus" msgstr "Configuración: %s" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 #, fuzzy #| msgid "Reload navigation frame" msgid "Hide/show navigation items" msgstr "Recargar a moldura de navegación" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Remember table's sorting" msgid "Remembering Designer Settings" msgstr "Recordar a ordenación da táboa" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "Este tipo de exportación non é válido" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "Pasos rápidos para configurar as funcionalidades avanzadas:" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, fuzzy, php-format #| msgid "" #| "Create the needed tables with the examples/create_tables.sql." msgid "Create the needed tables with the %screate_tables.sql." msgstr "Cree as táboas necesarias con exemplos/create_tables.sql." -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "Cree un usuario usuario pma e déalle acceso a estas táboas." -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -11672,24 +11649,24 @@ msgstr "" "(config.inc.php) comezando, por exemplo con config.sample." "inc.php." -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Entre de novo no phpMyAdmin para cargar o ficheiro de configuración " "actualizado." -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "sen descrición" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11697,14 +11674,14 @@ msgid "" "configuration storage there." msgstr "Faltan as táboas de almacenamento da configuración do phpMyAdmin" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Faltan as táboas de almacenamento da configuración do phpMyAdmin" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -11908,8 +11885,8 @@ msgstr "Nome de usuario:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Nome do usuario" @@ -11917,7 +11894,7 @@ msgstr "Nome do usuario" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Contrasinal" @@ -12588,7 +12565,7 @@ msgstr[1] "Elimináronse %1$d bases de datos sen problemas." msgid "Plugin" msgstr "Engadido" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Versión" @@ -12596,100 +12573,96 @@ msgstr "Versión" msgid "Author" msgstr "Autor" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "Licen" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "desactivado" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Sen privilexios." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Inclúe todos os privilexios a excepción de GRANT (Conceder)." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Permite gravar datos." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Permite inserir e substituír datos." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Permite modificar datos." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Permite eliminar datos." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Permite crear bases de datos e táboas novas." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Permite eliminar bases de datos e táboas." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Permite recargar a configuración do servidor e limpar a súa caché." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Permite apagar o servidor." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 #, fuzzy #| msgid "Allows viewing processes of all users" msgid "Allows viewing processes of all users." msgstr "Permite ver procesos de todos os usuarios" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "Permite importar e exportar datos desde e para ficheiros." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "Non funciona nesta versión do MySQL." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Permite crear e eliminar índices." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Permite alterar a estrutura das táboas xa existentes." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Permite acceder á lista completa de bases de datos." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12700,41 +12673,41 @@ msgstr "" "ou matar os fíos doutros usuarios." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Permite crear táboas temporais." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Permite bloquear táboas do fío actual." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Necesario para os escravos de replicación." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "Permite que o usuario pregunte onde están os escravos e os mestres." #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Permite crear vistas novas." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "Permite configurar acontecementos para o programador de acontecementos" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 #, fuzzy #| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." @@ -12742,27 +12715,27 @@ msgstr "Permite crear e eliminar os disparadores" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permite realizar consultas SHOW CREATE VIEW." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Permite crear rutinas almacenadas." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Permite alterar e eliminar rutinas almacenadas." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permite crear, eliminar e mudar o nome das contas de usuario." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Permite executar rutinas almacenadas." @@ -12774,8 +12747,8 @@ msgstr "Ningún" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12819,12 +12792,12 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Nota: Se estas opcións se configuran como 0 (cero) elimínase o límite." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limita o número de consultas por hora que pode enviar un usuario." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12833,19 +12806,19 @@ msgstr "" "que pode executar un usuario." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "Limita o número de conexións novas por hora que pode abrir un usuario." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limita o número de conexións simultáneas que pode ter o usuario." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12853,7 +12826,7 @@ msgid "Routine" msgstr "Rutinas" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12873,14 +12846,14 @@ msgstr "Permite executar rutinas almacenadas." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Privilexios propios das táboas" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -12892,7 +12865,7 @@ msgid "Administration" msgstr "Administración" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Privilexios globais" @@ -12903,15 +12876,15 @@ msgid "Global" msgstr "global" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Privilexios propios das bases de datos" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Permite crear táboas novas." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Permite eliminar táboas." @@ -12934,7 +12907,7 @@ msgid "Native MySQL Authentication" msgstr "Autenticación mediante cookies" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Información sobre o acceso (login)" @@ -12965,8 +12938,8 @@ msgstr "Nome de usuario:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Log name" msgid "Host name" @@ -12988,123 +12961,123 @@ msgstr "Autenticación" msgid "Password Hashing Method" msgstr "Hash do contrasinal:" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "Modificouse sen problemas o contrasinal de %s." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Revogou os privilexios de %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Engadir un usuario" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Base de datos para o usuario" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" "Crear unha base de datos co mesmo nome e conceder todos os privilexios." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Conceder todos os privilexios para o nome con comodíns (username\\_%)." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Conceder todos os privilexios sobre a base de datos \"%s\"." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Usuarios que teñen acceso a \"%s\"" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "O usuario foi engadido." -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Conceder" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "Non se achou ningún usuario." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Calquera" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "específico da base de datos" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "comodín" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "específico da base de datos" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "Modificar os privilexios:" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Revogar" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Modificar o servidor" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… manter o anterior." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… eliminar o anterior das táboas de usuarios." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… retirarlle todos os privilexios activos ao anterior e eliminalo despois." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -13112,122 +13085,122 @@ msgstr "" "… eliminar o anterior das táboas de usuarios e recargar os privilexios " "despois." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Modificar a información de acceso (login) / Copiar o usuario" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Crear un usuario novo cos mesmos privilexios e…" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Privilexios propios das columnas" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Eliminar os usuarios seleccionados" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Retirarlles todos os privilexios activos aos usuarios e eliminalos a " "continuación." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "Eliminar as bases de datos que teñan os mesmos nomes que os usuarios." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "Non se escolleu que usuarios eliminar!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "A recargar os privilexios" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Elimináronse sen problemas os usuarios seleccionados." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Acaba de actualizar os privilexios de %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "A eliminar %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Non houbo problemas ao recargar os privilexios." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "Xa existe o usuario %s!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "Privilexios para %s" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Usuario" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "Novo" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "Modificar os privilexios:" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "Users" msgid "User account" msgstr "Usuarios" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "Vista xeral dos usuarios" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13240,7 +13213,7 @@ msgstr "" "privilexios que usa o servidor se se levaron a cabo alteracións manuais. " "Neste caso, debería %svolver a cargar os privilexios%s antes de proseguir." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13259,11 +13232,11 @@ msgstr "" "privilexios que usa o servidor se se levaron a cabo alteracións manuais. " "Neste caso, debería %svolver a cargar os privilexios%s antes de proseguir." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "Non se atopou o usuario escollido na táboa de privilexios." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Engadiu un usuario novo." @@ -13529,24 +13502,24 @@ msgstr "Instrucións/Configuración" msgid "Done dragging (rearranging) charts" msgstr "Rematou o arrastre (redistribución) das gráficas" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "Activar o arrastre das gráficas" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "Taxa de anovación" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "Columnas da gráfica" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "Ordenación das gráficas" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -13554,7 +13527,7 @@ msgstr "" "A distribución das gráficas almacénase no almacenamento local do navegador. " "Pode resultar útil exportala se a configuración é complicada." -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "Restabelecer o predeterminado" @@ -13616,7 +13589,7 @@ msgid "Statements" msgstr "Instrucións" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "nº" @@ -13641,7 +13614,7 @@ msgstr "Mostrar os valores sen formato" msgid "Related links:" msgstr "Ligazóns relacionadas:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -13649,11 +13622,11 @@ msgstr "" "O número de conexións que se interromperon porque o cliente morreu sen " "fechar axeitadamente a conexión." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "O número de intentos de conexión co servidor de MySQL falidos." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13663,18 +13636,18 @@ msgstr "" "excederon o valor de binlog_cache_size e utilizaron un ficheiro temporal " "para almacenar instrucións para a transacción." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "Número de transaccións que utilizaron a caché do rexistro binario." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "O número de tentativas de conexión (satisfactorias ou non) co servidor de " "MySQL." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13686,11 +13659,11 @@ msgstr "" "que incremente o valor de tmp_table_size para que as táboas temporais se " "baseen na memoria no canto de no disco." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "Número de ficheiros temporais creados por mysqld." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13698,7 +13671,7 @@ msgstr "" "Número de táboas temporais na memoria creadas automaticamente polo servidor " "ao executar instrucións." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13706,7 +13679,7 @@ msgstr "" "Número de fileiras escritas con INSERT DELAYED que sufriron algún erro " "(probabelmente unha chave duplicada)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13714,23 +13687,23 @@ msgstr "" "Número de fíos de manipulación INSERT DELAYED en uso. Cada táboa diferente " "na que se utiliza INSERT DELAYED recibe o seu propio fío." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "Número de fileiras INSERT DELAYED escritas." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "Número de instrucións FLUSH executadas." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "Número de instrucións COMMIT internas." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "Número de veces que se eliminou unha fileira dunha táboa." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13740,7 +13713,7 @@ msgstr "" "se sabe dunha táboa cun nome dado. Isto chámase descuberta. " "Handler_discovery indica o número de veces que se descubriron táboas." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13751,7 +13724,7 @@ msgstr "" "completos; por exemplo, SELECT col FROM algo, supoñendo que col estea " "indexada." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -13759,7 +13732,7 @@ msgstr "" "Número de peticións para ler unha fileira baseadas nunha chave. Se for alto, " "é unha boa indicación de que as consultas e táboas están ben indexadas." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13769,7 +13742,7 @@ msgstr "" "increméntase se está a procurar unha columna de índice cunha limitación de " "intervalo ou se está a examinar un índice." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13777,7 +13750,7 @@ msgstr "" "Número de peticións para ler a fileira anterior na orde da chave. Este " "método de lectura utilízase sobre todo para optimizar ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13789,7 +13762,7 @@ msgstr "" "Posibelmente terá un monte de consultas que esixan que MySQL examine táboas " "completas ou ten unións que non usan as chaves axeitadamente." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13801,35 +13774,35 @@ msgstr "" "táboas non están indexadas axeitadamente ou que as súas consultas non están " "escritas para aproveitar os índices de que dispón." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "Número de instrucións de ROLLBACK («desfacer») interno." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "Número de peticións para actualizar unha fileira nunha táboa." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "Número de peticións para inserir un ficheiro nunha táboa." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "Número de páxinas que conteñen datos (suxos ou limpos)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "Número de páxinas actualmente suxas." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Número de páxinas do buffer que se pediu que se limpasen." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "Número de páxinas libres." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13839,7 +13812,7 @@ msgstr "" "actualmente a ser lidas ou escritas ou non se poden limpar ou eliminar por " "algunha outra razón." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13851,11 +13824,11 @@ msgstr "" "tamén se pode calcular así: Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "Tamaño total do buffer, en páxinas." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13864,7 +13837,7 @@ msgstr "" "cando unha consulta vai examinar unha porción grande dunha táboa mais en " "orde aleatoria." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13872,11 +13845,11 @@ msgstr "" "Número de pre-lecturas secuenciais iniciadas por InnoDB. Isto acontece cando " "InnoDB realiza un exame secuencial completo dunha táboa." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "Número de peticións de lectura lóxicas feitas por InnoDB." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13884,7 +13857,7 @@ msgstr "" "Número de lecturas lóxicas que InnoDB non puido satisfacer do buffer e tivo " "que efectuar por medio de lecturas dunha única páxina." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13898,55 +13871,55 @@ msgstr "" "que esperar. Se o tamaño do buffer é o axeitado, este valor debería ser " "pequeno." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "Número de veces que se escribiu no buffer de InnoDB." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "Número de operacións fsync() até o momento." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "Número actual de operacións fsync() pendentes." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "Número actual de lecturas pendentes." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "Número actual de escritas pendentes." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "Cantidade de datos lida até o momento, en bytes." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "Número total de lecturas de datos." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "Número total de escritas de datos." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "Cantidade de datos escrita até o momento, en bytes." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Número de escritas duplas realizadas e número de páxinas escritas con este " "propósito." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" "Número de escritas duplas realizadas e número de páxinas escritas con este " "propósito." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13954,35 +13927,35 @@ msgstr "" "Número de esperas debidas a que o buffer do rexistro é demasiado pequeno e " "houbo que agardar até que se limpase para continuar." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "Número de peticións de escrita no rexistro." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "Número de escritas físicas no ficheiro de rexistro." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "Número de escritas de fsync() feitas no ficheiro de rexistro." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "Número de fsyncs do ficheiro de rexistro pendentes." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "Escritas no ficheiro de rexistro pendentes." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "Número de bytes escritos no ficheiro de rexistro." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "Número de páxinas creadas." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -13991,55 +13964,55 @@ msgstr "" "cóntanse en páxinas: o tamaño da páxina permite que se convertan doadamente " "en bytes." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "Número de páxinas lidas." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "Número de páxinas escritas." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "Número de bloqueo de fileiras polos que se está a agardar agora mesmo." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Tempo que, de media, leva adquirir un bloqueo sobre unha fileira, en " "milisegundos." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Tempo total empregado na adquisición de bloqueos sobre as fileiras, en " "milisegundos." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Tempo máximo en adquirir un bloqueo de fileira, en milisegundos." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "Número de veces que houbo que agardar polo bloqueo dunha fileira." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "Número de fileiras eliminadas das táboas InnoDB." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "Número de fileiras inseridas nas táboas InnoDB." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "Número de fileiras lidas das táboas InnoDB." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "Número de fileiras actualizadas en táboas InnoDB." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -14047,7 +14020,7 @@ msgstr "" "Número de bloques chave na caché de chaves que se mudaron mais que aínda non " "se limparon para o disco. Antes era Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -14055,7 +14028,7 @@ msgstr "" "Número de bloques sen utilizar na caché de chaves. Pode utilizar este valor " "para determinar canta caché de chave está en uso." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -14065,15 +14038,15 @@ msgstr "" "referencia superior que indica o número máximo de bloques que se teñen " "empregado." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "Porcentaxe de caché chave empregada (valor calculado)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "Número de peticións para ler un bloque chave da caché." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -14083,7 +14056,7 @@ msgstr "" "grande, é que, posiblemente, o valor de key_fuffer_size é demasiado baixo. A " "relación de perdas da caché pódese calcular así: Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -14091,22 +14064,22 @@ msgstr "" "A caché chave calculouse erroneamente como a proporción de lecturas físicas " "comparada coas solicitudes de lectura (valor calculado)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "Número de peticións para escribir un bloque chave na caché." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "Número de escritas físicas dun bloque chave no disco." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Porcentaxe de escritas físicas comparada coas solicitudes de escrita (valor " "calculado)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -14117,7 +14090,7 @@ msgstr "" "procura diferentes para a mesma consulta. O valor por omisión é 0, que " "significa que aínda non se compilou ningunha procura." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -14125,13 +14098,13 @@ msgstr "" "O número máximo de conexións que teñen estado en uso simultaneamente desde " "que se iniciou o servidor." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "O número de consultas que están a agardar para seren escritas nas fileiras " "INSERT DELAYED." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -14139,19 +14112,19 @@ msgstr "" "O número de táboas abertas en total. Se a cantidade é grande, o valor da " "caché de táboas posibelmente é demasiado pequeno." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "O número de ficheiros abertos." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "O número de fluxos abertos (utilizado principalmente para o rexistro)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "O número de táboas abertas." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -14161,19 +14134,19 @@ msgstr "" "altos poden indicar problemas de fragmentación, que se poden resolver " "enviando unha instrución FLUSH QUERY CACHE." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "A cantidade de memoria libre para a caché de consultas." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "O número de impactos na caché." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "O número de consultas engadidas á caché." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14186,7 +14159,7 @@ msgstr "" "utilizado menos recentemente (LRU) para decidir que consultas debe eliminar " "da caché." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -14194,19 +14167,19 @@ msgstr "" "O número de consultas non enviadas á caché (que non se poden enviar debido á " "configuración de query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "O número de consultas rexistradas na caché." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "O número total de bloques na caché de consultas." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "O estado da replicación en modo seguro (aínda non realizado)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -14214,13 +14187,13 @@ msgstr "" "O número de unións que non utilizan índices. Se este valor non for 0, " "debería comprobar con atención os índices das táboas." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" "O número de unións que utilizaron un intervalo de procura nunha táboa de " "referencia." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -14229,7 +14202,7 @@ msgstr "" "de cada fila (se non é 0, debería comprobar con atención os índices das " "táboas)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -14237,15 +14210,15 @@ msgstr "" "O número de unións que utilizaron intervalos na primeira táboa (Normalmente " "non é grave, mesmo de ser grande)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "O número de unións que realizaron un exame completo da primeira táboa." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "O número de táboas temporais abertas actualmente polo fío SQL escravo." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -14253,11 +14226,11 @@ msgstr "" "O número total de veces (desde o inicio) que o fío de replicación SQL " "escravo reintentou as transaccións." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Isto está ON se este servidor é un escravo conectado a un máster." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -14265,14 +14238,14 @@ msgstr "" "O número de fíos aos que lles levou crearse máis segundos dos indicados en " "slow_launch_time." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "O número de consultas ás que lles levou máis segundos dos indicados en " "long_query_time." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -14282,23 +14255,23 @@ msgstr "" "Se este valor for grande, sería ben que considerase incrementar o valor da " "variábel de sistema sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "O número de ordenacións feitas con intervalos." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "O número de fileiras ordenadas." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "O número de ordenacións realizadas examinando a táboa." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "O número de veces que se adquiriu inmediatamente un bloqueo de táboa." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14310,7 +14283,7 @@ msgstr "" "desempeño, debería en primeiro lugar mellorar as consultas e despois, ora " "partir a táboa ou táboas, ora utilizar a replicación." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -14320,11 +14293,11 @@ msgstr "" "calcular como Threads_created/Connections. Se este valor for vermello, " "debería aumentar a thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "O número de conexións abertas neste momento." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14336,11 +14309,11 @@ msgstr "" "non fornece unha mellora notábel no desempeño se ten unha boa implementación " "de fíos.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "Porcentaxe de impactos na caché de fíos (valor calculado)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "O número de fíos que non están a durmir." @@ -14349,77 +14322,77 @@ msgstr "O número de fíos que non están a durmir." msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 #, fuzzy #| msgid "Users" msgid "User groups" msgstr "Usuarios" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "Versión do servidor" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Database server" msgid "Database level tabs" msgstr "Servidor de base de datos" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table removal" msgid "Table level tabs" msgstr "Nome da táboa" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy #| msgid "Views" msgid "View users" msgstr "Vistas" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "Engadir un usuario" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Sen privilexios." -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Column names: " msgid "Group name:" msgstr "Nomes das columnas: " -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Versión do servidor" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "Servidor de base de datos" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table removal" msgid "Table-level tabs" @@ -14485,21 +14458,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14570,115 +14539,115 @@ msgstr "O acontecemento %1$s foi creado." msgid "Variable name was expected." msgstr "Modelo de nome dos ficheiros" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "No comezo da táboa" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 #, fuzzy #| msgid "Unexpected characters on line %s." msgid "Unexpected token." msgstr "Hai caracteres inesperados na liña %s." -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 #, fuzzy #| msgid "The number of tables that are open." msgid "The name of the entity was expected." msgstr "O número de táboas abertas." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Eliminouse a fileira" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "Perfil detallado" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "Orde" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "Estado" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "Resumo por estado" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "Tempo total" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "% Tempo" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "Chamadas" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "ø Tempo" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Marcar esta consulta de SQL" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "Etiqueta:" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Permitir que calquera usuario poida acceder a este marcador" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 #, fuzzy #| msgid "Bookmark not created" msgid "Bookmark not created!" msgstr "Non se creou o marcador" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "A empregar o marcador «%s» como consulta de navegación por omisión." -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "Mostrar como código PHP" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, fuzzy, php-format #| msgid "" #| "Table %s does not contain a unique column. Grid edit, checkbox, Edit, " @@ -14691,7 +14660,7 @@ msgstr "" "relacionadas coa edición da grella, caixa de selección, editar, copiar e " "eliminar non están dispoñíbeis." -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, fuzzy, php-format #| msgid "" #| "Table %s does not contain a unique column. Grid edit, checkbox, Edit, " @@ -14704,7 +14673,7 @@ msgstr "" "relacionadas coa edición da grella, caixa de selección, editar, copiar e " "eliminar non están dispoñíbeis." -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas cos índices da táboa «%s»" @@ -14735,27 +14704,27 @@ msgstr "" msgid "Bind parameters" msgstr "Os parámetros son incorrectos!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "Marcar esta consulta de SQL:" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Substituír un marcador xa existente que teña o mesmo nome" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Delimitador" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Mostrar esta consulta aquí outra vez" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Só visualizar" @@ -14800,114 +14769,114 @@ msgstr "Desactivar o seguimento para %s" msgid "Deactivate now" msgstr "Desactivar agora" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Creada" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Actualizada" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "Crear unha versión" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Informe de seguimento" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Instantánea da estrutura" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "activado" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "desactivado" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "Instrucións de seguimento" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "Eliminar do informe a fila de datos de seguimento" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "Non hai datos" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Mostrar %1$s con datas de %2$s to %3$s polo usuario %4$s %5$s" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "Envorcado de SQL (descarga do ficheiro)" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "Envorcado de SQL" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "Esta opción substitúe a táboa e os datos que contén." -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "Execución de SQL" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "Exportar como %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "Instrución de manipulación de datos" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "Instrución de definición de datos" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Data" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Nome de usuario" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Instantánea da versión %s (código SQL)" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Nada" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "A definición dos datos de seguimento foi eliminada con éxito" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "Eliminouse satisfactoriamente o seguimento da manipulación de datos" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14915,64 +14884,64 @@ msgstr "" "Pódese executar o envorcado creando e empregando unha base de datos " "temporal. Asegúrese de que goza dos privilexios para facelo." -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "Marque estas dúas liñas como comentario se non as precisa." -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Instrucións de SQL exportadas. Copie o envorcado ou execúteo." -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "Informe de seguimento da táboa «%s»" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Activouse o seguimento de %1$s na versión %2$s." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Desactivouse o seguimento de %1$s na versión %2$s." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format #| msgid "Create version %1$s of %2$s" msgid "Version %1$s of %2$s was deleted." msgstr "Crear versión %1$s de %2$s" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Creouse a versión %1$s; activouse o seguimento de %2$s." -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Táboas non seguidas" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Seguir a táboa" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Táboas seguidas" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Última versión" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "Eliminar os datos de seguimento" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Versións" @@ -14980,11 +14949,11 @@ msgstr "Versións" msgid "Manage your settings" msgstr "Xestionar a configuración" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "Gardouse a configuración." -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -15091,7 +15060,7 @@ msgstr "Non hai ningunha base de datos" msgid "View dump (schema) of databases" msgstr "Ver o envorcado das bases de datos" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -15118,7 +15087,7 @@ msgstr "" "O phpMyAdmin foi incapaz de finalizar o fío %s. Probablemente xa estea " "fechado." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -16032,47 +16001,53 @@ msgstr "" msgid "Stacked" msgstr "Amontoado" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "Título da gráfica" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "Eixo X:" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "Series:" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "Etiqueta do eixo X:" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "Valores X" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "Eixo Y:" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Valores Y" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside column:" msgid "Series column:" msgstr "Dentro da columna:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Values for column %s" msgid "Value Column:" msgstr "Valores para a columna %s" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -16134,15 +16109,47 @@ msgstr "Comentario:" msgid "Drag to reorder" msgstr "Arrastre para reordenar" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +#, fuzzy +#| msgid "Foreign key constraint" +msgid "Foreign key constraints" +msgstr "Límite das chaves externas" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "Accións" + +#: templates/table/relation/common_form.phtml:10 +#, fuzzy +#| msgid "Constraints for table" +msgid "Constraint properties" +msgstr "Restricións para a táboa" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "Límite das chaves externas" + +#: templates/table/relation/common_form.phtml:60 +#, fuzzy +#| msgid "Add constraints" +msgid "+ Add constraint" +msgstr "Engadir limitacións" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "Relacións internas" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "Relación interna" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -16150,38 +16157,7 @@ msgstr "" "Non se precisa unha relación interna cando existe unha CHAVE EXTERNA " "correspondente." -#: templates/table/relation/common_form.phtml:37 -#, fuzzy -#| msgid "Foreign key constraint" -msgid "Foreign key constraints" -msgstr "Límite das chaves externas" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "Accións" - -#: templates/table/relation/common_form.phtml:41 -#, fuzzy -#| msgid "Constraints for table" -msgid "Constraint properties" -msgstr "Restricións para a táboa" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "Límite das chaves externas" - -#: templates/table/relation/common_form.phtml:83 -#, fuzzy -#| msgid "Add constraints" -msgid "+ Add constraint" -msgstr "Engadir limitacións" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "Escolla a columna que desexe mostrar:" @@ -16322,7 +16298,7 @@ msgid "at beginning of table" msgstr "No comezo da táboa" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16371,7 +16347,7 @@ msgstr "particionado" msgid "Edit partitioning" msgstr "Eliminar particións" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "Editar a vista" @@ -17840,6 +17816,36 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert está definido como 0" +#~ 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" + +#~ msgid "tables" +#~ msgstr "táboas" + +#~ msgid "views" +#~ msgstr "vistas" + +#~ msgid "procedures" +#~ msgstr "procedementos" + +#~ msgid "events" +#~ msgstr "acontecementos" + +#~ msgid "functions" +#~ msgstr "funcións" + +#, fuzzy +#~| msgid "filter databases by name" +#~ msgid "Filter databases by name or regex" +#~ msgstr "filtrar as bases de dato polo nome" + +#, fuzzy +#~| msgid "filter items by name" +#~ msgid "Filter by name or regex" +#~ msgstr "filtrar os elementos polo nome" + #, fuzzy #~| msgid "Tracking report" #~ msgid "Taking you to %s." diff --git a/po/he.po b/po/he.po index 121cbfa222..0970fd708d 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-07-28 16:36+0200\n" "Last-Translator: Moshe Harush \n" "Language-Team: Hebrew Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "תורם" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "מפתח ראשי נוסף אל %s" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "דוח המעקב" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 #, fuzzy @@ -2090,551 +2102,515 @@ msgstr "" msgid "End of step" msgstr "בסוף טבלה" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 #, fuzzy #| msgid "None" msgid "Done" msgstr "ללא" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "אף מאגר נתונים לא נבחר." -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "הוספת הראשאות לטבלה הבאה" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "אף מאגר נתונים לא נבחר." -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "שמירה" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy msgid "Hide search criteria" msgstr "שאילתת SQL" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy msgid "Show search criteria" msgstr "שאילתת SQL" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "חיפוש" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "שמות עמודה" -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "שמות עמודה" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy msgid "Hide find and replace criteria" msgstr "שאילתת SQL" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy msgid "Show find and replace criteria" msgstr "שאילתת SQL" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "הוספת/מחיקת עמודות שדה" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Table of contents" msgid "Data point content" msgstr "תוכן עניניים" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "התעלמות" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "העתקה" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "נקודה" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "מחרוזת שורה" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "מצולע" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "פני השטח" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "טבעת פנימית" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "טבעת חיצונית:" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "מספר דף:" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 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:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 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:539 +#: js/messages.php:540 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "בחירת הכל" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "אנא בחר עמוד לעריכה" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid page name" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "עריכה או יצוא של תבנית יחסית" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "שינויים נשמרו" -#: js/messages.php:550 +#: js/messages.php:551 #, fuzzy, php-format #| msgid "Value for the column \"%s\"" msgid "Add an option for column \"%s\"." msgstr "ערך עבור העמודה „%s“" -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "שליחה" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "שמות עמודה" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "הצגת הכול" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "מיקום מקורי" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "בוטל" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 #, fuzzy msgid "Import status" msgstr "קבצי ייבוא" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "בחירת טבלאות" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 #, fuzzy msgid "Go to link:" msgstr "אין מאגרי נתונים" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "שמות עמודה" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "ייצור סיסמא" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "ייצור" -#: js/messages.php:620 +#: js/messages.php:621 #, fuzzy #| msgid "Mon" msgid "More" msgstr "יום שני" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "הצגת הכול" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "הוספת שדה חדש" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "הראה רשת" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 #, fuzzy msgid "Link with main panel" msgstr "אפשרויות ייצוא מאגר נתונים" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 #, fuzzy msgid "Unlink from main panel" msgstr "אפשרויות ייצוא מאגר נתונים" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 #, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "טבלאות" - -#: js/messages.php:633 -#, fuzzy -#| msgid "View" -msgid "views" -msgstr "תצוגה" - -#: js/messages.php:634 -#, fuzzy -msgid "procedures" -msgstr "תהליכים" - -#: js/messages.php:635 -#, fuzzy -msgid "events" -msgstr "נשלח" - -#: js/messages.php:636 -#, fuzzy -msgid "functions" -msgstr "פונקציה" - -#: js/messages.php:640 -#, 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:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2642,135 +2618,135 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr "" -#: js/messages.php:649 +#: js/messages.php:641 #, fuzzy msgid "up to date" msgstr "אין מאגרי נתונים" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 #, fuzzy msgid "Create view" msgstr "גרסת שרת" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy msgid "Send error report" msgstr "קוד שרת (ID)" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy msgid "Submit error report" msgstr "קוד שרת (ID)" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "תכונות קשר כלליות" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy msgid "Show report details" msgstr "ראיית טבלאות" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "התעלמות" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "הראה את שאילתה כאן שוב" -#: js/messages.php:701 +#: js/messages.php:693 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "האם אכן ברצונך להפעיל את „%s”?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "שאילתת SQL" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "הערות לטבלה" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy msgid "Hide arguments" msgstr "שאילתת SQL" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "הקודם" -#: js/messages.php:748 +#: js/messages.php:740 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2778,96 +2754,96 @@ msgid "Next" msgstr "הבא" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 #, fuzzy #| msgid "Total" msgid "Today" msgstr "סה\"כ" -#: js/messages.php:755 +#: js/messages.php:747 #, fuzzy #| msgid "Binary" msgid "January" msgstr "בינארי" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:749 #, fuzzy #| msgid "Mar" msgid "March" msgstr "מרץ" -#: js/messages.php:758 +#: js/messages.php:750 #, fuzzy #| msgid "Apr" msgid "April" msgstr "אפריל" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "מאי" -#: js/messages.php:760 +#: js/messages.php:752 #, fuzzy #| msgid "Jun" msgid "June" msgstr "יוני" -#: js/messages.php:761 +#: js/messages.php:753 #, fuzzy #| msgid "Jul" msgid "July" msgstr "יולי" -#: js/messages.php:762 +#: js/messages.php:754 #, fuzzy #| msgid "Aug" msgid "August" msgstr "אוגוסט" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:756 #, fuzzy #| msgid "Oct" msgid "October" msgstr "אוקטובר" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "ינואר" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "פברואר" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "מרץ" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "אפריל" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2875,78 +2851,78 @@ msgid "May" msgstr "מאי" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "יוני" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "יולי" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "אוגוסט" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "ספטמבר" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "אוקטובר" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "נובמבר" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "דצמבר" -#: js/messages.php:801 +#: js/messages.php:793 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "יום ראשון" -#: js/messages.php:802 +#: js/messages.php:794 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "יום שני" -#: js/messages.php:803 +#: js/messages.php:795 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "יום שלישי" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:798 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "יום שישי" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2954,167 +2930,167 @@ msgid "Sun" msgstr "יום ראשון" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "יום שני" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "יום שלישי" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "יום רביעי" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "יום חמישי" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "יום שישי" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "שבת" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "יום ראשון" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "יום שני" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "יום שלישי" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 #, fuzzy #| msgid "Wed" msgid "We" msgstr "יום רביעי" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "יום חמישי" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "יום שישי" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "שבת" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "ללא" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:864 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "בשימוש" -#: js/messages.php:873 +#: js/messages.php:865 #, fuzzy #| msgid "per second" msgid "Second" msgstr "לשנייה" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "השתמש בשדה טקסט" -#: js/messages.php:886 +#: js/messages.php:878 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid email address" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:887 +#: js/messages.php:879 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid URL" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:889 +#: js/messages.php:883 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date ( ISO )" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:890 +#: js/messages.php:885 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:891 +#: js/messages.php:888 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid credit card number" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:892 +#: js/messages.php:890 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" @@ -3126,53 +3102,53 @@ msgstr "%d הוא לא מספר שורה תקין." msgid "Please enter the same value again" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter at least {0} characters" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value between {0} and {1}" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:898 +#: js/messages.php:917 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value less than or equal to {0}" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:899 +#: js/messages.php:922 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value greater than or equal to {0}" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:901 +#: js/messages.php:928 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date or time" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:902 +#: js/messages.php:933 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid HEX input" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "שגיאה" @@ -3259,11 +3235,12 @@ msgstr "בשאילתה" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3311,7 +3288,7 @@ msgstr "" msgid "Explain" msgstr "הסברת SQL" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "" @@ -3352,8 +3329,8 @@ msgid "History" msgstr "היסטוריית SQL" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3538,32 +3515,32 @@ msgstr "" msgid "Switch to dark theme" msgstr "מעבר לטבלה שהועתקה" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "השרת אינו מגיב" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3573,8 +3550,8 @@ msgstr "" msgid "Ascending" msgstr "עולה" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3743,8 +3720,8 @@ msgstr[0] "תוצאה אחת (%1$s) בטבלה %2$s" msgstr[1] "%1$s תוצאות בטבלה %2$s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3788,29 +3765,29 @@ msgstr "ביטול הבחירה הכללית" msgid "Inside column:" msgstr "בתוך העמודה:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 #, fuzzy msgid "Save edited data" msgstr "תיקיית בית של נתונים" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "הוספת/מחיקת עמודות שדה" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 #, fuzzy msgid "Filter rows" msgstr "שדות" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Search in database" msgid "Search this table" msgstr "חיפוש במסד הנתונים" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 #, fuzzy #| msgid "Begin" @@ -3818,7 +3795,7 @@ msgctxt "First page" msgid "Begin" msgstr "התחלה" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 #, fuzzy @@ -3827,7 +3804,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "הקודם" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 #, fuzzy @@ -3836,7 +3813,7 @@ msgctxt "Next page" msgid "Next" msgstr "הבא" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 #, fuzzy #| msgid "End" @@ -3844,85 +3821,85 @@ msgctxt "Last page" msgid "End" msgstr "סיום" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "הכל" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of fields" msgid "Number of rows:" msgstr "מספר שדות" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "טקסטים חלקיים" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "טקסטים מלאים" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 #, fuzzy msgid "Relational key" msgstr "תצוגת יחסים" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display column for relations" msgstr "מציג הערות עמודה" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 #, fuzzy msgid "Hide browser transformation" msgstr "שינויי צורה זמינים" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "השורה נמחקה" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "יכול להיות הערכה. ראה [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -3930,50 +3907,51 @@ msgstr "יכול להיות הערכה. ראה [doc@faq3-11]FAQ 3.11[/doc]" msgid "Your SQL query has been executed successfully." msgstr "שאילתת ה־SQL שלך בוצעה בהצלחה" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "לתצוגה זו יש לפחות מספר כזה של שורות. נא לפנות ל%sתיעוד%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "מראה שורות" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "סה\"כ" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "שאילתה לקחה %01.4f שניות" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "עם הנבחרים:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3981,27 +3959,27 @@ msgstr "עם הנבחרים:" msgid "Check all" msgstr "סימון הכול" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "תצוגת הדפסה" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "מציג הערות עמודה" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 #, fuzzy #| msgid "Link not found" msgid "Link not found!" @@ -4102,19 +4080,19 @@ msgstr "אין אינדקסים מוגדרים!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "אינדקסים" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -4123,24 +4101,24 @@ msgid "Action" msgstr "פעולה" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "שם מפתח" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "ייחודי" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "מספור" @@ -4148,8 +4126,8 @@ msgstr "מספור" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -4159,8 +4137,8 @@ msgid "Collation" msgstr "איסוף" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -4177,15 +4155,15 @@ msgstr "המפתח הראשי הוסר." msgid "Index %s has been dropped." msgstr "אינדקס %s הוסר." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "השמטה" @@ -4222,12 +4200,13 @@ msgstr "תצוגה" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4235,7 +4214,7 @@ msgstr "טבלה" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4244,8 +4223,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4253,41 +4232,41 @@ msgid "Search" msgstr "חיפוש" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "הכנסה" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "הרשאות" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "פעולות" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4298,16 +4277,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "שאילתה" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4315,22 +4294,22 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "הוספת/מחיקת עמודות שדה" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "מאגרי נתונים" @@ -4341,33 +4320,33 @@ msgid "User accounts" msgstr "משתמש" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "דו\"ח בינארי" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "שכפול" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "משתנים" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "קידודים" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "מנועים" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4693,7 +4672,7 @@ msgstr "לא ניתן לשנות שם אינדקס אל PRIMARY!" msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5120,37 +5099,37 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, fuzzy, php-format msgid "Select from the web server upload directory %s:" msgstr "שמירת שרת בתוך תיקיית %s" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "ריקון" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "הדפסה" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 #, fuzzy #| msgid "User" msgid "Users" @@ -5329,8 +5308,8 @@ msgid "Add new column" msgstr "הוספת %s תאים" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5392,19 +5371,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "אתה צריך לשדרג אל %s %s לפחות." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -6236,7 +6215,7 @@ msgid "Remember file name template" msgstr "תבנית שם קובץ" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "הוספת ערך AUTO_INCREMENT (מספור אוטומטי)" @@ -6279,7 +6258,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "הוספת %s" @@ -7959,7 +7938,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 #, fuzzy msgid "Retain query box" msgstr "שאילתת SQL" @@ -8248,111 +8227,35 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "תיעוד" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "הטבלה %s רוקנה." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "התצוגה %s נשמטה" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "הטבלה %s נשמטה" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "לא ידוע" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" - -#: libraries/controllers/TableStructureController.php:250 -#, fuzzy -#| msgid "No rows selected" -msgid "No column selected." -msgstr "לא נבחרו שורות" - -#: libraries/controllers/TableStructureController.php:484 -#, fuzzy -msgid "The columns have been moved successfully." -msgstr "%s מסדי נתונים נמחקו בהצלחה." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -#, fuzzy -#| msgid "Query type" -msgid "Query error" -msgstr "סוג שאילתה" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "שינוי" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "אינדקס" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Fulltext" - -#: libraries/controllers/TableStructureController.php:1201 -#, fuzzy -#| msgid "Browse distinct values" -msgid "Distinct values" -msgstr "עיין בערכים נפרדים" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8368,6 +8271,14 @@ msgstr "" msgid "No data to display" msgstr "אין מאגרי נתונים" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "" + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "" @@ -8377,24 +8288,92 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr "יחסים פנימיים" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Search" msgid "Table search" msgstr "חיפוש" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Search" msgid "Zoom search" msgstr "חיפוש" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy msgid "Find and replace" msgstr "שאילתת SQL" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" + +#: libraries/controllers/table/TableStructureController.php:251 +#, fuzzy +#| msgid "No rows selected" +msgid "No column selected." +msgstr "לא נבחרו שורות" + +#: libraries/controllers/table/TableStructureController.php:485 +#, fuzzy +msgid "The columns have been moved successfully." +msgstr "%s מסדי נתונים נמחקו בהצלחה." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +#, fuzzy +#| msgid "Query type" +msgid "Query error" +msgstr "סוג שאילתה" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "שינוי" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "אינדקס" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Fulltext" + +#: libraries/controllers/table/TableStructureController.php:1209 +#, fuzzy +#| msgid "Browse distinct values" +msgid "Distinct values" +msgstr "עיין בערכים נפרדים" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8404,7 +8383,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "ללא שינוי" @@ -8479,7 +8458,7 @@ msgstr "יצירה" msgid "Create database:" msgstr "יצירת מאגר נתונים חדש" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "ללא הרשאות" @@ -9209,70 +9188,70 @@ msgid "Dump has been saved to file %s." msgstr "השליפה נשמרה אל הקובץ %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL החזיר חבילת תוצאות ריקה (לדוגמא, אפס שורות)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, fuzzy, php-format msgid "Go to database: %s" msgstr "אין מאגרי נתונים" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, fuzzy, php-format msgid "Go to table: %s" msgstr "אין מאגרי נתונים" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "מבנה בלבד" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" @@ -9296,76 +9275,76 @@ msgstr "פונקציה" msgid "Binary" msgstr "בינארי" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "משום אורכם,
השדה הזה יכול להיות בלתי עריך " -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "בינארי - אין לערוך" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "או" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 #, fuzzy msgid "web server upload directory:" msgstr "שמירת שרת בתוך תיקיית %s" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "הכנסה" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "ואז" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "הכנסה כשורה חדשה" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "חזרה לעמוד הקודם" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "הוספה נוספת של שורה חדשה" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "חזרה אחורה לעמוד זה" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "עריכת השורה הבאה" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9377,11 +9356,11 @@ msgstr "" msgid "Value" msgstr "ערך" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9399,45 +9378,45 @@ msgstr "ללא" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table prefix:" msgstr "החלפת קידומת הטבלה" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Copy table with prefix" msgid "Copy table with prefix:" msgstr "העתקת הטבלה עם קידומת" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 #, fuzzy #| msgid "Fri" msgid "From" msgstr "יום שישי" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Add new field" msgid "Add table prefix:" msgstr "הוספת שדה חדש" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 #, fuzzy #| msgid "Add new field" msgid "Add prefix" msgstr "הוספת שדה חדש" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -9666,8 +9645,8 @@ msgstr "תהליכים" msgid "Views:" msgstr "תצוגה" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "הצגה" @@ -9707,10 +9686,9 @@ msgstr[0] "" msgstr[1] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "Alter table order by" -msgid "Filter databases by name or regex" -msgstr "שינוי סדר הטבלה לפי" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -9719,12 +9697,6 @@ msgstr "שינוי סדר הטבלה לפי" msgid "Clear fast filter" msgstr "שמירה כקובץ" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "Alter table order by" -msgid "Filter by name or regex" -msgstr "שינוי סדר הטבלה לפי" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -10128,7 +10100,7 @@ msgstr "שינוי שם מסד הנתונים לשם" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10139,7 +10111,7 @@ msgstr "אין לך הרשאות מספיקות להיות כאן כרגע!" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -10159,18 +10131,18 @@ msgstr "הסרת מסד הנתונים" msgid "Drop the database (DROP)" msgstr "השמטת מסד הנתונים (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "מבנה בלבד" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "מבנה ונתונים" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "נתונים בלבד" @@ -10184,7 +10156,7 @@ msgstr "העתקת מסד הנתונים אל" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE לפני העתקה" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "הוספת הגבלות" @@ -10224,63 +10196,63 @@ msgstr "מנוע אחסון" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "העתקת טבלה אל (מסד נתונים.טבלה)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "מעבר לטבלה שהועתקה" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "אחזקת טבלה" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "ניתוח טבלה" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "בדיקת טבלה" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "בדיקת טבלה" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "איחוי טבלה" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "הטבלה %s אופסה." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "ריקון טבלה (\"FLUSH\")" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "ייעול טבלה" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "תיקון טבלה" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 #, fuzzy @@ -10288,108 +10260,108 @@ msgstr "תיקון טבלה" msgid "Delete data or table" msgstr "הוצאת מידע עבור טבלה" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 #, fuzzy msgid "Delete the table (DROP)" msgstr "אין מאגרי נתונים" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 #, fuzzy msgid "Check" msgstr "צ'יכית" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 #, fuzzy msgid "Repair" msgstr "תיקון טבלה" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "סגירה" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 #, fuzzy msgid "Partition maintenance" msgstr "אחזקת טבלה" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 #, fuzzy msgid "Can't move table to same one!" msgstr "לא ניתן להעתיק טבלה אל אותה אחת!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "לא ניתן להעתיק טבלה אל אותה אחת!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "הטבלה %s הועברה ל- %s." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "טבלה %s הועתקה אל %s." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "הטבלה %s הועברה ל- %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "טבלה %s הועתקה אל %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "שם הטבלה ריק!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10576,7 +10548,7 @@ msgstr "אפשרויות ייצוא מאגר נתונים" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "הוצאת מידע עבור טבלה" @@ -10603,14 +10575,14 @@ msgstr "תיאור" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "מבנה טבלה עבור טבלה" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 #, fuzzy msgid "Structure for view" @@ -10618,7 +10590,7 @@ msgstr "מבנה בלבד" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10733,7 +10705,7 @@ msgid "Database:" msgstr "מסד נתונים" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10849,7 +10821,7 @@ msgid "Data creation options" msgstr "לתבנית זאת אין אפשרויות" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -10918,8 +10890,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10927,91 +10899,91 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Static data" msgid "Metadata" msgstr "נתונים סטטיים" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "יצירה:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "עדכון אחרון:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "נבדק לאחרונה:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "בשימוש" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "הגבלות לטבלאות שהוצאו" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "הגבלות לטבלה" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "הגבלות לטבלאות שהוצאו" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "בתוך הטבלאות:" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "הוספת ערך AUTO_INCREMENT (מספור אוטומטי)" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "הוספת ערך AUTO_INCREMENT (מספור אוטומטי)" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "מבנה בלבד" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 #, fuzzy msgid "Error reading data:" msgstr "מאפשר מחיקת מידע." @@ -11264,9 +11236,9 @@ msgstr "" msgid "Table of contents" msgstr "תוכן עניניים" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "תוספת" @@ -11430,60 +11402,60 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been added." msgstr "שינויים נשמרו" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "לא ניתן לקרוא את הקובץ" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy msgid "Internal relation has been added." msgstr "יחסים פנימיים" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be added!" msgstr "לא ניתן לקרוא את הקובץ" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been removed." msgstr "שינויים נשמרו" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "לא ניתן לקרוא את הקובץ" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be removed!" msgstr "לא ניתן לקרוא את הקובץ" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy msgid "Internal relation has been removed." msgstr "יחסים פנימיים" @@ -11536,110 +11508,110 @@ msgstr "שינויי צורה זמינים" msgid "Please see the documentation on how to update your column_info table. " msgstr "" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "שאילתות SQL מועדפות" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "היסטוריית SQL" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "The server is not responding" msgid "Persistent favorite tables" msgstr "השרת אינו מגיב" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Modifications have been saved" msgid "Configurable menus" msgstr "שינויים נשמרו" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Rename table to" msgid "Remembering Designer Settings" msgstr "שינוי שם טבלה אל" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "סוג הייצוא שגוי" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "ללא תיאור" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11821,8 +11793,8 @@ msgstr "שם משתמש" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "שם משתמש" @@ -11830,7 +11802,7 @@ msgstr "שם משתמש" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "סיסמא" @@ -12519,7 +12491,7 @@ msgstr[1] "%s מסדי נתונים נמחקו בהצלחה." msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 #, fuzzy msgid "Version" msgstr "Persian" @@ -12528,103 +12500,99 @@ msgstr "Persian" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "מבוטל" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "ללא הרשאות." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "כלול כל ההרשאות חוץ מ- GRANT." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 #, fuzzy msgid "Allows reading data." msgstr "מאפשר מחיקת מידע." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 #, fuzzy msgid "Allows changing data." msgstr "מאפשר מחיקת מידע." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "מאפשר מחיקת מידע." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 #, fuzzy msgid "Allows creating new databases and tables." msgstr "מאפשר מחיקת מאגרי נתונים וטבלאות." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "מאפשר מחיקת מאגרי נתונים וטבלאות." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "מאפשר שינוי של מבני הטבלאות הקיימות." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12632,68 +12600,68 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "מאפשר יצירת טבלאות זמניות." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 #, fuzzy msgid "Allows creating new views." msgstr "מאפשר יצירת טבלאות חדשות." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 #, fuzzy msgid "Allows creating and dropping triggers." msgstr "מאפשר יצירת שגרות מאוחסנות." #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "מאפשר יצירת שגרות מאוחסנות." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "מאפשר יצירת שגרות מאוחסנות." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 #, fuzzy msgid "Allows executing stored routines." msgstr "מאפשר יצירת שגרות מאוחסנות." @@ -12708,8 +12676,8 @@ msgstr "ללא" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12753,31 +12721,31 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "הערה: הגדרת אפשרויות אלו אל 0 (אפס) יבטלו את ההגבלה." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Add new field" @@ -12785,7 +12753,7 @@ msgid "Routine" msgstr "הוספת שדה חדש" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12802,14 +12770,14 @@ msgstr "מאפשר יצירת שגרות מאוחסנות." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "הרשאות ספציפיות-לטבלאות" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -12821,7 +12789,7 @@ msgid "Administration" msgstr "ניהול" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "הרשאות גלובליות" @@ -12832,15 +12800,15 @@ msgid "Global" msgstr "עולמי" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "הרשאות ספציפיות למאגר נתונים" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "מאפשר יצירת טבלאות חדשות." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "מאפשר מחיקת טבלאות." @@ -12863,7 +12831,7 @@ msgid "Native MySQL Authentication" msgstr "תיעוד" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "מידע כניסה" @@ -12888,8 +12856,8 @@ msgstr "שם משתמש" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Log name" msgid "Host name" @@ -12911,245 +12879,245 @@ msgstr "תיעוד" msgid "Password Hashing Method" msgstr "סיסמא:" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "הסיסמא עבור %s שונתה בהצלחה." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "אתה שללת הרשאות עבור %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "הוספת משתמש" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database export options" msgid "Database for user account" msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, fuzzy, php-format msgid "Grant all privileges on database \"%s\"." msgstr "בדיקת הראשות עבור מאגר נתונים \"%s\"." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 #, fuzzy msgid "User has been added." msgstr "שדה %s נמחק" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "הענקה" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "לא נמצאו משתמשים." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "כל דבר" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "עולמי" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "ספציפי למאגר הנתונים" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "תו כללי" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "ספציפי למאגר הנתונים" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "עריכת הרשאות" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "שלילה" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "עריכת השורה הבאה" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… שמירת הישן." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… מחיקת הישן מטבלאות המשתמשים." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… בטל את כל ההרשאות הפעילות מהישן ומחק אותו לאחר מכן." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… מחיקת הישן מטבלאות המשתמשים וטען מחדש את ההרשאות לאחר מכן." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "שינוי מידע כניסה / העתקת משתמש" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "יצירת משתמש חדש עם אותן ההרשאות וגם …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "הרשאות ספציפיות-לעמודה" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "הסרת משתמשים שנבחרו" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "שלילת כל ההרשאות הפעילות מהמשתמשים ומחיקתם לאחר מכן." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "הסרת מאגרי נתונים שיש להם שמות דומים כמו למשתמשים." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "טוען מחדש הרשאות" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 #, fuzzy msgid "The selected users have been deleted successfully." msgstr "%s מסדי נתונים נמחקו בהצלחה." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "אתה עדכנת הרשאות עבור %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "מוחק %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "ההרשאות נטענו מחדש בהצלחה." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "שם המשתמש %s כבר קיים!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "הרשאות" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "משתמש" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "עריכת הרשאות" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "User" msgid "User account" msgstr "משתמש" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "סקירת משתמשים" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13161,7 +13129,7 @@ msgstr "" "הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן " "ידני. במקרה זה, אתה צריך לבצע %sטעינה מחדש של הרשאות%s לפני שאתה ממשיך." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13179,11 +13147,11 @@ msgstr "" "הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן " "ידני. במקרה זה, אתה צריך לבצע %sטעינה מחדש של הרשאות%s לפני שאתה ממשיך." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "המשתמש שנבחר לא נמצא בטבלת ההרשאות." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "משתמש חדש נוסף." @@ -13426,33 +13394,33 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 #, fuzzy msgid "Refresh rate" msgstr "רענון" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "הוספת/מחיקת עמודות שדה" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -13519,7 +13487,7 @@ msgid "Statements" msgstr "משפטים" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -13550,33 +13518,33 @@ msgstr "ראיית טבלאות" msgid "Related links:" msgstr "יחסים" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13584,78 +13552,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13663,7 +13631,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13671,42 +13639,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13714,33 +13682,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13749,243 +13717,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "חבילת הקידוד של הקובץ:" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13993,99 +13961,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14093,18 +14061,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14112,12 +14080,12 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "סוג שאילתה" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -14126,76 +14094,76 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 #, fuzzy #| msgid "User" msgid "User groups" msgstr "משתמש" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "גרסת שרת" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Database server" msgid "Database level tabs" msgstr "שרת מסד נתונים" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table comments" msgid "Table level tabs" msgstr "הערות לטבלה" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy msgid "View users" msgstr "כל משתמש" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "הוספת משתמש" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "ללא הרשאות." -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "שמות עמודה" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "גרסת שרת" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "שרת מסד נתונים" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14259,21 +14227,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14336,140 +14300,140 @@ msgstr "טבלה %s נמחקה" msgid "Variable name was expected." msgstr "תבנית שם קובץ" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "בתחילת טבלה" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "השורה נמחקה" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "קבצי נתונים" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 #, fuzzy #| msgid "Other" msgid "Order" msgstr "אחר" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy msgid "State" msgstr "מצב" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "סה\"כ" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "זמן" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "סגירה" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "זמן" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "הכנס שאילתת SQL זאת למועדפים" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Label" msgid "Label:" msgstr "תווית" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "אפשר לכל משתמש לגשת לכתובת מועדפת זאת" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created!" msgstr "הסימנייה %s נוצרה" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "בעיות עם אינדקסים של טבלה `%s`" @@ -14500,29 +14464,29 @@ msgstr "" msgid "Bind parameters" msgstr "פרמטרים שגויים!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 #, fuzzy #| msgid "Bookmark this SQL query" msgid "Bookmark this SQL query:" msgstr "הכנס שאילתת SQL זאת למועדפים" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "הראה את שאילתה כאן שוב" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "ראה רק" @@ -14567,103 +14531,103 @@ msgstr "" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "מועד היצירה" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "עודכנה" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy msgid "Delete version" msgstr "גרסת שרת" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "דוח המעקב" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "העתק של המבנה" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "פעיל" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "לא פעיל" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "אין מאגרי נתונים" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 #, fuzzy msgid "Date" msgstr "נתונים" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 #, fuzzy msgid "Username" msgstr "שם משתמש:" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -14671,77 +14635,77 @@ msgctxt "None for default" msgid "None" msgstr "ללא" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format msgid "Version %1$s of %2$s was deleted." msgstr "גרסת שרת" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "טבלאות שאינן במעקב" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "מעקב אחר טבלה" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "טבלאות במעקב" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "הגרסה האחרונה" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "נתוני המעקב נמחקים" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "גרסאות" @@ -14751,13 +14715,13 @@ msgstr "גרסאות" msgid "Manage your settings" msgstr "תכונות קשר כלליות" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." msgstr "שינויים נשמרו" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14858,7 +14822,7 @@ msgstr "אין מאגרי נתונים" msgid "View dump (schema) of databases" msgstr "ראיית הוצאה (תבנית) של מאגרי נתונים" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14883,7 +14847,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin נכשל בחיסול בהליך %s. רוב הסיכויים שהוא כבר נסגר." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -15821,50 +15785,56 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Import files" +msgid "Chart title:" +msgstr "קבצי ייבוא" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 #, fuzzy msgid "Series:" msgstr "שאילתת SQL" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "ערך" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "ערך" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside column:" msgid "Series column:" msgstr "בתוך העמודה:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Number of fields" msgid "Value Column:" msgstr "מספר שדות" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -15928,54 +15898,55 @@ msgstr "הערות" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 -msgid "Internal relations" -msgstr "יחסים פנימיים" - -#: templates/table/relation/common_form.phtml:11 -#, fuzzy -#| msgid "Internal relations" -msgid "Internal relation" -msgstr "יחסים פנימיים" - -#: templates/table/relation/common_form.phtml:14 -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "" - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 #, fuzzy #| msgid "Add constraints" msgid "Foreign key constraints" msgstr "הוספת הגבלות" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 msgid "Actions" msgstr "פעולה" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 #, fuzzy #| msgid "Constraints for table" msgid "Constraint properties" msgstr "הגבלות לטבלה" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "הוספת הגבלות" -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +msgid "Internal relations" +msgstr "יחסים פנימיים" + +#: templates/table/relation/common_form.phtml:80 +#, fuzzy +#| msgid "Internal relations" +msgid "Internal relation" +msgstr "יחסים פנימיים" + +#: templates/table/relation/common_form.phtml:83 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "" + +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -16133,7 +16104,7 @@ msgid "at beginning of table" msgstr "בתחילת טבלה" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16178,7 +16149,7 @@ msgstr "מיקום" msgid "Edit partitioning" msgstr "הוספת שדה חדש" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -17431,6 +17402,38 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "טבלאות" + +#, fuzzy +#~| msgid "View" +#~ msgid "views" +#~ msgstr "תצוגה" + +#, fuzzy +#~ msgid "procedures" +#~ msgstr "תהליכים" + +#, fuzzy +#~ msgid "events" +#~ msgstr "נשלח" + +#, fuzzy +#~ msgid "functions" +#~ msgstr "פונקציה" + +#, fuzzy +#~| msgid "Alter table order by" +#~ msgid "Filter databases by name or regex" +#~ msgstr "שינוי סדר הטבלה לפי" + +#, fuzzy +#~| msgid "Alter table order by" +#~ msgid "Filter by name or regex" +#~ msgstr "שינוי סדר הטבלה לפי" + #, fuzzy #~| msgid "Tracking report" #~ msgid "Taking you to %s." diff --git a/po/hi.po b/po/hi.po index 583d8c4ebc..2b8d1a368d 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:29+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Hindi Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "योगदान" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "प्राथमिक कुंजी जोड़ें" -#: js/messages.php:430 +#: js/messages.php:431 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "%s पर एक प्राईमरी की जड़ी गयी है" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "ट्रैकिंग रिपोर्ट" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 #, fuzzy @@ -2051,261 +2063,261 @@ msgstr "" msgid "End of step" msgstr "लाइन के अंत" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "हो गया" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "कोइ डाटाबेस नहीं चुना गया है।" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 #, fuzzy #| msgid "The following queries have been executed:" msgid "The following actions will be performed:" msgstr "निम्नलिखित क्वरीों क्रियान्वित किया गया है" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "इन टेबल के लिये विशेषाधिकार जोडें" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "कोइ डाटाबेस नहीं चुना गया है।" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "सुरक्षित करें" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "ख़ोज मापदंड छिपाएँ" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "खोज मापदंड दिखाएँ" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "ढूंढें" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "कोलम नाम" -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "कोलम नाम" -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "अधिकतम सारणी" -#: js/messages.php:474 +#: js/messages.php:475 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "अधिकतम सारणी" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "ख़ोज मापदंड छिपाएँ" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "खोज मापदंड दिखाएँ" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "प्रत्येक बिन्दु एक डॅटा पंक्ति को बताता है।" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "लेबल देखने के लिए कर्सर बिन्दु के ऊपर लेकर जाएँ।" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "और बारीकी से देखने के लिए पुरे क्षेत्र का कोई भाग माउस से सेलेक्ट करें।" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "पंक्ति को देखने और संभावित सम्पादन के लिए डॅटा बिन्दु पर क्लिक करें।" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "दायीं तरफ नीचे के कोने के साथ पॉइंटर घसीटने पर क्षेत्र के अकार को बदला जा सकता है।" -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "दो कॉलम चुने" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "दो भिन्न कॉलम चुनें" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "डॅटा बिन्दु सामग्री" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "उपेक्षा करें" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "प्रतिलिपि करें" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "बिन्दु" -#: js/messages.php:508 +#: js/messages.php:509 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "लाईन समाप्त होता है" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "बहुभुज" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "ज्यामिति" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "आंतरिक वृत्त" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "बाहरी वृत्त:" -#: js/messages.php:516 +#: js/messages.php:517 #, fuzzy #| msgid "Do you want to import remaining settings?" msgid "Do you want to copy encryption key?" msgstr "क्या आप शेष सेटिंग्स आयात करना चाहते हैं?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "संदर्भ कुंजी का चयन करें" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "परदेशी कुंजी का चयन करें" -#: js/messages.php:529 +#: js/messages.php:530 #, 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:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "प्रदर्शित करने के लिए काँलम चुनें" -#: js/messages.php:532 +#: js/messages.php:533 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?" @@ -2313,98 +2325,98 @@ msgstr "" "आपने प्रदर्शन में बदलावों को सुरक्षित नहीं किया है। ये बदलाव खो जायेंगे यदि आपने सुरक्षित नहीं " "किया। क्या आप ज़ारी रखना चाहेंगे?" -#: js/messages.php:535 +#: js/messages.php:536 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "पृष्ठ नाम:" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 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:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 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:539 +#: js/messages.php:540 #, fuzzy #| msgid "Select Tables" msgid "Delete page" msgstr "पेज चुनिये" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "इकाई" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "एडिट करने के लिये पेज़ चुने" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "संबंधपरक स्कीमा को संपादित या निर्यात करें" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "संशोधनों को बचाया गया है" -#: js/messages.php:550 +#: js/messages.php:551 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "कॉलम के लिए एक विकल्प जोड़ें " -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "सबमिट" -#: js/messages.php:555 +#: js/messages.php:556 #, fuzzy #| msgid "Press escape to cancel editing" msgid "Press escape to cancel editing." msgstr "सम्पादन को रद्द करने के लिए एस्केप दबाएँ" -#: js/messages.php:557 +#: js/messages.php:558 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?" @@ -2412,49 +2424,49 @@ msgstr "" "आपने कुछ डॅटा को सम्पादित किया है पर सुरक्षित नहीं किया है। क्या आप उन्हें बिना सुरक्षित " "किये आगे बढ़ना चाहेंगे?" -#: js/messages.php:560 +#: js/messages.php:561 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder." msgstr "पुनः व्यवस्थित करने के लिए घसीटें" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "चिन्हित / अचिन्हित करने के लिए क्लिक करें" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "कोलम के नाम" -#: js/messages.php:570 +#: js/messages.php:571 #, 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:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "सभी दिखाएँ" -#: js/messages.php:574 +#: js/messages.php:575 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,163 +2474,124 @@ msgstr "" "इस टेबल में कोई भी विशिष्ट (unique) कॉलम नहीं है। इस बात कि सम्भावना है कि ग्रिड " "सम्पादन, टिक-बॉक्स, सम्पादन, प्रतिलिपि एवं मिटाने के लिंक से जुडी सुविधाएँ काम न करें।" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "मूल स्थिति" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "रद्द" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "रद्द" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "आयात" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "टेबल चुनिये" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "लिंक पर जाएँ" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "कोलम के नाम" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "नया पासवर्ड उत्पन्न करें" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "उत्पन्न करें" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "अधिक" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "सभी दिखाएँ" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Add index" msgid "Hide panel" msgstr "अनुक्रमणिका जोड़" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "बाईं फ्रेम में लोगो देखियें" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "मुख्य फ्रेम को अनुकूलित करें" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "मुख्य फ्रेम को अनुकूलित करें" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -#, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "टेबल" - -#: js/messages.php:633 -#, fuzzy -#| msgid "View" -msgid "views" -msgstr "दृश्य" - -#: js/messages.php:634 -#, fuzzy -#| msgid "Procedures" -msgid "procedures" -msgstr "प्रक्रियाओं" - -#: js/messages.php:635 -#, fuzzy -#| msgid "Event" -msgid "events" -msgstr "घटना" - -#: js/messages.php:636 -#, fuzzy -#| msgid "Connections" -msgid "functions" -msgstr "कनेक्शन" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2627,283 +2600,283 @@ msgstr "" "phpMyAdmin का नवीन संस्करण उपलब्ध है। नया संस्करण %s है जो कि %s को प्रकाशित हुआ है।" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr "नवीनतम स्थिर संस्करण:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "अद्यतन" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "दृश्य बनाइये" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "सर्वर" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "सर्वर" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "सेटिंग्स बदलें" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "खुला टेबल शो" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "उपेक्षा करें" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "यह query वापस यहीं दिखायें" -#: js/messages.php:701 +#: js/messages.php:693 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "क्या आप सचमुच \"%s\" निष्पादित चाहते है?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "टेबल की टिप्पणी" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "खोज परिणाम छिपाएँ" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "पिछला" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "अगला" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "आज" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "जनवरी" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "फरवरी" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "मार्च" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "अप्रैल" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "मई" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "जून" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "जुलाई" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "अगस्त" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "सितम्बर" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "अक्तूबर" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "नवम्बर" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "दिसम्बर" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "जनवरी" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "फरवरी" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "मार्च" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "अप्रैल" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "मई" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "जून" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "जुलाई" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "अगस्त" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "सितम्बर" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "अक्तूबर" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "नवम्बर" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "दिसमबर" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "रविवार" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "सोमवार" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "मंगलवार" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "बुधवार" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "गुरूवार" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "शुक्रवार" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "शनिवार" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2911,147 +2884,147 @@ msgid "Sun" msgstr "रविवार" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "सोमवार" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "मंगलवार" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "बुधवार" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "गुरुवार" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "शुक्रवार" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "शनिवार" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "रवि" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "सोम" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "मंगल" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "बुध" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "गुरु" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "शुक्र" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "शनि" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "सप्ताह" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "कैलेण्डर-माह-वर्ष" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "कुछ नहीं" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "घंटा" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "मिनट" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "सेकण्ड" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Text fields" msgid "Please fix this field" msgstr "पाठ फ़ील्ड" -#: js/messages.php:886 +#: js/messages.php:878 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:887 +#: js/messages.php:879 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:889 +#: js/messages.php:883 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:890 +#: js/messages.php:885 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:891 +#: js/messages.php:888 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:892 +#: js/messages.php:890 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" @@ -3063,53 +3036,53 @@ msgstr "वैध पोर्ट नहीं एक" msgid "Please enter the same value again" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:898 +#: js/messages.php:917 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:899 +#: js/messages.php:922 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:901 +#: js/messages.php:928 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:902 +#: js/messages.php:933 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "त्रुटि" @@ -3197,11 +3170,12 @@ msgstr "उप-क्वरी" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3251,7 +3225,7 @@ msgstr "वर्तमान त्रुटि को छोड़" msgid "Explain" msgstr "SQL की व्याख्या" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "रूपरेखा" @@ -3295,8 +3269,8 @@ msgid "History" msgstr "SQL- इतिहास" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3481,32 +3455,32 @@ msgstr "" msgid "Switch to dark theme" msgstr "नकल की टेबल पर स्विच करें" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "सर्वर जवाब नहीं दे रहा" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "विवरण…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3516,8 +3490,8 @@ msgstr "" msgid "Ascending" msgstr "आरोही" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3686,8 +3660,8 @@ msgstr[0] "%s टेबल के अंदर %s मैच हैं." msgstr[1] "%s टेबल के अंदर %s मैच हैं." #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3731,31 +3705,31 @@ msgstr "सभी को रद्द करें" msgid "Inside column:" msgstr "काँलम के अंदर:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 #, fuzzy #| msgid "Save directory" msgid "Save edited data" msgstr "निर्देशिका बचाना" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 #, fuzzy #| msgid "Textarea columns" msgid "Restore column order" msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 #, fuzzy #| msgid "Filter" msgid "Filter rows" msgstr "फ़िल्टर" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Search in database" msgid "Search this table" msgstr "डाटाबेस में खोजें" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 #, fuzzy #| msgid "Begin" @@ -3763,7 +3737,7 @@ msgctxt "First page" msgid "Begin" msgstr "प्रारंभ" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 #, fuzzy @@ -3772,7 +3746,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "पिछला" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 #, fuzzy @@ -3781,7 +3755,7 @@ msgctxt "Next page" msgid "Next" msgstr "अगला" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 #, fuzzy #| msgid "End" @@ -3789,79 +3763,79 @@ msgctxt "Last page" msgid "End" msgstr "आखरी" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "सभी" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "पंक्तियोंकी की संख्या:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "कुंजी सॉर्ट" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "आंशिक पाठ" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "पूर्ण पाठ" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "कुंजी संबंधपरक" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display column for relations" msgstr "काँलम सामग्री प्रदर्शित" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "द्विआधारी सामग्री दिखाने" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "BLOB सामग्री दिखाने" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "सामग्री दिखाने" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "रौ को डिलीट कर दिया" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "शायद अनुमानित हैं. [doc@faq3-11]FAQ 3.11[/doc] देखें" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -3869,50 +3843,51 @@ msgstr "शायद अनुमानित हैं. [doc@faq3-11]FAQ 3.11[/ msgid "Your SQL query has been executed successfully." msgstr "आपकी SQL कुएरी सफलता के साथ पूरी की गई है" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "इस द्रश्य में कम से कम इतनी रो हैं. और जानने के लिए %s दस्तावेज़%s पढ़ें." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "रौ देखिये" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "कुल" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "क्वरी को %01.4f सेकेंड का समय लगा" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "चुने हुओं को:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3920,27 +3895,27 @@ msgstr "चुने हुओं को:" msgid "Check all" msgstr "सभी को चेक करें" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "छपाई द्रश्य" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 #, fuzzy #| msgid "Display Features" msgid "Display chart" msgstr "फीचरस दिखाओ" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 #, fuzzy #| msgid "Link not found" msgid "Link not found!" @@ -4046,19 +4021,19 @@ msgstr "परिभाषित सूचकांक नहीं पाए #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "सूचकांक" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -4067,24 +4042,24 @@ msgid "Action" msgstr "कार्य" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "मुख्यनाम" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "अद्वितीय" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "जमा" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "प्रमुखता" @@ -4092,8 +4067,8 @@ msgstr "प्रमुखता" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -4103,8 +4078,8 @@ msgid "Collation" msgstr "क्रम में करें" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -4120,15 +4095,15 @@ msgstr "प्राथमिक कुंजी गिरा दी गयी msgid "Index %s has been dropped." msgstr "सूचकांक %s गिरा दिया गया है." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "रद्द" @@ -4165,12 +4140,13 @@ msgstr "दृश्य" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4178,7 +4154,7 @@ msgstr "टेबल" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4187,8 +4163,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4196,41 +4172,41 @@ msgid "Search" msgstr "ढूंढें" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "इनसर्ट" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "प्रिविलेज" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "कार्रवाई" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "नज़र रखना" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4241,16 +4217,16 @@ msgstr "ट्रिगर" msgid "Database seems to be empty!" msgstr "डाटाबेस खाली लग रहा है!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "क्वरी" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "नियमित कार्य" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4258,22 +4234,22 @@ msgstr "नियमित कार्य" msgid "Events" msgstr "" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "डिजाइनर" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "Textarea columns" msgid "Central columns" msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "डाटाबेस" @@ -4284,33 +4260,33 @@ msgid "User accounts" msgstr "यूसर" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "बाइनरी लोग" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "प्रतिकृति" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "प्रक्रियां" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "चरित्र सेट" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "इंजन" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4641,7 +4617,7 @@ msgstr "इन्डेक्स को PRIMARY नाम मे नहीं msgid "No index parts defined!" msgstr "सूचकांक हिस्सा परिभाषित नहीं है!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "विदेशी कुंजी बनाने में त्रुटि %1$s ( डेटा टाइप चेक करें)" @@ -5074,39 +5050,39 @@ msgstr "%s कार्यक्षमताएक एक बग के द् msgid "Click to toggle" msgstr "चयन करने के लिए क्लिक करें." -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "अपना कंप्यूटर ब्राउज़ करें:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "अपने वेब सर्वर की अपलोड डिरेक्टरी से चुने %s:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "आपकी अपलोड दिरेक्टोरी तक पहुंचा नहीं जा सकता." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 #, fuzzy #| msgid "There are no files to upload" msgid "There are no files to upload!" msgstr "अपलोड करने के लिए फाइल उपलब्ध नहीं" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "खाली" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "छापें" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 #, fuzzy #| msgid "User" msgid "Users" @@ -5281,8 +5257,8 @@ msgid "Add new column" msgstr "नया काँलम जोडें" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5349,19 +5325,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "आपको %s %s या अधिक में नवीनीकृत करना चाहिए।" -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -6249,7 +6225,7 @@ msgid "Remember file name template" msgstr "टेम्पलेट फ़ाइल नाम याद रखें" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT मूल्य जोडें" @@ -6292,7 +6268,7 @@ msgstr "phpMyAdmin विन्यास भंडारण टेबल ला #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "%s जोडें" @@ -8226,7 +8202,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 #, fuzzy #| msgid "Hide query box" msgid "Retain query box" @@ -8545,112 +8521,35 @@ msgstr "" msgid "OpenDocument Text" msgstr "दस्तावेज़ खोलें" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "प्रिय सूची भरी हुई है!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "टेबल %s को खाली किया गया है." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "द्रश्य %s रद्द किया गया है." -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "टेबल %s को रद्द किया गया है." -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "प्रिय सूची भरी हुई है!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "अज्ञात" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" - -#: libraries/controllers/TableStructureController.php:250 -#, fuzzy -#| msgid "No rows selected" -msgid "No column selected." -msgstr "कोई पंक्ति चयनित नहीं" - -#: libraries/controllers/TableStructureController.php:484 -#, fuzzy -#| msgid "Table %1$s has been altered successfully." -msgid "The columns have been moved successfully." -msgstr "%1$s टेबल को सफलतापूर्वक बदल दिया गया है" - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "%1$s टेबल को सफलतापूर्वक बदल दिया गया है." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -#, fuzzy -#| msgid "Gather errors" -msgid "Query error" -msgstr "त्रुटियों को इकट्ठा करें" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "बदलें" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "सूची" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "प्राथमिक" - -#: libraries/controllers/TableStructureController.php:1201 -#, fuzzy -#| msgid "Browse distinct values" -msgid "Distinct values" -msgstr "अलग मूल्य ब्राउस करें " - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8666,6 +8565,14 @@ msgstr "" msgid "No data to display" msgstr "कोइ डाटाबेस नहिं" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "%1$s टेबल को सफलतापूर्वक बदल दिया गया है." + #: libraries/controllers/table/TableRelationController.php:212 #, fuzzy #| msgid "Thread %s was successfully killed." @@ -8678,25 +8585,94 @@ msgstr "Thread %s को सफलता से मारा गया।" msgid "Internal relations were successfully updated." msgstr "आंतरिक संबंध जोड़ा." -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Search" msgid "Table search" msgstr "ढूंढें" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Zoom Search" msgid "Zoom search" msgstr "ज़ूम ख़ोज" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "Hide search criteria" msgid "Find and replace" msgstr "ख़ोज मापदंड छिपाएँ" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" + +#: libraries/controllers/table/TableStructureController.php:251 +#, fuzzy +#| msgid "No rows selected" +msgid "No column selected." +msgstr "कोई पंक्ति चयनित नहीं" + +#: libraries/controllers/table/TableStructureController.php:485 +#, fuzzy +#| msgid "Table %1$s has been altered successfully." +msgid "The columns have been moved successfully." +msgstr "%1$s टेबल को सफलतापूर्वक बदल दिया गया है" + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +#, fuzzy +#| msgid "Gather errors" +msgid "Query error" +msgstr "त्रुटियों को इकट्ठा करें" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "बदलें" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "सूची" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "प्राथमिक" + +#: libraries/controllers/table/TableStructureController.php:1209 +#, fuzzy +#| msgid "Browse distinct values" +msgid "Distinct values" +msgstr "अलग मूल्य ब्राउस करें " + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8706,7 +8682,7 @@ msgstr "%s विस्तार गायब है. कृपया अपन msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "कोइ बदलाव नहीं" @@ -8781,7 +8757,7 @@ msgstr "बनाइये" msgid "Create database:" msgstr "नया डाटाबेस बनाओ" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "कोइ प्रिविलेज नहीं" @@ -9495,27 +9471,27 @@ msgid "Dump has been saved to file %s." msgstr "डंप को %s फाइल में सेव किया गया है." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ने एक खाली परिणाम सेट लोताया।" -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "निम्नलिखित संरचनाओं या तो बनाया गया है या बदल दिया| यहाँ पर आप:" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 #, fuzzy #| msgid "View a structure`s contents by clicking on its name" msgid "View a structure's contents by clicking on its name." msgstr "संरचना की सामग्री को नाम पर क्लिक करके देखें" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -9523,53 +9499,53 @@ msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "सेटिंग्स को बदलने के लिए \"विकल्प\" लिंक पर क्लिक करें" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link." msgstr "इसकी संरचना को संपादित करने के लिए \"संरचना\" लिंक पर क्लिक करें" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "डेटाबेस पर जायें" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "%s के लिए डेटा लापता" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "टेबल पर जायें" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "केवल संरचना" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" msgstr "दृश्य पर जायें" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr " %s  कोलम पर इन्डेक्स बनाऐं" @@ -9592,75 +9568,75 @@ msgstr "" msgid "Binary" msgstr "बइनरी" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "बइनरी - एडिट मत करिये" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "अथवा" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "वेब सर्वर अपलोड निर्देशिका" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "इनसर्ट" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "और फिर" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "इसको नया रौ में जोडे" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "पिछले पृष्ट पर वापस जाएँ" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "एक और नई रो इनसर्ट करें" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "इस पृष्ठ पर वापस जाएँ" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "अगली रो को संपादित करें" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9672,11 +9648,11 @@ msgstr "" msgid "Value" msgstr "मूल्य" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "SQL क्वेरी शो" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "इनसर्ट रो id: %1$d" @@ -9694,45 +9670,45 @@ msgstr "कोई एन्कोडिंग नहीं" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table prefix:" msgstr "टेबल के उपसर्ग को पुनर्स्थापना करें" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Copy table with prefix" msgid "Copy table with prefix:" msgstr "टेबल को इस उपसर्ग के साथ प्रतिलिपि बनाएँ" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 #, fuzzy #| msgid "Fr" msgid "From" msgstr "शुक्रवार" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Add index" msgid "Add table prefix:" msgstr "अनुक्रमणिका जोड़" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 #, fuzzy #| msgid "Add index" msgid "Add prefix" msgstr "अनुक्रमणिका जोड़" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -9964,8 +9940,8 @@ msgstr "प्रक्रियाओं" msgid "Views:" msgstr "दृश्य" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "दिखाओ" @@ -10007,10 +9983,9 @@ msgstr[0] "" msgstr[1] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "Alter table order by" -msgid "Filter databases by name or regex" -msgstr "टेबल क्रमांक को बदलिये " +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -10019,12 +9994,6 @@ msgstr "टेबल क्रमांक को बदलिये " msgid "Clear fast filter" msgstr "फ़ाइल के रूप में सहेजें" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "Alter table order by" -msgid "Filter by name or regex" -msgstr "टेबल क्रमांक को बदलिये " - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -10433,7 +10402,7 @@ msgstr "डेटाबेस का नाम इसमें पुनर् #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10444,7 +10413,7 @@ msgstr "आपके पास यहाँ उपस्थित होने #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -10464,18 +10433,18 @@ msgstr "डेटाबेस को हटा दे" msgid "Drop the database (DROP)" msgstr "डेटाबेस को ड्रप करे" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "केवल संरचना" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "संरचना और डाटा" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "केवल डाटा" @@ -10489,7 +10458,7 @@ msgstr "डेटाबेस को ______ में कॉपी करें" msgid "CREATE DATABASE before copying" msgstr "डेटाबेस कॉपी करने से पहले डेटाबेस का निर्माण करें" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "शर्तें जोडें" @@ -10529,164 +10498,164 @@ msgstr "" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "(database.table) में टेबल को कापी करें" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "नकल की टेबल पर स्विच करें" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "टेबल रख-रखाव" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "टेबल का विश्लेषण करें" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "टेबल को चेक करें" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "टेबल को चेक करें" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "देफ्रागमेंट टेबल" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "टेबल %s को ताज़ा किया गया ।" -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "टेबल को Flush करें (\"FLUSH\")" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "टेबल को अनुकूलित करें" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "टेबल को मरम्मत करें" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "टेबल या डेटा हटाएँ" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "टेबल को खाली करें" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "डेटाबेस को ______ छोड़ें" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "विश्लेषण" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "चेक" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "सुधारना" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "फिर से बनाना" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "मरम्मत" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "बंद" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "विभाजन रखरखाव" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "विभाजन %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "विभाजन हटायें" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "सम्बन्ध की अखंडता की जाँच करें:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "एक ही टेबल में स्थानांतरित नहीं कर सकते!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 #, fuzzy msgid "Can't copy table to same one!" msgstr "एक ही टेबल में प्रतिलिपि नहीं कर सकते!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "%s टेबल को %s में मूव कर दिया." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "%s टेबल को %s में कापी कर दिया." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "%s टेबल को %s में मूव कर दिया." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "%s टेबल को %s में कापी कर दिया." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "टेबल का नाम खाली है!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "इस प्रारूप के कोई विकल्प नहीं है" @@ -10870,7 +10839,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -10896,21 +10865,21 @@ msgstr "वर्णन" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "वीएव के लिए संरचना" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -11022,7 +10991,7 @@ msgid "Database:" msgstr "डाटाबेस" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11139,7 +11108,7 @@ msgid "Data creation options" msgstr "परिवर्तन के विकल्प" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -11208,8 +11177,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11217,93 +11186,93 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Metadata Headers" msgid "Metadata" msgstr "मेटाडेटा हेडर" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, fuzzy, php-format #| msgid "Metadata Headers" msgid "Metadata for %s" msgstr "मेटाडेटा हेडर" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "रचना:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "पिछला नवीनीकरण:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "पिछली जाँच:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "उपयोग में है" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "दुम्प टेबलओं के लिए प्रतिबन्ध" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "टेबल के लिए प्रतिबन्ध" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "दुम्प टेबलओं के लिए प्रतिबन्ध" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "टेबल में:" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "शुन्य मूल्य के लिए AUTO_INCREMENT का प्रयोग न करें" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT मूल्य जोडें" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "टेबल के लिए MIME प्रकार" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "टेबल के लिए संबंध" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "वीएव के लिए संरचना" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11559,9 +11528,9 @@ msgstr "संबंधपरक स्कीमा" msgid "Table of contents" msgstr "लेख - सूची" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "अतिरिक्त" @@ -11725,63 +11694,63 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "त्रुटि: रिश्ता पहले से ही मौजूद है." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "विदेशी कुंजी रिश्ता जोड़ा." -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "त्रुटि: रिलेशन नहीं जोड़ा गया." -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Relational features are disabled!" msgstr "त्रुटि: रिलेशन नहीं जोड़ा गया." -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "आंतरिक संबंध जोड़ा." -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "त्रुटि: रिलेशन नहीं जोड़ा गया." -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "विदेशी कुंजी रिश्ता जोड़ा." -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "त्रुटि: रिलेशन नहीं जोड़ा गया." -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "त्रुटि: रिलेशन नहीं जोड़ा गया." -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11834,101 +11803,101 @@ msgstr "सामग्री दिखाने" msgid "Please see the documentation on how to update your column_info table. " msgstr "" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "बुकमार्क किया हुआ SQL-क्वरी" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL- इतिहास" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 #, fuzzy #| msgid "Persistent connections" msgid "Persistent recently used tables" msgstr "के लिए" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "Persistent connections" msgid "Persistent favorite tables" msgstr "के लिए" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "प्रयोक्ता वरीयताएँ" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Configuration: %s" msgid "Configurable menus" msgstr "विन्यास: %s" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 #, fuzzy #| msgid "Reload navigation frame" msgid "Hide/show navigation items" msgstr "नेविगेशन फ्रेम पुनः लोड" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Rename table to" msgid "Remembering Designer Settings" msgstr "टेबल का नाम बदलें" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "अमान्य निर्यात प्रकार" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "सेटअप करने के लिए त्वरित कदम उन्नत सुविधाओं:" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "कोई विवरण नहीं" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11936,14 +11905,14 @@ msgid "" "configuration storage there." msgstr "phpMyAdmin विन्यास भंडारण टेबल लापता" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "phpMyAdmin विन्यास भंडारण टेबल लापता" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -12125,8 +12094,8 @@ msgstr "यूसर नेम" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "यूसर नेम" @@ -12134,7 +12103,7 @@ msgstr "यूसर नेम" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "पासवर्ड" @@ -12863,7 +12832,7 @@ msgstr[1] "%s डाटाबेस को सफलता से डिली msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "संस्करण" @@ -12871,102 +12840,98 @@ msgstr "संस्करण" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "अक्षम" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "कोई प्रिविलेज नहीं।" -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "ेेोीाेेGRANT के अतिरिक्त सभी इंजन शामिल।" #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "डाटा पढने की अनुमति देता है।" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "डेटा डालने और हटाने की अनुमति देता है।" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "डेटा को बदलने की अनुमति देता है।" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "डेटा को हटाने की अनुमति देता है।" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "नया डेटाबेस और टेबल बनाने की अनुमति देता है।" #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "डेटाबेस और टेबल को हटाने की अनुमति देता है।" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "सर्वर बन्द करने की अनुमति देता है।" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 #, fuzzy #| msgid "Allows viewing processes of all users" msgid "Allows viewing processes of all users." msgstr "सभी यूसरओं प्रक्रियाओं को देखने की अनुमति" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "डेटा फ़ाइलों में आयात और निर्यात करने की अनुमति देता है।" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "इस MySQL संस्करण में कोई प्रभाव नहीं है।" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "सूचक बनाने और हटाने की अनुमति देता है।" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "मौजूदा टेबल की संरचना में फेरबदल की अनुमति देता है।" #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "डेटाबेस की पूरी सूची तक पहुंचा देता है।" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12974,41 +12939,41 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "नया अस्थायी टेबल बनाने की अनुमति देता है।" #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "सर्वर सेटिंग्स को पुन: लोड और सर्वर के कैश निस्तब्धता की अनुमति देता है।" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "नए दृश्य बनाने की अनुमति देता है।" #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "घटना अनुसूचक के लिए घटना को स्थापित करने की अनुमति देता है" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 #, fuzzy #| msgid "Allows creating and dropping indexes." msgid "Allows creating and dropping triggers." @@ -13016,27 +12981,27 @@ msgstr "सूचक बनाने और हटाने की अनुम #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "नया नियमित कार्यक्रम बनाने की अनुमति देता है।" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "संग्रहित routines की फेरबदल और छोड़ने की अनुमति देता है।" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "यूसर खातों बनाने, गिराना और नाम बदलने की अनुमति देता है।" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "संग्रहीत दिनचर्या को क्रियान्वित करने की अनुमति देता है।" @@ -13050,8 +13015,8 @@ msgstr "नहीं" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -13095,31 +13060,31 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "यूसर के समकालिक कनेक्शन की संख्या सिमित है।" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -13127,7 +13092,7 @@ msgid "Routine" msgstr "नियमित कार्य" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -13146,14 +13111,14 @@ msgstr "संग्रहीत दिनचर्या को क्रिय #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "केवल टेबल के प्रिविलेज" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -13165,7 +13130,7 @@ msgid "Administration" msgstr "एडमिनिस्ट्रेशन" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "वैश्विक प्रिविलेज" @@ -13176,15 +13141,15 @@ msgid "Global" msgstr "वैश्विक" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "केवल डाटाबेस के प्रिविलेज" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "नया टेबल बनाने की अनुमति देता है।" -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "टेबल को हटाने की अनुमति देता है।" @@ -13207,7 +13172,7 @@ msgid "Native MySQL Authentication" msgstr "कुकी प्रमाणीकरण" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "प्रवेश जानकारी" @@ -13232,8 +13197,8 @@ msgstr "यूसर नेम" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Log name" msgid "Host name" @@ -13255,241 +13220,241 @@ msgstr "प्रमाणीकरण" msgid "Password Hashing Method" msgstr "शब्दकूट हैशिंग" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "%s का पासवर्ड सफलतापूर्वक बदल गया।" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "आपने %s के privileges वापस ले लिया." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "नया प्रयोक्ता जोड़ें" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "यूसर के लिए डेटाबेस" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "एक ही नाम के साथ डेटाबेस बनाएँ और सभी विशेषाधिकारों को अनुदान।" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "वाइल्डकार्ड नाम (यूसरनाम\\_%) पर सभी विशेषाधिकार अनुदान।" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "\"%s\" डेटाबेस पर सभी विशेषाधिकारों का अनुदान करें।" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "द्रश्य %s रद्द दिया गया है." -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "अनुदान" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "कोई यूसर नहीं।" -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "कोई" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "वैश्विक" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "डेटाबेस-विशेष" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "वाइल्डकार्ड" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "डेटाबेस-विशेष" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "प्रिविलेज एडिट करें" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "वापस लो" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "सर्वर को संपादित करें" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… पुराने रखना।" -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… पुराने यूसर को टेबल से हटाना।" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "केवल कोलम के प्रिविलेज" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "चयनित यूसर हटायें" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "यूसर से सभी सक्रिय विशेषाधिकार रद्द करने और उन्हें बाद में हटा।" -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "विशेषाधिकार पुनः लोड" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "आपने %s के प्रिविलेज अपडेट कर दिया ।" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "चयनित यूसर को सफलतापूर्वक हटा दिया गया है।" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "उपयोगकर्ता %s पहले से मौजूद है!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "प्रिविलेज" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "यूजर" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "प्रिविलेज एडिट करें" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "User" msgid "User account" msgstr "यूसर" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "यूसर सिंहावलोकन" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13498,7 +13463,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -13507,11 +13472,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "आपने नया यूसर बना लिया।" @@ -13757,35 +13722,35 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 #, fuzzy #| msgid "Enable highlighting" msgid "Enable charts dragging" msgstr "उजागर सक्षम" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 #, fuzzy msgid "Refresh rate" msgstr "ताज़ा करना" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 #, fuzzy #| msgid "Textarea columns" msgid "Chart columns" msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" @@ -13856,7 +13821,7 @@ msgid "Statements" msgstr "रो आँकड़े" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -13889,35 +13854,35 @@ msgstr "खुला टेबल शो" msgid "Related links:" msgstr "पसंबंधित लिंक" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL सर्वर से कनेक्ट नहीं कर सका" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "लेनदेन की संख्या जिन्होंने अस्थायी द्विआधारी लॉग कैश का प्रयोग किया।" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13925,78 +13890,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "mysqld ने कितनी अस्थायी फ़ाइलें बनायीं।" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -14004,7 +13969,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -14012,42 +13977,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -14055,33 +14020,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -14090,244 +14055,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "आयात की गई फ़ाइल का प्रारूप" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14335,99 +14300,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14435,18 +14400,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14454,13 +14419,13 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "ट्रैकिंग सक्रिय नहीं है." -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -14469,77 +14434,77 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 #, fuzzy #| msgid "User" msgid "User groups" msgstr "यूसर" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Show versions" msgid "Server level tabs" msgstr "संस्करण दिखाएँ" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Database server" msgid "Database level tabs" msgstr "डेटाबेस सर्वर" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table comments" msgid "Table level tabs" msgstr "टेबल टिप्पणी:" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy #| msgid "View" msgid "View users" msgstr "दृश्य" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "नया प्रयोक्ता जोड़ें" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "कोई प्रिविलेज नहीं" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "कोलम नाम" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Show versions" msgid "Server-level tabs" msgstr "संस्करण दिखाएँ" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "डेटाबेस सर्वर" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14605,21 +14570,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14686,127 +14647,127 @@ msgstr "%1$s टेबल बना दिया गया है" msgid "Variable name was expected." msgstr "टेबल नाम टेम्पलेट" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "टेबल के शुरू में" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "रौ को डिलीट कर दिया" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "डेटा फ़ाइलें" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 #, fuzzy #| msgid "Other" msgid "Order" msgstr "अन्य" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy #| msgid "Startup" msgid "State" msgstr "स्टार्टअप" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "कुल समय:" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "समय" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "बंद" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "समय" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "इस SQL-क्वरी को बुकमार्क कीजिये" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Label" msgid "Label:" msgstr "लेबल" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "हर उपयोकर्ता को अनुमति दें इस बुकमार्क का उपयोग करने के लिए" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created!" msgstr "बुकमार्क %s बनाया" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "PHP कोड की तरह दिखाएँ" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -14818,7 +14779,7 @@ msgstr "" "इस टेबल में कोई भी विशिष्ट (unique) कॉलम नहीं है। इस बात कि सम्भावना है कि ग्रिड " "सम्पादन, टिक-बॉक्स, सम्पादन, प्रतिलिपि एवं मिटाने के लिंक से जुडी सुविधाएँ काम न करें।" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -14830,7 +14791,7 @@ msgstr "" "इस टेबल में कोई भी विशिष्ट (unique) कॉलम नहीं है। इस बात कि सम्भावना है कि ग्रिड " "सम्पादन, टिक-बॉक्स, सम्पादन, प्रतिलिपि एवं मिटाने के लिंक से जुडी सुविधाएँ काम न करें।" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`%s` टेबल के अनुक्रमित के साथ समस्याएँ" @@ -14861,29 +14822,29 @@ msgstr "" msgid "Bind parameters" msgstr "गलत पैरामीटर्स!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 #, fuzzy #| msgid "Bookmark this SQL query" msgid "Bookmark this SQL query:" msgstr "इस SQL-क्वरी को बुकमार्क कीजिये " -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "एक ही नाम के सभी बुकमार्क्स बदल दें" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "सीमांकक" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "यह query वापस यहीं दिखायें" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "केवल देखिये" @@ -14931,123 +14892,123 @@ msgstr "ट्रैकिंग निष्क्रिय %s.%s" msgid "Deactivate now" msgstr "निष्क्रिय करे" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "बनाया" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "अद्यतन" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "संस्करण बनाएँ" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "ट्रैकिंग रिपोर्ट" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "संरचना क्षणचित्र" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "सक्रिय" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "निष्क्रिय" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "ट्रैकिंग कि स्थिति" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "इस टेबल के लिए ट्रैकिंग डेटा हटाएँ" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "कोइ डाटाबेस नहिं" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, fuzzy, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "%s दिखाएँ तारीख %s से %s तक, उपयोक्ता %s %s" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "SQL दुम्प ( फाइल डाउनलोड )" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "SQL ढेर लगाना" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "यह विकल्प आपके टेबल और डेटा को बदल देगा." -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "SQL अमल" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "%s के रूप में निर्यात" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "डेटा हेरफेर कथन" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "डेटा परिभाषा कथन" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "तिथि" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "यूसर नाम" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "संस्करण %s क्षणचित्र (SQL कोड)" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "कोई नहीं" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 #, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" msgstr "डेटा परिभाषा पर नज़र रखना" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 #, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "डेटा आपरेशन पर नज़र रखना" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -15055,67 +15016,67 @@ msgstr "" "आप दुम्प को क्रियान्वित कर सकते हैं एक अस्थायी डेटाबेस का उपयोग करें. सुनिश्चित करें कि आप " "ऐसा करने के लिए विशेषाधिकार हैं कृपया." -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "इन दो लाइन को टिप्पणी बना दें अगर आपको इनकी आवश्यकता नहीं है।" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL कथन निर्यात. कृपया दुम्प को या तो कॉपी करें य फिर क्रियान्वित करें।" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "टेबल `%s` की ट्रैकिंग रिपोर्ट" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "ट्रैकिंग सक्रिय है" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "ट्रैकिंग सक्रिय है" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Version %1$s of %2$s was deleted." msgstr "%s संस्करण बनायें %s.%s" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "संस्करण %s बन चूका है, ट्रैकिंग %s.%s के लिए सक्रिय" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "लापता टेबलएं" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "टेबलओं को ट्रैक करें" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "ट्रैक की गयी टेबलएं" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "पिछला संस्करण" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "ट्रैकिंग डेटा हटाएँ" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "संस्करण" @@ -15125,13 +15086,13 @@ msgstr "संस्करण" msgid "Manage your settings" msgstr "सेटिंग्स प्रबंधक" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." msgstr "विन्यास को बचाया गया है" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -15233,7 +15194,7 @@ msgstr "कोइ डाटाबेस नहिं" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -15258,7 +15219,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "thread %s को मारने में phpMyAdmin असफल हुआ। शायद वह खतम हो चुका है।" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -16188,57 +16149,63 @@ msgstr "" msgid "Stacked" msgstr "जमा" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Default title" +msgid "Chart title:" +msgstr "डिफ़ॉल्ट शीर्षक" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 #, fuzzy #| msgid "SQL queries" msgid "Series:" msgstr "SQL क्वरी" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 #, fuzzy #| msgid "X Axis label" msgid "X-Axis label:" msgstr "X Axis लेबल" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "मूल्य" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 #, fuzzy #| msgid "Y Axis label" msgid "Y-Axis label:" msgstr "Y Axis लेबल" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "मूल्य" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside column:" msgid "Series column:" msgstr "काँलम के अंदर:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Values for column %s" msgid "Value Column:" msgstr "%s स्तंभ के लिए मूल्य" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -16309,54 +16276,55 @@ msgstr "टिप्पणी" msgid "Drag to reorder" msgstr "पुनः व्यवस्थित करने के लिए घसीटें" -#: templates/table/relation/common_form.phtml:7 -msgid "Internal relations" -msgstr "आंतरिक संबंध" - -#: templates/table/relation/common_form.phtml:11 -msgid "Internal relation" -msgstr "आंतरिक संबंध" - -#: templates/table/relation/common_form.phtml:14 -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "एक आंतरिक संबंध आवश्यक नहीं है जब एक विदेशी कुंजी संबंध मौजूद है." - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 #, fuzzy #| msgid "Foreign key constraint" msgid "Foreign key constraints" msgstr "विदेशी कुंजी बाधा" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 #, fuzzy #| msgid "Action" msgid "Actions" msgstr "कार्य" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 #, fuzzy #| msgid "Constraints for table" msgid "Constraint properties" msgstr "टेबल के लिए प्रतिबन्ध" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 msgid "Foreign key constraint" msgstr "विदेशी कुंजी बाधा" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "शर्तें जोडें" -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +msgid "Internal relations" +msgstr "आंतरिक संबंध" + +#: templates/table/relation/common_form.phtml:80 +msgid "Internal relation" +msgstr "आंतरिक संबंध" + +#: templates/table/relation/common_form.phtml:83 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "एक आंतरिक संबंध आवश्यक नहीं है जब एक विदेशी कुंजी संबंध मौजूद है." + +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16516,7 +16484,7 @@ msgid "at beginning of table" msgstr "टेबल के शुरू में" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16565,7 +16533,7 @@ msgstr "विभाजित" msgid "Edit partitioning" msgstr "विभाजन हटायें" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -17890,6 +17858,41 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert 0 पर सेट है" +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "टेबल" + +#, fuzzy +#~| msgid "View" +#~ msgid "views" +#~ msgstr "दृश्य" + +#, fuzzy +#~| msgid "Procedures" +#~ msgid "procedures" +#~ msgstr "प्रक्रियाओं" + +#, fuzzy +#~| msgid "Event" +#~ msgid "events" +#~ msgstr "घटना" + +#, fuzzy +#~| msgid "Connections" +#~ msgid "functions" +#~ msgstr "कनेक्शन" + +#, fuzzy +#~| msgid "Alter table order by" +#~ msgid "Filter databases by name or regex" +#~ msgstr "टेबल क्रमांक को बदलिये " + +#, fuzzy +#~| msgid "Alter table order by" +#~ msgid "Filter by name or regex" +#~ msgstr "टेबल क्रमांक को बदलिये " + #, fuzzy #~| msgid "Tracking report" #~ msgid "Taking you to %s." diff --git a/po/hr.po b/po/hr.po index ff2730e5cf..4bf3ede60a 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:24+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Croatian =20) ? 1 : 2;\n" "X-Generator: Weblate 2.5-dev\n" -#: changelog.php:37 license.php:30 +#: changelog.php:37 license.php:33 #, php-format msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " @@ -41,7 +41,7 @@ msgstr "Kliknite za sortiranje" msgid "Showing rows %1$s - %2$s." msgstr "Prikazivanje redaka" -#: db_create.php:61 +#: db_create.php:62 #, php-format msgid "Database %1$s has been created." msgstr "Baza podataka %1$s uspješno je izrađena." @@ -50,13 +50,13 @@ msgstr "Baza podataka %1$s uspješno je izrađena." msgid "Database comment" msgstr "Komentar baze podataka" -#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:601 +#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:599 #: templates/columns_definitions/column_definitions_form.phtml:84 msgid "Table comments:" msgstr "Komentari tablice:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1568 +#: libraries/insert_edit.lib.php:1575 #: libraries/navigation/nodes/NodeColumn.php:34 #: libraries/plugins/export/ExportHtmlword.php:288 #: libraries/plugins/export/ExportHtmlword.php:384 @@ -66,13 +66,14 @@ msgstr "Komentari tablice:" #: libraries/plugins/export/ExportTexytext.php:282 #: libraries/plugins/export/ExportTexytext.php:373 #: libraries/plugins/export/PMA_ExportPdf.php:472 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:882 libraries/tracking.lib.php:978 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 +#: libraries/tracking.lib.php:892 libraries/tracking.lib.php:990 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:10 -#: templates/table/relation/common_form.phtml:43 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:27 +#: templates/table/relation/common_form.phtml:79 #: templates/table/relation/foreign_key_row.phtml:176 #: templates/table/relation/foreign_key_row.phtml:188 #: templates/table/relation/internal_relational_row.phtml:73 @@ -92,14 +93,14 @@ msgstr "Stupac" #: libraries/plugins/export/ExportTexytext.php:283 #: libraries/plugins/export/ExportTexytext.php:374 #: libraries/plugins/export/PMA_ExportPdf.php:474 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 #: libraries/rte/rte_list.lib.php:78 libraries/rte/rte_list.lib.php:106 #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2606 libraries/tracking.lib.php:883 -#: libraries/tracking.lib.php:975 +#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -109,7 +110,7 @@ msgstr "Vrsta" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:709 -#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1577 +#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1584 #: libraries/plugins/export/ExportHtmlword.php:294 #: libraries/plugins/export/ExportHtmlword.php:390 #: libraries/plugins/export/ExportLatex.php:517 @@ -118,9 +119,9 @@ msgstr "Vrsta" #: libraries/plugins/export/ExportTexytext.php:284 #: libraries/plugins/export/ExportTexytext.php:375 #: libraries/plugins/export/PMA_ExportPdf.php:476 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 -#: libraries/tracking.lib.php:885 libraries/tracking.lib.php:981 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/tracking.lib.php:895 libraries/tracking.lib.php:993 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 @@ -137,9 +138,9 @@ msgstr "Null" #: libraries/plugins/export/ExportTexytext.php:285 #: libraries/plugins/export/ExportTexytext.php:376 #: libraries/plugins/export/PMA_ExportPdf.php:478 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 -#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:886 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:896 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 @@ -151,8 +152,8 @@ msgstr "Zadano" #: libraries/plugins/export/ExportOdt.php:488 #: libraries/plugins/export/ExportTexytext.php:378 #: libraries/plugins/export/PMA_ExportPdf.php:487 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:640 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:663 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 msgid "Links to" msgstr "Povezano s" @@ -163,37 +164,38 @@ msgstr "Povezano s" #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:381 #: libraries/plugins/export/PMA_ExportPdf.php:494 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:651 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:664 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:649 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 #: templates/columns_definitions/table_fields_definitions.phtml:65 msgid "Comments" msgstr "Komentari" -#: db_datadict.php:155 libraries/controllers/TableStructureController.php:1189 -#: libraries/controllers/TableStructureController.php:1194 -#: libraries/tracking.lib.php:925 +#: db_datadict.php:155 +#: libraries/controllers/table/TableStructureController.php:1197 +#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:79 +#: templates/table/structure/display_structure.phtml:80 msgid "Primary" msgstr "Primarni" -#: db_datadict.php:165 js/messages.php:370 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:371 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 -#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:403 -#: libraries/mult_submits.lib.php:417 +#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:408 +#: libraries/mult_submits.lib.php:422 #: libraries/plugins/export/ExportHtmlword.php:654 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:710 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2971 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3620 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1013 libraries/tracking.lib.php:1018 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2973 +#: libraries/server_privileges.lib.php:2993 +#: libraries/server_privileges.lib.php:3631 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -202,32 +204,32 @@ msgstr "Primarni" msgid "No" msgstr "Ne" -#: db_datadict.php:165 js/messages.php:515 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:516 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 #: libraries/config/FormDisplay.tpl.php:280 -#: libraries/controllers/TableStructureController.php:770 -#: libraries/controllers/TableStructureController.php:1440 -#: libraries/controllers/TableStructureController.php:1449 -#: libraries/controllers/TableStructureController.php:1454 -#: libraries/controllers/TableStructureController.php:1459 -#: libraries/controllers/TableStructureController.php:1464 -#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:199 -#: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 -#: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 +#: libraries/controllers/table/TableStructureController.php:771 +#: libraries/controllers/table/TableStructureController.php:1448 +#: libraries/controllers/table/TableStructureController.php:1457 +#: libraries/controllers/table/TableStructureController.php:1462 +#: libraries/controllers/table/TableStructureController.php:1467 +#: libraries/controllers/table/TableStructureController.php:1472 +#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:200 +#: libraries/mult_submits.lib.php:344 libraries/mult_submits.lib.php:377 +#: libraries/mult_submits.lib.php:406 libraries/mult_submits.lib.php:420 #: libraries/plugins/export/ExportHtmlword.php:655 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:788 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:711 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2968 -#: libraries/server_privileges.lib.php:2989 -#: libraries/server_privileges.lib.php:3617 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1011 libraries/tracking.lib.php:1016 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2970 +#: libraries/server_privileges.lib.php:2991 +#: libraries/server_privileges.lib.php:3628 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -240,8 +242,8 @@ msgstr "Da" msgid "View dump (schema) of database" msgstr "Prikaži ispis (shemu) baze podataka" -#: db_export.php:51 db_tracking.php:102 export.php:382 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:176 +#: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 +#: libraries/controllers/DatabaseStructureController.php:157 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "U bazi podataka nisu pronađene tablice." @@ -258,7 +260,7 @@ msgstr "Tablice" #: db_export.php:66 libraries/Menu.php:320 libraries/Menu.php:427 #: libraries/Util.php:3407 libraries/Util.php:3417 libraries/Util.php:3423 -#: libraries/Util.php:3702 libraries/Util.php:4339 libraries/Util.php:4356 +#: libraries/Util.php:3703 libraries/Util.php:4340 libraries/Util.php:4357 #: libraries/central_columns.lib.php:729 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:320 @@ -266,10 +268,10 @@ msgstr "Tablice" #: libraries/config/user_preferences.forms.php:218 #: libraries/config/user_preferences.forms.php:259 #: libraries/config/user_preferences.forms.php:285 -#: libraries/import.lib.php:1299 libraries/navigation/nodes/NodeColumn.php:44 +#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:44 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 -#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:877 +#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:887 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -321,13 +323,13 @@ msgstr "" "Konfiguracija za pohranu phpMyAdmin-a je deaktivirana. Kako biste saznali " "razloge, kliknite %sovdje%s." -#: db_qbe.php:135 +#: db_qbe.php:136 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to choose at least one column to display!" msgstr "Morate odabrati najmanje jedan stupac za prikazivanje" -#: db_qbe.php:152 +#: db_qbe.php:154 #, php-format msgid "Switch to %svisual builder%s" msgstr "Prebaci se na %svizualnu izradu%s" @@ -356,7 +358,7 @@ msgstr "" msgid "No tables selected." msgstr "Nema odabrane baze podataka." -#: db_tracking.php:146 +#: db_tracking.php:149 msgid "Database Log" msgstr "Log baze podataka" @@ -388,7 +390,7 @@ msgstr "" msgid "Bad type!" msgstr "Pogrešna vrsta!" -#: export.php:276 +#: export.php:278 msgid "Bad parameters!" msgstr "Pogrešni parametri!" @@ -396,107 +398,107 @@ msgstr "Pogrešni parametri!" msgid "Invalid export type" msgstr "Pogrešna vrsta izvoza" -#: gis_data_editor.php:119 +#: gis_data_editor.php:117 #, php-format msgid "Value for the column \"%s\"" msgstr "Vrijednost stupca \"%s\"" -#: gis_data_editor.php:147 +#: gis_data_editor.php:145 #: templates/table/gis_visualization/gis_visualization.phtml:37 msgid "Use OpenStreetMaps as Base Layer" msgstr "Iskoristi OpenStreetMaps kao osnovni sloj" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:169 +#: gis_data_editor.php:167 #, fuzzy msgid "SRID:" msgstr "SRID" -#: gis_data_editor.php:192 +#: gis_data_editor.php:190 #, fuzzy, php-format #| msgid "Geometry" msgid "Geometry %d:" msgstr "Geometrija" -#: gis_data_editor.php:214 +#: gis_data_editor.php:212 #, fuzzy #| msgid "Point" msgid "Point:" msgstr "Točka" -#: gis_data_editor.php:215 gis_data_editor.php:242 gis_data_editor.php:298 -#: gis_data_editor.php:371 js/messages.php:504 +#: gis_data_editor.php:213 gis_data_editor.php:240 gis_data_editor.php:296 +#: gis_data_editor.php:369 js/messages.php:505 msgid "X" msgstr "X" -#: gis_data_editor.php:218 gis_data_editor.php:246 gis_data_editor.php:302 -#: gis_data_editor.php:377 js/messages.php:505 +#: gis_data_editor.php:216 gis_data_editor.php:244 gis_data_editor.php:300 +#: gis_data_editor.php:375 js/messages.php:506 msgid "Y" msgstr "Y" -#: gis_data_editor.php:240 gis_data_editor.php:296 gis_data_editor.php:369 -#: js/messages.php:507 +#: gis_data_editor.php:238 gis_data_editor.php:294 gis_data_editor.php:367 +#: js/messages.php:508 #, php-format msgid "Point %d" msgstr "Točka %d" -#: gis_data_editor.php:253 gis_data_editor.php:309 gis_data_editor.php:387 -#: js/messages.php:513 +#: gis_data_editor.php:251 gis_data_editor.php:307 gis_data_editor.php:385 +#: js/messages.php:514 msgid "Add a point" msgstr "Dodaj točku" -#: gis_data_editor.php:270 +#: gis_data_editor.php:268 #, fuzzy, php-format #| msgid "Linestring" msgid "Linestring %d:" msgstr "Linija teksta" -#: gis_data_editor.php:273 gis_data_editor.php:350 +#: gis_data_editor.php:271 gis_data_editor.php:348 #, fuzzy #| msgid "Outer Ring" msgid "Outer ring:" msgstr "Vanjski Prsten" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:273 gis_data_editor.php:350 #, fuzzy, php-format #| msgid "Inner Ring" msgid "Inner ring %d:" msgstr "Unutarnji Prsten" -#: gis_data_editor.php:312 +#: gis_data_editor.php:310 msgid "Add a linestring" msgstr "Dodaj novu liniju niza znakova" -#: gis_data_editor.php:313 gis_data_editor.php:392 js/messages.php:514 +#: gis_data_editor.php:311 gis_data_editor.php:390 js/messages.php:515 msgid "Add an inner ring" msgstr "Dodaj unutarnji prsten" -#: gis_data_editor.php:334 +#: gis_data_editor.php:332 #, fuzzy, php-format #| msgid "Polygon" msgid "Polygon %d:" msgstr "Poligon" -#: gis_data_editor.php:398 +#: gis_data_editor.php:396 msgid "Add a polygon" msgstr "Dodaj poligon" -#: gis_data_editor.php:404 +#: gis_data_editor.php:402 msgid "Add geometry" msgstr "Dodaj geometriju" -#: gis_data_editor.php:410 js/messages.php:345 libraries/DbSearch.php:462 -#: libraries/DisplayResults.php:1783 libraries/browse_foreigners.lib.php:142 +#: gis_data_editor.php:408 js/messages.php:346 libraries/DbSearch.php:462 +#: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:151 #: libraries/display_export.lib.php:404 libraries/display_export.lib.php:410 -#: libraries/display_import.lib.php:403 libraries/index.lib.php:42 -#: libraries/insert_edit.lib.php:1547 libraries/insert_edit.lib.php:1584 +#: libraries/display_import.lib.php:403 libraries/index.lib.php:45 +#: libraries/insert_edit.lib.php:1554 libraries/insert_edit.lib.php:1591 #: libraries/normalization.lib.php:168 libraries/normalization.lib.php:825 #: libraries/operations.lib.php:47 libraries/operations.lib.php:114 #: libraries/operations.lib.php:266 libraries/operations.lib.php:309 #: libraries/operations.lib.php:806 libraries/operations.lib.php:877 -#: libraries/operations.lib.php:926 libraries/operations.lib.php:1336 -#: libraries/operations.lib.php:1653 +#: libraries/operations.lib.php:926 libraries/operations.lib.php:1339 +#: libraries/operations.lib.php:1656 #: libraries/plugins/auth/AuthenticationCookie.php:239 #: libraries/replication_gui.lib.php:124 libraries/replication_gui.lib.php:163 #: libraries/replication_gui.lib.php:328 libraries/replication_gui.lib.php:465 @@ -505,12 +507,12 @@ msgstr "Dodaj geometriju" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2343 -#: libraries/server_privileges.lib.php:3114 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_user_groups.lib.php:285 -#: libraries/sql_query_form.lib.php:369 libraries/sql_query_form.lib.php:429 -#: libraries/tracking.lib.php:536 libraries/tracking.lib.php:656 +#: libraries/server_privileges.lib.php:2345 +#: libraries/server_privileges.lib.php:3116 +#: libraries/server_privileges.lib.php:3735 +#: libraries/server_user_groups.lib.php:290 +#: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 +#: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 #: prefs_manage.php:280 prefs_manage.php:358 #: templates/columns_definitions/column_definitions_form.phtml:64 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 @@ -523,11 +525,11 @@ msgstr "Dodaj geometriju" msgid "Go" msgstr "Kreni" -#: gis_data_editor.php:413 +#: gis_data_editor.php:411 msgid "Output" msgstr "Izlaz" -#: gis_data_editor.php:416 +#: gis_data_editor.php:414 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -539,7 +541,7 @@ msgstr "" msgid "Succeeded" msgstr "Pristup odbijen!" -#: import.php:59 js/messages.php:588 +#: import.php:59 js/messages.php:589 msgid "Failed" msgstr "" @@ -607,7 +609,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "Nije moguće učitati dodatke za uvoz. Provjerite svoju instalaciju!" -#: import.php:669 libraries/sql.lib.php:744 libraries/sql.lib.php:1468 +#: import.php:669 libraries/sql.lib.php:754 libraries/sql.lib.php:1485 #, fuzzy, php-format #| msgid "Bookmark %s created" msgid "Bookmark %s has been created." @@ -643,7 +645,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "" -#: import_status.php:111 js/messages.php:444 libraries/Util.php:797 +#: import_status.php:111 js/messages.php:445 libraries/Util.php:797 #: libraries/export.lib.php:523 #: libraries/plugins/schema/ExportRelationSchema.php:301 user_password.php:268 msgid "Back" @@ -668,7 +670,7 @@ msgstr "" msgid "General settings" msgstr "Opće osobine relacija" -#: index.php:191 js/messages.php:617 +#: index.php:191 js/messages.php:618 #: libraries/display_change_password.lib.php:54 #: libraries/display_change_password.lib.php:57 user_password.php:262 msgid "Change password" @@ -795,7 +797,11 @@ msgstr "" msgid "List of changes" msgstr "Bez izmjena" -#: index.php:453 +#: index.php:438 libraries/server_plugins.lib.php:83 +msgid "License" +msgstr "Licenca" + +#: index.php:460 #, fuzzy #| msgid "" #| "Your configuration file contains settings (root with no password) that " @@ -813,7 +819,7 @@ msgstr "" "pokrenut je sa zadanim postavkama i kao takav otvoren je upadima. Potrebno " "je ispraviti ovaj sigurnosni nedostatak." -#: index.php:470 +#: index.php:477 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -823,7 +829,7 @@ msgstr "" "opcija nije kompatibilna s programom phpMyAdmin i može prouzrokovati " "oštećivanje nekih podataka!" -#: index.php:485 +#: index.php:492 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -833,7 +839,7 @@ msgstr "" "tablicu znakova. Bez proširenja mbstring, phpMyAdmin nije u mogućnosti " "pravilno razdjeljivati naredbe i može doći do neočekivanih rezultata." -#: index.php:502 +#: index.php:509 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than " @@ -841,17 +847,17 @@ msgid "" "expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:521 +#: index.php:528 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:537 +#: index.php:544 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Konfiguracijska datoteka potražuje tajnu lozinku (blowfish_secret)." -#: index.php:550 +#: index.php:557 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. It is strongly recommended to remove it " @@ -859,7 +865,7 @@ msgid "" "may be compromised by unauthorized people downloading your configuration." msgstr "" -#: index.php:566 +#: index.php:573 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -871,12 +877,12 @@ msgstr "" "Dodatne osobine za rad s relacijski tablicama su isključene. Kako biste " "saznali razloge, pritisnite %sovdje%s." -#: index.php:573 +#: index.php:580 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" -#: index.php:619 +#: index.php:626 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -885,7 +891,7 @@ msgstr "" "Verzija %s vaše PHP MySQL biblioteke razlikuje se oda vaše verzije %s MySQL " "poslužitelja. Ovo bi moglo prouzrokovati nepredviđeno ponašanje." -#: index.php:647 +#: index.php:654 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -908,7 +914,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "Želite li zaista " -#: js/messages.php:45 libraries/mult_submits.lib.php:397 +#: js/messages.php:45 libraries/mult_submits.lib.php:402 msgid "You are about to DESTROY a complete database!" msgstr "UNIŠTIT ĆETE CJELOKUPNU BAZU PODATAKA!" @@ -1066,7 +1072,7 @@ msgid "Save & close" msgstr "Spremi kao datoteku" #: js/messages.php:109 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1551 prefs_manage.php:364 +#: libraries/insert_edit.lib.php:1558 prefs_manage.php:364 #: prefs_manage.php:375 msgid "Reset" msgstr "Povrat" @@ -1145,10 +1151,10 @@ msgstr "Dodaj %s polja" msgid "You have to add at least one column." msgstr "Morate dodati najmanje jedno polje." -#: js/messages.php:129 libraries/insert_edit.lib.php:1549 +#: js/messages.php:129 libraries/insert_edit.lib.php:1556 #: templates/columns_definitions/column_definitions_form.phtml:159 #: templates/table/index_form.phtml:237 -#: templates/table/relation/common_form.phtml:108 +#: templates/table/relation/common_form.phtml:127 msgid "Preview SQL" msgstr "" @@ -1199,8 +1205,8 @@ msgstr "Lozinke se ne podudaraju!" msgid "Removing Selected Users" msgstr "Ukloni odabrane korisnike" -#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:461 -#: libraries/tracking.lib.php:831 +#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:471 +#: libraries/tracking.lib.php:841 msgid "Close" msgstr "Zatvori" @@ -1228,7 +1234,7 @@ msgstr "Redak je izbrisan" #. l10n: Other, small valued, queries #: js/messages.php:155 libraries/ServerStatusData.php:130 -#: libraries/server_status_queries.lib.php:148 +#: libraries/server_status_queries.lib.php:150 msgid "Other" msgstr "Ostalo" @@ -1415,7 +1421,7 @@ msgstr "Perzijski" msgid "Traffic" msgstr "Promet" -#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4330 +#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4331 #: libraries/server_status_monitor.lib.php:258 #, fuzzy #| msgid "General relation features" @@ -1432,9 +1438,9 @@ msgstr "Poravnaj s mrežom" msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:216 libraries/DisplayResults.php:1477 +#: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1551,7 +1557,7 @@ msgstr "Opće osobine relacija" msgid "Current settings" msgstr "Opće osobine relacija" -#: js/messages.php:253 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:253 #, fuzzy #| msgid "Report title" msgid "Chart title" @@ -1643,21 +1649,21 @@ msgstr "Analiziraj" msgid "Explain output" msgstr "Objasni SQL" -#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4326 +#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4327 #: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:396 #: libraries/rte/rte_list.lib.php:104 -#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:282 -#: libraries/tracking.lib.php:1623 +#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:284 +#: libraries/tracking.lib.php:1639 msgid "Status" msgstr "Stanje" -#: js/messages.php:289 js/messages.php:870 +#: js/messages.php:289 js/messages.php:862 #: libraries/plugins/export/ExportHtmlword.php:484 #: libraries/plugins/export/ExportOdt.php:600 #: libraries/plugins/export/ExportTexytext.php:445 #: libraries/plugins/export/PMA_ExportPdf.php:314 #: libraries/rte/rte_list.lib.php:93 -#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:239 +#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:243 msgid "Time" msgstr "Vrijeme" @@ -1753,10 +1759,10 @@ msgid "" msgstr "" #: js/messages.php:322 libraries/Menu.php:355 libraries/Menu.php:457 -#: libraries/Menu.php:578 libraries/Util.php:4329 libraries/Util.php:4344 -#: libraries/Util.php:4361 libraries/config/messages.inc.php:260 +#: libraries/Menu.php:578 libraries/Util.php:4330 libraries/Util.php:4345 +#: libraries/Util.php:4362 libraries/config/messages.inc.php:260 #: libraries/display_import.lib.php:108 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:241 +#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:241 #: setup/frames/menu.inc.php:26 msgid "Import" msgstr "Uvoz" @@ -1825,7 +1831,13 @@ msgstr "Test" msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 libraries/server_variables.lib.php:159 +#: js/messages.php:343 +#, fuzzy +#| msgid "Bad parameters!" +msgid "No parameters found!" +msgstr "Pogrešni parametri!" + +#: js/messages.php:347 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 @@ -1836,72 +1848,72 @@ msgstr "" msgid "Cancel" msgstr "Odustani" -#: js/messages.php:349 libraries/Header.php:457 +#: js/messages.php:350 libraries/Header.php:457 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" msgstr "Opće osobine relacija" -#: js/messages.php:350 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:351 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:353 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:354 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:124 #, fuzzy msgid "Loading…" msgstr "Lokalno" -#: js/messages.php:354 +#: js/messages.php:355 msgid "Request aborted!!" msgstr "" -#: js/messages.php:355 +#: js/messages.php:356 #, fuzzy #| msgid "Processes" msgid "Processing request" msgstr "Procesi" -#: js/messages.php:356 +#: js/messages.php:357 #, fuzzy #| msgid "Query cache" msgid "Request failed!!" msgstr "Pohrana upita" -#: js/messages.php:357 +#: js/messages.php:358 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Procesi" -#: js/messages.php:358 +#: js/messages.php:359 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:359 +#: js/messages.php:360 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:360 libraries/db_common.inc.php:73 +#: js/messages.php:361 libraries/db_common.inc.php:73 #: libraries/db_table_exists.lib.php:33 libraries/server_databases.lib.php:462 msgid "No databases selected." msgstr "Nema odabrane baze podataka." -#: js/messages.php:361 +#: js/messages.php:362 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "Brisanje stupca" -#: js/messages.php:362 +#: js/messages.php:363 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "Dodaj primarni ključ" -#: js/messages.php:363 +#: js/messages.php:364 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1911,240 +1923,240 @@ msgstr "Dodaj primarni ključ" msgid "OK" msgstr "U redu" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:367 +#: js/messages.php:368 #, fuzzy #| msgid "Rename database to" msgid "Renaming databases" msgstr "Preimenuj bazu podataka u" -#: js/messages.php:368 +#: js/messages.php:369 #, fuzzy #| msgid "Copy database to" msgid "Copying database" msgstr "Kopiraj bazu podataka u" -#: js/messages.php:369 +#: js/messages.php:370 #, fuzzy #| msgid "Charset" msgid "Changing charset" msgstr "Tablica znakova" -#: js/messages.php:373 libraries/Util.php:3289 +#: js/messages.php:374 libraries/Util.php:3289 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Onemogući provjere stranih znakova" -#: js/messages.php:376 +#: js/messages.php:377 #, fuzzy msgid "Failed to get real row count." msgstr "Zapisivanje datoteke na disk nije uspjelo." -#: js/messages.php:379 +#: js/messages.php:380 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Traži" -#: js/messages.php:380 +#: js/messages.php:381 #, fuzzy msgid "Hide search results" msgstr "SQL upit" -#: js/messages.php:381 +#: js/messages.php:382 #, fuzzy msgid "Show search results" msgstr "SQL upit" -#: js/messages.php:382 +#: js/messages.php:383 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Pretraživanje" -#: js/messages.php:383 +#: js/messages.php:384 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Brisanje %s" -#: js/messages.php:387 +#: js/messages.php:388 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:388 libraries/DisplayResults.php:4832 -#: libraries/DisplayResults.php:5091 libraries/Menu.php:347 -#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3709 -#: libraries/Util.php:3710 libraries/Util.php:4328 libraries/Util.php:4343 -#: libraries/Util.php:4360 libraries/config/messages.inc.php:254 +#: js/messages.php:389 libraries/DisplayResults.php:4850 +#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 +#: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 +#: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2448 -#: libraries/server_privileges.lib.php:2527 -#: libraries/server_privileges.lib.php:2873 -#: libraries/server_privileges.lib.php:3532 -#: libraries/server_status_monitor.lib.php:321 prefs_manage.php:306 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2875 +#: libraries/server_privileges.lib.php:3543 +#: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 msgid "Export" msgstr "Izvoz" -#: js/messages.php:391 libraries/rte/rte_routines.lib.php:742 +#: js/messages.php:392 libraries/rte/rte_routines.lib.php:742 msgid "ENUM/SET editor" msgstr "ENUM/SET uređivač" -#: js/messages.php:392 +#: js/messages.php:393 #, php-format msgid "Values for column %s" msgstr "Vrijednosti za stupac %s" -#: js/messages.php:393 +#: js/messages.php:394 msgid "Values for a new column" msgstr "Vrijednosti za novi stupac" -#: js/messages.php:394 +#: js/messages.php:395 #, 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:395 +#: js/messages.php:396 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Dodaj novog korisnika" -#: js/messages.php:399 +#: js/messages.php:400 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:403 +#: js/messages.php:404 #, fuzzy msgid "Hide query box" msgstr "SQL upit" -#: js/messages.php:404 +#: js/messages.php:405 #, fuzzy msgid "Show query box" msgstr "SQL upit" -#: js/messages.php:405 libraries/Console.php:88 libraries/Console.php:217 -#: libraries/DisplayResults.php:3457 libraries/DisplayResults.php:4816 +#: js/messages.php:406 libraries/Console.php:88 libraries/Console.php:217 +#: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4834 #: libraries/Index.php:721 libraries/Util.php:727 libraries/Util.php:1238 -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:119 +#: libraries/server_user_groups.lib.php:121 #: libraries/server_variables.lib.php:242 #: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 msgid "Edit" msgstr "Uređivanje" -#: js/messages.php:406 libraries/Console.php:89 libraries/DbSearch.php:360 -#: libraries/DisplayResults.php:3526 libraries/DisplayResults.php:4800 +#: js/messages.php:407 libraries/Console.php:89 libraries/DbSearch.php:360 +#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4818 #: libraries/central_columns.lib.php:854 #: libraries/central_columns.lib.php:1200 libraries/display_export.lib.php:227 -#: libraries/server_user_groups.lib.php:129 -#: libraries/sql_query_form.lib.php:416 libraries/tracking.lib.php:480 +#: libraries/server_user_groups.lib.php:131 +#: libraries/sql_query_form.lib.php:417 libraries/tracking.lib.php:490 #: setup/frames/index.inc.php:187 setup/frames/index.inc.php:295 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Izbriši" -#: js/messages.php:407 libraries/DisplayResults.php:915 -#: libraries/DisplayResults.php:923 +#: js/messages.php:408 libraries/DisplayResults.php:919 +#: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d nije valjani broj retka." -#: js/messages.php:408 -#: libraries/controllers/table/TableSearchController.php:435 -#: libraries/controllers/table/TableSearchController.php:920 -#: libraries/sql.lib.php:193 tbl_change.php:159 +#: js/messages.php:409 +#: libraries/controllers/table/TableSearchController.php:432 +#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "Pretraži strane vrijednosti" -#: js/messages.php:409 +#: js/messages.php:410 msgid "No auto-saved query" msgstr "" -#: js/messages.php:410 +#: js/messages.php:411 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Varijabla" -#: js/messages.php:413 libraries/normalization.lib.php:889 +#: js/messages.php:414 libraries/normalization.lib.php:889 msgid "Pick" msgstr "" -#: js/messages.php:414 +#: js/messages.php:415 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "Nema odabranih redova" -#: js/messages.php:415 +#: js/messages.php:416 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Traži u bazi podataka" -#: js/messages.php:417 +#: js/messages.php:418 #, 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:420 +#: js/messages.php:421 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "Slobodna memorija" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Are you sure?" msgstr "" -#: js/messages.php:423 +#: js/messages.php:424 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Atributi" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "Dodaj primarni ključ" -#: js/messages.php:430 +#: js/messages.php:431 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Primarni ključ je dodan na %s." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Izvještaj o praćenju" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 #, fuzzy @@ -2152,564 +2164,525 @@ msgstr "" msgid "End of step" msgstr "Pri završetku tablice" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 #, fuzzy msgid "Done" msgstr "Podaci" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Nema odabrane baze podataka." -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Dodaj privilegije za sljedeću tablicu" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Nema odabrane baze podataka." -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Spremi" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy msgid "Hide search criteria" msgstr "SQL upit" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy msgid "Show search criteria" msgstr "SQL upit" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Traži" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Nazivi stupaca" -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Nazivi stupaca" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 #, fuzzy msgid "Maximum value:" msgstr "Nema baza podataka" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy msgid "Hide find and replace criteria" msgstr "SQL upit" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy msgid "Show find and replace criteria" msgstr "SQL upit" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 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:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Dodaj/Izbriši stupce polja" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "Odaberite dva različita stupca" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Veličina pokazatelja podataka" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignoriraj" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Kopiraj" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Točka" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Linija teksta" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Poligon" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometrija" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Unutarnji Prsten" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Outer Ring" msgid "Outer ring" msgstr "Vanjski Prsten" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Odaberite referentni ključ" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Odaberite strani ključ" -#: js/messages.php:529 +#: js/messages.php:530 #, 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:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Broj stranice:" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 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:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 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:539 +#: js/messages.php:540 #, fuzzy #| msgid "Select Tables" msgid "Delete page" msgstr "Odaberite tablice" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "Jedinica" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Odaberite tablicu za uređivanje" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "Netočan broj porta" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Uredi ili izvozi relacijske šeme" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Izmjene su spremljene" -#: js/messages.php:550 +#: js/messages.php:551 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "Dodaj opciju stupcu " -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Podnesi" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Nazivi stupaca" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Prikaži sve" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Izvorni položaj" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Odustani" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Prekinuto" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 #, fuzzy msgid "Import status" msgstr "Uvezi datoteke" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "Najveća veličina datoteke zapisnika" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Odaberite tablice" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 #, fuzzy msgid "Go to link:" msgstr "Nema baza podataka" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Nazivi stupaca" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Generiraj lozinku" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Generiraj" -#: js/messages.php:620 +#: js/messages.php:621 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pon" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Prikaži sve" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "Indeksi" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "Prikaži logo u lijevom okviru" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "Postavi glavni okvir" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "Postavi glavni okvir" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 #, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "Tablice" - -#: js/messages.php:633 -#, fuzzy -#| msgid "View" -msgid "views" -msgstr "Prikaz" - -#: js/messages.php:634 -#, fuzzy -#| msgid "Procedures" -msgid "procedures" -msgstr "Postupci" - -#: js/messages.php:635 -#, fuzzy -#| msgid "Event" -msgid "events" -msgstr "Događaj" - -#: js/messages.php:636 -#, fuzzy -#| msgid "Functions" -msgid "functions" -msgstr "Funkcije" - -#: js/messages.php:640 -#, 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:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2719,137 +2692,137 @@ msgstr "" "Najnovija verzija je %s objavljena na %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 #, fuzzy msgid ", latest stable version:" msgstr "Izradi relaciju" -#: js/messages.php:649 +#: js/messages.php:641 #, fuzzy msgid "up to date" msgstr "Nema baza podataka" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 #, fuzzy msgid "Create view" msgstr "Izradi relaciju" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy msgid "Send error report" msgstr "ID poslužitelja" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy msgid "Submit error report" msgstr "ID poslužitelja" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Opće osobine relacija" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Prikaži otvorene tablice" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignoriraj" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Ovaj upit ponovno prikaži ovdje" -#: js/messages.php:701 +#: js/messages.php:693 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Želite li zaista " -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL upit" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Komentari tablice" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy msgid "Hide arguments" msgstr "SQL upit" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Prethodni" -#: js/messages.php:748 +#: js/messages.php:740 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2857,96 +2830,96 @@ msgid "Next" msgstr "Sljedeće" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ukupno" -#: js/messages.php:755 +#: js/messages.php:747 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binarno" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "Veljača" -#: js/messages.php:757 +#: js/messages.php:749 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Ožu" -#: js/messages.php:758 +#: js/messages.php:750 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Tra" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Svi" -#: js/messages.php:760 +#: js/messages.php:752 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Lip" -#: js/messages.php:761 +#: js/messages.php:753 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Srp" -#: js/messages.php:762 +#: js/messages.php:754 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Kol" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "Rujan" -#: js/messages.php:764 +#: js/messages.php:756 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Lis" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "Studeno" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "Prosinac" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Sij" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Velj" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Ožu" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Tra" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2954,78 +2927,78 @@ msgid "May" msgstr "Svi" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Srp" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Kol" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Ruj" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Stu" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Pro" -#: js/messages.php:801 +#: js/messages.php:793 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ned" -#: js/messages.php:802 +#: js/messages.php:794 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pon" -#: js/messages.php:803 +#: js/messages.php:795 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Uto" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "Srijeda" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "ČEtvrtak" -#: js/messages.php:806 +#: js/messages.php:798 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pet" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "Subota" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3033,86 +3006,86 @@ msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Sri" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ned" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Uto" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sri" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Čet" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pet" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 #, fuzzy #| msgid "Wiki" msgid "Wk" @@ -3121,81 +3094,81 @@ msgstr "Wiki" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "bez kompresije" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Sat" -#: js/messages.php:872 +#: js/messages.php:864 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "u upotrebi" -#: js/messages.php:873 +#: js/messages.php:865 #, fuzzy #| msgid "per second" msgid "Second" msgstr "po sekundi" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Upotrijebi tekstualno polje" -#: js/messages.php:886 +#: js/messages.php:878 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "Netočan broj porta" -#: js/messages.php:887 +#: js/messages.php:879 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "Netočan broj porta" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "Netočan broj porta" -#: js/messages.php:889 +#: js/messages.php:883 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "Netočan broj porta" -#: js/messages.php:890 +#: js/messages.php:885 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "Netočan broj porta" -#: js/messages.php:891 +#: js/messages.php:888 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "Netočan broj porta" -#: js/messages.php:892 +#: js/messages.php:890 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" @@ -3207,53 +3180,53 @@ msgstr "Netočan broj porta" msgid "Please enter the same value again" msgstr "Netočan broj porta" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "Netočan broj porta" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "Netočan broj porta" -#: js/messages.php:898 +#: js/messages.php:917 #, 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:899 +#: js/messages.php:922 #, 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:901 +#: js/messages.php:928 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "Netočan broj porta" -#: js/messages.php:902 +#: js/messages.php:933 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "Netočan broj porta" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Pogreška" @@ -3341,11 +3314,12 @@ msgstr "unutar upita" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3394,7 +3368,7 @@ msgstr "" msgid "Explain" msgstr "Objasni SQL" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Izrada profila" @@ -3438,8 +3412,8 @@ msgid "History" msgstr "SQL povijest" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3625,7 +3599,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Prebaci se na kopiranu tablicu" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -3634,28 +3608,28 @@ msgid "" msgstr "" "(ili priključak lokalnog MySQL poslužitelja nije ispravno konfiguriran)" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Poslužitelj ne odgovara" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Detalji…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Povezivanje kontrolnih korisnika na način kako je definirano u vašoj " "konfiguraciji nije uspjelo." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3665,8 +3639,8 @@ msgstr "" msgid "Ascending" msgstr "Uzlazno" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3835,8 +3809,8 @@ msgstr[0] "%s poklapanja unutar tablice %s" msgstr[1] "%s poklapanja unutar tablice %s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3880,29 +3854,29 @@ msgstr "Ukloni sav odabir" msgid "Inside column:" msgstr "Unutar polja:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 #, fuzzy msgid "Save edited data" msgstr "Osnovna mapa podataka" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "Dodaj/Izbriši stupce polja" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 #, fuzzy msgid "Filter rows" msgstr "Datoteke" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Search in database" msgid "Search this table" msgstr "Traži u bazi podataka" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 #, fuzzy #| msgid "Begin" @@ -3910,7 +3884,7 @@ msgctxt "First page" msgid "Begin" msgstr "Na vrh stranice" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 #, fuzzy @@ -3919,7 +3893,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Prethodni" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 #, fuzzy @@ -3928,7 +3902,7 @@ msgctxt "Next page" msgid "Next" msgstr "Sljedeće" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 #, fuzzy #| msgid "End" @@ -3936,85 +3910,85 @@ msgctxt "Last page" msgid "End" msgstr "Završetak" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Sve" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of fields" msgid "Number of rows:" msgstr "Broj polja" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Presloži po ključu" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Djelomični tekstovi" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Potpuni tekstovi" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Relacijski ključ" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Disable foreign key checks" msgid "Display column for relations" msgstr "Onemogući provjere stranih znakova" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Pretvaranje preglednika" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Redak je izbrisan" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Eliminiraj" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Može biti približno. Pogledajte [doc@faq3-11]ČPP 3.11[/doc]" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -4022,7 +3996,8 @@ msgstr "Može biti približno. Pogledajte [doc@faq3-11]ČPP 3.11[/doc]" msgid "Your SQL query has been executed successfully." msgstr "Vaš SQL upit uspješno je izvršen" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -4030,43 +4005,43 @@ msgid "" msgstr "" "Ovaj prikaz sadrži najmanje ovoliko redaka. Proučite %sdokumentaciju%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Prikazivanje redaka" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "ukupno" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "Upit je trajao %01.4f sek" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "S odabirom:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -4074,27 +4049,27 @@ msgstr "S odabirom:" msgid "Check all" msgstr "Označi sve" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Prikaz ispisa" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Operacije rezultata upita" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Prikaži PDF shemu" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 #, fuzzy #| msgid "Link not found" msgid "Link not found!" @@ -4206,19 +4181,19 @@ msgstr "Nema definiranog indeksa!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Indeksi" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -4227,24 +4202,24 @@ msgid "Action" msgstr "Aktivnost" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Naziv ključa" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Jedinstveno" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Pakirano" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Najvažnije" @@ -4252,8 +4227,8 @@ msgstr "Najvažnije" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -4263,8 +4238,8 @@ msgid "Collation" msgstr "Uspoređivanje" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -4280,15 +4255,15 @@ msgstr "Primarni ključ je odbačen." msgid "Index %s has been dropped." msgstr "Index %s je odbačen." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Ispusti" @@ -4326,12 +4301,13 @@ msgstr "Prikaz" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4339,7 +4315,7 @@ msgstr "Tablica" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4348,8 +4324,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4357,41 +4333,41 @@ msgid "Search" msgstr "Traži" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Umetni" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilegije" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Operacije" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Praćenje" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4402,16 +4378,16 @@ msgstr "Okidači" msgid "Database seems to be empty!" msgstr "Baza podataka izgleda praznom!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Upit" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rutine" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4419,22 +4395,22 @@ msgstr "Rutine" msgid "Events" msgstr "Događaji" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Kreator" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Dodaj/Izbriši stupce polja" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Baze podataka" @@ -4445,33 +4421,33 @@ msgid "User accounts" msgstr "Korisnik" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Binarni zapisnik" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikacija" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Varijable" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Tablice znakova" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Pogoni" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "Dodatci" @@ -4802,7 +4778,7 @@ msgstr "Preimenovanje indeksa u PRIMARY nije moguće!" msgid "No index parts defined!" msgstr "Nema definiranih dijelova indeksa!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5235,39 +5211,39 @@ msgstr "Na funkcionalnost %s utječe poznati nedostatak. Pogledajte %s" msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Pretraži računalo:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "mapa učitavanja web poslužitelja" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Mapu koju ste odabrali za potrebe učitavanja nije moguće dohvatiti." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 #, fuzzy msgid "There are no files to upload!" msgstr "Provjeri tablicu" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Isprazni" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "Izvrši" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Ispiši" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 #, fuzzy #| msgid "User" msgid "Users" @@ -5447,8 +5423,8 @@ msgid "Add new column" msgstr "Dodaj %s polja" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5520,19 +5496,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "Trebali biste nadograditi na %s %s ili kasniju." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -6382,7 +6358,7 @@ msgid "Remember file name template" msgstr "Predložak naziva datoteka" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj vrijednost AUTO_INCREMENT" @@ -6425,7 +6401,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Dodaj %s" @@ -8149,7 +8125,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 #, fuzzy msgid "Retain query box" msgstr "SQL upit" @@ -8441,113 +8417,35 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Otvori tekst dokumenta" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Tablica %s je očišćena." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "Index %s je ispušten" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "Tablica %s je odbačen" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "nepoznato" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: libraries/controllers/TableStructureController.php:250 -#, fuzzy -#| msgid "No rows selected" -msgid "No column selected." -msgstr "Nema odabranih redova" - -#: libraries/controllers/TableStructureController.php:484 -#, 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.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "Tablica %1$s uspješno je izmijenjena." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -#, fuzzy -#| msgid "Query type" -msgid "Query error" -msgstr "Vrsta upita" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Promijeni" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Indeks" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Puni tekst" - -#: libraries/controllers/TableStructureController.php:1201 -#, fuzzy -#| msgid "Browse distinct values" -msgid "Distinct values" -msgstr "Pretraži prepoznatljive vrijednosti" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8563,6 +8461,14 @@ msgstr "" msgid "No data to display" msgstr "Nema baza podataka" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "Tablica %1$s uspješno je izmijenjena." + #: libraries/controllers/table/TableRelationController.php:212 #, fuzzy #| msgid "Thread %s was successfully killed." @@ -8575,24 +8481,94 @@ msgstr "Grana %s uspješno je prekinuta." msgid "Internal relations were successfully updated." msgstr "Dodane interne relacije" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Search" msgid "Table search" msgstr "Traži" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Search" msgid "Zoom search" msgstr "Traži" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy msgid "Find and replace" msgstr "SQL upit" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: libraries/controllers/table/TableStructureController.php:251 +#, fuzzy +#| msgid "No rows selected" +msgid "No column selected." +msgstr "Nema odabranih redova" + +#: libraries/controllers/table/TableStructureController.php:485 +#, 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/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +#, fuzzy +#| msgid "Query type" +msgid "Query error" +msgstr "Vrsta upita" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Promijeni" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Indeks" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Puni tekst" + +#: libraries/controllers/table/TableStructureController.php:1209 +#, fuzzy +#| msgid "Browse distinct values" +msgid "Distinct values" +msgstr "Pretraži prepoznatljive vrijednosti" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8602,7 +8578,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Bez izmjena" @@ -8677,7 +8653,7 @@ msgstr "Izradi" msgid "Create database:" msgstr "Izradi novu bazu podataka" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Bez privilegija" @@ -9478,71 +9454,71 @@ msgid "Dump has been saved to file %s." msgstr "Izbacivanje je spremljeno u datoteku %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan komplet rezultata (npr. nula redova)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Nema baza podataka" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "Uredi postavke za %s" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Nema baza podataka" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Samo strukturu" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, fuzzy, php-format #| msgid "Export views" msgid "Go to view: %s" msgstr "Vrsta izvoza" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" @@ -9566,75 +9542,75 @@ msgstr "Funkcija" msgid "Binary" msgstr "Binarno" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "" " Zbog svoje duljine,
uređivanje ovog polja možda neće biti moguće " -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Binarno - ne uređuj" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Ili" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "mapa učitavanja web poslužitelja" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Umetni" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Ponovno pokreni umetanje s %s redaka" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "i potom" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Umetni kao novi redak" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 #, fuzzy msgid "Show insert query" msgstr "Prikazivanje SQL upita" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Kreni nazad na prethodnu stranicu" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Umetni dodatni novi redak" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Kreni nazad na ovu stranicu" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Uredi sljedeći redak" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9644,7 +9620,7 @@ msgstr "" "Pomoću tipke TAB premještate se od jedne vrijednost do druge vrijednost, " "odnosno s tipkama CTRL+Strelice za premještanje bilo kamo" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9656,11 +9632,11 @@ msgstr "" msgid "Value" msgstr "Vrijednost" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "Prikazivanje SQL upita" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "Umetnut ID retka: %1$d" @@ -9678,43 +9654,43 @@ msgstr "bez kompresije" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table prefix:" msgstr "Zamijeni prefiks tablice" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Copy table with prefix" msgid "Copy table with prefix:" msgstr "Kopiraj tablicu sa prefiksom" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Pet" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Add prefix" msgid "Add table prefix:" msgstr "Dodaj prefiks" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "Dodaj prefiks" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -9946,8 +9922,8 @@ msgstr "Postupci" msgid "Views:" msgstr "Prikaz" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Prikaži" @@ -9990,10 +9966,9 @@ msgstr[1] "" msgstr[2] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "table name" -msgid "Filter databases by name or regex" -msgstr "naziv tablice" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -10002,12 +9977,6 @@ msgstr "naziv tablice" msgid "Clear fast filter" msgstr "Spremi kao datoteku" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "table name" -msgid "Filter by name or regex" -msgstr "naziv tablice" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -10433,7 +10402,7 @@ msgstr "Preimenuj bazu podataka u" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10444,7 +10413,7 @@ msgstr "Nemate dovoljno privilegija da boravite ovdje!" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -10464,18 +10433,18 @@ msgstr "Ukloni bazu podataka" msgid "Drop the database (DROP)" msgstr "Ukloni bazu podataka" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Samo strukturu" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Strukturu i podatke" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Samo podatke" @@ -10489,7 +10458,7 @@ msgstr "Kopiraj bazu podataka u" msgid "CREATE DATABASE before copying" msgstr "Prije kopiranja izradi bazu podataka (CREATE DATABASE)" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Dodaj prisile" @@ -10529,63 +10498,63 @@ msgstr "Pogon pohrane" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Kopiraj tablicu u (bazapodataka.tablica)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Prebaci se na kopiranu tablicu" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Održavanje tablice" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Analiziraj tablicu" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Provjeri tablicu" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Provjeri tablicu" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Defragmentiraj tablicu" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "Tablica %s je ispražnjena." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Isprazni tablicu (\"FLUSH\")" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Optimiziraj tablicu" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Popravi tablicu" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 #, fuzzy @@ -10593,104 +10562,104 @@ msgstr "Popravi tablicu" msgid "Delete data or table" msgstr "Izbacivanje podataka za tablicu" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "Isprazni tablicu (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 #, fuzzy msgid "Delete the table (DROP)" msgstr "Nema baza podataka" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Analiziraj" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Provjeri" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Optimiziraj" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Ponovno izgradi" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Popravi" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "Zatvori" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "Održavanje particije" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "Particija %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "Ukloni particioniranje" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Provjeri referencijalan integritet:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Premještanje u istu tablicu nije moguće!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Kopiranje u istu tablicu nije moguće!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tablica %s premještena je u %s." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tablica %s kopirana je u %s." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "Tablica %s premještena je u %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "Tablica %s kopirana je u %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Naziv tablice je prazan!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10881,7 +10850,7 @@ msgstr "Opcije izvoza baze podataka" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Izbacivanje podataka za tablicu" @@ -10907,21 +10876,21 @@ msgstr "Opis" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Tablična struktura za tablicu" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Struktura za pregledavanje" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Unutarnja struktura za pregledavanje" @@ -11035,7 +11004,7 @@ msgid "Database:" msgstr "Baza podataka" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11151,7 +11120,7 @@ msgid "Data creation options" msgstr "Opcije preoblikovanja" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -11220,8 +11189,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11229,98 +11198,98 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "data" msgid "Metadata" msgstr "Podatci" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 #, fuzzy #| msgid "Creation" msgid "Creation:" msgstr "Izrada" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 #, fuzzy #| msgid "Last update" msgid "Last update:" msgstr "Posljednje ažuriranje" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 #, fuzzy #| msgid "Last check" msgid "Last check:" msgstr "Posljednja provjera" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "u upotrebi" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Ograničenja za izbačene tablice" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Ograničenja za tablicu" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Ograničenja za izbačene tablice" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Unutar tablica:" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Dodaj vrijednost AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Dodaj vrijednost AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "MIME VRSTE ZA TABLICU" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "RELACIJE TABLICE" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Struktura za pregledavanje" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11579,9 +11548,9 @@ msgstr "Shema relacija" msgid "Table of contents" msgstr "Sadržaj tablice" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Dodatno" @@ -11831,63 +11800,63 @@ msgstr "Oblikuje tekst kao SQL upit s naglašavanjem sintakse." msgid "Formats text as XML with syntax highlighting." msgstr "Oblikuje tekst kao SQL upit s naglašavanjem sintakse." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Pogreška: Relacija već postoji." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "Dodana je relacija FOREIGN KEY" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Pogreška: Relacija nije dodana." -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Relational features are disabled!" msgstr "Pogreška: Relacija nije dodana." -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "Dodane interne relacije" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "Pogreška: Relacija nije dodana." -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "Dodana je relacija FOREIGN KEY" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Pogreška: Relacija nije dodana." -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "Pogreška: Relacija nije dodana." -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11944,109 +11913,109 @@ msgid "Please see the documentation on how to update your column_info table. " msgstr "" "Pogledajte dokumentaciju radi uputa o ažuriranju tablice column_comments." -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Favorizirani SQL upit" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL povijest" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy msgid "Persistent favorite tables" msgstr "Provjeri tablicu" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "Korisničke postavke" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Configuration file" msgid "Configurable menus" msgstr "Konfiguracijska datoteka" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Rename table to" msgid "Remembering Designer Settings" msgstr "Preimenuj tablicu u" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "Pogrešna vrsta izvoza" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "bez opisa" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -12229,8 +12198,8 @@ msgstr "Korisničko ime" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Korisničko ime" @@ -12238,7 +12207,7 @@ msgstr "Korisničko ime" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Lozinka" @@ -12958,7 +12927,7 @@ msgstr[2] "Baza podataka %1$d uspješno je odbačena." msgid "Plugin" msgstr "Dodatak" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 #, fuzzy msgid "Version" msgstr "Perzijski" @@ -12967,104 +12936,100 @@ msgstr "Perzijski" msgid "Author" msgstr "Autor" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "Licenca" - #: libraries/server_plugins.lib.php:114 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Onemogućeno" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Bez privilegija." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Obuhvaća sve privilegije osim GRANT (Podari)." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Dopušta čitanje podataka." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Dopušta umetanje i zamjenu podataka." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Dopušta mijenjanje podataka." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Dopušta brisanje podataka." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Dopušta izradu novih baze podataka i tablice." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Dopušta odbacivanje baza podataka i tablica." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Dopušta ponovno učitavanje postavki poslužitelja i pražnjenje privremene " "pohrane poslužitelja." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Dopušta gašenje poslužitelja." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 #, fuzzy #| msgid "Allows viewing processes of all users" msgid "Allows viewing processes of all users." msgstr "Omogućuje pregledavanje procesa za sve korisnike" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "Dopušta uvoz i izvoz podataka iz datoteka." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "Nema učinka u ovoj verziji MySQL-a." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Dopušta izradu i odbacivanje indeksa." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Dopušta izmjenu strukture postojećih tablice." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Daje pristup cjelokupnom popisu baza podataka." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -13075,22 +13040,22 @@ msgstr "" "eliminiranje grana drugih korisnika." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Dopušta izradu privremenih tablica." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Dopušta zaključavanje tablica u trenutnoj grani." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Potrebno za replikacijske potčinjene." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Dopušta korisnik postavljanje upita o lokaciji potčinjenih i gospodara." @@ -13098,19 +13063,19 @@ msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Dopušta izradu novih prikaza." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "Omogućuje postavljanje događaja za planer" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 #, fuzzy #| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." @@ -13118,27 +13083,27 @@ msgstr "Omogućuje izradu i uklanjanje okidača" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Dopušta izvođenje upita SHOW CREATE VIEW." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Dopušta izradu pohranjenih rutina." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Dopušta izmjenu i odbacivanje pohranjenih rutina." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "Dopušta izradu, odbacivanje i preimenovanje korisničkih naloga." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Dopušta pokretanje pohranjenih rutina." @@ -13152,8 +13117,8 @@ msgstr "bez kompresije" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -13199,13 +13164,13 @@ msgstr "" "ograničenje." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Ograničava broj upita koje korisnik može poslati poslužitelju, po satu." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -13214,20 +13179,20 @@ msgstr "" "mijenjanje bilo koje tablice ili baze podataka, po satu." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Ograničava broj novih povezivanja koje korisnik može otvoriti, po satu." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "Ograničava broj istovremenih povezivanja koje korisnik može imati." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -13235,7 +13200,7 @@ msgid "Routine" msgstr "Rutine" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -13255,14 +13220,14 @@ msgstr "Dopušta pokretanje pohranjenih rutina." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Privilegije specifične za tablicu" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -13274,7 +13239,7 @@ msgid "Administration" msgstr "Administracija" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Opće privilegije" @@ -13285,15 +13250,15 @@ msgid "Global" msgstr "opće" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Privilegije specifične za bazu podataka" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Dopušta izradu novih tablica." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Dopušta odbacivanje tablica." @@ -13316,7 +13281,7 @@ msgid "Native MySQL Authentication" msgstr "Dokumentacija" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "_Podaci prijave" @@ -13341,8 +13306,8 @@ msgstr "Korisničko ime" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Log name" msgid "Host name" @@ -13364,247 +13329,247 @@ msgstr "Dokumentacija" msgid "Password Hashing Method" msgstr "Izrada presjeka lozinke" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "Lozinka za %s uspješno je promijenjena." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Opozvali ste privilegije za %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Dodaj korisnika" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Baza podataka za korisnika" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "Izradi bazu podataka istog naziva i podari sve privilegije." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Podari sve privilegije imenima s džokerima (korisničkoime_%)." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, fuzzy, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Provjeri privilegije za bazu podataka \"%s\"." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Korisnici koji imaju pristup u \"%s\"" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Index %s je ispušten" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Podarivanje" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Korisnici nisu pronađeni." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Bilo koji" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "opće" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "specifično za bazu podataka" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "džoker" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "specifično za bazu podataka" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Uredi privilegije" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Opozovi" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 #, fuzzy msgid "Edit user group" msgstr "Web poslužitelj" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… zadržati staru." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… izbriši starog iz korisničkih tablica." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… opozovi sve aktivne privilegije iz stare i potom je izbriši." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… izbriši starog iz korisničkih tablica i potom ponovo učitaj privilegije." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Promjena podataka prijave / Kopiranje korisnika" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Izradi novog korisnika s istim privilegijama i…" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Privilegije specifične za stupac" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Ukloni odabrane korisnike" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Opozovi sve aktivne privilegije korisnika i potom ih izbriši." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "Ispusti baze podataka koje imaju iste nazive i korisnike." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "Nema odabranih korisnika za uklanjanje!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Ponovno učitavanje privilegija" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Odabrani korisnici uspješno su izbrisani." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Ažurirali ste privilegije za %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "Brisanje %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspješno učitane." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "Korisnik %s već postoji!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilegije" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Korisnik" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 #, fuzzy #| msgid "New" msgctxt "Create new user" msgid "New" msgstr "Novo" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Uredi privilegije" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "User" msgid "User account" msgstr "Korisnik" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Pregled korisnika" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13617,7 +13582,7 @@ msgstr "" "može se razlikovati od privilegija koje upotrebljava poslužitelj. U tom je " "slučaju potrebno %sponovo učitati privilegije%s prije nastavljanja rada." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13636,11 +13601,11 @@ msgstr "" "može se razlikovati od privilegija koje upotrebljava poslužitelj. U tom je " "slučaju potrebno %sponovo učitati privilegije%s prije nastavljanja rada." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "Odabrani korisnik nije pronađen u tablici privilegija." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Dodali ste novog korisnika." @@ -13890,33 +13855,33 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 #, fuzzy msgid "Refresh rate" msgstr "Osvježi" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Dodaj/Izbriši stupce polja" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "Resetiraj na zadano" @@ -13985,7 +13950,7 @@ msgid "Statements" msgstr "Izjave" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "#" @@ -14018,19 +13983,19 @@ msgstr "Prikaži otvorene tablice" msgid "Related links:" msgstr "Relacije" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Broj fsyncs zapisivanja izvršenih u datoteci zapisnika." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -14040,17 +14005,17 @@ msgstr "" "ali su nadmašile vrijednost binlog_cache_size i upotrijebile privremenu " "datoteku za pohranjivanje izjava transakcija." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Broj transakcija koje su upotrebljavale privremeni binarni zapisnik pohrane." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -14062,11 +14027,11 @@ msgstr "" "moglo bi biti potrebno da povećate vrijednost tmp_table_size, kako biste " "privremene tablice smjestili u radnu memoriju, a ne na tvrdi disk." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "Koliko je privremenih tablica izradio mysqld." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -14074,7 +14039,7 @@ msgstr "" "Broj privremenih tablica u memoriji koje je poslužitelj automatski izradio " "tijekom izvršavanja izjava." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -14082,7 +14047,7 @@ msgstr "" "Broj redaka upisanih pomoću naredbe INSERT DELAYED, a kod kojih je došlo do " "neke vrste pogreške (vjerojatan razlog je udvojen ključ)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -14090,23 +14055,23 @@ msgstr "" "Broj hvatište grana INSERT DELAYED u upotrebi. Svaka druga tablica na koju " "se primjeni INSERT DELAYED dobiva vlastitu granu." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "Broj redaka zapisanih pomoću INSERT DELAYED." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "Broj izvršenih izjava FLUSH." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "Broj internih izjava COMMIT." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "Brojka koja prokazuje koliko puta je redak bio izbrisan iz tablice." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -14116,7 +14081,7 @@ msgstr "" "tablicu s traženim nazivom. Ovaj se postupak naziva otkrivanje. " "Handler_discover naznačuje koliko je puta tablica bila otkrivenom." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -14126,7 +14091,7 @@ msgstr "" "broj je pokazatelj da poslužitelj izvodi mnogo potpunih pretraživanja " "indeksa, npr. SELECT col1 FROM foo, pri čemu je col1 indeksiran." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -14134,7 +14099,7 @@ msgstr "" "Broj zahtjeva za čitanje retka zasnovan na ključu. Velik broj je pokazatelj " "da su vaši upiti i tablice pravilno indeksirani." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -14144,7 +14109,7 @@ msgstr "" "povećava ako izvodite upite stupca indeksa s ograničenjem opsega ili ako " "izvodite pretraživanje indeksa." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -14152,7 +14117,7 @@ msgstr "" "Broj zahtjeva za čitanje prethodnog retka u redoslijedu ključa. Ovaj način " "čitanja uglavnom se upotrebljava za optimiziranje opcije ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -14164,7 +14129,7 @@ msgstr "" "Vjerojatno imate mnogo upita koji zahtijevaju da MySQL pretražuje cjelokupne " "tablice ili imate spojeve koji ne upotrebljavaju ključ na pravilan način." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -14176,36 +14141,36 @@ msgstr "" "naznačuje da vaša tablice nisu pravilno indeksirane ili da vaši upiti nisu " "napisani na način koji iskorištava prednosti raspoloživih indeksa." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "Broj internih izjava ROLLBACK." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "Broj zahtjeva za ažuriranje retka u tablici." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "Broj zahtjeva za umetanje retka u tablici." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "Broj stranice koje sadrže podatke (dirty ili clean)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "Broj stranica koje su trenutno 'dirty'." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Broj stranica međuspremnika za koje je podnesen zahtjev za pražnjenjem." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "Broj slobodnih stranica." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -14215,7 +14180,7 @@ msgstr "" "čitaju ili zapisuju, ili ih nije moguće isprazniti ili ukloniti iz nekog " "drugog razloga." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -14227,11 +14192,11 @@ msgstr "" "je vrijednost moguće izračunati i kao Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "Ukupna veličina međuspremnika, u stranicama." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -14239,7 +14204,7 @@ msgstr "" "Broj \"nasumičnih\" pripremnih čitanja koje je InnoDB inicijalizirao. Događa " "se kad upit mora pretražiti veliki dio tablice, ali nasumičnim redoslijedom." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -14247,11 +14212,11 @@ msgstr "" "Broj slijednih pripremnih čitanja koje je inicijalizirao InnoDB. Ovo se " "događa kad InnoDB izvodi potpuno pretraživanje tablice." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "Broj logičkih zahtjeva za čitanjem koje je obavio InnoDB." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -14259,7 +14224,7 @@ msgstr "" "Broj logičkih čitanja koje InnoDB nije mogao zadovoljiti iz međuspremnik i " "morao je izvesti čitanje po jedne stranice." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -14273,55 +14238,55 @@ msgstr "" "prikazuje stanje ovog čekanja. Ako je veličina međuspremnika pravilno " "postavljena, ova bi vrijednost trebala biti malenom." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "Broj izvršenih zapisivanja u InnoDB međuspremnik." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "Broj dosadašnjih fsync() operacija." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "Trenutan broj fsync() operacija u čekanju." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "Trenutan broj čitanja u čekanju." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "Trenutan broj zapisivanja u čekanju." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "Količina podataka pročitanih do ovog trenutka, u bajtovima." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "Ukupan broj iščitavanja podataka." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "Ukupan broj zapisivanja podataka." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "Količina podataka zapisanih do ovog trenutka, u bajtovima." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Broj dvostrukih zapisivanja do ovog trenutka i broj stranica zapisanih za " "ovu potrebu." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" "Broj dvostrukih zapisivanja do ovog trenutka i broj stranica zapisanih za " "ovu potrebu." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -14330,35 +14295,35 @@ msgstr "" "međuspremnika, te je bilo potrebno čekati njegovo pražnjenje prije nastavka " "rada." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "Broj zahtjeva za zapisivanje u zapisnik." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "Broj fizičkih zapisivanja u zapisnik." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "Broj fsyncs zapisivanja izvršenih u datoteci zapisnika." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "Broj naredbi fsyncs za zapisnik, a koje su na čekanju." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "Zapisivanja u zapisnik na čekanju." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "Broj bajtova zapisanih u zapisnik." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "Broj izrađenih stranica." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -14367,52 +14332,52 @@ msgstr "" "vrijednosti prebrojavaju u stranicama. Veličina stranice dopušta njihovo " "jednostavno pretvaranje u bajtove." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "Broj iščitanih stranica." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "Broj zapisanih stranica." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "Broj zaključavanja redaka na koje se trenutno čeka." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Prosječno vrijeme postizanja zaključanosti retka, u milisekundama." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Ukupno vrijeme utrošeno na postizanja zaključanosti retka, u milisekundama." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Najdulje vrijeme postizanja zaključanosti retka, u milisekundama." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "Broj okolnosti kad je bilo potrebno čekati na zaključanost retka." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "Broj redaka izbrisanih iz InnoDB tablica." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "Broj redaka umetnutih u InnoDB tablice." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "Broj redaka iščitanih iz InnoDB tablica." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "Broj ažuriranih redaka u InnoDB tablicama." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -14420,7 +14385,7 @@ msgstr "" "Broj ključnih blokova u pohrani ključeva koji su izmijenjeni ali još nisu " "ispražnjeni na disk. Nekoć se nazivalo: Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -14428,7 +14393,7 @@ msgstr "" "Broj neiskorištenih blokova u pohrani ključeva. Ovu vrijednost možete " "upotrijebiti za određivanje veličine pohrane ključeva koja je u upotrebi." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -14438,17 +14403,17 @@ msgstr "" "gornje razine koja označuje najveći broj blokova koji su ikad bili u " "istovremenoj upotrebi." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Oblikovanje uvezene datoteke" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "Broj zahtjeva za čitanje ključnog bloka iz pohrane." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -14459,26 +14424,26 @@ msgstr "" "promašivanja pohrane moguće je izračunati putem naredbi Key_reads/" "Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "Broj zahtjeva za zapisivanje ključnog bloka u pohranu." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "Broj fizičkih zapisivanja ključnih blokova na disk." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -14488,17 +14453,17 @@ msgstr "" "upita. Korisno za uspoređivanje troškova različitih planova upita za isti " "upit. Zadana vrijednost je 0 i podrazumijeva da još nema složenog upita." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Broj redaka koji čekaju svoje upisivanje u red čekanja INSERT DELAYED." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -14506,39 +14471,39 @@ msgstr "" "Broj tablica koje su otvorene. Ako je iznos otvorenih tablica velik, vaša " "vrijednost za pohranu tablica vjerojatno je premala." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "Broj otvorenih datoteka." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Broj otvorenih protoka (uglavnom se upotrebljava za vođenje zapisnika)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "Broj otvorenih tablica." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "Količina slobodne memorije za pohranu upita." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "Broj pronalaženja u pohrani." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "Broj upita pridodanih u pohranu." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14551,7 +14516,7 @@ msgstr "" "nedavno upotrebljavanog (LRU - least recently used) radi odlučivanja koje će " "upite ukloniti iz pohrane." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -14559,19 +14524,19 @@ msgstr "" "Broj upita koji nisu pohranjeni (nisu za pohranu ili nisu pohranjeni zbog " "postavke query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "Broj upita registriranih u pohrani." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "Ukupan broj blokova u pohrani upita." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stanje replikacije sigurnosti protiv otkaza (još nije implementirano)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -14579,12 +14544,12 @@ msgstr "" "Broj spojeva koji ne upotrebljavaju indekse. Ako ovaj iznos nije 0, bit će " "potrebno da pažljivo provjerite indekse vaših tablica." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" "Broj spojeva koji nad referentnom tablicom upotrebljavaju opseg traženja." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -14593,7 +14558,7 @@ msgstr "" "retka. (Ako ovaj iznos nije 0, bit će potrebno da pažljivo provjerite " "indekse vaših tablica.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -14601,17 +14566,17 @@ msgstr "" "Broj spojeva koji su upotrijebili opsege nad prvom tablicom. (Općenito nije " "kritično ako je ovaj iznos velik.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "Broj spojeva koji su izveli potpuno pretraživanje prve tablice." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Broj privremenih tablica koje su trenutno otvorene od strane potčinjene SQL " "grane." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -14619,12 +14584,12 @@ msgstr "" "Ukupna količina (od pokretanja) ponovnih pokušaja transakcija od strane " "replikacijske potčinjene SQL grane." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Uključeno (ON) ako je ovaj poslužitelj potčinjen i povezan na gospodara." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -14632,14 +14597,14 @@ msgstr "" "Broj grana kojima je bilo potrebno više vremena za izradu, nego što je to " "definirano u slow_launch_time (sporo vrijeme pokretanja), u sekundama." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Broj upita kojima je bilo potrebno više vremena nego što je to definirano u " "long_query_time (dugo vrijeme upita), u sekundama." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -14649,23 +14614,23 @@ msgstr "" "Ako je ovaj iznos velik, razmotrite mogućnost povećanja vrijednosti " "sistemske varijable sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "Broj preslagivanja učinjenih pomoću opsega." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "Broj presloženih redaka." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "Broj preslagivanja učinjenih pomoću pretraživanja tablice." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "Količina trenutno postignutih zaključavanja tablica." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14677,7 +14642,7 @@ msgstr "" "problema s performansama, bit će potrebno da prvo optimizirate svoje upite i " "potom ili podijelite svoje tablice ili upotrijebite replikaciju." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -14687,11 +14652,11 @@ msgstr "" "kao Threads_created/Connections. Ako je ovaj iznos prikazan crvenom bojom, " "bit će potrebno da povećate svoju vrijednost thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "Broj trenutno otvorenih veza." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14703,13 +14668,13 @@ msgstr "" "(Uobičajeno, ako imate dobru implementaciju grana, ova opcija neće pružiti " "primjetna poboljšanja performansi.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Pohrana ključeva" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "Broj grana koje nisu uspavane." @@ -14718,77 +14683,77 @@ msgstr "Broj grana koje nisu uspavane." msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 #, fuzzy #| msgid "User" msgid "User groups" msgstr "Korisnik" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "Verzija poslužitelja" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Database for user" msgid "Database level tabs" msgstr "Baza podataka za korisnika" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table removal" msgid "Table level tabs" msgstr "Naziv tablice" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy #| msgid "View" msgid "View users" msgstr "Prikaz" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "Dodaj korisnika" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Bez privilegija." -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "Nazivi stupaca" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Verzija poslužitelja" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Database for user" msgid "Database-level tabs" msgstr "Baza podataka za korisnika" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table removal" msgid "Table-level tabs" @@ -14852,21 +14817,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14934,142 +14895,142 @@ msgstr "Tablica %1$s je izrađena." msgid "Variable name was expected." msgstr "Predložak naziva datoteka" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Pri početku tablice" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 #, fuzzy #| msgid "The number of tables that are open." msgid "The name of the entity was expected." msgstr "Broj otvorenih tablica." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Redak je izbrisan" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Veličina porasta datoteke podataka" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Ostalo" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy msgid "State" msgstr "Stanje" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Ukupno" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Vrijeme" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Zatvori" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Vrijeme" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Favoriziraj ovaj SQL upit" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Label" msgid "Label:" msgstr "Oznaka" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Neka svi korisnici imaju pristup ovom favoritu" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created!" msgstr "Izrađen je favorit %s" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "Prikazivanje kao PHP koda" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemi s indeksima tablice `%s`" @@ -15100,29 +15061,29 @@ msgstr "" msgid "Bind parameters" msgstr "Pogrešni parametri!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 #, fuzzy #| msgid "Bookmark this SQL query" msgid "Bookmark this SQL query:" msgstr "Favoriziraj ovaj SQL upit" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Zamijeni postojećim favoritom istog naziva" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Razgraničavanje" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Ovaj upit ponovno prikaži ovdje" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Samo prikaz" @@ -15169,105 +15130,105 @@ msgstr "Uredi postavke za %s" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Kreirano" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Ažurirano" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy msgid "Delete version" msgstr "Izradi relaciju" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Izvještaj o praćenju" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Snimak strukture" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "aktivno" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "neaktivno" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Dopušta umetanje i zamjenu podataka." -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Nema baza podataka" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, fuzzy, php-format msgid "Export as %s" msgstr "Vrsta izvoza" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 #, fuzzy msgid "Date" msgstr "Podaci" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 #, fuzzy msgid "Username" msgstr "Korisničko ime:" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -15275,77 +15236,77 @@ msgctxt "None for default" msgid "None" msgstr "bez kompresije" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Izradi relaciju" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Nepraćene tablice" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Prati tablicu" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Praćene tablice" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Zadnja verzija" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "Brisanje podataka o praćenju" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Verzije" @@ -15355,13 +15316,13 @@ msgstr "Verzije" msgid "Manage your settings" msgstr "Opće osobine relacija" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." msgstr "Izmjene su spremljene" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -15466,7 +15427,7 @@ msgstr "Nema baza podataka" msgid "View dump (schema) of databases" msgstr "Prikaži ispis (shemu) baza podataka" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -15491,7 +15452,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin nije mogao ugasiti granu %s. Vjerojatno je već zatvorena." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -16446,52 +16407,58 @@ msgstr "" msgid "Stacked" msgstr "Pakirano" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Report title" +msgid "Chart title:" +msgstr "Naslov izvještaja" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "X-os:" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 #, fuzzy msgid "Series:" msgstr "SQL upit" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "Oznaka X-osi:" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Vrijednost" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Vrijednost" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside column:" msgid "Series column:" msgstr "Unutar polja:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Values for column %s" msgid "Value Column:" msgstr "Vrijednosti za stupac %s" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -16557,55 +16524,56 @@ msgstr "Komentar" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +#, fuzzy +#| msgid "Disable foreign key checks" +msgid "Foreign key constraints" +msgstr "Onemogući provjere stranih znakova" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "Aktivnosti" + +#: templates/table/relation/common_form.phtml:10 +#, fuzzy +#| msgid "Constraints for table" +msgid "Constraint properties" +msgstr "Ograničenja za tablicu" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "" + +#: templates/table/relation/common_form.phtml:60 +#, fuzzy +#| msgid "Add constraints" +msgid "+ Add constraint" +msgstr "Dodaj prisile" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "Interne relacije" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Interne relacije" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Interna relacija nije potrebna ako postoji odgovarajuća relacija FOREIGN KEY." -#: templates/table/relation/common_form.phtml:37 -#, fuzzy -#| msgid "Disable foreign key checks" -msgid "Foreign key constraints" -msgstr "Onemogući provjere stranih znakova" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "Aktivnosti" - -#: templates/table/relation/common_form.phtml:41 -#, fuzzy -#| msgid "Constraints for table" -msgid "Constraint properties" -msgstr "Ograničenja za tablicu" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "" - -#: templates/table/relation/common_form.phtml:83 -#, fuzzy -#| msgid "Add constraints" -msgid "+ Add constraint" -msgstr "Dodaj prisile" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -16765,7 +16733,7 @@ msgid "at beginning of table" msgstr "Pri početku tablice" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16814,7 +16782,7 @@ msgstr "particionirano" msgid "Edit partitioning" msgstr "Ukloni particioniranje" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -18138,6 +18106,41 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "najv. uzastopnih veza" +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "Tablice" + +#, fuzzy +#~| msgid "View" +#~ msgid "views" +#~ msgstr "Prikaz" + +#, fuzzy +#~| msgid "Procedures" +#~ msgid "procedures" +#~ msgstr "Postupci" + +#, fuzzy +#~| msgid "Event" +#~ msgid "events" +#~ msgstr "Događaj" + +#, fuzzy +#~| msgid "Functions" +#~ msgid "functions" +#~ msgstr "Funkcije" + +#, fuzzy +#~| msgid "table name" +#~ msgid "Filter databases by name or regex" +#~ msgstr "naziv tablice" + +#, fuzzy +#~| msgid "table name" +#~ msgid "Filter by name or regex" +#~ msgstr "naziv tablice" + #, fuzzy #~| msgid "Tracking report" #~ msgid "Taking you to %s." diff --git a/po/hu.po b/po/hu.po index 2c1f356ddd..5b73e22d1e 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:09+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Hungarian Are you sure you " "want to continue?" @@ -1991,51 +2003,51 @@ msgstr "" "Ez a művelet megváltoztathatja néhány oszlop meghatározását.
Biztosan " "folytatni szeretné?" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "Folytatás" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "Elsődleges kulcs hozzáadása" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "Elsődleges kulcs hozzáadva." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "Átvitel a következő lépésre…" -#: js/messages.php:433 +#: js/messages.php:434 #, 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:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "Lépés vége" -#: js/messages.php:435 +#: js/messages.php:436 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:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Kész" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "Részleges függőségek megerősítése" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "A kijelölt részleges függőségek a következők:" -#: js/messages.php:440 +#: js/messages.php:441 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,21 +2055,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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "Nincsenek részleges függőségek kiválasztva!" -#: js/messages.php:446 +#: js/messages.php:447 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:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "Részleges függőségek listájának elrejtése" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2065,173 +2077,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:452 +#: js/messages.php:453 msgid "Step" msgstr "Lépés" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "A következő műveletek lesznek végrehajtva:" -#: js/messages.php:455 +#: js/messages.php:456 #, 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:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "A következő tábla létrehozása" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "A normalizálás harmadik lépése (3NF)" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "Tranzitív függőségek megerősítése" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "A kijelölt függőségek a következők:" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "Nincsenek függőségek kiválasztva!" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Mentés" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Keresési kritériumok elrejtése" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Keresési kritériumok megjelenítése" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "Tartomány keresés" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "Oszlop maximum:" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "Oszlop minimum:" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "Legkisebb érték:" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "Legnagyobb érték:" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "Keresési és csere kritériumok elrejtése" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "Keresési és csere kritériumok megjelenítése" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "Minden pont egy adatsort ábrázol." -#: js/messages.php:484 +#: js/messages.php:485 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:486 +#: js/messages.php:487 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:488 +#: js/messages.php:489 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:490 +#: js/messages.php:491 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:492 +#: js/messages.php:493 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:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "Válasszon két oszlopot" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "Válasszon két különböző oszlopot" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "Adatmutató tartalma" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Kihagyás" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Másolás" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Pont" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Karakterlánc" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Sokszög" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Belső gyűrű" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Külső gyűrű:" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "Szeretné másolni a titkosítási kulcsot?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "Titkosítási kulcs" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2239,24 +2251,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:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Válassza ki a hivatkozott kulcsot" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Idegen kulcs kiválasztása" -#: js/messages.php:529 +#: js/messages.php:530 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:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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:532 +#: js/messages.php:533 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?" @@ -2264,77 +2276,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:535 +#: js/messages.php:536 msgid "Page name" msgstr "Oldal neve" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Oldal mentése" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Oldal megnyitása" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "Oldal törlése" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Névtelen" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "Válasszon egy oldalt a folytatáshoz" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "Adjon meg egy érvényes oszlopnevet" -#: js/messages.php:544 +#: js/messages.php:545 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:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "Az oldal sikeresen törölve" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "Kapcsolati séma exportálása" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "A módosítások mentése megtörtént" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "Lehetőség hozzáadása a következő oszlophoz: „%s”." -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "%d objektum létrehozva." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Indítás" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "Nyomja meg az Escape billentyűt a szerkesztés megszakításához." -#: js/messages.php:557 +#: js/messages.php:558 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?" @@ -2342,15 +2354,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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "Húzza az elemeket az újrarendezéshez." -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "Kattintson az eredmények rendezéséhez ezen oszlop szerint." -#: js/messages.php:563 +#: js/messages.php:564 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 " @@ -2360,28 +2372,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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "Kattintson a kijelöléshez / kijelölés megszüntetéséhez." -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "Az oszlopnév másolásához kattintson duplán." -#: js/messages.php:570 +#: js/messages.php:571 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:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Összes megjelenítése" -#: js/messages.php:574 +#: js/messages.php:575 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." @@ -2390,13 +2402,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:578 +#: js/messages.php:579 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:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2404,130 +2416,97 @@ 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:583 +#: js/messages.php:584 msgid "Original length" msgstr "Eredeti hossz" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "mégse" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Megszakítva" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "Sikerült" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "Importálás állapota" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Ejtse ide a fájlokat" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "Először válasszon adatbázist" -#: js/messages.php:598 +#: js/messages.php:599 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:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "Az elem szerkeszthetővé
válik kattintással." -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "Ugrás a hivatkozáshoz:" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "Oszlopnév másolása." -#: js/messages.php:612 +#: js/messages.php:613 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:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Jelszó generálása" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Generálás" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "Több" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Panel megjelenítése" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Panel elrejtése" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "Rejtett navigációs faszerkezet elemeinek megjelenítése." -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "Hozzákapcsolás a fő panelhez" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "Eltávolítás a fő panelről" -#: js/messages.php:629 -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:631 -#, 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:632 -msgid "tables" -msgstr "táblák" - -#: js/messages.php:633 -msgid "views" -msgstr "nézetek" - -#: js/messages.php:634 -msgid "procedures" -msgstr "eljárások" - -#: js/messages.php:635 -msgid "events" -msgstr "események" - -#: js/messages.php:636 -msgid "functions" -msgstr "függvények" - -#: js/messages.php:640 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:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2537,49 +2516,49 @@ msgstr "" "%s, kiadás dátuma: %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", utolsó stabil verzió:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "friss" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "Nézet létrehozása" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy #| msgid "Send error reports" msgid "Send error report" msgstr "Hibajelentések küldése" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Hibajelentés beküldése" -#: js/messages.php:657 +#: js/messages.php:649 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:659 +#: js/messages.php:651 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Jelentés beállítások megváltoztatása" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Jelentés részleteinek megjelenítése" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2587,7 +2566,7 @@ msgstr "" "Az exportálás nem teljes a PHP szinten lévő alacsony végrehajtási időkorlát " "miatt!" -#: js/messages.php:667 +#: js/messages.php:659 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2597,59 +2576,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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "Hibák észlelhetők a kiszolgálón!" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "Nézze meg ennek az ablaknak az alját." -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "Összes mellőzése" -#: js/messages.php:689 +#: js/messages.php:681 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:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "Végrehajtja ismét ezt a lekérdezést?" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "Valóban törölni szeretné ezt a könyvjelzőt?" -#: js/messages.php:703 +#: js/messages.php:695 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:705 +#: js/messages.php:697 #, 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:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "%s argumentum került átadásra" -#: js/messages.php:707 +#: js/messages.php:699 msgid "Show arguments" msgstr "Argumentumok megjelenítése" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "Argumentumok elrejtése" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "Felhasznált idő:" -#: js/messages.php:711 +#: js/messages.php:703 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 " @@ -2660,291 +2639,291 @@ 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "Előző" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "Következő" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Ma" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "Január" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "Február" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "Március" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "Április" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Május" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "Június" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "Július" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "Augusztus" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "Szeptember" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "Október" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "November" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Már" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Ápr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "Máj" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Jún" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Júl" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Sze" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Dec" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "Vasárnap" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "Hétfő" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "Kedd" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "Szerda" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "Csütörtök" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "Péntek" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "Szombat" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "Vas" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Hét" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Ked" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Sze" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Csü" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Pén" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Szo" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "Va" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "Hé" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "Ke" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "Sze" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "Cs" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "Pé" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "Szo" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "Hét" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "nincs" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Óra" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Perc" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "másodperc" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "Ez a mező kötelező" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "Javítsa ezt a mezőt" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "Adjon meg egy érvényes e-mail címet" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "Adjon meg egy érvényes URL-t" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "Adjon meg egy érvényes dátumot" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "Adjon meg egy érvényes dátumot (ISO)" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "Adjon meg egy érvényes számot" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "Adjon meg egy érvényes hitelkártya számot" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "Csak számjegyeket adjon meg" @@ -2952,41 +2931,41 @@ msgstr "Csak számjegyeket adjon meg" msgid "Please enter the same value again" msgstr "Adja meg ismét ugyanazt az értéket" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "Ne adjon meg {0} karakternél többet" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "Adjon meg legalább {0} karaktert" -#: js/messages.php:896 +#: js/messages.php:907 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:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "Adjon meg egy értéket {0} és {1} között" -#: js/messages.php:898 +#: js/messages.php:917 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:899 +#: js/messages.php:922 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:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "Adjon meg egy érvényes dátumot vagy időt" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "Adjon meg egy érvényes HEX bemenetet" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Hiba" @@ -3075,11 +3054,12 @@ msgstr "Újra lekérdezés" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3121,7 +3101,7 @@ msgstr "Jelenlegi munkamenet közben" msgid "Explain" msgstr "Magyarázat" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Adatgyűjtés" @@ -3155,8 +3135,8 @@ msgid "History" msgstr "Előzmények" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3303,7 +3283,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Átváltás sötét témára" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3311,27 +3291,27 @@ msgstr "" "A kiszolgáló nem válaszol (vagy a helyi kiszolgáló socket nincs megfelelően " "beállítotva)." -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "A kiszolgáló nem válaszol." -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" "Kérjük, ellenőrizze az adatbázist tartalmazó könyvtár hozzáférési jogait." -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Részletek…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "A konfigurációban meghatározott kapcsolat a kontrollfelhasználó számára nem " "sikerült." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3341,8 +3321,8 @@ msgstr "" msgid "Ascending" msgstr "Növekvő" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3485,8 +3465,8 @@ msgstr[0] "%1$s találat ebben: %2$s" msgstr[1] "%1$s találat ebben: %2$s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3530,121 +3510,122 @@ msgstr "Minden kijelölés törlése" msgid "Inside column:" msgstr "Mezőben:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "A módosított adatok mentése" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "Oszlopsorrend visszaállítása" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "Sorok szűrése" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "Keresés a táblában" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "Kezdet" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "Előző" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "Következő" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "Vége" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Mind" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Sorok száma:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Kulcs szerinti rendezés" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "Részleges szövegek" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "Teljes szövegek" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Relációs kulcs" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Display foreign key relationships" msgid "Display column for relations" msgstr "Idegen kulcsok kapcsolatainak megjelenítése" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "Bináris tartalom megjelenítése" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "BLOB-tartalom megjelenítése" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "Böngészőátalakítás elrejtése" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "Jól ismert szöveg" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "Jól ismert bináris" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "A sor törlése megtörtént." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Leállít" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Becsült érték lehet. Lásd [doc@faq3-11]GyIK 3.11[/doc]." -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "Az SQL-lekérdezés végrehajtása sikerült." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3653,40 +3634,40 @@ msgstr "" "Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a " "%sdokumentációban%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "Sorok megjelenítése %1s-%2s" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d összesen, %2$d a lekérdezésben" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "összesen %d" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "A lekérdezés %01.4f másodpercig tartott." -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "A kijelöltekkel végzendő művelet:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3694,25 +3675,25 @@ msgstr "A kijelöltekkel végzendő művelet:" msgid "Check all" msgstr "Mind kijelölése" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Nyomtatási nézet" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Műveletek a lekérdezési eredménnyel" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Diagram megjelenítése" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "GIS data megjelenítése" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "Nem található a hivatkozás!" @@ -3812,19 +3793,19 @@ msgstr "Nincs meghatározott index!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Indexek" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3833,24 +3814,24 @@ msgid "Action" msgstr "Művelet" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Kulcsnév" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Egyedi" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Csomagolt" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Számosság" @@ -3858,8 +3839,8 @@ msgstr "Számosság" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3869,8 +3850,8 @@ msgid "Collation" msgstr "Illesztés" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3886,15 +3867,15 @@ msgstr "Az elsődleges kulcs eldobása megtörtént." msgid "Index %s has been dropped." msgstr "A(z) %s index eldobása megtörtént." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Eldobás" @@ -3933,12 +3914,13 @@ msgstr "Nézet" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3946,7 +3928,7 @@ msgstr "Tábla" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3955,8 +3937,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3964,41 +3946,41 @@ msgid "Search" msgstr "Keresés" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Beszúrás" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Jogok" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Műveletek" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Követés" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4009,16 +3991,16 @@ msgstr "Eseményindítók" msgid "Database seems to be empty!" msgstr "Üresnek tűnik az adatbázis!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Lekérdezés" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Eljárások" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4026,20 +4008,20 @@ msgstr "Eljárások" msgid "Events" msgstr "Események" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Tervező" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "Központi oszlopok" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Adatbázisok" @@ -4048,33 +4030,33 @@ msgid "User accounts" msgstr "Felhasználói fiókok" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Bináris napló" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Többszörözés" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Változók" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Karakterkészlet" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Motorok" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "Bővítmények" @@ -4370,7 +4352,7 @@ msgstr "Nem nevezhető át PRIMARY-re az index!" msgid "No index parts defined!" msgstr "Nincs meghatározott indexrész!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4844,37 +4826,37 @@ msgstr "A(z) %s funkcióra egy ismert hiba van hatással, lásd itt: %s" msgid "Click to toggle" msgstr "Kattintson a váltáshoz" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Számítógép tallózása:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Válasszon a webkiszolgáló feltöltési könyvtárából %s :" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Nem elérhető a feltöltésekhez megadott könyvtár." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "Nincsenek feltöltendő fájlok!" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Kiürítés" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "Végrehajtás" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Nyomtatás" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "Felhasználók" @@ -5040,8 +5022,8 @@ msgid "Add new column" msgstr "Új oszlop hozzáadása" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5108,19 +5090,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "Frissítenie kell %s %s vagy újabb verzióra." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "Hiba: Token eltérés" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS felülírási kísérlet" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "lehetséges kiaknázás" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "numerikus kulcs észlelve" @@ -5978,7 +5960,7 @@ msgid "Remember file name template" msgstr "A fájlnévsablon megjegyzése" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT érték hozzáadása" @@ -6017,7 +5999,7 @@ msgstr "Kapcsolódó metaadatok exportálása a phpMyAdmin beállítástárolób #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "%s hozzáadása" @@ -7750,7 +7732,7 @@ msgstr "" "Meghatározza, hogy a lekérdezés doboz a képernyőn maradjon-e az űrlap " "elküldése után." -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "Lekérdezési doboz megőrzése" @@ -8056,103 +8038,33 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Open Document szöveges dokumentum" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "A kedvencek listája tele van!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "A(z) %s tábla kiürítése megtörtént." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "A(z) %s nézet el lett dobva." -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "A(z) %s tábla el lett dobva." -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "A kedvencek listája tele van!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "ismeretlen" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -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.php:250 -msgid "No column selected." -msgstr "Nem jelölt ki sort." - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "Az oszlop mozgatása sikeresen megtörtént." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "A(z) %1$s tábla módosítása sikerült." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "Lekérdezési hiba" - -#: libraries/controllers/TableStructureController.php:967 -#, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Módosítás" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Index" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "Térbeli" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: 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.php:1201 -msgid "Distinct values" -msgstr "Különböző értékek" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8166,6 +8078,14 @@ msgstr "Nem tartalmaz számoszlopot a táblázat." msgid "No data to display" msgstr "Nincs megjelenítendő adat" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "A(z) %1$s tábla módosítása sikerült." + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "A megjelenített oszlop sikeresen frissítve." @@ -8174,19 +8094,81 @@ msgstr "A megjelenített oszlop sikeresen frissítve." msgid "Internal relations were successfully updated." msgstr "A belső kapcsolatok sikeresen frissítve." -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "Táblakeresés" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "Lépcsőzetes keresés" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Keresés és csere" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +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/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "Nem jelölt ki sort." + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "Az oszlop mozgatása sikeresen megtörtént." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "Lekérdezési hiba" + +#: libraries/controllers/table/TableStructureController.php:975 +#, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "" +"A(z) %1$s tábla sikeresen módosítva lett. A jogosultságok módosítása " +"megtörtént." + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Módosítás" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Index" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "Térbeli" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Teljes szöveg" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "Különböző értékek" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8196,7 +8178,7 @@ msgstr "A %s kiterjesztés hiányzik. Kérem ellenőrizze a PHP beállításokat msgid "possible deep recursion attack" msgstr "lehetséges mély rekurziós támadás" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Nincs változás" @@ -8263,7 +8245,7 @@ msgstr "Létrehozás" msgid "Create database:" msgstr "Adatbázis létrehozása:" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Nincs jog" @@ -9006,67 +8988,67 @@ msgid "Dump has been saved to file %s." msgstr "A kiíratás mentése a(z) %s fájlba megtörtént." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "A MySQL üres eredményhalmazt adott vissza (pl. nulla sorok)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "[ROLLBACK történt.]" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "A következő struktúrákat vagy már létrehozták vagy megváltoztattál. Itt " "lehet:" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "Szerkezet tartalmának megtekintése a nevére való kattintással." -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Bármelyik beállításának módosítása a megfelelő „Beállítások” hivatkozásra " "kattintva." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "Szerkezet szerkesztése a „Szerkezet” hivatkozást követve." -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "Ugrás az adatbázishoz: %s" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "%s beállításainak szerkesztése" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "Ugrás a táblához: %s" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "%s szerkezete" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "Ugrás %s megtekintéséhez" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "Csak egyedülálló táblák UPDATE és DELETE lekérdezései szimulálhatók." -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9074,7 +9056,7 @@ msgstr "" "Csak INSERT, UPDATE, DELETE és REPLACE SQL-lekérdezéseket tartalmazó " "tranzakciós motor táblák görgethetők vissza." -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "Index készítése a(z)  %s oszlopokon" @@ -9097,66 +9079,66 @@ msgstr "Függvény" msgid "Binary" msgstr "Bináris" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "A hossza miatt ez az
oszlop talán nem szerkeszthető." -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Bináris - nem szerkeszthető" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Vagy" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "webszerver feltöltési könyvtár:" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "Szerkesztés/Beszúrás" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "Beszúrás folytatása a(z) %s sorokkal" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "és utána" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Beszúrás új sorként" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "Új sor beillesztése és a hibák figyelmen kívül hagyása" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "Beillesztő lekérdezés megjelenítése" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Vissza az előző oldalra" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Új sor beszúrása" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Visszatérés erre az oldalra" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Következő sor szerkesztése" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9166,7 +9148,7 @@ msgstr "" "A TAB billentyűvel értékről értékre lépkedhet, vagy a CTRL+nyilakkal bárhová " "léphet" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9178,11 +9160,11 @@ msgstr "" msgid "Value" msgstr "Érték" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "Megjelenítés SQL lekérdezésként" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "A beszúrt sor azonosítószáma: %1$d" @@ -9198,35 +9180,35 @@ msgstr "Nincs" msgid "Convert to Kana" msgstr "Konvertálás Kanaba" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Sikerült!" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "Tábla előtagjának lecserélése:" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "Tábla másolása előtaggal:" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "Ettől" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "Eddig" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "Tábla előtag hozzáadása:" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "Előtag hozzáadása" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "Valóban végre szeretné hajtani a következő lekérdezést?" @@ -9444,8 +9426,8 @@ msgstr "Eljárások:" msgid "Views:" msgstr "Nézetek:" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Megjelenítés" @@ -9486,18 +9468,15 @@ msgstr[0] "%s eredmény található" msgstr[1] "%s eredmény található" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" -msgstr "Adatbázisok szűrése név vagy reguláris kifejezés szerint" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 msgid "Clear fast filter" msgstr "Gyors szűrő törlése" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "Szűrés név vagy reguláris kifejezés szerint" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "Összes összecsukása" @@ -9927,7 +9906,7 @@ msgstr "Adatbázis átnevezése" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9938,7 +9917,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Adjust Privileges" @@ -9958,18 +9937,18 @@ msgstr "Adatbázis eltávolítása" msgid "Drop the database (DROP)" msgstr "Adatbázis eldobása (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Csak a szerkezet" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Szerkezet és adatok" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Csak az adatok" @@ -9981,7 +9960,7 @@ msgstr "Adatbázis másolása ide" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE másolás előtt" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Megszorítás hozzáadása" @@ -10021,161 +10000,161 @@ msgstr "Tárolómotor" msgid "Change all column collations" msgstr "Minden oszlopillesztés módosítása" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Tábla másolása (adatbázis.tábla)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "A másolt táblára váltás" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Tábla karbantartása" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Tábla elemzése" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Tábla ellenőrzése" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 msgid "Checksum table" msgstr "Tábla ellenőrzőösszege" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Tábla töredezettségmentesítése" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "A(z) %s tábla kiírása megtörtént." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "Tábla kiöblítése (FLUSH)" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Tábla optimalizálása" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Tábla javítása" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "Adat vagy tábla törlése" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "Tábla kiürítése (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "Tábla törlése (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Elemzés" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Ellenőrzés" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Optimalizálás" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Újraépítés" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Javítás" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "Kiürítés" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 msgid "Coalesce" msgstr "Összefonás" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "Partíció karbantartása" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "%s partíció" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "Particionálás eltávolítása" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Hivatkozási sértetlenség ellenőrzése:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Nem helyezhető át ugyanabba a tábla!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Nem másolható ugyanabba a tábla!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" "A(z) %s tábla áthelyezésre került ide: %s. A jogosultságok módosítása " "megtörtént." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" "A(z) %s tábla átmásolásra került ide: %s. A jogosultságok módosítása " "megtörtént." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "A(z) %s tábla áthelyezése a(z) %s adatbázisba kész." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "A(z) %s tábla másolása %s néven megtörtént." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Üres a tábla neve!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "Ennek a formátumnak nincsenek beállításai" @@ -10348,7 +10327,7 @@ msgstr "Adatkiírási beállítások" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "A tábla adatainak kiíratása" @@ -10372,21 +10351,21 @@ msgstr "Meghatározás" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Tábla szerkezet ehhez a táblához" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Nézet szerkezete" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "A nézet helyettes szerkezete" @@ -10477,7 +10456,7 @@ msgid "Database:" msgstr "Adatbázis:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "Adatok:" @@ -10579,7 +10558,7 @@ msgid "Data creation options" msgstr "Adatlétrehozási beállítások" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "Tábla csonkolása beszúrás előtt" @@ -10662,8 +10641,8 @@ msgstr "Úgy tűnik, az adatbázis eljárásokat használ;" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 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." @@ -10671,81 +10650,81 @@ msgstr "az álnév exportálás nem minden esetben működhet megbízhatóan." msgid "It appears your database uses functions;" msgstr "Úgy tűnik, az adatbázis függvényeket használ;" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 msgid "Metadata" msgstr "Metaadat" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "%s metaadatai" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Létrehozva:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Utolsó frissítés:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Utolsó ellenőrzés:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "használatban" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "Úgy tűnik, az adatbázis nézeteket használ;" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Megkötések a kiírt táblákhoz" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Megkötések a táblához" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "Indexek a kiírt táblákhoz" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "A tábla indexei" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "A kiírt táblák AUTO_INCREMENT értéke" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT a táblához" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "Tábla MIME-típusok" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "TÁBLA KAPCSOLATAI" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "Úgy tűnik, a tábla eseményindítókat használ;" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, 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.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "Hiba az adatolvasás közben:" @@ -10991,9 +10970,9 @@ msgstr "Kapcsolati séma" msgid "Table of contents" msgstr "Tartalomjegyzék" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Extra" @@ -11232,47 +11211,47 @@ msgstr "JSON-ként formázza a szöveget szintaxis kiemeléssel." msgid "Formats text as XML with syntax highlighting." msgstr "XML-ként formázza a szöveget szintaxis kiemeléssel." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Hiba: A kapcsolat már létezik." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "Az IDEGEN KULCS kapcsolat hozzáadása megtörtént." -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Hiba: nem sikerült hozzáadni az IDEGEN KULCS kapcsolatot!" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "Hiba: hiányzó index az oszlopokról." -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "Hiba: a relációs szolgáltatások le vannak tiltva!" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "A belső kapcsolat hozzáadása megtörtént." -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 msgid "Error: Internal relation could not be added!" msgstr "Hiba: nem sikerült hozzáadni a belső kapcsolatot!" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 msgid "FOREIGN KEY relation has been removed." msgstr "Az IDEGEN KULCS kapcsolat eltávolítása megtörtént." -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Hiba: nem sikerült eltávolítani az IDEGEN KULCS kapcsolatot!" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 msgid "Error: Internal relation could not be removed!" msgstr "Hiba: nem sikerült eltávolítani a belső kapcsolatot!" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "A belső kapcsolat eltávolítása megtörtént." @@ -11319,70 +11298,70 @@ msgstr "" "Nézze meg a dokumentációban, hogy hogyan kell frissíteni a column_info " "táblát. " -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Könyvjelzőkhöz hozzáadott SQL-lekérdezés" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL-előzmények" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "Állandó legutóbb használt táblák" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 msgid "Persistent favorite tables" msgstr "Állandó kedvenc táblák" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "Tartós táblák UI beállításai" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "Felhasználói beállítások" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "Beállítható menü" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "Navigációs elemek mutatása/elrejtése" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "Példa szerinti lekérdezés (QBE) keresések mentése" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "Oszlopok központi listájának kezelése" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "Emlékezzen a tervező beállításaira" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 msgid "Saving export templates" msgstr "Exportsablonok mentése" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "Gyors lépések a haladó funkciók beállításához:" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" "Hozza létre a szükséges táblákat a %screate_tables.sql fájllal." -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" "Hozzon létre egy pma felhasználót és adjon hozzáférést ezekhez a táblákhoz." -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -11390,16 +11369,16 @@ msgstr "" "Engedélyezze a haladó funkciókat a beállító fájlban (config.inc.php), például induljon ki a config.sample.inc.php fájlból." -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Jelentkezzen be újra a phpMyAdminba a frissített beállítófájl betöltéséhez." -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "nincs leírás" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11409,7 +11388,7 @@ msgstr "" "adatbázis létrehozásához. El kellene mennie bármelyik adatbázis „Műveletek” " "lapjára, hogy ott beállítsa a phpMyAdmin beállítástárolóját." -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11418,13 +11397,13 @@ msgstr "" "%sHozzon létre%s egy „phpmyadmin” nevű adatbázist, és állítsa be ott a " "phpMyAdmin beállítástárolóját." -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "A phpMyAdmin beállítástároló %slétrehozása%s a jelenlegi adatbázisban." -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "Hiányzó phpMyAdmin beállítástároló táblák %slétrehozása%s." @@ -11616,8 +11595,8 @@ msgstr "Felhasználónév:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Felhasználónév" @@ -11625,7 +11604,7 @@ msgstr "Felhasználónév" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Jelszó" @@ -12259,7 +12238,7 @@ msgstr[1] "A(z) %1$d adatbázis eldobása sikerült." msgid "Plugin" msgstr "Bővítmény" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Verzió" @@ -12267,100 +12246,96 @@ msgstr "Verzió" msgid "Author" msgstr "Szerző" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "Licenc" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "letiltott" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Nincsenek jogok." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "A GRANT kivételével minden jogot tartalmaz." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Engedélyezi az adatok olvasását." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Engedélyezi az adatok beírását és megváltoztatását." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Engedélyezi az adatok megváltoztatását." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Engedélyezi az adatok törlését." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Engedélyezi új adatbázisok és táblák készítését." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Engedélyezi az adatbázisok és táblák eldobását." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Engedélyezi a szerver beállításainak újratöltését, és a szerver " "gyorsítótárának törlését." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Engedélyezi a szerver leállítását." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "Engedélyezi az összes felhasználó folyamatainak megtekintését." #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "Engedélyezi az adatok fájlokba történő exportálását/importálását." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "Nincs hatása ebben a MySQL verzióban." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Engedélyezi indexek készítését és törlését." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Engedélyezi a létező táblák szerkezetének megváltoztatását." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Hozzáférést ad az adatbázisok teljes listájához." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12372,22 +12347,22 @@ msgstr "" "megszüntetése." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Engedélyezi ideiglenes táblák készítését." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "A jelenlegi szálon engedélyezi a táblák zárolását." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Szükséges a szolgák többszörözéséhez." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Engedélyezi a felhasználónak, hogy megkérdezze, hol találhatók a kisegítő/fő " @@ -12396,44 +12371,44 @@ msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Engedélyezi új nézetek létrehozását." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "Az eseményütemező eseményeinek beállítását teszi lehetővé." #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "Lehetővé teszi eseményindítók létrehozását és eldobását." #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Engedélyezi SHOW CREATE VIEW lekérdezések végrehajtását." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Engedélyezi tárolt eljárások létrehozását." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Engedélyezi a tárolt eljárások módosítását és eldobását." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Engedélyezi a felhasználói fiókok létrehozását, törlését és átnevezését." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Engedélyezi a tárolt eljárások végrehajtását." @@ -12445,8 +12420,8 @@ msgstr "Nincs" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Felhasználói csoport" @@ -12495,14 +12470,14 @@ msgstr "" "Megjegyzés: Ezen beállítások 0-ra (nulla) állítása eltávolítja a korlátozást." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Korlátozza a felhasználó által a kiszolgálóra óránként küldhető lekérdezések " "számát." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12511,20 +12486,20 @@ msgstr "" "adatbázist módosító parancsok számát." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Korlátozza a felhasználó által óránként megnyitható új kapcsolatok számát." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "Korlátozza a felhasználó egyidejű kapcsolatainak számát." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12532,7 +12507,7 @@ msgid "Routine" msgstr "Eljárások" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12553,14 +12528,14 @@ msgstr "Engedélyezi a tárolt eljárások végrehajtását." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Táblaspecifikus jogok" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Megjegyzés: a MySQL jogosultságnevek az angolból származnak." @@ -12570,7 +12545,7 @@ msgid "Administration" msgstr "Adminisztráció" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Globális jogok" @@ -12579,15 +12554,15 @@ msgid "Global" msgstr "Globális" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Adatbázis-specifikus jogok" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Engedélyezi új táblák készítését." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Engedélyezi a táblák eldobását." @@ -12610,7 +12585,7 @@ msgid "Native MySQL Authentication" msgstr "Cookie hitelesítés" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Bejelentkezési adatok" @@ -12635,8 +12610,8 @@ msgstr "Gépnév:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 msgid "Host name" msgstr "Gépnév" @@ -12654,204 +12629,204 @@ msgstr "Hitelesítés bővítmény" msgid "Password Hashing Method" msgstr "Jelszó hash:" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "%s jelszavának megváltoztatása sikerült." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "%s jogainak visszavonása megtörtént." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 msgid "Add user account" msgstr "Felhasználói fiók hozzáadása" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 msgid "Database for user account" msgstr "Adatbázis a felhasználói fiók számára" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "Azonos nevű adatbázis létrehozása, és az összes jog engedélyezése." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Az összes jog engedélyezése karakterhelyettesítős néven (username\\_%)." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Az összes jog engedélyezése a(z) \"%s\" adatbázison." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "A(z) \"%s\" adatbázishoz hozzáférhető felhasználók" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "A felhasználó hozzáadása megtörtént." -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Engedélyezés" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "Nincs elegendő jogosultság a felhasználók megtekintéséhez." -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "Nem található felhasználó." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Bármi" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "globális" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "adatbázis-specifikus" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "karakterhelyettesítő" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "tábla-specifikus" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit privileges:" msgid "Edit privileges" msgstr "Jogok szerkesztése:" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Visszavonás" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "Felhasználói csoport szerkesztése" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… a régiek megőrzése." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… a régiek törlése a felhasználói táblákból." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… az összes aktív jog visszaállítása a régiekből, majd törlés." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… a régiek törlése a felhasználói táblákból, majd a jogok újratöltése." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "Bejelentkezési adatok módosítása / Felhasználói fiók másolása" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "Új felhasználói fiók létrehozása ezekkel a jogokkal, és …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Oszlopspecifikus jogok" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 msgid "Remove selected user accounts" msgstr "A kijelölt felhasználói fiókok eltávolítása" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "A felhasználók összes jogának visszavonása, majd törlése." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "A felhasználókéval azonos nevű adatbázisok eldobása." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "Nincs törlésre kijelölt felhasználó!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "A jogok újratöltése" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "A kiválasztott felhasználók törlése sikerült." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Ön frissítette %s jogait." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "%s törlése" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "A jogok újratöltése sikerült." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "%s felhasználó már létezik!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "%s jogosultságai" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Felhasználó" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "új" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 msgid "Edit privileges:" msgstr "Jogok szerkesztése:" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "Felhasználói fiók" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12859,11 +12834,11 @@ msgstr "" "Megjegyzés: annak a felhasználónak a jogosultságait próbálja szerkeszteni, " "amellyel jelenleg be van lépve." -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "Felhasználói fiókok áttekintése" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " @@ -12874,7 +12849,7 @@ msgstr "" "kapcsolódását, ha a fiókjuk gép része lehetővé tesz egy kapcsolatot bármely " "(%) gépről." -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12887,7 +12862,7 @@ msgstr "" "használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben " "%stöltse be újra a jogokat%s a folytatás előtt." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12900,11 +12875,11 @@ msgstr "" "által használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben a " "jogokat újra kell tölteni, de jelenleg nincs RELOAD joga." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "Nem található a kiválasztott felhasználó a privilégium táblában." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Az új felhasználó hozzáadása megtörtént." @@ -13166,24 +13141,24 @@ msgstr "Utasítások/Beállítás" msgid "Done dragging (rearranging) charts" msgstr "Diagramok áthúzása (újrarendezése) kész" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "Diagramok megragadásának engedélyezése" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "Frissítési időköz" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "Diagram oszlopai" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "Diagram elrendezés" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -13191,7 +13166,7 @@ msgstr "" "A diagramok elrendezése a böngészők helyi tárolójában találhatók. Érdemes " "exportálni, ha összetett elrendezésről van szó." -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "Visszaállítás az alapértékre" @@ -13247,7 +13222,7 @@ msgid "Statements" msgstr "Utasítások" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "#" @@ -13272,7 +13247,7 @@ msgstr "Formázatlan értékek megjelenítése" msgid "Related links:" msgstr "Kapcsolódó hivatkozások:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -13280,11 +13255,11 @@ msgstr "" "A kapcsolatok száma, amelyek megszakadtak, mert a kliens kilépett anélkül, " "hogy megfelelően lezárta volna a kapcsolat." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "A MySQL-kiszolgálóhoz való csatlakozás sikertelen kísérleteinek száma." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13294,19 +13269,19 @@ msgstr "" "használt, azonban az túllépte a binlog_cache_size méretet, és ideiglenes " "fájlt használt az utasítások tárolásához a tranzakcióból." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Az ideiglenes bináris naplógyorsítótár által használt tranzakciók száma." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "A MySQL-kiszolgálóhoz való (sikeres vagy sikertelen) csatlakozás " "kísérleteinek száma." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13318,11 +13293,11 @@ msgstr "" "nagy, akkor növelheti a tmp_table_size értékét, mely az ideiglenes táblákból " "memóriaalapúakat csinál a lemezalapú helyett." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "Ennyi ideiglenes fájlt hozott létre a mysqld." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13330,7 +13305,7 @@ msgstr "" "A szerver által az utasítások végrehajtásakor automatikusan létrehozott, a " "memóriában tárolt ideiglenes táblák száma." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13338,7 +13313,7 @@ msgstr "" "Az INSERT DELAYED utasítással írt sorok száma, melyeknél néhány hiba történt " "(valószínűleg ismétlődő kulcs)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13346,23 +13321,23 @@ msgstr "" "A használatban lévő INSERT DELAYED kezelőszálak száma. Minden eltérő " "táblának, melyen valaki INSERT DELAYED parancsot használ, saját szála lesz." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "A beírt INSERT DELAYED sorok száma." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "A végrehajtott FLUSH utasítások száma." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "A belső COMMIT utasítások száma." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "Egy sornak a táblázatból történő törléseinek a száma." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13372,7 +13347,7 @@ msgstr "" "megadott nevű táblát. Ezt hívják felfedezésnek. A handler_discover jelzi a " "táblák felfedezésének számát." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13383,7 +13358,7 @@ msgstr "" "például a SELECT col1 FROM foo azt feltételezi, hogy a col1 kerül " "indexelésre." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -13391,7 +13366,7 @@ msgstr "" "Egy sor kulcs alapján történő beolvasási kéréseinek száma. Ha ez magas, " "akkor jól mutatja, hogy a lekérdezések és a táblák megfelelően indexeltek." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13401,7 +13376,7 @@ msgstr "" "ha Ön tartománymegkötéses index oszlopot kérdez le, vagy ha indexvizsgálatot " "végez." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13409,7 +13384,7 @@ msgstr "" "A kulcssorrendben előző sort beolvasandó kérések száma. Ezt a beolvasási " "módszert főleg az ORDER BY … DESC optimalizálásához használják." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13421,7 +13396,7 @@ msgstr "" "Valószínűleg sok olyan lekérdezés van, s a MySQL-nek teljes táblákat kell " "megvizsgálnia, vagy a kulcsokat nem megfelelően használó illesztések vannak." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13433,35 +13408,35 @@ msgstr "" "hogy a táblák nem megfelelően indexeltek, vagy a lekérdezések nincsenek írva " "az indexek kihasználása végett." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "A belső ROLLBACK utasítások száma." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "A kérések száma egy táblában lévő sor frissítéséhez." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "A kérések száma egy táblában lévő sor beszúrásához." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "Az adatokat tartalmazó lapok száma (piszkos vagy tiszta)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "A jelenleg piszkos lapok száma." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "A pufferkészlet oldalainak száma, melyeket kiírásra kértek." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "A szabad lapok száma." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13471,7 +13446,7 @@ msgstr "" "írás alatt lévő oldalak, melyeket bizonyos más okok miatt nem lehet kiírni " "vagy eltávolítani." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13483,11 +13458,11 @@ msgstr "" "Ez az érték Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data értékként is számolható." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "A pufferkészlet teljes mérete lapokban." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13496,7 +13471,7 @@ msgstr "" "akkor történik, ha egy lekérdezés meg akarja vizsgálni egy tábla nagy " "részét, viszont véletlenszerű sorrendben." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13504,11 +13479,11 @@ msgstr "" "Az InnoDB által kezdeményezett sorozatos előreolvasások száma. Ez akkor " "történik, mikor az InnoDB sorozatos teljes táblavizsgálatot tart." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "Az InnoDB által elvégzett logikai olvasási kérések száma." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13516,7 +13491,7 @@ msgstr "" "A logikai olvasások száma, melyeket az InnoDB nem tudott a pufferkészletből " "kielégíteni, s egyoldalas beolvasást végzett." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13531,53 +13506,53 @@ msgstr "" "méretét megfelelően állították be, akkor ennek az értéknek kicsinek kell " "lennie." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "Az InnoDB pufferkészletébe történt írások száma." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "Az fsync() műveletek eddigi száma." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "A folyamatban lévő fsync() műveletek száma." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "A folyamatban lévő olvasások száma." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "A folyamatban lévő írások száma." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "Az eddig beolvasott adatok mennyisége bájtban." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "Az összes beolvasott adat." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "Az összes írott adat." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "Az összes írott adat, bájtban." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "A végrehajtott duplaírásos írások száma, s az e célból kiírt oldalak száma." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" "A végrehajtott duplaírásos írások száma, s az e célból kiírt oldalak száma." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13585,35 +13560,35 @@ msgstr "" "Várakozások száma, amiket a naplópuffer kis mérete okozott és folytatás " "előtt meg kellett várni a kiírást." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "A naplóírási kérések száma." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "A naplófájlba történt fizikai írások száma." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "A naplófájlba történt fsync() írások száma." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "A folyamatban lévő naplófájl fsync-ek száma." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "A folyamatban lévő naplófájl írások száma." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "A naplófájlba írt bájtok száma." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "A létrehozott lapok száma." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -13622,51 +13597,51 @@ msgstr "" "került számolásra az oldalakban; az oldal mérete teszi lehetővé a bájtokká " "történő könnyű átalakítást." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "A beolvasott lapok száma." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "Az írott lapok száma." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "A jelenleg várakozás alatt lévő sorzárolások száma." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "A sorzároláshoz szükséges átlag időtartam milliszekundumban." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "A sorzárolásokra fordított összes idő milliszekundumban." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "A sorzároláshoz szükséges maximális időtartam milliszekundumban." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "A sorzárolásra váráshoz szükséges alkalmak száma." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "Az InnoDB táblákból törölt sorok száma." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "Az InnoDB táblákba beszúrt sorok száma." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "Az InnoDB táblákból beolvasott sorok száma." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "Az InnoDB táblákban frissített sorok száma." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13674,7 +13649,7 @@ msgstr "" "A kulcsgyorsítótárban lévő kulcsblokkok száma, melyek megváltoztak, de még " "nem kerültek lemezre kiírásra. Ez Not_flushed_key_blocks néven ismert." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -13682,7 +13657,7 @@ msgstr "" "A kulcsgyorsítótárban lévő, nem használt blokkok száma. Ezzel az értékkel " "állapíthatja meg, hogy mennyire van használatban a kulcsgyorsítótár." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13691,15 +13666,15 @@ msgstr "" "A kulcsgyorsítótárban lévő használt blokkok száma. Ez az érték egy maximális " "jel, mely a valamikor használatban volt blokkok számát jelzi." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "Használt kulcs gyorsítótár százalékban (számított érték)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "A gyorsítótárból egy kulcsblokk beolvasásához szükséges kérések száma." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13710,7 +13685,7 @@ msgstr "" "sikertelen találatainak aránya a Key_reads/Key_read_requests alapján " "számítható ki." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13718,21 +13693,21 @@ msgstr "" "Kulcs gyorsítótár-tévesztés számított mértéke a fizikai olvasás olvasási " "kérésekhez való viszonyítása alapján (számított érték)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "A kérések száma egy kulcsblokk gyorsítótárba történő írásához." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "Egy kulcsblokk lemezre történő fizikai írásainak száma." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Fizikai írás százaléka az írási kérésekhez viszonyítva (számított érték)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13743,7 +13718,7 @@ msgstr "" "költségének lekérdezéséhez hasznos. Az alapértelmezett 0 érték azt jelenti, " "hogy lekérdezés lefordítására még nem került sor." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13751,11 +13726,11 @@ msgstr "" "A kapcsolatok maximális száma, amely már egyidejűleg használatban van a " "szerver indítása óta." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Az INSERT DELAYED sorokban írásra várakozó sorok száma." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13763,21 +13738,21 @@ msgstr "" "Az eddig megnyitott táblák száma. Ha a megnyitott táblák nagyok, akkor " "valószínűleg túl kicsi a táblagyorsítótár értéke." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "A megnyitott fájlok száma." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Az adatfolyamok száma, melyek nyitottak (főleg a naplózáshoz kerül " "felhasználásra)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "A megnyitott táblák száma." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13787,19 +13762,19 @@ msgstr "" "töredezettség állhat fenn, amelyet a FLUSH QUERY CACHE paranccsal lehet " "orvosolni." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "A szabad memória mérete a lekérdezési gyorsítótárhoz." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "A gyorsítótár találatok száma." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "A gyorsítótárhoz adott lekérdezések száma." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13812,7 +13787,7 @@ msgstr "" "lekérdezési gyorsítótár a legrégebben használt (LRU) stratégiával dönti el, " "hogy mely lekérdezéseket kell eltávolítani a gyorsítótárból." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13820,19 +13795,19 @@ msgstr "" "A nem gyorsítótárazott lekérdezések száma (nem gyorsítótárazható, vagy nem " "gyorsítótárazott a query_cache_type beállítás miatt)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "A gyorsítótárban bejegyzett lekérdezések száma." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "A blokkok száma a lekérdezési gyorsítótárban." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "A hibabiztos többszörözés állapota (még nincs megvalósítva)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -13840,11 +13815,11 @@ msgstr "" "Az indexeket nem használó illesztések száma. Ha ez az érték nem 0, akkor " "ellenőrizze körültekintően a táblák indexeit." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "Egy hivatkozási táblán tartománykeresést használt illesztések száma." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -13853,7 +13828,7 @@ msgstr "" "használatát ellenőrzik. (Ha ez nem 0, akkor ellenőrizze körültekintően a " "táblák indexeit.))" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13861,15 +13836,15 @@ msgstr "" "Az első táblán tartományokat használt illesztések száma. (Normál esetben ez " "nem súlyos, még ha túl nagy is ez.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "Az első tábla teljes vizsgálatát elvégzett illesztések száma." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "A kisegítő SQL szál által épp megnyitott ideiglenes táblák száma." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13877,11 +13852,11 @@ msgstr "" "A többszörözésben kisegítő SQL szál (az indítás óta) ennyiszer próbálta újra " "a tranzakciókat." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ez BE, ha ez főszerverhez csatlakoztatott kisegítő szerver." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -13889,14 +13864,14 @@ msgstr "" "A szálak száma, melyek létrehozásához slow_launch_time másodpercnél többre " "volt szükség." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "A lekérdezések száma, melyekhez long_query_time másodpercnél többre volt " "szükség." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13906,23 +13881,23 @@ msgstr "" "végeznie. Ha ez az érték nagy, akkor fontolja meg a sort_buffer_size " "rendszerváltozó értékének növelését." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "A tartományokkal végzett rendezések száma." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "Rendezett sorok száma." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "A tábla vizsgálatával végrehajtott rendezések száma." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "Azonnali táblazárolás alkalmainak száma." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13934,7 +13909,7 @@ msgstr "" "előbb optimalizálja a lekérdezéseket, majd vagy ossza fel a táblát vagy " "táblákat, vagy használja a többszörözést." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13944,11 +13919,11 @@ msgstr "" "Threads_created/Connections alapján számítható ki. Ha ez az érték piros, " "akkor növelnie kell a thread_cache_size méretét." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "A jelenleg megnyitott kapcsolatok száma." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13959,11 +13934,11 @@ msgstr "" "nagy, akkor növelheti a thread_cache_size értékét. (Normál esetben ez nem " "növeli jelentősen a teljesítményt, ha jó szálmegvalósítása van.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "Szálkészlet-gyorsítótár találati aránya (számított érték)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "A nem alvó szálak száma." @@ -13972,57 +13947,57 @@ msgstr "A nem alvó szálak száma." msgid "Users of '%s' user group" msgstr "A '%s' felhasználói csoport felhasználói" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "Nem található ehhez a felhasználói csoporthoz tartozó felhasználó." -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "Felhasználói csoportok" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "Szerver level fülek" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "Adatbázis level fülek" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "Tábla level fülek" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "Felhasználók mutatása" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "Felhasználói csoport hozzáadása" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "'%s' Felhasználói csoport szerkesztése" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "Felhasználói csoport menü hozzárendelések" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "Csoport neve:" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "Szerver level fülek" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "Adatbázis level fülek" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "Tábla level fülek" @@ -14084,21 +14059,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "Felismerhetetlen adattípus." -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "Váratlan lezáró zárójel." - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "Egy álnév korábban már megtalálva." -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "Váratlan pont." -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14167,118 +14138,118 @@ msgstr "A(z) %1$s esemény létrejött." msgid "Variable name was expected." msgstr "Táblanév sablon" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "at beginning of table" msgid "Unexpected beginning of statement." msgstr "a tábla elejénél" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "Felismerhetetlen utasítástípus." -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "Nem volt korábban elindított tranzakció." -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "Váratlan jelsor." -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 #, fuzzy #| msgid "No transaction was previously started." msgid "This type of clause was previously parsed." msgstr "Nem volt korábban elindított tranzakció." -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 #, fuzzy #| msgid "A new statement was found, but no delimiter between them." msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "Egy új utasítás található, de nincs elválasztó köztük." -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "Felismerhetetlen kulcsszó." -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 #, fuzzy #| msgid "The number of tables that are open." msgid "The name of the entity was expected." msgstr "A megnyitott táblák száma." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "Template was deleted." msgid "At least one column definition was expected." msgstr "A sablon törölve lett." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "Részletes profil" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "Sorrend" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "Állapot" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "Állapotösszegzés" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "Teljes idő" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "%s idő" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "Hívások" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "ø idő" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Az SQL-lekérdezés hozzáadása a könyvjelzőkhöz" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "Címke:" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "" "A hozzáférés ehhez a könyvjelzőhöz az összes felhasználó számára " "engedélyezett" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "A könyvjelző nem jött létre!" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" "A(z) „%s” könyvjelző használata alapértelmezett tallózás lekérdezésként." -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "Megjelenítés PHP kódként" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " @@ -14287,7 +14258,7 @@ msgstr "" "A jelenlegi kijelölés nem tartalmaz egyedi oszlopot. A Rács szerkesztése, " "jelölőnégyzet, Szerkesztés, Másolás és Törlés funkciók nem érhetők el. %s" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " @@ -14297,7 +14268,7 @@ msgstr "" "Szerkesztés, Másolás és Törlés funkciók nem kívánatos viselkedést " "eredményezhetnek. %s" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probléma a(z) `%s` tábla indexeivel" @@ -14325,27 +14296,27 @@ msgstr "Automatikusan mentett lekérdezés beszerzése" msgid "Bind parameters" msgstr "Paraméterek kötése" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "Az SQL-lekérdezés hozzáadása a könyvjelzőkhöz:" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Az ugyanazon nevű könyvjelző kicserélése" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Elválasztó" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "A fenti lekérdezés megjelenítése itt újra" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "Visszagörgetés, ha elkészült" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Csak megtekinthető" @@ -14389,112 +14360,112 @@ msgstr "%s nyomkövetése deaktiválva" msgid "Deactivate now" msgstr "Kikapcsolás most" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Létrehozva" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Frissítve" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 msgid "Delete version" msgstr "Verzió törlése" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Nyomkövetési jelentés" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Szerkezeti pillanatkép" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "aktív" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "nem aktív" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "Nyomkövetési utasítások" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "Nyomkövetési adat sor törlése a jelentésből" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "Nincs adat" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "%1$s mutatása %2$s és %3$s közti dátummal és %4$s %5$s felhasználóval" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "SQL kiírás (fájl letöltés)" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "SQL kiírás" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "Ez az opció ki fogja cserélni a táblát és a tartalmazott adatot." -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "SQL végrehajtás" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "Exportálás: %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "Adat manipuláló utasítás" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "Adat definiáló utasítás" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Dátum" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Felhasználónév" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "%s verzió pillanatfelvételre (SQL kód)" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Nincs" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "Adatdefiníció nyomonkövetése sikeresen törölve" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "Adatmanipuláció nyomonkövetése sikeresen törölve" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14502,62 +14473,62 @@ msgstr "" "A halmaz futtatható ideiglenes tábla létrehozásával és használatával. " "Győződjön meg arról, hogy van erre jogosultsága." -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "Kommentelje ki ezt a két sort ha nincs rá szüksége." -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "Az SQL utasítások exportálva lettek. Másolja ki a halmazt vagy futtassa." -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "Követési jelentés '%s' táblához" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "%1$s nyomkövetése aktiválva lett %2$s verzióban." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "%1$s nyomkövetése deaktiválva lett %2$s verzióban." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "%1$s / %2$s verzió törölve lett." -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "%1$s verzió létrejött, a %2$s nyomonkövetése aktív." -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Nem követett táblák" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Tábla nyomon követése" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Nyomon követett táblák" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Legutolsó verzió" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "Nyomkövetés törlése" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Verziók" @@ -14565,11 +14536,11 @@ msgstr "Verziók" msgid "Manage your settings" msgstr "Beállítások kezelése" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "A módosítások mentése megtörtént." -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14674,7 +14645,7 @@ msgstr "Nincs adatbázis" msgid "View dump (schema) of databases" msgstr "Adatbázis kiírás (séma) megtekintése" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14705,7 +14676,7 @@ msgstr "" "A phpMyAdmin nem tudta leállítani a(z) %s szálat. Valószínűleg már " "befejeződött." -#: server_status_queries.php:50 +#: server_status_queries.php:47 #, fuzzy #| msgid "Not enough privilege to view users." msgid "Not enough privilege to view query statistics." @@ -15560,43 +15531,49 @@ msgstr "Pont" msgid "Stacked" msgstr "Halmozott" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "Diagramcím" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "X tengely:" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "Adatsorok:" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "X tengely címkéje:" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "X értékek" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "Y tengely címkéje:" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Y érték" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "Az adatsorok nevei egy oszlopban vannak" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "Adatsorok oszlopa:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 msgid "Value Column:" msgstr "Érték oszlopa:" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "Diagram mentése képként" @@ -15651,49 +15628,50 @@ msgstr "Megjegyzés:" msgid "Drag to reorder" msgstr "Húzza az újrarendezéshez" -#: templates/table/relation/common_form.phtml:7 -msgid "Internal relations" -msgstr "Belső kapcsolatok" - -#: templates/table/relation/common_form.phtml:11 -msgid "Internal relation" -msgstr "Belső kapcsolat" - -#: templates/table/relation/common_form.phtml:14 -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "" -"Nincs szükség belső kapcsolatra, ha létezik megfelelő IDEGEN KULCS kapcsolat." - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 msgid "Foreign key constraints" msgstr "Idegen kulcs megszorítások" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 msgid "Actions" msgstr "Műveletek" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 msgid "Constraint properties" msgstr "Megszorítás tulajdonságai" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" "Csak az indexszel rendelkező oszlopok lesznek megjelenítve. Lent létrehozhat " "egy indexet." -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 msgid "Foreign key constraint" msgstr "Idegen kulcs megszorítás" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 msgid "+ Add constraint" msgstr "+ Megszorítás hozzáadása" -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +msgid "Internal relations" +msgstr "Belső kapcsolatok" + +#: templates/table/relation/common_form.phtml:80 +msgid "Internal relation" +msgstr "Belső kapcsolat" + +#: templates/table/relation/common_form.phtml:83 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "" +"Nincs szükség belső kapcsolatra, ha létezik megfelelő IDEGEN KULCS kapcsolat." + +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "Válassza ki a megjelenítendő oszlopot:" @@ -15822,7 +15800,7 @@ msgid "at beginning of table" msgstr "a tábla elejénél" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -15871,7 +15849,7 @@ msgstr "particionált" msgid "Edit partitioning" msgstr "Particionálás eltávolítása" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "Nézet szerkesztése" @@ -17295,6 +17273,40 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "A concurrent_insert 0-ra van állítva" +#~ 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" + +#~ 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" + +#~ msgid "tables" +#~ msgstr "táblák" + +#~ msgid "views" +#~ msgstr "nézetek" + +#~ msgid "procedures" +#~ msgstr "eljárások" + +#~ msgid "events" +#~ msgstr "események" + +#~ msgid "functions" +#~ msgstr "függvények" + +#~ msgid "Filter databases by name or regex" +#~ msgstr "Adatbázisok szűrése név vagy reguláris kifejezés szerint" + +#~ msgid "Filter by name or regex" +#~ msgstr "Szűrés név vagy reguláris kifejezés szerint" + +#~ msgid "Unexpected closing bracket." +#~ msgstr "Váratlan lezáró zárójel." + #~ msgid "Username and hostname didn't change." #~ msgstr "A felhasználónév és gépnév nem változott." diff --git a/po/hy.po b/po/hy.po index ed0115b8b2..a7b175dc83 100644 --- a/po/hy.po +++ b/po/hy.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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-24 16:49+0200\n" "Last-Translator: Andrey Aleksanyants \n" "Language-Team: Armenian Are you sure you " "want to continue?" @@ -1951,51 +1963,51 @@ msgstr "" "Այս գործողությունը կարող է փոխել որոշ սյունակների սահմանումները։
Համոզվա՞ծ եք, որ ցանկանում եք շարունակել։" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "Շարունակել" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "Ավելացնել առաջնային բանալի" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "Առաջնային բանալին ավելացվեց։" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "Անցում դեպի հաջորդ քայլ …" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "'%s' աղյուսակի կարգավորման առաջին քայլը ավարտված է։" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "Քայլի ավարտ" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "Կարգավորման երկրորդ քայլ (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Պատրաստ" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "Հաստատեք մասնակի կախվածությունները" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "Ընտրած մասնակի կախվածությունները հետևյալ են՝" -#: js/messages.php:440 +#: js/messages.php:441 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2003,21 +2015,21 @@ msgstr "" "Նշում՝ a, b -> d,f ենթադրում է, որ a և b սյունակների համակցված արժեքները " "կարող են որոշել d և f սյունակների արժեքները։" -#: js/messages.php:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "Ընտրած մասնակի կախվածություններ չկան։" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Ցուցադրեք ինձ հնարավոր մասնակի կախվածությունները՝ աղյուսակի տվյալների հիման " "վրա" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "Թաքցնել մասնակի կախվածությունների ցանկը" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2025,168 +2037,168 @@ msgstr "" "Խնդրում ենք սպասել։ Սա կարող է տևել մի քանի վայրկյան՝ կախված տվյալների " "ծավալից և աղյուսակի սյունակների քանակից։" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "Քայլ" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "Կկատարվեն հետևյալ գործողությունները՝" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "ՋՆՋԵԼ %s սյունակները %s աղյուսակից" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "Ստեղծել հետևյալ աղյուսակը" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "Կարգավորման երրորդ քայլ (3NF)" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "Հաստատել անցողական կախվածությունները" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "Ընտրած կախվածությունները հետևյալ են՝" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "Ընտրած կախվածություններ չկան։" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Պահպանել" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Թաքցնել որոնման եզրերը" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Ցուցադրել որոնման եզրերը" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "Որոնման ընդգրկույթ" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "Սյունակի առավելագույնը՝" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "Սյունակի նվազագույնը՝" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "Նվազագույն արժեքը՝" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "Առավելագույն արժեքը՝" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "Թաքցնել գտնելու և փոխարինելու եզրերը" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "Ցուցադրել գտնելու և փոխարինելու եզրերը" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "Ամեն կետը ներկայացնում է տվյալների տողը։" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "Մկնիկը կետի վրա պահելուց կցուցադրվի դրա պիտակը։" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Խոշորացնելու համար՝ մկնիկով ընտրեք գծապատկերի հատվածը։" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" "Կտտացրեք 'Վերակայել չափը' կոճակը՝ սկզբնական չափերին վերադառնալու համար։" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Կտտացրեք տվյալների կետը՝ տվյալների տողը դիտելու և հավանաբար խմբագրելու համար։" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Գծագիրը կարող է չափափոխվել՝ այն ներքևի աջ անկյան երկայնքով քաշելու դեպքում։" -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "Ընտրեք երկու սյունակ" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "Ընտրեք երկու տարբեր սյունակ" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "Տվյալների կետի պարունակությունը" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Անտեսել" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Պատճենել" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Կետ" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Գիծ" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Բազմանկյուն" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Երկրաչափություն" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "Ներքին ուրվագիծ" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "Արտաքին ուրվագիծ" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "Ցանկանու՞մ եք պատճենել ծածկագրման բանալին։" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "Ծածկագրման բանալի" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2194,24 +2206,24 @@ msgstr "" "Ցուցադրում է, որ դուք կատարել եք փոփոխություններ այս էջում։ Դրանք չեղարկելու " "համար ձեզանից հաստատում կպահանջվի" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Ընտրեք հղման բանալին" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Ընտրեք արտաքին բանալին" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "Ընտրեք առաջնային բանալիի կամ յուրահատուկ բանալիի սյունակը։" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Ընտրեք սյունակը՝ ցուցադրելու համար" -#: js/messages.php:532 +#: js/messages.php:533 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 +2231,77 @@ msgstr "" "Դուք չեք պահպանել դասավորության մեջ կատարած փոփոխությունները։ Առանց " "պահպանման դրանք չեղակրվելու են։ Շարունակե՞լ։" -#: js/messages.php:535 +#: js/messages.php:536 msgid "Page name" msgstr "Էջի անուն" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Պահպանել էջը" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Պահպանել էջը որպես" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Բացել էջը" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "Ջնջել էջը" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Առանց վերնագրի" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "Ընտրեք հաջորդ էջը" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "Տրամադրեք վավերական էջի անունը" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "Ցանկանու՞մ եք պահպանել փոփոխությունները ընթացիկ էջում։" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "Էջը հաջողությամբ ջնջվեց" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "Կապակցումների ուրվագրի արտահանում" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Փոփոխությունները պահպանվեցին" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "Ավելացնել հարաչափ \"%s\" սյունակի համար։" -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "ստեղծվել է %d առարկա։" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Կատարել" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "Սեղմեք Esc ստեղնը՝ խմբագրումը չեղարկելու համար։" -#: js/messages.php:557 +#: js/messages.php:558 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,41 +2309,41 @@ msgstr "" "Դուք խմբագրել եք որոշ տվյալներ, և դրանք դեռ չեն պահպանվել։ Համոզվա՞ծ եք, որ " "ցանկանում եք լքել այս էջը՝ առանց տվյալների պահպանման։" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "Քաշեք՝ վերադասակարգելու համար։" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "Կտտացրեք՝ այդյունքները այս սյունակով դասակարգելու համար։" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "Կտտացրեք՝ նշելու/ապանշելու համար։" -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "Երկկտտացրեք՝ սյունակի անունը պատճենելու համար։" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Կտտացրեք ելնող սլաքը՝
սյունակի տեսանելիությունը փոխարկելու համար։" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Ցուցադրել բոլորը" -#: js/messages.php:574 +#: js/messages.php:575 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." @@ -2340,13 +2352,13 @@ msgstr "" "պահպանելուց հետո ցանցավորման խմբագրման, նշատուփի, խմբագրման և ջնջման " "հղումների հետ կապված հատկությունները կարող են չաշխատել։" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Տրամադրեք վավերական տասնվեցերորդական տող։ Վավերական նշաններ են հանդիսանում " "0-9, A-F։" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2354,129 +2366,96 @@ msgstr "" "Իսկապե՞ս եք ցանկանում ցուցադրել բոլոր տողերը։ Մեծ աղյուսակի դեպքում դա կարող " "է խանգարել դիտարկչի աշխատանքը։" -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "Սկզբնական երկարություն" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "չեղարկել" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Ընդհատված" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "Հաջողում" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "Ներմուծել կարգավիճակը" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Քաշեք ֆայլերը այստեղ" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "Սկզբից նշեք տվյալների բազան" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Դուք կարող եք խմբագրել արժեքների մեծ մասը՝
դրանց վրա անմիջապես " "երկկտտացնելով։" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Դուք կարող եք նաև խմբագրել տվյալների մեծ մասը
անմիջապես դրանց վրա " "կտտացնելով։" -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "Անցնել հղմանը՝" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "Պատճենել սյունակի անունը։" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "Աջ-կտտացրեք սյունակի անունը՝ այն պատճենելու համար։" -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Ստեղծել գաղտնաբառը" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Ստեղծել" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "Ավելին" -#: js/messages.php:623 +#: js/messages.php:624 msgid "Show panel" msgstr "Ցուցադրել փեղկը" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "Թաքցնել փեղկը" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "Ցուցադրել թաքնված նավարկման ստորակարգման տարրերը։" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "Կապել հիմնական փեղկին" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "Ապակապել հիմնական փեղկից" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" -"Բոլոր տվյալների բազաներով զտման համար սեղմեք Enter՝ որոնման հարցումը " -"մուտքագրելուց հետո" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" -"Տվյալների բազայում բոլոր %s-ներով զտելու համար սեղմեք Enter՝ որոնման " -"հարցումը մուտքագրելուց հետո" - #: js/messages.php:632 -msgid "tables" -msgstr "աղյուսակների" - -#: js/messages.php:633 -msgid "views" -msgstr "ներկայացումների" - -#: js/messages.php:634 -msgid "procedures" -msgstr "ընթացակարգերի" - -#: js/messages.php:635 -msgid "events" -msgstr "իրադարձությունների" - -#: js/messages.php:636 -msgid "functions" -msgstr "գործառույթների" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "Հարցված էջը չի գտնվել պատմության մեջ, հնարավոր է որ այն սպառվել է։" -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2486,27 +2465,27 @@ msgstr "" "այն։ Ամենավերջին տարբերակն է՝ %s, թողարկված՝ %s։" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", վերջին կայուն տարբերակն է՝" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "արդի է" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "Ստեղծել ներկայացում" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "Ուղարկել սխալի զեկույցը" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "Ուղարկել սխալի զեկույցը" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2514,15 +2493,15 @@ msgstr "" "Տեղի է ունեցել JavaScript-ի ճակատագրական սխալը։ Ցանկանու՞մ եք ուղարկել սխալի " "զեկույցը։" -#: js/messages.php:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "Փոխել զեկուցման կայանքները" -#: js/messages.php:660 +#: js/messages.php:652 msgid "Show report details" msgstr "Ցուցադրել զեկույցի մանրամասները" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2530,7 +2509,7 @@ msgstr "" "Ձեր արտահանումը թերի է՝ PHP-ի մակարդակում կատարման ժամանակի ցածր սահմանաչափի " "պատճառով։" -#: js/messages.php:667 +#: js/messages.php:659 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2540,351 +2519,351 @@ msgstr "" "ժամանակ որոշ դաշտերը կարող են անտեսվել՝ PHP-ի կազմաձևի max_input_vars արժեքի " "պատճառով։" -#: js/messages.php:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "Սպասարկչում հայտնաբերվել են որոշակի սխալներ։" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "Նայեք ընթացիկ պատուհանի ներքևի մասը։" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "Անտեսել բոլորը" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "Ձեր կայանքներին համապատասխան դրանք այժմ ներառվում են, խնդրում ենք սպասել։" -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "Կատարե՞լ այս հարցումը ևս մեկ անգամ։" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "Իսկապե՞ս եք ցանկանում ջնջել այս էջանիշը։" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" "SQL-ի վրիպազերծման տեղեկությունները ստանալու ընթացքում տեղի է ունեցել սխալ։" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s հարցում կատարվեց %s անգամ %s վայրկյանում։" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "փոխանցվեց %s փաստարկ" -#: js/messages.php:707 +#: js/messages.php:699 msgid "Show arguments" msgstr "Ցուցադրել փաստարկները" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "Թաքցնել փաստարկները" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "Տևողությունը՝" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "Նախորդ" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "Հաջորդ" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Այսօր" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "Հունվարի" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "Փետրվարի" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "Մարտի" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "Ապրիլի" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Մայիսի" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "Հունիսի" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "Հուլիսի" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "Օգոստոսի" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "Սեպտեմբերի" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "Հոկտեմբերի" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "Նոյեմբերի" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "Դեկտեմբերի" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Հնվ" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Փտվ" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Մրտ" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Ապր" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "Մյս" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Հնս" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Հյս" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Օգս" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Սպտ" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Հկտ" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Նյմ" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Դկտ" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "Կիրակի" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "Երկուշաբթի" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "Երեքշաբթի" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "Չորեքշաբթի" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "Հինգշաբթի" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "Ուրբաթ" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "Շաբաթ" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "Կիր" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Երկ" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Երք" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Չրք" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Հնգ" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Ուր" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Շբթ" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "Կի" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "Եկ" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "Եք" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "Չք" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "Հն" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "Ու" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "Շբ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "Շաբ" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "calendar-year-month" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "թ." -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Ժամ" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Րոպե" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Վայրկյան" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "Այս դաշտը պարտադիր է" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "Ուղղեք այս դաշտը" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "Տրամադրեք վավերական էլ-փոստի հասցեն" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "Տրանադրեք վավերական URL-ը" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "Տրամադրեք վավերական ամսաթիվը" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "Տրանադրեք վավերական ամսաթիվը ( ISO )" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "Տրամադրեք վավերական թիվը" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "Տրամադրեք վավերական վարկային քարտի համարը" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "Մուտքագրեք միայն թվանշանները" @@ -2892,41 +2871,41 @@ msgstr "Մուտքագրեք միայն թվանշանները" msgid "Please enter the same value again" msgstr "Մուտքագրեք նույն արժեքը ևս մեկ անգամ" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "Խնդրում ենք մուտքագրել {0} նշանից ոչ ավել" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "Խնդրում ենք մուտքագրել {0} նշանից ոչ պակաս" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "Խնդրում ենք մուտքագրել արժեքը՝ {0}-ի և {1}-ի միջև երկարությամբ" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "Խնդրում ենք մուտքագրել արժեքը {0}-ի և {1}-ի միջև" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "Խնդրում ենք մուտքագրել արժեքը {0}-ից պակաս կամ հավասար" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "Խնդրում ենք մուտքագրել արժեքը {0}-ից ավել կամ հավասար" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "Խնդրում ենք վավերական ամսաթիվը և ժամանակը" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "Խնդրում ենք մուտքագրել վավերական տասնվեցերորդական արժեքը" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Սխալ" @@ -3017,11 +2996,12 @@ msgstr "Կրկնել հարցումը" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3063,7 +3043,7 @@ msgstr "Ընթացիկ ժամանակաշրջանի ընթացքում" msgid "Explain" msgstr "Բացատրել" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Հարցումների հսկում" @@ -3097,8 +3077,8 @@ msgid "History" msgstr "Պատմություն" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3245,7 +3225,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Փոխակրել մուգ ոճին" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3253,26 +3233,26 @@ msgstr "" "Սպասարկիչի չի պատասխանում (կամ էլ սպասարկչի տեղային բնակը պատշաճ կազմաձևած " "չէ)։" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "Սպասարկիչը չի պատասխանում։" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" "Խնդրում ենք ստուգել տվյալների բազան պարունակող պանակի արտոնությունները։" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Մանրամասները …" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Չհաջողվեց միանալ որպես controluser, ինչպես այն սահմանված է կազմաձևի մեջ։" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3282,8 +3262,8 @@ msgstr "" msgid "Ascending" msgstr "Ըստ աճման" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3426,8 +3406,8 @@ msgstr[0] "%1$s համընկնում %2$s-ում" msgstr[1] "%1$s համընկնում %2$s-ում" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3469,119 +3449,120 @@ msgstr "Ապանշել բոլորը" msgid "Inside column:" msgstr "Սյունակում՝" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "Պահպանել փոփոխված տվյալները" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "Վերականգնել սյունակների հերթականությունը" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "Զտել տողերը" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "Որոնել այս աղյուսակում" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "Սկիզբ" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "Նախորդ" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "Հաջորդ" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "Վերջ" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Բոլորը" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Տողերի քանակը՝" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Դասակարգել ըստ բանալիի" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "Մասնակի գրվածքներ" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "Ամբողջական գրվածքներ" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Կապակցող բանալի" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 msgid "Display column for relations" msgstr "Սյունակների մեկնաբանությունների ցուցադրումը" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "Ցուցադրել երկուական տվյալները" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "Ցուցադրել BLOB տվյալները" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "Թաքցնել դիտարկչի ձևափոխումը" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "Գրվածք (Well Known Text)" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "Երկուական (Well Known Binary)" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "Տողը ջնջվեց։" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Ավարտել" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Կարող է մոտավոր լինել։ Դիմեք [doc@faq3-11]FAQ 3.11[/doc]։" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "Ձեր SQL հարցումը հաջողությամբ կատարվեց։" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3590,64 +3571,64 @@ msgstr "" "Այս ներկայացումը ունի առնվազն այս տողերի քանակը։ Խնդրում ենք դիմել " "%sփաստաթղթերին%s։" -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "%1s -ից %2s տողերի ցուցադրում" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "Ընդամենը %1$d,%2$d հարցման մեջ" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "Ընդամենը %d" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "Հարցումը տևեց %01.4f վայրկյան։" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Ներառյալ նշվածները՝" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 msgid "Check all" msgstr "Նշել բոլորը" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Տպման տարբերակը" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Հարցման արդյունքների օգտագործումը" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Ցուցադրել գծապատկերը" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "Տեսողացնել GIS տվյալները" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "Հղումներ չեն գտնվել։" @@ -3743,19 +3724,19 @@ msgstr "Ցուցակագիրը սահմանված չէ։" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Ցուցակագրեր" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3764,24 +3745,24 @@ msgid "Action" msgstr "Գործողություն" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Բանալիի անվանումը" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Յուրահատուկ" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Փաթեթավորված" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Բազմության հզորություն" @@ -3789,8 +3770,8 @@ msgstr "Բազմության հզորություն" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3800,8 +3781,8 @@ msgid "Collation" msgstr "Համադրում" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3817,15 +3798,15 @@ msgstr "Առաջնային բանալին ջնջվեց։" msgid "Index %s has been dropped." msgstr "%s ցուցակագիրը ջնջվեց։" -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Ջնջել" @@ -3866,12 +3847,13 @@ msgstr "Ներկայացում" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3879,7 +3861,7 @@ msgstr "Աղյուսակ" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3888,8 +3870,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3897,41 +3879,41 @@ msgid "Search" msgstr "Որոնում" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Զետեղել" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Արտոնություններ" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Գործողություններ" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Հետագծում" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3942,16 +3924,16 @@ msgstr "Ձգաններ" msgid "Database seems to be empty!" msgstr "Տվյալների բազան դատարկ է" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Հարցում" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Գործընթացներ" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3959,20 +3941,20 @@ msgstr "Գործընթացներ" msgid "Events" msgstr "Իրադարձություններ" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Ձևավորող" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "Կենտրոնական սյունակներ" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Տվյալների բազաներ" @@ -3981,33 +3963,33 @@ msgid "User accounts" msgstr "Օգտվողների հաշիվներ" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Երկուական մատյան" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Կրկնապատկում" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Փոփոխականներ" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Կոդավորումներ" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Պահպանման տեսակներ" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "Խրվակներ" @@ -4302,7 +4284,7 @@ msgstr "Հնարավոր չէ՝ վերանվանել ցուցակագիրը PRIM msgid "No index parts defined!" msgstr "Ցուցակագրի մասերը սահմանված չեն։" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "%1$s-ի արտաքին բանալիի ստեղծման սխալ (ստուգեք տվյալների տեսակները)" @@ -4736,37 +4718,37 @@ msgstr "" msgid "Click to toggle" msgstr "Կտտացրեք՝ փոխարկելու համար" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Զննել համակարգիչը՝" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Վերբեռնումների համար նախատեսված պանակը անհասանելի է։" -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "Վերբեռնելու ֆայլեր չկան։" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Դատարկել" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "Կատարել" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Տպել" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "Օգտվողներ" @@ -4929,8 +4911,8 @@ msgid "Add new column" msgstr "Ավելացնել նոր սյունակ" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -4997,19 +4979,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "Անհրաժեշտ է արդիացնել %s-ը %s կամ բարձր տարբերակին։" -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "Սխալ՝ հետքանշիչի անհամապատասխանություն" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS վրագրելու փորձ" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "հնարավոր խոցելիություն" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "բացահայտվել է թվային ստեղն" @@ -5812,7 +5794,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Ավելացնել AUTO_INCREMENT" @@ -5851,7 +5833,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Ավելացնել %s" @@ -7411,7 +7393,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "Թողնել հարցման դաշտը" @@ -7685,101 +7667,33 @@ msgstr "" msgid "OpenDocument Text" msgstr "OpenDocument-ի ձևաչափ" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "%s աղյուսակը դատարկվել է։" -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "%s ներկայացումը ջնջվեց։" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "%s աղյուսակը ջնջվեց։" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "անհայտ" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "'%s' անունը ամրագրված է MySQL-ի կողմից օգտագործման համար։" -msgstr[1] "'%s' անունները ամրագրված են MySQL-ի կողմից օգտագործման համար։" - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "Ընտրած սյունակներ չկան։" - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "%1$s աղյուսակը հաջողությամբ փոխվել է։" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "Հարցման սխալ" - -#: libraries/controllers/TableStructureController.php:967 -#, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "" - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Փոխել" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Ցուցակագիր" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "Տարածական" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Ամբողջ գրվածքով" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "Հատուկ արժեքները" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -7793,6 +7707,14 @@ msgstr "" msgid "No data to display" msgstr "Ցուցադրելու տվյալներ չկան" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "%1$s աղյուսակը հաջողությամբ փոխվել է։" + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "" @@ -7801,19 +7723,79 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr "Ներքին կապակցումները հաջողությամբ արդիացվեցին։" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "Աղյուսակում որոնում" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "Մոտեցնելով որոնում" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Գտնել և փոխարինել" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "'%s' անունը ամրագրված է MySQL-ի կողմից օգտագործման համար։" +msgstr[1] "'%s' անունները ամրագրված են MySQL-ի կողմից օգտագործման համար։" + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "Ընտրած սյունակներ չկան։" + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "Հարցման սխալ" + +#: libraries/controllers/table/TableStructureController.php:975 +#, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Փոխել" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Ցուցակագիր" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "Տարածական" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Ամբողջ գրվածքով" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "Հատուկ արժեքները" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -7823,7 +7805,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Առանց փոփոխությունների" @@ -7888,7 +7870,7 @@ msgstr "Ստեղծել" msgid "Create database:" msgstr "Ստեղծել տվյալների բազան՝" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Արտոնություններ չկան" @@ -8556,63 +8538,63 @@ msgid "Dump has been saved to file %s." msgstr "" #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "[Տեղի է ունեցել ՀԵՏԴԱՐՁ]" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "Խմբագրել կայանքներ %s-ի համար" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "Անցնել աղյուսակին՝ %s" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "%s-ի կառուցվածքը" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "Անցնել ներկայացնամնը (VIEW)՝ %s" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8620,7 +8602,7 @@ msgstr "" "Հետարկումը հնարավոր է միայն INSERT, UPDATE, DELETE և REPLACE SQL հարցումների " "համար, որոնք պարունակում են շարժիչի գործարքային աղյուսակները։" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "" @@ -8643,73 +8625,73 @@ msgstr "Գործառույթ" msgid "Binary" msgstr "Երկուական" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Երկուական տվյալներ - չեն խմբագրվում" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Կամ" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "Խմբագրել/Զետեղել" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "և հետո" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Զետեղել որպես նոր տող" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "Զետեղել որպես նոր տող և անտեսել սխալներ" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "Ցուցադրել զետեղման հարցումը" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Վերադառնալ նախորդ էջին" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Զետեղել մեկ այլ նոր տող" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Խմբագրել հաջորդ տողը" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" "Օգտագործեք TAB ստեղնը՝ արժեքների դաշտերի միջև տեղափոխվելու, կամ CTRL+սլաքեր՝ " "ցանկացած տեղ տեղափոխվելու համար։" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -8721,11 +8703,11 @@ msgstr "" msgid "Value" msgstr "Արժեքը" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "SQL հարցման ցուցադրում" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "Զետեղված տողի id՝ %1$d" @@ -8741,35 +8723,35 @@ msgstr "Չկա" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Հաջողում" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "Փոխարինել աղյուսակի նախածանցը՝" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "Կրկնապատկել աղյուսակը նախածանցով՝" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "Սկիզբ" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "Վերջ" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "Ավելացնել աղյուսակին նախածանցը՝" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "Ավելացնել նախածանց" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "Իսկապե՞ս եք ցանկանում կատարել այս հարցումը։" @@ -8987,8 +8969,8 @@ msgstr "Ընթացակարգեր՝" msgid "Views:" msgstr "Ներկայացումներ՝" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Ցուցադրել" @@ -9026,18 +9008,15 @@ msgstr[0] "գտնվել է %s արդյունք" msgstr[1] "գտնվել է %s արդյունք" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" -msgstr "Զտել տվյալների բազաները ըստ անվան կամ կանոնավոր արտահայտության" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "Զտել ըստ անվան կամ կանոնավոր արտահայտության" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "Կոծկել բոլորը" @@ -9410,7 +9389,7 @@ msgstr "Վերանվանել տվյալների բազան" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9419,7 +9398,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Կարգավորել արտոնությունները" @@ -9437,18 +9416,18 @@ msgstr "Հեռացնել տվյալների բազան" msgid "Drop the database (DROP)" msgstr "Հեռացնել տվյալների բազան (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Միայն կառուղվածքը" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Կառուցվածքն ու տվյալները" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Միայն տվյալները" @@ -9460,7 +9439,7 @@ msgstr "Կրկնապատկել տվյալների բազան" msgid "CREATE DATABASE before copying" msgstr "Պատճենելուց առաջ ստեղծել տվյալների բազա (CREATE DATABASE)" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Ավելացնել սահմանափակում" @@ -9500,157 +9479,157 @@ msgstr "Պահպանման տեսակը" msgid "Change all column collations" msgstr "Փոխել բոլոր սյունակների համադրումները" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Փոխարկվել կրկնապատկված աղյուսակին" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Աղյուսակի սպասարկում" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Վերլուծել աղյուսակը" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Ստուգել աղյուսակը" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 msgid "Checksum table" msgstr "Ստուգել աղյուսակի ստւգագումարը" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Ապամասնատել աղյուսակը" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Օպտիմիզացնել աղյուսակը" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Վերականգնել աղյուսակը" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "Ջնջել տվյալները կամ աղյուսակը" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "Դատարկել աղյուսակը (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "Ջնջել աղյուսակը (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Վերլուծել" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Ստուգում" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Բարելավվում" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Վերակառուցում" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 msgid "Coalesce" msgstr "Միավորել" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "Մասնաբաժինների սպասարկում" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "Մասնաբաժին %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "Հեռացնել մասնաբաժանումը" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Հնարավոր չէ տեղափոխել աղյուսակն իր մեջ։" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Հնարավոր չէ կրկնապատկել աղյուսակն իր մեջ։" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "%s աղյուսակը տեղափոխվել է %s։" -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "%s աղյուսակը կրկնապատկվել է %s։" -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Աղյուսակի անունը նշված չէ։" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "Այս ձևաչափի համար կայանքներ չկան" @@ -9815,7 +9794,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -9839,21 +9818,21 @@ msgstr "Սահմանում" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Աղյուսակի կառուցվածքը" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -9943,7 +9922,7 @@ msgid "Database:" msgstr "Տվյալների բազան՝" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "Տվյալներ՝" @@ -10035,7 +10014,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "Դատարկել աղյուսակը՝ տվյալներ զետեղելուց առաջ" @@ -10104,8 +10083,8 @@ msgstr "Ըստ երևույթի, ձեր ՏԲ-ն օգտագործում է ընթ #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10113,81 +10092,81 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "Ըստ երևույթի, ձեր ՏԲ-ն օգտագործում է գործառույթներ;" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 msgid "Metadata" msgstr "Անդրտվյալներ" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "%s-ի անդրտվյալները" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Ստեղծում՝" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Վերջին թարմացումը՝" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Վերջին ստուգումը՝" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "օգտագործվում է" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "Ըստ երևույթի, ձեր ՏԲ-ն օգտագործում է ներկայացումներ;" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "Պահպանված աղյուսակների ցուցակագրերը" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "Աղյուսակի ցուցակագրերը" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT՝ պահպանված աղյուսակների համար" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT՝ աղյուսակի համար" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "ԱՂՅՈՒՍԱԿՆԵՐԻ MIME ՏԵՍԱԿՆԵՐԸ" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "Ըստ երևույթի, ձեր ՏԲ-ն օգտագործում է ձգաններ;" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "Տվյալների կարդալու սխալ՝" @@ -10416,9 +10395,9 @@ msgstr "" msgid "Table of contents" msgstr "Բովանդակության աղյուսակը" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Լրացուցիչ" @@ -10582,47 +10561,47 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Սխալ՝ կապակցումը արդեն իսկ առկա է։" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Սխալ՝ հնարավոր չէ ավելացնել արտաքին բանալիի կապակցումը։" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "Սխալ՝ սյունակ(ներ)ի ցուցակագիրը բացակայում է։" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "Սխալ՝ կապակցման հատկությունները կասեցված են։" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "Ավելացվել է մերքին կապակցումը։" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 msgid "Error: Internal relation could not be added!" msgstr "Սխալ՝ հնարավոր չէ ավելացնել ներքին կապակցումը։" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 msgid "FOREIGN KEY relation has been removed." msgstr "Արտաքին բանալիի կապակցումը ջնջվեց։" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Սխալ՝ հնարավոր չէ հեռացնել արտաքին բանալիի կապակցումը։" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 msgid "Error: Internal relation could not be removed!" msgstr "Սխալ՝ հնարավոր չէ ջնջել ներքին կապակցումը։" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "Ներքին կապակցումը ջնջվեց։" @@ -10667,102 +10646,102 @@ msgstr "Դիտարկչի ձևափոխումը" msgid "Please see the documentation on how to update your column_info table. " msgstr "" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Էջանշված SQL հարցում" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL պատմություն" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 msgid "Persistent favorite tables" msgstr "Մշտական ընտրյալ աղյուսակներ" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "Օգտվողների նախընտրանքները" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "Ձևափոխվող ընտրացանկեր" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "Ցուցադրել/թաքցնել նավարկման տարրերը" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 msgid "Saving export templates" msgstr "Արտահանման ձևանմուշների պահպանում" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "նկարագրություն չկա" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -10950,8 +10929,8 @@ msgstr "Օգտանուն՝" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Օգտանուն" @@ -10959,7 +10938,7 @@ msgstr "Օգտանուն" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Գաղտնաբառ" @@ -11574,7 +11553,7 @@ msgstr[1] "%1$d տվյալների բազա հաջողությամբ ջնջվե msgid "Plugin" msgstr "Խրվակ" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Տարբերակ" @@ -11582,98 +11561,94 @@ msgstr "Տարբերակ" msgid "Author" msgstr "Հեղինակ" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "Արտոնագիր" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "կասեցված" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Արտոնություններ չկան։" -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Ներառում է բոլոր արտոնությունները բացառությամբ GRANT-ի։" #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Թույլատրում է տվյալների կարդալը։" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Թույլատրում է տվյալների զետեղումը և փոխարինումը։" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Թույլ է տալիս տվյալների փոփոխումը։" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Թույլատրում է տվյալների ջնջումը։" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Թույլատրում է նոր տվյալների բազաների և աղյուսակների ստեղծումը։" #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Թույլատրում է տվյալների բազաների և աղյուսակների ջնջումը։" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Թույլատրում է սպասարկչի անջատելը։" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "Թույլատրում է բոլոր օգտվողների ընթացքների դիտումը։" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Թույլատրում է ցուցակագրերի ստեղծումը և ջնջումը։" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "" #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -11681,65 +11656,65 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Թույլատրում է ժամանակավոր աղյուսակների ստեղծումը։" #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Թույլատրում է աղյուսակների կողպումը՝ տվյալ հոսքի համար։" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Անհրաժեշտ է ենթարկվող սպասարկիչներին՝ կրկնապատկման ժամանակ։" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "Թուլյատրում է հարցնել հիմնական և ենթարկվող սպասարկիչների տեղակայումը։" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Թույլատրում է նոր ներկայացումների ստեղծումը։" #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "Թույլատրում է ձգանների ստեղծումը և ջնջումը։" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Թույլատրում է SHOW CREATE VIEW հարցումների կատարումը։" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Թույլատրում է պահված գործընթացների ստեղծումը։" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "Թույլատրում է օգտվողների հաշիվների ստեղծումը, ջնջումը և անվանափոխումը։" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Թույլատրում է պահված գործընթացների կատարումը։" @@ -11751,8 +11726,8 @@ msgstr "Չկա" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Օգտվողների խումբ" @@ -11794,14 +11769,14 @@ msgstr "" "սահմանափակումները։" #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Սահմանափակում է օգտվողից սպասարկչին մեկ ժամվա ընթացքում ուղարկվող " "հարցումների առավելագույն քանակը։" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -11810,28 +11785,28 @@ msgstr "" "տվյալների բազաների փոփոխման հարցումների առավելագույն քանակը։" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Սահմանափակում է օգտվողից մեկ ժամվա ընթացքում նոր միացումների բացման " "առավելագույն քանակը։" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Սահմանափակում է մեկ օգտվողի մասով միաժամանակ միացումների առավելագույն քանակը։" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Գործընթաց" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -11846,14 +11821,14 @@ msgstr "Թույլատրում է տվյալ գործընթացի կատարու #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11864,7 +11839,7 @@ msgid "Administration" msgstr "Կառավարում" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Ընդհանրական արտոնություններ" @@ -11873,15 +11848,15 @@ msgid "Global" msgstr "Ընդհանրական" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Թույլատրում է նոր աղյուսակների ստեղծումը։" -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Թույլատրում է աղյուսակների ջնջումը։" @@ -11898,7 +11873,7 @@ msgid "Native MySQL Authentication" msgstr "MySQL-ի բնականոն վավերացումը" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Հաշվի հավատարմագրերը" @@ -11921,8 +11896,8 @@ msgstr "Խնամորդի անունը՝" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 msgid "Host name" msgstr "Խնամորդի անունը" @@ -11938,221 +11913,221 @@ msgstr "Վավերացման խրվակ" msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Դուք չեղարկեցիք արտոնությունները %s-ի համար։" -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 msgid "Add user account" msgstr "Ավելացնել օգտվողի հաշիվ" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 msgid "Database for user account" msgstr "Տվյալների բազա՝ օգտվողի հաշվի համար" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" "Ստեղծել տվյալների բազան նույն անունով և շնորհել բոլոր արտոնությունները։" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Շնորհել բոլոր արտոնությունները դերանշանին համապատասխանող օգտանուններին " "(օգտանուն\\_%)։" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Օգտվողներ՝ \"%s\" մատչման հնարավորությումբ" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "Օգտվողը ավելացվեց։" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Շնորհել" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "Օգտնողներին դիտելու համար արտոնությունները բավարար չեն։" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "Օգտվողը չի գտնվել։" -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Ցանկացած" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "ընդհանրական" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "դերանշան" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 msgid "Edit privileges" msgstr "Խմբագրել արտոնությունները" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Հետարկել" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "Խմբագրել օգտվողների խումբը" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… պահել ավելի հինը։" -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… ջնջել օգտվողների աղյուսակներից ավելի հինը։" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Գործընթացին բնորոշ արտոնություններ" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 msgid "Remove selected user accounts" msgstr "Ջնջել նշված օգտվողների հաշիվները" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" "Ջնջել տվյալների բազաները, որոնց անունները համընկնում են օգտվողների անունների " "հետ։" -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Արտոնությունների վերաբեռնում" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "%s-ի ջնջում" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "%s օգտվողը արդեն իսկ առկա է։" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "Արտոնություններ %s-ի համար" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Օգտվող" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "Նոր" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 msgid "Edit privileges:" msgstr "Խմբագրել արտոնությունները՝" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "Օգտվողի հաշիվ" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "Օգտվողների հաշիվների ակնարկում" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12161,7 +12136,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12170,11 +12145,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "" @@ -12402,24 +12377,24 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "Գծապատկերի սյունակները" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "Գծապատկերի դասավորությունը" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -12427,7 +12402,7 @@ msgstr "" "Գծապատկերի դասավորությունը պահպանվում է դիտարկչի տեղային շտեմարանում։ Բարդ " "կազմաձևի դեպքում դուք կարող եք արտահանել այն։" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "Վերակայել լռելյայն արժեքներին" @@ -12483,7 +12458,7 @@ msgid "Statements" msgstr "Արտահայտություններ" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -12508,33 +12483,33 @@ msgstr "Ցուցադրել չկազմաձևած արժեքները" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12542,78 +12517,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12621,7 +12596,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12629,42 +12604,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12672,33 +12647,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12707,242 +12682,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "Կարդացած էջերի քանակը։" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "Բացված աղյուսակների քանակը։" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12950,101 +12925,101 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Այն հանդիսանում է ON, եթե տվյալ սպասարկիչը ենթարկվող է, որը միացրած է " "հիմնականին։" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "Դասակարգված տողերի քանակը։" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13052,18 +13027,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13071,11 +13046,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -13084,57 +13059,57 @@ msgstr "" msgid "Users of '%s' user group" msgstr "'%s' օգտվողների խմբի օգտվողները" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "Օգտվողների խմբեր" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "Սպասարկչի մակարդակի ներդիրներ" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "Տվյալների բազայի մակարդակի ներդիրներ" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "Աղյուսակի մակարդակի ներդիրներ" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "Դիտել օգտվողներին" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "Ավելացնել օգտվողների խումբ" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "Խմբագրել '%s' օգտվողների խումբը" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "Օգտվողների խմբի ընտրացանկի վերագրումները" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "Խմբակի անունը՝" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "Սպասարկչի մակարդակի ներդիրներ" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "Տվյալների բազայի մակարդակի ներդիրներ" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "Աղյուսակի մակարդակի ներդիրներ" @@ -13194,21 +13169,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 msgid "An alias was expected." msgstr "Սպասվում էր այլանունը։" @@ -13264,119 +13235,119 @@ msgstr "Սպասվում էր %1$s փակող չակերտը։" msgid "Variable name was expected." msgstr "Սպասվում էր փոփոխականի անունը։" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 msgid "At least one column definition was expected." msgstr "Սպասվում էր առնվազն մեկ սյունակի սահմանումը։" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "Մանրակրկիտ հատկագիր" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "Հետթականություն" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "Կարգավիճակ" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "Ամփոփ ըստ կարգավիճակի" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "Ընդհանուր տևողություն" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "% ժամանակի" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "Կանչեր" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "ø Ժամանակ" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Էջանշել այս SQL հարցումը" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "Պիտակ՝" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "Էջանիշը չի ստեղծվել։" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "PHP կոդի տեսքով ցուցադրում" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Խնդիրներ՝ `%s` աղյուսակի ցուցակագրերի հետ" @@ -13404,27 +13375,27 @@ msgstr "Ստանալ ինքնապահպանված հարցումը" msgid "Bind parameters" msgstr "Կապել հարաչափերը" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "Էջանշել այս SQL հարցումը՝" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Բաժանիչ" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Կրկին ցուցադրել տվյալ հարցումը" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "Հետարկել վերջացնելուց հետո" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Միայն դիտում" @@ -13468,172 +13439,172 @@ msgstr "Անջատել հետագծումը %s-ի համար" msgid "Deactivate now" msgstr "Կասեցնել" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Ստեղծված" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Թարմացված" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 msgid "Delete version" msgstr "Ջնջել տարբերակը" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Հետագծման զեկույց" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Կառուցվածքի պատկերը" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "գործուն" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "կասեցված" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "Հետագծվող արտահայտությունները" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "Տվյալներ չկան" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "SQL կատարում" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "Արտահանել որպես %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Ամսաթիվ" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Օգտանուն" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Չկա" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "Հետագծման զեկույց `%s` աղյուսակի համար" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "%1$s տարբերակը %2$s-ից ջնջվել է։" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Չհետագծվող աղյուսակներ" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Հետագծել աղյուսակը" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Հետագծվող աղյուսակներ" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Վերջին տարբերակը" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "Վերացնել հետագծումը" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Տարբերակներ" @@ -13641,11 +13612,11 @@ msgstr "Տարբերակներ" msgid "Manage your settings" msgstr "Անձնական կայանքներ" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "Կազմաձևը պահպանվեց։" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -13751,7 +13722,7 @@ msgstr "Տվյալների բազաներ չկան" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -13776,7 +13747,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" "Հարցումների վիճակագրությունը դիտելու համար արտոնությունները բավարար չեն։" @@ -14560,43 +14531,49 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "Գծապատկերի վերնագիր" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "X առանցք`" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "Շարքեր՝" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "X առանցքի պիտակը՝" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "X արժեքները" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "Y առանցքի պիտակը՝" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Y արժեքը" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "Շարքի սյունակ՝" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 msgid "Value Column:" msgstr "Արժեքի սյունակը՝" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "" @@ -14649,46 +14626,47 @@ msgstr "Մեկնաբանություն՝" msgid "Drag to reorder" msgstr "Քաշեք՝ վերադասակարգելու համար" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +msgid "Foreign key constraints" +msgstr "Արտաքին բանալիի սահմանափակումները" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "Գործողություններ" + +#: templates/table/relation/common_form.phtml:10 +msgid "Constraint properties" +msgstr "Սահմանափակման հատկություններ" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "" + +#: templates/table/relation/common_form.phtml:60 +msgid "+ Add constraint" +msgstr "+ Ավելացնել սահմանափակում" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "Ներքին կապակցումներ" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "Ներքին կապակցում" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:37 -msgid "Foreign key constraints" -msgstr "Արտաքին բանալիի սահմանափակումները" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "Գործողություններ" - -#: templates/table/relation/common_form.phtml:41 -msgid "Constraint properties" -msgstr "Սահմանափակման հատկություններ" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "" - -#: templates/table/relation/common_form.phtml:83 -msgid "+ Add constraint" -msgstr "+ Ավելացնել սահմանափակում" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "" @@ -14814,7 +14792,7 @@ msgid "at beginning of table" msgstr "աղյուսակի սկզբում" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 msgid "Partitions" msgstr "Մասնաբաժիններ" @@ -14847,7 +14825,7 @@ msgstr "Մասնաբաժինների աղյուսակ" msgid "Edit partitioning" msgstr "Խմբագրել մասնաբաժանումը" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "Խմբագրել ներկայացումը" @@ -16004,6 +15982,37 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert նշված է 0" +#~ msgid "To filter all databases on server, press Enter after a search term" +#~ msgstr "" +#~ "Բոլոր տվյալների բազաներով զտման համար սեղմեք Enter՝ որոնման հարցումը " +#~ "մուտքագրելուց հետո" + +#~ msgid "To filter all %s in database, press Enter after a search term" +#~ msgstr "" +#~ "Տվյալների բազայում բոլոր %s-ներով զտելու համար սեղմեք Enter՝ որոնման " +#~ "հարցումը մուտքագրելուց հետո" + +#~ msgid "tables" +#~ msgstr "աղյուսակների" + +#~ msgid "views" +#~ msgstr "ներկայացումների" + +#~ msgid "procedures" +#~ msgstr "ընթացակարգերի" + +#~ msgid "events" +#~ msgstr "իրադարձությունների" + +#~ msgid "functions" +#~ msgstr "գործառույթների" + +#~ msgid "Filter databases by name or regex" +#~ msgstr "Զտել տվյալների բազաները ըստ անվան կամ կանոնավոր արտահայտության" + +#~ msgid "Filter by name or regex" +#~ msgstr "Զտել ըստ անվան կամ կանոնավոր արտահայտության" + #~ msgid "Username and hostname didn't change." #~ msgstr "Օգտանունը և խնամորդի անունը չեն փոխվել։" diff --git a/po/ia.po b/po/ia.po index e5ac97ba2b..3bb3a81d01 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-11-02 15:37+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" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.5-dev\n" -#: changelog.php:37 license.php:30 +#: changelog.php:37 license.php:33 #, php-format msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " @@ -41,7 +41,7 @@ msgstr "Pulsa pro ordinar." msgid "Showing rows %1$s - %2$s." msgstr "Monstrante rangos %1$s - %2$s." -#: db_create.php:61 +#: db_create.php:62 #, php-format msgid "Database %1$s has been created." msgstr "Le base de datos %1$s ha essite create." @@ -50,13 +50,13 @@ msgstr "Le base de datos %1$s ha essite create." msgid "Database comment" msgstr "Commento del base de datos" -#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:601 +#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:599 #: templates/columns_definitions/column_definitions_form.phtml:84 msgid "Table comments:" msgstr "Commentos de tabella:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1568 +#: libraries/insert_edit.lib.php:1575 #: libraries/navigation/nodes/NodeColumn.php:34 #: libraries/plugins/export/ExportHtmlword.php:288 #: libraries/plugins/export/ExportHtmlword.php:384 @@ -66,13 +66,14 @@ msgstr "Commentos de tabella:" #: libraries/plugins/export/ExportTexytext.php:282 #: libraries/plugins/export/ExportTexytext.php:373 #: libraries/plugins/export/PMA_ExportPdf.php:472 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:882 libraries/tracking.lib.php:978 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 +#: libraries/tracking.lib.php:892 libraries/tracking.lib.php:990 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:10 -#: templates/table/relation/common_form.phtml:43 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:27 +#: templates/table/relation/common_form.phtml:79 #: templates/table/relation/foreign_key_row.phtml:176 #: templates/table/relation/foreign_key_row.phtml:188 #: templates/table/relation/internal_relational_row.phtml:73 @@ -92,14 +93,14 @@ msgstr "Columna" #: libraries/plugins/export/ExportTexytext.php:283 #: libraries/plugins/export/ExportTexytext.php:374 #: libraries/plugins/export/PMA_ExportPdf.php:474 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 #: libraries/rte/rte_list.lib.php:78 libraries/rte/rte_list.lib.php:106 #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2606 libraries/tracking.lib.php:883 -#: libraries/tracking.lib.php:975 +#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -109,7 +110,7 @@ msgstr "Typo" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:709 -#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1577 +#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1584 #: libraries/plugins/export/ExportHtmlword.php:294 #: libraries/plugins/export/ExportHtmlword.php:390 #: libraries/plugins/export/ExportLatex.php:517 @@ -118,9 +119,9 @@ msgstr "Typo" #: libraries/plugins/export/ExportTexytext.php:284 #: libraries/plugins/export/ExportTexytext.php:375 #: libraries/plugins/export/PMA_ExportPdf.php:476 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 -#: libraries/tracking.lib.php:885 libraries/tracking.lib.php:981 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/tracking.lib.php:895 libraries/tracking.lib.php:993 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 @@ -137,9 +138,9 @@ msgstr "Null" #: libraries/plugins/export/ExportTexytext.php:285 #: libraries/plugins/export/ExportTexytext.php:376 #: libraries/plugins/export/PMA_ExportPdf.php:478 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 -#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:886 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:896 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 @@ -151,8 +152,8 @@ msgstr "Predefinite" #: libraries/plugins/export/ExportOdt.php:488 #: libraries/plugins/export/ExportTexytext.php:378 #: libraries/plugins/export/PMA_ExportPdf.php:487 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:640 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:663 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 msgid "Links to" msgstr "Ligamines a" @@ -163,37 +164,38 @@ msgstr "Ligamines a" #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:381 #: libraries/plugins/export/PMA_ExportPdf.php:494 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:651 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:664 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:649 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 #: templates/columns_definitions/table_fields_definitions.phtml:65 msgid "Comments" msgstr "Commentos" -#: db_datadict.php:155 libraries/controllers/TableStructureController.php:1189 -#: libraries/controllers/TableStructureController.php:1194 -#: libraries/tracking.lib.php:925 +#: db_datadict.php:155 +#: libraries/controllers/table/TableStructureController.php:1197 +#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:79 +#: templates/table/structure/display_structure.phtml:80 msgid "Primary" msgstr "Primari" -#: db_datadict.php:165 js/messages.php:370 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:371 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 -#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:403 -#: libraries/mult_submits.lib.php:417 +#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:408 +#: libraries/mult_submits.lib.php:422 #: libraries/plugins/export/ExportHtmlword.php:654 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:710 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2971 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3620 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1013 libraries/tracking.lib.php:1018 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2973 +#: libraries/server_privileges.lib.php:2993 +#: libraries/server_privileges.lib.php:3631 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -202,32 +204,32 @@ msgstr "Primari" msgid "No" msgstr "No" -#: db_datadict.php:165 js/messages.php:515 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:516 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 #: libraries/config/FormDisplay.tpl.php:280 -#: libraries/controllers/TableStructureController.php:770 -#: libraries/controllers/TableStructureController.php:1440 -#: libraries/controllers/TableStructureController.php:1449 -#: libraries/controllers/TableStructureController.php:1454 -#: libraries/controllers/TableStructureController.php:1459 -#: libraries/controllers/TableStructureController.php:1464 -#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:199 -#: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 -#: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 +#: libraries/controllers/table/TableStructureController.php:771 +#: libraries/controllers/table/TableStructureController.php:1448 +#: libraries/controllers/table/TableStructureController.php:1457 +#: libraries/controllers/table/TableStructureController.php:1462 +#: libraries/controllers/table/TableStructureController.php:1467 +#: libraries/controllers/table/TableStructureController.php:1472 +#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:200 +#: libraries/mult_submits.lib.php:344 libraries/mult_submits.lib.php:377 +#: libraries/mult_submits.lib.php:406 libraries/mult_submits.lib.php:420 #: libraries/plugins/export/ExportHtmlword.php:655 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:788 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:711 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2968 -#: libraries/server_privileges.lib.php:2989 -#: libraries/server_privileges.lib.php:3617 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1011 libraries/tracking.lib.php:1016 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2970 +#: libraries/server_privileges.lib.php:2991 +#: libraries/server_privileges.lib.php:3628 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -240,8 +242,8 @@ msgstr "Si" msgid "View dump (schema) of database" msgstr "Vide dump (schema) del base de datos" -#: db_export.php:51 db_tracking.php:102 export.php:382 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:176 +#: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 +#: libraries/controllers/DatabaseStructureController.php:157 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "Il non ha tabulas in le base de datos." @@ -258,7 +260,7 @@ msgstr "Tabellas" #: db_export.php:66 libraries/Menu.php:320 libraries/Menu.php:427 #: libraries/Util.php:3407 libraries/Util.php:3417 libraries/Util.php:3423 -#: libraries/Util.php:3702 libraries/Util.php:4339 libraries/Util.php:4356 +#: libraries/Util.php:3703 libraries/Util.php:4340 libraries/Util.php:4357 #: libraries/central_columns.lib.php:729 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:320 @@ -266,10 +268,10 @@ msgstr "Tabellas" #: libraries/config/user_preferences.forms.php:218 #: libraries/config/user_preferences.forms.php:259 #: libraries/config/user_preferences.forms.php:285 -#: libraries/import.lib.php:1299 libraries/navigation/nodes/NodeColumn.php:44 +#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:44 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 -#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:877 +#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:887 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -314,11 +316,11 @@ msgstr "" "Le immagazinage de configuration de phpMyAdmin ha essite deactivate. " "%sDiscoperi perque%s." -#: db_qbe.php:135 +#: db_qbe.php:136 msgid "You have to choose at least one column to display!" msgstr "Tu debe seliger al minus un columna de monstrar!" -#: db_qbe.php:152 +#: db_qbe.php:154 #, php-format msgid "Switch to %svisual builder%s" msgstr "Commuta a %svisual builder%s (constructor visual)" @@ -346,7 +348,7 @@ msgstr "" msgid "No tables selected." msgstr "Necun tabellas seligite." -#: db_tracking.php:146 +#: db_tracking.php:149 msgid "Database Log" msgstr "Registro de base de datos" @@ -384,7 +386,7 @@ msgstr "Tu poterea voler refrescar le pagina." msgid "Bad type!" msgstr "Mal typo!" -#: export.php:276 +#: export.php:278 msgid "Bad parameters!" msgstr "Mal parametros!" @@ -392,98 +394,98 @@ msgstr "Mal parametros!" msgid "Invalid export type" msgstr "Typo de exportar invalide" -#: gis_data_editor.php:119 +#: gis_data_editor.php:117 #, php-format msgid "Value for the column \"%s\"" msgstr "Valor pro le columna \"%s\"" -#: gis_data_editor.php:147 +#: gis_data_editor.php:145 #: templates/table/gis_visualization/gis_visualization.phtml:37 msgid "Use OpenStreetMaps as Base Layer" msgstr "Usa OpenStreetMaps como disposition o nivello basic" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:169 +#: gis_data_editor.php:167 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:192 +#: gis_data_editor.php:190 #, php-format msgid "Geometry %d:" msgstr "Geometria %d:" -#: gis_data_editor.php:214 +#: gis_data_editor.php:212 msgid "Point:" msgstr "Puncto:" -#: gis_data_editor.php:215 gis_data_editor.php:242 gis_data_editor.php:298 -#: gis_data_editor.php:371 js/messages.php:504 +#: gis_data_editor.php:213 gis_data_editor.php:240 gis_data_editor.php:296 +#: gis_data_editor.php:369 js/messages.php:505 msgid "X" msgstr "X" -#: gis_data_editor.php:218 gis_data_editor.php:246 gis_data_editor.php:302 -#: gis_data_editor.php:377 js/messages.php:505 +#: gis_data_editor.php:216 gis_data_editor.php:244 gis_data_editor.php:300 +#: gis_data_editor.php:375 js/messages.php:506 msgid "Y" msgstr "Y" -#: gis_data_editor.php:240 gis_data_editor.php:296 gis_data_editor.php:369 -#: js/messages.php:507 +#: gis_data_editor.php:238 gis_data_editor.php:294 gis_data_editor.php:367 +#: js/messages.php:508 #, php-format msgid "Point %d" msgstr "Puncto %d" -#: gis_data_editor.php:253 gis_data_editor.php:309 gis_data_editor.php:387 -#: js/messages.php:513 +#: gis_data_editor.php:251 gis_data_editor.php:307 gis_data_editor.php:385 +#: js/messages.php:514 msgid "Add a point" msgstr "Adde un puncto" -#: gis_data_editor.php:270 +#: gis_data_editor.php:268 #, php-format msgid "Linestring %d:" msgstr "Linestring (catena de linea) %d:" -#: gis_data_editor.php:273 gis_data_editor.php:350 +#: gis_data_editor.php:271 gis_data_editor.php:348 msgid "Outer ring:" msgstr "Circulo externe:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:273 gis_data_editor.php:350 #, php-format msgid "Inner ring %d:" msgstr "Circulo interne %d:" -#: gis_data_editor.php:312 +#: gis_data_editor.php:310 msgid "Add a linestring" msgstr "Adde un linestring" -#: gis_data_editor.php:313 gis_data_editor.php:392 js/messages.php:514 +#: gis_data_editor.php:311 gis_data_editor.php:390 js/messages.php:515 msgid "Add an inner ring" msgstr "Adde un circulo interne" -#: gis_data_editor.php:334 +#: gis_data_editor.php:332 #, php-format msgid "Polygon %d:" msgstr "Polygono %d:" -#: gis_data_editor.php:398 +#: gis_data_editor.php:396 msgid "Add a polygon" msgstr "Adde un polygono" -#: gis_data_editor.php:404 +#: gis_data_editor.php:402 msgid "Add geometry" msgstr "Adde un geometria" -#: gis_data_editor.php:410 js/messages.php:345 libraries/DbSearch.php:462 -#: libraries/DisplayResults.php:1783 libraries/browse_foreigners.lib.php:142 +#: gis_data_editor.php:408 js/messages.php:346 libraries/DbSearch.php:462 +#: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:151 #: libraries/display_export.lib.php:404 libraries/display_export.lib.php:410 -#: libraries/display_import.lib.php:403 libraries/index.lib.php:42 -#: libraries/insert_edit.lib.php:1547 libraries/insert_edit.lib.php:1584 +#: libraries/display_import.lib.php:403 libraries/index.lib.php:45 +#: libraries/insert_edit.lib.php:1554 libraries/insert_edit.lib.php:1591 #: libraries/normalization.lib.php:168 libraries/normalization.lib.php:825 #: libraries/operations.lib.php:47 libraries/operations.lib.php:114 #: libraries/operations.lib.php:266 libraries/operations.lib.php:309 #: libraries/operations.lib.php:806 libraries/operations.lib.php:877 -#: libraries/operations.lib.php:926 libraries/operations.lib.php:1336 -#: libraries/operations.lib.php:1653 +#: libraries/operations.lib.php:926 libraries/operations.lib.php:1339 +#: libraries/operations.lib.php:1656 #: libraries/plugins/auth/AuthenticationCookie.php:239 #: libraries/replication_gui.lib.php:124 libraries/replication_gui.lib.php:163 #: libraries/replication_gui.lib.php:328 libraries/replication_gui.lib.php:465 @@ -492,12 +494,12 @@ msgstr "Adde un geometria" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2343 -#: libraries/server_privileges.lib.php:3114 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_user_groups.lib.php:285 -#: libraries/sql_query_form.lib.php:369 libraries/sql_query_form.lib.php:429 -#: libraries/tracking.lib.php:536 libraries/tracking.lib.php:656 +#: libraries/server_privileges.lib.php:2345 +#: libraries/server_privileges.lib.php:3116 +#: libraries/server_privileges.lib.php:3735 +#: libraries/server_user_groups.lib.php:290 +#: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 +#: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 #: prefs_manage.php:280 prefs_manage.php:358 #: templates/columns_definitions/column_definitions_form.phtml:64 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 @@ -510,11 +512,11 @@ msgstr "Adde un geometria" msgid "Go" msgstr "Vade" -#: gis_data_editor.php:413 +#: gis_data_editor.php:411 msgid "Output" msgstr "Exito" -#: gis_data_editor.php:416 +#: gis_data_editor.php:414 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -526,7 +528,7 @@ msgstr "" msgid "Succeeded" msgstr "Ha havite successo" -#: import.php:59 js/messages.php:588 +#: import.php:59 js/messages.php:589 msgid "Failed" msgstr "Fallite" @@ -591,7 +593,7 @@ msgstr "" "Il non es possibile cargar plugins de importar, pro favor tu verifica tu " "installation!" -#: import.php:669 libraries/sql.lib.php:744 libraries/sql.lib.php:1468 +#: import.php:669 libraries/sql.lib.php:754 libraries/sql.lib.php:1485 #, php-format msgid "Bookmark %s has been created." msgstr "Marcator de libro %s create." @@ -623,7 +625,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "Il non pote incargar le progression del importation." -#: import_status.php:111 js/messages.php:444 libraries/Util.php:797 +#: import_status.php:111 js/messages.php:445 libraries/Util.php:797 #: libraries/export.lib.php:523 #: libraries/plugins/schema/ExportRelationSchema.php:301 user_password.php:268 msgid "Back" @@ -648,7 +650,7 @@ msgstr "" msgid "General settings" msgstr "Preferentias general" -#: index.php:191 js/messages.php:617 +#: index.php:191 js/messages.php:618 #: libraries/display_change_password.lib.php:54 #: libraries/display_change_password.lib.php:57 user_password.php:262 msgid "Change password" @@ -748,7 +750,11 @@ msgstr "Obtene supporto" msgid "List of changes" msgstr "Lista de modificationes" -#: index.php:453 +#: index.php:438 libraries/server_plugins.lib.php:83 +msgid "License" +msgstr "Licentia" + +#: index.php:460 msgid "" "You are connected as 'root' with no password, which corresponds to the " "default MySQL privileged account. Your MySQL server is running with this " @@ -761,7 +767,7 @@ msgstr "" "seriemente corriger iste foramine de securitate per fixar un contrasigno pro " "le usator 'root'." -#: index.php:470 +#: index.php:477 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -771,7 +777,7 @@ msgstr "" "operation es incompatibile con phpMyAdmin e poterea causar alcun corruption " "de datos!" -#: index.php:485 +#: index.php:492 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -781,7 +787,7 @@ msgstr "" "insimul de characteres multibyte. Sin le extension mbstring phpMyAdmin non " "pote divider catenas correctemente e on poterea obtener exitos inexpectate." -#: index.php:502 +#: index.php:509 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than " @@ -793,7 +799,7 @@ msgstr "" "validitate de cookie configurate in phpMyAdmin, debite a isto, tu " "authentication poterea expirar ante que lo que es configurate in phpMyAdmin." -#: index.php:521 +#: index.php:528 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -802,13 +808,13 @@ msgstr "" "cookie configurate in phpMyAdmin, pro iste ration, tu\n" "accesso expirara plus tosto que lo que es configurate in phpMyAdmin." -#: index.php:537 +#: index.php:544 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Nunc on necessita un contrasigno pro le file de configuration " "(blowfish_secret)." -#: index.php:550 +#: index.php:557 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. It is strongly recommended to remove it " @@ -821,7 +827,7 @@ msgstr "" "le securitate de tu servbitor poterea esser compromittite per personas non " "authorisate discargante tu configuration." -#: index.php:566 +#: index.php:573 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -830,14 +836,14 @@ msgstr "" "Le configuration de phpMyAdmin non es completemente configurate, alcun " "characteristicas additional ha essite deactivate. %sDiscoperi perque%s. " -#: index.php:573 +#: index.php:580 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "O alternativemente va a le scheda de 'Operationes' de ulle base de datos " "pro configurar lo illac." -#: index.php:619 +#: index.php:626 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -846,7 +852,7 @@ msgstr "" "Tu biblioteca de PHP MySQL version %s differe ex tu version de vervitor " "MySQL %s. Isto poterea causar comportamentos imprevisibile." -#: index.php:647 +#: index.php:654 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -868,7 +874,7 @@ msgstr "Confirma" msgid "Do you really want to execute \"%s\"?" msgstr "Tu es vermente secur que tu vole executar \"%s\"?" -#: js/messages.php:45 libraries/mult_submits.lib.php:397 +#: js/messages.php:45 libraries/mult_submits.lib.php:402 msgid "You are about to DESTROY a complete database!" msgstr "Tu es per DESTRUER un complete base de datos!" @@ -1014,7 +1020,7 @@ msgid "Save & close" msgstr "Salveguarda & claude" #: js/messages.php:109 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1551 prefs_manage.php:364 +#: libraries/insert_edit.lib.php:1558 prefs_manage.php:364 #: prefs_manage.php:375 msgid "Reset" msgstr "Refixa" @@ -1072,10 +1078,10 @@ msgstr "Pro favor tu selige columna(s) pro le indice." msgid "You have to add at least one column." msgstr "Tu debe adder al minus un columna." -#: js/messages.php:129 libraries/insert_edit.lib.php:1549 +#: js/messages.php:129 libraries/insert_edit.lib.php:1556 #: templates/columns_definitions/column_definitions_form.phtml:159 #: templates/table/index_form.phtml:237 -#: templates/table/relation/common_form.phtml:108 +#: templates/table/relation/common_form.phtml:127 msgid "Preview SQL" msgstr "Vista preliminar SQL" @@ -1118,8 +1124,8 @@ msgstr "Le contrasignos non es le mesme!" msgid "Removing Selected Users" msgstr "Removente usatores selectionate" -#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:461 -#: libraries/tracking.lib.php:831 +#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:471 +#: libraries/tracking.lib.php:841 msgid "Close" msgstr "Claude" @@ -1141,7 +1147,7 @@ msgstr "Patrono ha essite delite." #. l10n: Other, small valued, queries #: js/messages.php:155 libraries/ServerStatusData.php:130 -#: libraries/server_status_queries.lib.php:148 +#: libraries/server_status_queries.lib.php:150 msgid "Other" msgstr "Altere" @@ -1309,7 +1315,7 @@ msgstr "Demandas" msgid "Traffic" msgstr "Traffico" -#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4330 +#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4331 #: libraries/server_status_monitor.lib.php:258 msgid "Settings" msgstr "Preferentias" @@ -1322,9 +1328,9 @@ msgstr "adde graphico a grillia" msgid "Please add at least one variable to the series!" msgstr "Pro favor tu adde al minus un variabile al series!" -#: js/messages.php:216 libraries/DisplayResults.php:1477 +#: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1440,7 +1446,7 @@ msgstr "Modifica preferentias" msgid "Current settings" msgstr "Preferentias currente" -#: js/messages.php:253 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:253 msgid "Chart title" msgstr "Titulo del diagramma" @@ -1533,21 +1539,21 @@ msgstr "Analysante…" msgid "Explain output" msgstr "Explica le exito" -#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4326 +#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4327 #: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:396 #: libraries/rte/rte_list.lib.php:104 -#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:282 -#: libraries/tracking.lib.php:1623 +#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:284 +#: libraries/tracking.lib.php:1639 msgid "Status" msgstr "Stato" -#: js/messages.php:289 js/messages.php:870 +#: js/messages.php:289 js/messages.php:862 #: libraries/plugins/export/ExportHtmlword.php:484 #: libraries/plugins/export/ExportOdt.php:600 #: libraries/plugins/export/ExportTexytext.php:445 #: libraries/plugins/export/PMA_ExportPdf.php:314 #: libraries/rte/rte_list.lib.php:93 -#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:239 +#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:243 msgid "Time" msgstr "Tempore" @@ -1634,10 +1640,10 @@ msgstr "" "refixa al configuration predefinite…" #: js/messages.php:322 libraries/Menu.php:355 libraries/Menu.php:457 -#: libraries/Menu.php:578 libraries/Util.php:4329 libraries/Util.php:4344 -#: libraries/Util.php:4361 libraries/config/messages.inc.php:260 +#: libraries/Menu.php:578 libraries/Util.php:4330 libraries/Util.php:4345 +#: libraries/Util.php:4362 libraries/config/messages.inc.php:260 #: libraries/display_import.lib.php:108 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:241 +#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:241 #: setup/frames/menu.inc.php:26 msgid "Import" msgstr "Importa" @@ -1694,7 +1700,13 @@ msgstr "Essaya" msgid "Formatting SQL…" msgstr "Formatante SQL…" -#: js/messages.php:346 libraries/server_variables.lib.php:159 +#: js/messages.php:343 +#, fuzzy +#| msgid "Bad parameters!" +msgid "No parameters found!" +msgstr "Mal parametros!" + +#: js/messages.php:347 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 +1717,59 @@ msgstr "Formatante SQL…" msgid "Cancel" msgstr "Cancella" -#: js/messages.php:349 libraries/Header.php:457 +#: js/messages.php:350 libraries/Header.php:457 msgid "Page-related settings" msgstr "Preferentias referite al pagina" -#: js/messages.php:350 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:351 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Applica" -#: js/messages.php:353 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:354 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:124 msgid "Loading…" msgstr "Cargar…" -#: js/messages.php:354 +#: js/messages.php:355 msgid "Request aborted!!" msgstr "Requesta abortate!" -#: js/messages.php:355 +#: js/messages.php:356 msgid "Processing request" msgstr "Requesta de tractamento" -#: js/messages.php:356 +#: js/messages.php:357 msgid "Request failed!!" msgstr "Requesta fallite!" -#: js/messages.php:357 +#: js/messages.php:358 msgid "Error in processing request" msgstr "Error in le requesta de tractamento" -#: js/messages.php:358 +#: js/messages.php:359 #, php-format msgid "Error code: %s" msgstr "Codice de error: %s" -#: js/messages.php:359 +#: js/messages.php:360 #, php-format msgid "Error text: %s" msgstr "Texto de error: %s" -#: js/messages.php:360 libraries/db_common.inc.php:73 +#: js/messages.php:361 libraries/db_common.inc.php:73 #: libraries/db_table_exists.lib.php:33 libraries/server_databases.lib.php:462 msgid "No databases selected." msgstr "Necun base de datos seligite." -#: js/messages.php:361 +#: js/messages.php:362 msgid "Dropping column" msgstr "Depone columna" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Adding primary key" msgstr "Addente clave primari" -#: js/messages.php:363 +#: js/messages.php:364 #: 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,168 +1779,168 @@ msgstr "Addente clave primari" msgid "OK" msgstr "OK" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Click to dismiss this notification" msgstr "Pulsa pro dimitter iste notification" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Renaming databases" msgstr "Renominante base de datos" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Copying database" msgstr "Copiante base de datos" -#: js/messages.php:369 +#: js/messages.php:370 msgid "Changing charset" msgstr "Modificante insimul de characteres" -#: js/messages.php:373 libraries/Util.php:3289 +#: js/messages.php:374 libraries/Util.php:3289 msgid "Enable foreign key checks" msgstr "Habilita le verificationes sur le clave estranie" -#: js/messages.php:376 +#: js/messages.php:377 msgid "Failed to get real row count." msgstr "Il falleva obtener ver computo de rango." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Searching" msgstr "Cercante" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide search results" msgstr "Cela exitos de cerca" -#: js/messages.php:381 +#: js/messages.php:382 msgid "Show search results" msgstr "Monstra exitos de cerca" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Browsing" msgstr "Navigar" -#: js/messages.php:383 +#: js/messages.php:384 msgid "Deleting" msgstr "Delente" -#: js/messages.php:387 +#: js/messages.php:388 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:388 libraries/DisplayResults.php:4832 -#: libraries/DisplayResults.php:5091 libraries/Menu.php:347 -#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3709 -#: libraries/Util.php:3710 libraries/Util.php:4328 libraries/Util.php:4343 -#: libraries/Util.php:4360 libraries/config/messages.inc.php:254 +#: js/messages.php:389 libraries/DisplayResults.php:4850 +#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 +#: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 +#: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2448 -#: libraries/server_privileges.lib.php:2527 -#: libraries/server_privileges.lib.php:2873 -#: libraries/server_privileges.lib.php:3532 -#: libraries/server_status_monitor.lib.php:321 prefs_manage.php:306 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2875 +#: libraries/server_privileges.lib.php:3543 +#: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 msgid "Export" msgstr "Exporta" -#: js/messages.php:391 libraries/rte/rte_routines.lib.php:742 +#: js/messages.php:392 libraries/rte/rte_routines.lib.php:742 msgid "ENUM/SET editor" msgstr "Editor de ENUM/SET" -#: js/messages.php:392 +#: js/messages.php:393 #, php-format msgid "Values for column %s" msgstr "Valores pro le columna %s" -#: js/messages.php:393 +#: js/messages.php:394 msgid "Values for a new column" msgstr "Valores pro un nove columna" -#: js/messages.php:394 +#: js/messages.php:395 msgid "Enter each value in a separate field." msgstr "Inserta cata valor in un campo separate." -#: js/messages.php:395 +#: js/messages.php:396 #, php-format msgid "Add %d value(s)" msgstr "Adde %d valor(es)" -#: js/messages.php:399 +#: js/messages.php:400 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:403 +#: js/messages.php:404 msgid "Hide query box" msgstr "Cela quadro de query" -#: js/messages.php:404 +#: js/messages.php:405 msgid "Show query box" msgstr "Monstra quadro de query" -#: js/messages.php:405 libraries/Console.php:88 libraries/Console.php:217 -#: libraries/DisplayResults.php:3457 libraries/DisplayResults.php:4816 +#: js/messages.php:406 libraries/Console.php:88 libraries/Console.php:217 +#: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4834 #: libraries/Index.php:721 libraries/Util.php:727 libraries/Util.php:1238 -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:119 +#: libraries/server_user_groups.lib.php:121 #: libraries/server_variables.lib.php:242 #: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 msgid "Edit" msgstr "Modifica" -#: js/messages.php:406 libraries/Console.php:89 libraries/DbSearch.php:360 -#: libraries/DisplayResults.php:3526 libraries/DisplayResults.php:4800 +#: js/messages.php:407 libraries/Console.php:89 libraries/DbSearch.php:360 +#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4818 #: libraries/central_columns.lib.php:854 #: libraries/central_columns.lib.php:1200 libraries/display_export.lib.php:227 -#: libraries/server_user_groups.lib.php:129 -#: libraries/sql_query_form.lib.php:416 libraries/tracking.lib.php:480 +#: libraries/server_user_groups.lib.php:131 +#: libraries/sql_query_form.lib.php:417 libraries/tracking.lib.php:490 #: setup/frames/index.inc.php:187 setup/frames/index.inc.php:295 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Dele" -#: js/messages.php:407 libraries/DisplayResults.php:915 -#: libraries/DisplayResults.php:923 +#: js/messages.php:408 libraries/DisplayResults.php:919 +#: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d non es un valide numero de rangos." -#: js/messages.php:408 -#: libraries/controllers/table/TableSearchController.php:435 -#: libraries/controllers/table/TableSearchController.php:920 -#: libraries/sql.lib.php:193 tbl_change.php:159 +#: js/messages.php:409 +#: libraries/controllers/table/TableSearchController.php:432 +#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "Naviga inter valores externe" -#: js/messages.php:409 +#: js/messages.php:410 msgid "No auto-saved query" msgstr "Nulle query auto-salveguardate" -#: js/messages.php:410 +#: js/messages.php:411 #, php-format msgid "Variable %d:" msgstr "Variabile %d:" -#: js/messages.php:413 libraries/normalization.lib.php:889 +#: js/messages.php:414 libraries/normalization.lib.php:889 msgid "Pick" msgstr "Prende" -#: js/messages.php:414 +#: js/messages.php:415 msgid "Column selector" msgstr "Selector de columnas" -#: js/messages.php:415 +#: js/messages.php:416 msgid "Search this list" msgstr "Cerca in iste lista" -#: js/messages.php:417 +#: js/messages.php:418 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1938,15 +1950,15 @@ msgstr "" "central per le base de datos %s ha columnas non presente in le columna " "currente." -#: js/messages.php:420 +#: js/messages.php:421 msgid "See more" msgstr "Vide cosas ulterior" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Are you sure?" msgstr "Tu es secur?" -#: js/messages.php:423 +#: js/messages.php:424 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1954,51 +1966,51 @@ msgstr "" "Iste action pote modificar alcun definition de columnas.
Tu es secur que " "tu vole continuar?" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "Continua" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "Adde clave primari" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "Clave primari addite." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "Ducente te al proxime passo…" -#: js/messages.php:433 +#: js/messages.php:434 #, 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:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "Fin del passo" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "Secunde passo de normalisation (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Facite" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "Confirma dependentias partial" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "Dependentias partial seligite es como il seque:" -#: js/messages.php:440 +#: js/messages.php:441 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,20 +2018,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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "Necun dependentias partial seligite!" -#: js/messages.php:446 +#: js/messages.php:447 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:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "Cela lista de dependentias partial" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2027,170 +2039,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:452 +#: js/messages.php:453 msgid "Step" msgstr "Passo" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "Le sequente actiones essera executate:" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "DROP (abandona) columnas %s ab le tabella %s" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "Crea le sequente tabella" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "Tertie passo de normalisation (2NF)" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "Confirma dependentias transitive" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "Dependentias seligite es como il seque:" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "Necun dependentias seligite!" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Salveguarda" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Cela criterios de cerca" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Monstra criterios de cerca" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "Extension de cerca" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "Maximo de columna:" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "Minimo de columna:" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "Minime valor:" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "Maxime valor:" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "Cela criterios de cercar e de reimplaciar" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "Monstra criterios de cercar e de reimplaciar" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "Cata puncto representa un rango de datos." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "Si on flotta sur un puncto, il monstrara su etiquetta." -#: js/messages.php:486 +#: js/messages.php:487 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:488 +#: js/messages.php:489 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:490 +#: js/messages.php:491 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:492 +#: js/messages.php:493 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:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "Selige duo columnas" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "Selige duo columnas differente" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "Contento del puncto de datos" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignora" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Copia" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Puncto" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Linestring (catena de linea)" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Polygono" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "Circulo interne" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "Circulo externe" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "Tu vole copiar le clave de cryptation?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "Clave de cryptation" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2198,24 +2210,24 @@ msgstr "" "Indicante que tu ha facite modificationes a iste pagina; tu essera demandate " "de confirmar ante abandonar modificationes" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Selige clave de referentia" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Selige clave estranie" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "Pro favor selige le clave primari o un clave unic!" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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:532 +#: js/messages.php:533 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 +2235,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:535 +#: js/messages.php:536 msgid "Page name" msgstr "Nomine de pagina" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Salveguarda pagina" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Aperi pagina" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "Dele pagina" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Untitled (Sin titulo)" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "Pro favor selige un pagina pro continuar" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "Pro favor inserta un nomine valide de pagina" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "Tu vole salveguardar le modificationes del pagina currente?" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "On ha delite successosemente le pagina" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "Exporta le schema relational" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Modificationes ha essite salveguardate" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "Adde un option pro le columna \"%s\"." -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "%d objecto(s) create." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Invia" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "Pressa le clave de escape pro cancellar le modification." -#: js/messages.php:557 +#: js/messages.php:558 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 +2313,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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "Trahe pro reordinar." -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "Pulsa pro ordinar exitos per iste columna." -#: js/messages.php:563 +#: js/messages.php:564 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 +2331,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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "Pulsa pro seliger/deseliger." -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "Duple pulsa pro copiar le nomine de columna." -#: js/messages.php:570 +#: js/messages.php:571 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:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Monstra omnes" -#: js/messages.php:574 +#: js/messages.php:575 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 +2361,13 @@ msgstr "" "modificar, copiar, marcar, deler le grillia poterea non functionar post " "salveguardar." -#: js/messages.php:578 +#: js/messages.php:579 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:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2363,132 +2375,100 @@ msgstr "" "Vermente tu vole vider omne rangos? Pro un grande tabella isto poterea vader " "in crash le navigator." -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "Fortia original" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "cancella" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Abortate" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "Successo" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "Importa stato" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Depone files hic" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "Prime selige un base de datos" -#: js/messages.php:598 +#: js/messages.php:599 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:603 +#: js/messages.php:604 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:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "Vade al ligamine:" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "Copia nomine de columna." -#: js/messages.php:612 +#: js/messages.php:613 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:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Genera contrasigno" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Genera" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "Altere" -#: js/messages.php:623 +#: js/messages.php:624 msgid "Show panel" msgstr "Monstra pannello" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "Cela pannello" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "Monstra elementos de arbore de navigation celate." -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "Ligamine con pannello principal" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "Leva ligamine ex pannello principal" -#: js/messages.php:629 -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:631 -#, 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:632 -msgid "tables" -msgstr "tabellas" - -#: js/messages.php:633 -msgid "views" -msgstr "vistas" - -#: js/messages.php:634 -msgid "procedures" -msgstr "proceduras" - -#: js/messages.php:635 -msgid "events" -msgstr "eventos" - -#: js/messages.php:636 -msgid "functions" -msgstr "functiones" - -#: js/messages.php:640 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:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2498,27 +2478,27 @@ msgstr "" "actualisation. Le version plus nove e %s, liverate le %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", ultime version stabile:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "actualisate" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "Crea vista" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "Invia reporto de errores" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "Submitte reporto de error" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2526,15 +2506,15 @@ msgstr "" "Un error fatal de JavaScript ha occurrite. Tu vole inviar un reporto de " "error?" -#: js/messages.php:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "Modifica preferentias de reporto" -#: js/messages.php:660 +#: js/messages.php:652 msgid "Show report details" msgstr "Monstra detalios de reporto" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2542,7 +2522,7 @@ msgstr "" "Tu exportation es incomplete, debite a un basse limite de tempore de " "execution al nivello de PHP!" -#: js/messages.php:667 +#: js/messages.php:659 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2552,62 +2532,62 @@ msgstr "" "alcun del campos poterea esser ignorate, debite al configuration de " "max_input_vars de PHP." -#: js/messages.php:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "Alcun errores ha essite relevate sur le servitor!" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "Pro favor tu al basso de iste fenestra." -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "Ignora Omne" -#: js/messages.php:689 +#: js/messages.php:681 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:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "Executa novemente iste query?" -#: js/messages.php:701 +#: js/messages.php:693 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:703 +#: js/messages.php:695 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:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s queries executate %s vices in %s secundas." -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "%s argumento(s) passate" -#: js/messages.php:707 +#: js/messages.php:699 msgid "Show arguments" msgstr "Monstra argumentos" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "Cela argumentos" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "Tempore utilisate:" -#: js/messages.php:711 +#: js/messages.php:703 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 " @@ -2618,291 +2598,291 @@ msgstr "" "propriemente pro te. In Safari, tal problema es communmente causate per " "\"Private Mode Browsing (Modo de navigation private)\"." -#: js/messages.php:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "Mense previe" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "Mense proxime" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Hodie" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "Januario" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "Februario" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "Martio" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "April" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Maio" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "Junio" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "Julio" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "Augusto" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "Septembre" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "Octobre" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "Novembre" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "Decembre" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Dec" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "Dominica" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "Lunedi" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "Martedi" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "Mercuridi" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "Jovedi" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "Venerdi" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "Sabbato" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Jov" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "Jo" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "Sept" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "calendario-mense-anno" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "necun" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Hora" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Minuta" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Secunda" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "Iste campo es requirite" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "Pro favor corrige iste campo" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "Pro favor inserta un valide adresse de e-posta" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "Pro favor inserta un valide URL" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "Pro favor inserta un valide data" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "Pro favor inserta un nomine valide data (ISO)" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "Pro favor inserta un numero valide" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "Pro favor inserta un numero valide de carta de credito" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "Pro favor inserta solmente digitos" @@ -2910,41 +2890,41 @@ msgstr "Pro favor inserta solmente digitos" msgid "Please enter the same value again" msgstr "Pro favor inserta novemente le mesme valor" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "Pro favor inserta plus que {0} characteres" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "Pro favor inserta al minus {0} characteres" -#: js/messages.php:896 +#: js/messages.php:907 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:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "Pro favor inserta un valor inter {0} e {1}" -#: js/messages.php:898 +#: js/messages.php:917 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:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "Pro favor inserta un major o equal a {0}" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "Pro favor inserta un data o tempore valide" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "Pro favor inserta un valide ingresso HEX" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Error" @@ -3035,11 +3015,12 @@ msgstr "Repite Query" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3081,7 +3062,7 @@ msgstr "Durante session currente" msgid "Explain" msgstr "Explica" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Profiling" @@ -3115,8 +3096,8 @@ msgid "History" msgstr "Chronologia" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3263,7 +3244,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Commuta a thema obscur" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3271,28 +3252,28 @@ msgstr "" "Le servitor non es respondente (o le socket del servitor local non es " "configurate correctemente)." -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "Le servitor non es respondente." -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" "Pro favor, controla le permissiones del directorio continente le base de " "datos." -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Detalios…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Connexion per usatores de controlo de usator (controluser) falleva como in " "tu configuration." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3302,8 +3283,8 @@ msgstr "" msgid "Ascending" msgstr "Ascendente" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3446,8 +3427,8 @@ msgstr[0] "%1$s correspondentia in %2$s" msgstr[1] "%1$s correspondentias in %2$s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3489,119 +3470,120 @@ msgstr "Deselige toto" msgid "Inside column:" msgstr "Intra columna:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "Salveguarda datos modificate" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "Restabili ordine de columna" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "Filtra rangos" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "Cerca in iste tabella" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "Initio" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "Previe" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "Proxime" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "Ultime" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Omnes" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Numero de rangos:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Ordina per clave" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "Textos partial" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "Textos complete" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Clave relational" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 msgid "Display column for relations" msgstr "Monstra columnas pro relationes" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "Monstra contentos binari" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "Monstra contentos BLOB" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "Cela transformation de navigator" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "Well Known Text (Texto ben cognoscite)" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "Well Known Binary (binari ben cognoscite)" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "Le rango ha essite delite." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Remove" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Il pote esser approximate. Vide[doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "Le demanda (query) SQL ha essite executate con successo." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3610,64 +3592,64 @@ msgstr "" "Iste vista ha al minus iste numero de rangos. Pro favor refere a " "%sdocumentation%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "Monstrante rangos %1s - %2s" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d total, %2$d in query" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "%d total" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "Query prendeva %01.4f secundas." -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Si seligite:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 msgid "Check all" msgstr "Marca omnes" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Vista pro imprimer" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Operationes super exitos de query" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Monstra graphico" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "Monstra datos de GIS" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "Ligamine non trovate!" @@ -3763,19 +3745,19 @@ msgstr "Necun indice definite!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Indices" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3784,24 +3766,24 @@ msgid "Action" msgstr "Action" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Nomine clave" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Unic" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Comprimite" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Cardinalitate" @@ -3809,8 +3791,8 @@ msgstr "Cardinalitate" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3820,8 +3802,8 @@ msgid "Collation" msgstr "Collation" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3837,15 +3819,15 @@ msgstr "Le clave primari ha essite delite." msgid "Index %s has been dropped." msgstr "Indice %s ha essite delite." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Lassa cader" @@ -3885,12 +3867,13 @@ msgstr "Vista" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3898,7 +3881,7 @@ msgstr "Tabula" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3907,8 +3890,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3916,41 +3899,41 @@ msgid "Search" msgstr "Cerca" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Inserta" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Permissiones" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Operationes" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Traciamento" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3961,16 +3944,16 @@ msgstr "Triggers" msgid "Database seems to be empty!" msgstr "Le base de datos sembla esser vacue!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Query" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Routines" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3978,20 +3961,20 @@ msgstr "Routines" msgid "Events" msgstr "Eventos" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Designator" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "Columnas central" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Base de datos" @@ -4000,33 +3983,33 @@ msgid "User accounts" msgstr "Contos de usator" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Registro binari" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replication" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Variabiles" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Insimul de characteres" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Motores" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "Plugins" @@ -4325,7 +4308,7 @@ msgstr "Non pote renominar indice a PRIMARY!" msgid "No index parts defined!" msgstr "Nulle partes de indice definite!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4708,8 +4691,8 @@ msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" msgstr "" -"Immagazina e habilita accesso efficiente al datos in documentos de JSON (" -"JavaScript Object Notation)" +"Immagazina e habilita accesso efficiente al datos in documentos de JSON " +"(JavaScript Object Notation)" #: libraries/TypesMySQL.php:527 msgctxt "spatial types" @@ -4807,39 +4790,39 @@ msgstr "" msgid "Click to toggle" msgstr "Pulsa pro alternar" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Cerca in tu computator:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Selige ex le directorio de incargamento de servitor web %s:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "" "Le directorio que tu fixava pro le travalio de incargar non pote esser " "attingite." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "Il non ha alcun file de incargar!" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Vacua" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "Executa" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Imprime" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "Usatores" @@ -5002,8 +4985,8 @@ msgid "Add new column" msgstr "Adde nove columna" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5072,19 +5055,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "Tu deberea actualisar a version %s%s o successive." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "Error: error de correspondentia in le indicio (token mismatch)" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "Tentativa de superscriber GLOBALS" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "possibile exploit" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "clave numeric discoperite" @@ -5947,7 +5930,7 @@ msgid "Remember file name template" msgstr "Memora patrono de nomine de file" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Adde valor de AUTO_INCREMENT" @@ -5987,7 +5970,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Adde %s" @@ -7720,7 +7703,7 @@ msgid "" msgstr "" "Il defini si le quadro de query deberea star sur-schermo post su submission." -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "Cela quadro de query" @@ -8027,103 +8010,33 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Texto OpenDocument" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "Lista de favoritos es complete!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Tabella %s ha essite vacuate." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "Vista %s ha essite delite." -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "Tabella %s ha essite delite." -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "Lista de favoritos es complete!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "incognite" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "Le nomine '%s' es un parola clave reservate de MySQL." -msgstr[1] "Le nomines '%s' es parolas clave reservate de MySQL." - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "Necun columna seligite." - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "La columnas ha essite movite successosemente." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "Tabella %1$s ha essite alterate successosemente." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "Error de query" - -#: libraries/controllers/TableStructureController.php:967 -#, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "" -"Tabella %1$s ha essite alterate successosemente. Privilegios ha essite " -"adaptate." - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Modifica" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Indice" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "Spatial" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Texto complete" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "Valores distincte" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8137,6 +8050,14 @@ msgstr "Necun columnas numeric presente in le tabella pro designar in graphic." msgid "No data to display" msgstr "Necun dato de monstrar" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "Tabella %1$s ha essite alterate successosemente." + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "Columna de monstrar esseva actualisate con successo." @@ -8145,19 +8066,81 @@ msgstr "Columna de monstrar esseva actualisate con successo." msgid "Internal relations were successfully updated." msgstr "Relationes interne ha essite actualisate on successo." -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "Cerca de tabella" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "Cerca de zoom" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Trova e reimplacia" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "Le nomine '%s' es un parola clave reservate de MySQL." +msgstr[1] "Le nomines '%s' es parolas clave reservate de MySQL." + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "Necun columna seligite." + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "La columnas ha essite movite successosemente." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "Error de query" + +#: libraries/controllers/table/TableStructureController.php:975 +#, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "" +"Tabella %1$s ha essite alterate successosemente. Privilegios ha essite " +"adaptate." + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Modifica" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Indice" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "Spatial" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Texto complete" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "Valores distincte" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8168,7 +8151,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "possibile attacco profunde de recursion" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Necun modification" @@ -8240,7 +8223,7 @@ msgstr "Crea" msgid "Create database:" msgstr "Crea base de datos:" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Necun privilegios" @@ -8977,65 +8960,65 @@ msgid "Dump has been saved to file %s." msgstr "Le discargamento (dump) ha essite salveguardate in file %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL retornava un insimul de exito vacue (i.e. zero rangos)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "[ROLLBACK occurreva.]" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Le sequente structuras ha essite o create o alterate. Ci tu pote:" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "Vide contentos de un structura per pulsar super su nomine." -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Modifica ulle de su preferentias per pulsar le correspondente ligamine de " "\"Optiones\"." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "Modifica le structura per sequer le ligamine de \"Structura\"." -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "Vade al base de datos: %s" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "Modifica preferentias per %s" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "Vade a tabella: %s" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "Structura de %s" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "Vade a vista: %s" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "On pote simular solo queries de DELETE e UPDATE de singule tabella." -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9043,7 +9026,7 @@ msgstr "" "On pote facer roll back sur queries de NSERT, UPDATE, DELETE e REPLACE SQL " "continente tabellas de motor transactional." -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "Crea un indice sur  %s columnas" @@ -9066,75 +9049,73 @@ msgstr "Function" msgid "Binary" msgstr "Binari" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "Per su longitudine,
iste columna poterea non esser modificabile." -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Dato binari - non modifica" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "O" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "directorio de incargamento de servitor web:" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "Modifica/Inserta" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "Continua insertion con %s rangos" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "e alora" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "inserta como nove rango" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "Inserta como nove rango e ignora errores" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "Monstra query de insertar" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Vade a previe pagina" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Inserta un altere nove rango" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Vade retro a iste pagina" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Modifica nove rango" -#: libraries/insert_edit.lib.php:1541 -#| msgid "" -#| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" "Usa le clave TAB pro mover de valor a valor, o CTRL+flechas pro mover lo " "ubique." -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9146,11 +9127,11 @@ msgstr "" msgid "Value" msgstr "Valor" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "Monstrante query de SQL" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "Insertate id de rango: %1$d" @@ -9166,35 +9147,35 @@ msgstr "Necun" msgid "Convert to Kana" msgstr "Converte a Kana" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Successo!" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "Reimplacia prefixo de tabella:" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "Copia tabula con prefixo:" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "Ex" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "A" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "Adde prefixo de tabella:" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "Adde prefixo" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "Tu es secur que tu vermente vole executar le query sequente?" @@ -9412,8 +9393,8 @@ msgstr "Procedimentos:" msgid "Views:" msgstr "Vistas:" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Monstra" @@ -9458,18 +9439,15 @@ msgstr[1] "" "%s resultatos trovate" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" -msgstr "Filtra base de datos per nomine o regex" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 msgid "Clear fast filter" msgstr "Netta filtro rapide" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "Filtra per nomine o regex" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "Plica toto" @@ -9482,7 +9460,6 @@ msgstr "Invalide nomine de classe \"%1$s\", on usa le predefinite per \"Node\"" #: libraries/navigation/NodeFactory.php:63 #, php-format -#| msgid "Could not add columns!" msgid "Could not load class \"%1$s\"" msgstr "Il non pote adder classe \"%1$s\"" @@ -9602,9 +9579,6 @@ msgstr "" "Monstra a me le lista central de columnas que non es preste in iste tabella" #: libraries/normalization.lib.php:151 -#| msgid "" -#| "Select a column which can be split into more than one. (on select of 'no " -#| "such column', it'll move to next step)" msgid "" "Select a column which can be split into more than one (on select of 'no such " "column', it'll move to next step)." @@ -9897,7 +9871,7 @@ msgstr "Renominar le base de datos como" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9908,7 +9882,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Adapta permissiones" @@ -9926,18 +9900,18 @@ msgstr "Remover base de datos" msgid "Drop the database (DROP)" msgstr "Deler le base de datos (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Solmente le structura" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Structura e datos" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Solmente datos" @@ -9949,7 +9923,7 @@ msgstr "Copia base de datos in" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE ante copiar" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Adde vinculos" @@ -9989,157 +9963,157 @@ msgstr "" msgid "Change all column collations" msgstr "Modifica omne collation de columna" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Copia le tabella in (database.table)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Commuta a tabella copiate" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Mentenimento de tabella" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Analysa tabella" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Verifica tabella" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 msgid "Checksum table" msgstr "Tabella de checksum" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Optimiza tabella" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "Dele datos o tabella" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "Vacua le tabella (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "Dele le tabella (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Analysa" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Verifica" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Optimiza" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Reconstrue" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 msgid "Coalesce" msgstr "Uni" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "Partition %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "Remove partitionemento" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Verifica le integritate referential:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "" @@ -10305,7 +10279,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -10329,21 +10303,21 @@ msgstr "Definition" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10433,7 +10407,7 @@ msgid "Database:" msgstr "Base de datos:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "Datos:" @@ -10529,7 +10503,7 @@ msgid "Data creation options" msgstr "Optiones de creation de datos" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -10613,8 +10587,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10622,81 +10596,81 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 msgid "Metadata" msgstr "Metadatos" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "Metadata pro %s" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Creation:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Ultime actualisation:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Ultime controlo:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "in uso" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Limites pro tabellas delite (dumped)" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Limites pro tabella" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "Indices pro tabellas delite (dumped)" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "Indices pro tabella" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT pro tabellas delite (dumped)" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT pro tabella" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "Structura pro vider %s exportate como un tabella" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "Il habeva un error quando on legeva datos:" @@ -10930,9 +10904,9 @@ msgstr "" msgid "Table of contents" msgstr "Tabula de contentos" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Extra" @@ -11096,49 +11070,49 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Error: le relation ja existe." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "Relation de FOREIGN KEY ha essite addite." -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "" "Error: FOREIGN_KEY - clave extranee - relation non poteva esser addite!" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "Error: characteristicas relational es dishabilitate!" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "Relation interne ha essite addite." -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 msgid "Error: Internal relation could not be added!" msgstr "Error: Relation interne non poteva esser addite!" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 msgid "FOREIGN KEY relation has been removed." msgstr "Relation de FOREIGN KEY ha essite removite." -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "" "Error: FOREIGN KEY - clave extranee - relation non poteva esser removite!" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 msgid "Error: Internal relation could not be removed!" msgstr "Error: Relation non poteva esser removite!" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "Relation interne ha essite removite." @@ -11183,89 +11157,89 @@ msgstr "" msgid "Please see the documentation on how to update your column_info table. " msgstr "" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "Historia de SQL" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 msgid "Persistent favorite tables" msgstr "Tabellas favorite persistente" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "Preferentias de usator" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "Memora preferentias de Designer" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 msgid "Saving export templates" msgstr "Salveguardante patronos de exportar" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "Crea le tabella necessari con le %screate_tables.sql." -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11274,7 +11248,7 @@ msgstr "" "%sCreate%s un base de datos nominate 'phpmyadmin' e configura le " "configuration de immagazinage de phpMyAdmin ci." -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." @@ -11282,7 +11256,7 @@ msgstr "" "%sCrea%s le immagazinage de configuration de phpMyAdmin in le base de datos " "currente." -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11456,8 +11430,8 @@ msgstr "Nomine de usator:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Nomine de usator" @@ -11465,7 +11439,7 @@ msgstr "Nomine de usator" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Contrasigno" @@ -12077,7 +12051,7 @@ msgstr[1] "" msgid "Plugin" msgstr "Plugin" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Version" @@ -12085,98 +12059,94 @@ msgstr "Version" msgid "Author" msgstr "Autor" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "Licentia" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "dishabilitate" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "" #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "" #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "" #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12184,65 +12154,65 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "" #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "" #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -12254,8 +12224,8 @@ msgstr "Necun" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Gruppo de Usator" @@ -12295,37 +12265,37 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Routine" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12340,14 +12310,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -12357,7 +12327,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "" @@ -12366,15 +12336,15 @@ msgid "Global" msgstr "Global" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "" @@ -12391,7 +12361,7 @@ msgid "Native MySQL Authentication" msgstr "Authentication de MySQL native" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "" @@ -12414,8 +12384,8 @@ msgstr "Nomine de hospite:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 msgid "Host name" msgstr "Nomine de hospite" @@ -12431,216 +12401,216 @@ msgstr "Plugin de Authentication" msgid "Password Hashing Method" msgstr "Methodo de hashing de contrasigno" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 msgid "Add user account" msgstr "Adde conto de usator" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 msgid "Database for user account" msgstr "Base de datos pro conto de usator" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Omne" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "Global" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 msgid "Edit privileges" msgstr "Modifica privilegios" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Revoca" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Privilegios specific pro le routine" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 msgid "Remove selected user accounts" msgstr "Remove contos de usator selectionate" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Usator" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "Nove" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 msgid "Edit privileges:" msgstr "Modifica privilegios:" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "Conto de usator" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12649,7 +12619,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12658,11 +12628,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "" @@ -12884,30 +12854,30 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "Frequentia de Refrescamento" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "Retorna a valores predefinite" @@ -12961,7 +12931,7 @@ msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -12986,33 +12956,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13020,78 +12990,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13099,7 +13069,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13107,42 +13077,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13150,33 +13120,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13185,242 +13155,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13428,99 +13398,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13528,18 +13498,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13547,11 +13517,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -13560,57 +13530,57 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "Schedas de nivello servitor" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "Schedas de nivello de base de datos" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "Schedas de nivello de tabula" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "Vide usatores" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "Adde gruppo de usator" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "Nomine de gruppo:" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "Schedas de nivello servitor" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "Schedas de nivello de base de datos" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "Schedas de nivello de tabula" @@ -13670,21 +13640,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 msgid "An alias was expected." msgstr "On expectava un alias." @@ -13740,105 +13706,105 @@ msgstr "" msgid "Variable name was expected." msgstr "On expectava un nomine de variabile." -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 msgid "Unexpected beginning of statement." msgstr "Un initio de instruction non expectate." -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "Un indicio non expectate." -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 msgid "At least one column definition was expected." msgstr "On expectava al minus un definition de columna." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "Ordine" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "Stato" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "Tempore total" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "% Tempore" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "Appellos" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "Etiquetta:" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "Marcator de libro non create!" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " @@ -13847,7 +13813,7 @@ msgstr "" "Selection currente non contine un unic columna. Functionalitates ligate al " "modificar grillia, modificar, copiar, marcar, deler non es disponibile %s" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " @@ -13857,7 +13823,7 @@ msgstr "" "modificar grillia, modificar, copiar, e deler pote resultar in un " "comportamento indesiderate. %s" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -13885,27 +13851,27 @@ msgstr "" msgid "Bind parameters" msgstr "Liga parametros" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Delimitator" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Solmente vista" @@ -13949,172 +13915,172 @@ msgstr "" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Create" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Actualisate" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 msgid "Delete version" msgstr "Dele version" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Reporto de tracia" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Fragmento de structura" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "active" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "non active" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Data" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Nomine usator" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Necun" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Version %1$s de %2$s esseva delite." -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Tabulas non traciate" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Tracia tabula" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Tabulas traciate" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Ultime version" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "Delite traciar" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Versiones" @@ -14122,11 +14088,11 @@ msgstr "Versiones" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14226,7 +14192,7 @@ msgstr "Necun base de datos" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14251,7 +14217,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -15036,43 +15002,49 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "Titulo del diagramma" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "Series:" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Valores pro le axis Y" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "Columna de series:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 msgid "Value Column:" msgstr "Columna de valor:" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "Salveguarda diagramma como imagine" @@ -15125,46 +15097,47 @@ msgstr "Commento:" msgid "Drag to reorder" msgstr "Trahe pro reordinar" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +msgid "Foreign key constraints" +msgstr "Limites de clave externe" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "Actiones" + +#: templates/table/relation/common_form.phtml:10 +msgid "Constraint properties" +msgstr "Limita proprietates" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "" + +#: templates/table/relation/common_form.phtml:60 +msgid "+ Add constraint" +msgstr "+ Adde un limite" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "Relationes interne" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:37 -msgid "Foreign key constraints" -msgstr "Limites de clave externe" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "Actiones" - -#: templates/table/relation/common_form.phtml:41 -msgid "Constraint properties" -msgstr "Limita proprietates" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "" - -#: templates/table/relation/common_form.phtml:83 -msgid "+ Add constraint" -msgstr "+ Adde un limite" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "Selige columna de monstrar:" @@ -15292,7 +15265,7 @@ msgid "at beginning of table" msgstr "a le initio de tabella" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 msgid "Partitions" msgstr "Partitiones" @@ -15325,7 +15298,7 @@ msgstr "Tabella de partition" msgid "Edit partitioning" msgstr "Modifica partitionemento" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "" @@ -15608,7 +15581,6 @@ msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" #: libraries/advisory_rules.txt:118 -#| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5." msgstr "Tu deberea actualisar a un version stabile de MySQL 5.5." @@ -16483,6 +16455,36 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert - insertion concurrente- es ponite a 0" +#~ 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" + +#~ 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" + +#~ msgid "tables" +#~ msgstr "tabellas" + +#~ msgid "views" +#~ msgstr "vistas" + +#~ msgid "procedures" +#~ msgstr "proceduras" + +#~ msgid "events" +#~ msgstr "eventos" + +#~ msgid "functions" +#~ msgstr "functiones" + +#~ msgid "Filter databases by name or regex" +#~ msgstr "Filtra base de datos per nomine o regex" + +#~ msgid "Filter by name or regex" +#~ msgstr "Filtra per nomine o regex" + #~ msgid "Taking you to %s." #~ msgstr "Ducente te a %s." diff --git a/po/id.po b/po/id.po index 87a62725a8..e6d09ad493 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Indonesian Are you sure you " "want to continue?" @@ -1979,51 +1991,51 @@ msgstr "" "Tindakan ini mungkin mengubah beberapa definisi kolom.
Anda yakin " "ingin melanjutkan?" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "Lanjutkan" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "Tambahkan kunci primer" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "Kunci primer telah ditambahkan." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "Tunggu sebentar yach…" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Langkah pertama normalisasi selesai untuk tabel '%s'." -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "Langkah terakhir" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "Langkah kedua normalisasi (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Selesai" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "Konfirmasi dependensi parsial" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "Dependensi yang dipilih adalah:" -#: js/messages.php:440 +#: js/messages.php:441 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 +2043,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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "Tidak ada dependensi parsial yang dipilih!" -#: js/messages.php:446 +#: js/messages.php:447 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:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "Sembunykan daftar dependensi parsial" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2051,171 +2063,171 @@ msgstr "" "Santai! Mungkin diperlukan beberapa detik tergantung pada ukuran data dan " "jumlah kolom tabel." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "Langkah" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "Tindakan berikut akan dilakukan:" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "DROP kolom %s dari tabel %s" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "Buat tabel" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "Tahap ketiga normalisasi (3NF)" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "Konfirmasi dependensi transitif" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "Dependensi yang dipilih adalah sebagai berikut:" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "Dependensi belum dipilih!" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Simpan" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Sembunyikan kriteria pencarian" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Tampilkan kriteria pencarian" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "Jarak pencarian" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "Jumlah kolom maksimal:" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "Jumlah kolom minimal:" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "Nilai minimal:" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "Nilai maksimum:" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "Sembunyikan kriteria pencarian dan penggantian" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "Tampilkan kriteria pencarian dan penggantian" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "Setiap titik mewakili sebaris data." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "Melayang di atas titik akan menunjukkan labelnya." -#: js/messages.php:486 +#: js/messages.php:487 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:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "Klik link reset Zoom untuk kembali ke keadaan semula." -#: js/messages.php:490 +#: js/messages.php:491 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:492 +#: js/messages.php:493 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:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "Pilih dua kolom" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "Pilih dua kolom yang berbeda" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "Isi titk data" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Abaikan" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Salin" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Titik" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Segmen garis" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Poligon" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometri" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Lingkar Dalam" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Lingkar Luar:" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "Apakah anda yakin untuk menyalin kunci enskripsi?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "Kunci Enskripsi" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2223,24 +2235,24 @@ msgstr "" "Sebagai indikasi telah ada perubaha di halaman ini; konfirmasi akan " "ditampilkan untuk mengabaikan perubahan" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Pilih kunci rujukan" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Pilih Foreign Key" -#: js/messages.php:529 +#: js/messages.php:530 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:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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:532 +#: js/messages.php:533 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?" @@ -2248,79 +2260,79 @@ msgstr "" "Anda belum menyimpan perubahan pada susunan. Mereka akan hilang jika Anda " "tidak menyimpannya. Apakah Anda ingin melanjutkan?" -#: js/messages.php:535 +#: js/messages.php:536 msgid "Page name" msgstr "Nama halaman" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Simpan halaman" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Buka halaman" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "Hapus halaman" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Belum ada nama" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "Pilih halaman untuk lanjut" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "Masukan halaman yang benar" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "Apakah Anda ingin menyimpan perubahan ke halaman ini?" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "Halaman berhasil dihapus" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "Ekspor skema relasi" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Modifikasi telah disimpan" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "Tambahkan opsi untuk kolom \"%s\"." -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "%d objek dibuat." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Kirim" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "Tekan escape untuk membatalkan perubahan." -#: js/messages.php:557 +#: js/messages.php:558 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?" @@ -2328,15 +2340,15 @@ msgstr "" "Anda telah mengedit beberapa data dan belum di simpan. Apakah anda yakin " "akan meninggalkan halaman ini sebelum menyimpan data?" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "Seret untuk menyusun ulang." -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "KIik untuk menyortir hasil dari kolom ini." -#: js/messages.php:563 +#: js/messages.php:564 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 " @@ -2346,26 +2358,26 @@ msgstr "" "DESC.
- Kontrol+Klik atau Alt+Click (Mac: Shift+Option+Click) untuk " "menghapus kolom dari ORDER BY clause" -#: js/messages.php:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "Klik untuk menambahkan/menghapus tanda." -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "Klik dua kali untuk menyalin nama kolom." -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Klik tanda panah ke bawah
untuk beralih visibilitas kolom." -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Tampilkan semua" -#: js/messages.php:574 +#: js/messages.php:575 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." @@ -2374,11 +2386,11 @@ msgstr "" "grid, kotak centang, Edit, Copy dan Delete link mungkin tidak bekerja " "setelah disimpan." -#: js/messages.php:578 +#: js/messages.php:579 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:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2386,135 +2398,103 @@ msgstr "" "Apakah anda ingin melihat semua baris? Tabel ukuran besar bisa membuat " "peramban lambat." -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "String asli" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "Batal" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Batalkan" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "Sukses" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "Impor status" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Letakkan berkas disini" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "Pilih database dulu" -#: js/messages.php:598 +#: js/messages.php:599 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:603 +#: js/messages.php:604 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:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "Pergi ke tautan:" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "Salin nama kolom." -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "Klik-kanan nama kolom untuk menyalinnya ke clipboard." -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Buatkan kata sandi" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Buatkan" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "Lainnya" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Tampilkan Panel" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Sembunyikan Panel" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "Tampilkan navigasi pohon item tersembunyi." -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "Link ke panel utama" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "Unlink dari panel utama" -#: js/messages.php:629 -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:631 -#, 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:632 -#, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "Tabel" - -#: js/messages.php:633 -msgid "views" -msgstr "Tampilan" - -#: js/messages.php:634 -msgid "procedures" -msgstr "Prosedur" - -#: js/messages.php:635 -msgid "events" -msgstr "Kejadian" - -#: js/messages.php:636 -msgid "functions" -msgstr "Fungsi" - -#: js/messages.php:640 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:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2524,31 +2504,31 @@ msgstr "" "untuk meng-upgrade. Versi terbaru adalah %s, dirilis pada %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", versi stabil terakhir:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "Mutakhir" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "Buat tampilan" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy #| msgid "Send error reports" msgid "Send error report" msgstr "Kirim laporan kesalahan" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Kiri Laporan Kesalahan" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2556,26 +2536,26 @@ msgstr "" "Kesalhaan fatal JavaScript telah terdeteksi. Anda ingin mengirimkan laporan " "kesalahan?" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Ubah Pengaturan Pelaporan" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Tampilkan Detail Laporan" -#: js/messages.php:663 +#: js/messages.php:655 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:667 +#: js/messages.php:659 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2585,64 +2565,64 @@ msgstr "" "beberapa bidang mungkin dibatalkan, karena konfigurasi max_input_vars dari " "PHP." -#: js/messages.php:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "Kesalahan terdeteksi di server!" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "Silahkan lihat di bagian bawah jendela ini." -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "Abaikan" -#: js/messages.php:689 +#: js/messages.php:681 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:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "Jalankan kueri ini lagi?" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "Anda yakin akan menghapus penanda ini?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, fuzzy, php-format #| msgid "Executed queries" msgid "%s queries executed %s times in %s seconds." msgstr "Kueri tereksekusi" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Komentar tabel" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Sembunyikan hasil pencarian" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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,305 +2632,305 @@ msgstr "" "beberapa fitur mungkin tidak bekerja dengan sempurna. Di Safari, masalah ini " "terjadi karena \"Private Mode Browsing\" diaktifkan." -#: js/messages.php:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "Sblm" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "Brkt" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Hari ini" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "Januari" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "Februari" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "Maret" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "April" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Mei" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "Juni" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "Juli" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "Agustus" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "September" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "Oktober" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "November" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "Desember" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Agu" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Des" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "Minggu" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "Senin" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "Selasa" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "Rabu" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "Kamis" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "Jumat" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "Sabtu" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "Min" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Sen" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Sel" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Rab" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Kam" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "Min" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "Sn" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "Sl" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "Rb" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "Km" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "Jm" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "Sb" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "Mingguan" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "Kalender-bulan-tahun" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "Kosong" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Jam" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Menit" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Detik" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Gunakan text field" -#: js/messages.php:886 +#: js/messages.php:878 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid email address" msgstr "Masukan angka yang valid" -#: js/messages.php:887 +#: js/messages.php:879 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "Tolong masukkan angka yang valid!" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date" msgstr "Masukan angka yang valid" -#: js/messages.php:889 +#: js/messages.php:883 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date ( ISO )" msgstr "Masukan angka yang valid" -#: js/messages.php:890 +#: js/messages.php:885 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "Tolong masukkan angka yang valid!" -#: js/messages.php:891 +#: js/messages.php:888 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "Tolong masukkan angka yang valid!" -#: js/messages.php:892 +#: js/messages.php:890 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" @@ -2962,53 +2942,53 @@ msgstr "Masukan nilai panjang yang valid!" msgid "Please enter the same value again" msgstr "Masukan angka yang valid" -#: js/messages.php:894 +#: js/messages.php:897 #, fuzzy msgid "Please enter no more than {0} characters" msgstr "Silakan masukkan captcha yang benar!" -#: js/messages.php:895 +#: js/messages.php:902 #, fuzzy msgid "Please enter at least {0} characters" msgstr "Silakan masukkan captcha yang benar!" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a value between {0} and {1}" msgstr "Masukan angka yang valid" -#: js/messages.php:898 +#: js/messages.php:917 #, 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:899 +#: js/messages.php:922 #, 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:901 +#: js/messages.php:928 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date or time" msgstr "Masukan angka yang valid" -#: js/messages.php:902 +#: js/messages.php:933 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "Tolong masukkan angka yang valid!" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Galat" @@ -3098,11 +3078,12 @@ msgstr "Kueri ulang" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3143,7 +3124,7 @@ msgstr "Sesi saat ini" msgid "Explain" msgstr "Jelaskan" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Profil" @@ -3177,8 +3158,8 @@ msgid "History" msgstr "Riwayat" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3347,7 +3328,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Pindah ke tabel salinan" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3355,25 +3336,25 @@ msgstr "" "Server tidak merespon (atau soket server lokal tidak dikonfigurasi dengan " "benar)." -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "Server tidak merespon." -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "Harap periksa hak akses direktori basis data." -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Rincian…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Koneksi untuk controluser yang di definisikan di konfigurasi Anda gagal." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3383,8 +3364,8 @@ msgstr "" msgid "Ascending" msgstr "Menaik" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3527,8 +3508,8 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s cocok dengan %2$s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3572,121 +3553,122 @@ msgstr "Lepas Semua" msgid "Inside column:" msgstr "Dalam kolom:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "Simpan data yang diedit" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "Pulihkan urutan kolom" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "Saring baris" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "Cari di tabel ini" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "Awal" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "Sebelumnya" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "Berikutnya" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "Akhir" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Semua" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Jumlah baris:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Urut berdasarkan kunci" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "Teks parsial" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "Teks penuh" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Kunci relasi" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Display foreign key relationships" msgid "Display column for relations" msgstr "Tampilkan hubungan kunci luar" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "Tampilkan konten biner" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "Tampilkan konten BLOB" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "Sembunyikan Transformasi Browser" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "Teks Dikenali" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "Biner Diketahui" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "Baris telah dihapus." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Tutup" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Kemungkinan hanya perkiraan saja. Lihat [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "Kueri SQL Anda berhasil dieksekusi." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3695,40 +3677,40 @@ msgstr "" "Sebuah view setidaknya mempunyai jumlah kolom berikut. Harap lihat " "%sdokumentasi%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "Menampilkan baris %1s - %2s" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "total %1$d, %2$d dalam kueri" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "total %d" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "Pencarian dilakukan dalam %01.4f detik." -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Dengan pilihan:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3736,25 +3718,25 @@ msgstr "Dengan pilihan:" msgid "Check all" msgstr "Pilih Semua" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Tampilan cetak" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Operasi hasil kueri" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Tampilkan bagan" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "Visualisasi data GIS" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "Tautan tidak ditemukan!" @@ -3851,19 +3833,19 @@ msgstr "Indeks belum ditentukan!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Indeks" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3872,24 +3854,24 @@ msgid "Action" msgstr "Tindakan" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Nama kunci" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Unik" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Dipadatkan" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Kardinalitas" @@ -3897,8 +3879,8 @@ msgstr "Kardinalitas" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3908,8 +3890,8 @@ msgid "Collation" msgstr "Penyortiran" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3925,15 +3907,15 @@ msgstr "Kunci primer telah dihapus." msgid "Index %s has been dropped." msgstr "Indeks %s telah dihapus." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Hapus" @@ -3972,12 +3954,13 @@ msgstr "Gambarkan" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3985,7 +3968,7 @@ msgstr "Tabel" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3994,8 +3977,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4003,41 +3986,41 @@ msgid "Search" msgstr "Cari" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Tambahkan" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Hak Akses" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Operasi" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Pelacakan" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4048,16 +4031,16 @@ msgstr "Trigger" msgid "Database seems to be empty!" msgstr "Basis data kelihatannya kosong!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Kueri" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Routine" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4065,20 +4048,20 @@ msgstr "Routine" msgid "Events" msgstr "Event" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Desainer" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "Tengah kolom" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Basis data" @@ -4089,33 +4072,33 @@ msgid "User accounts" msgstr "Grup pengguna" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Log biner" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikasi" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Variabel" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Set Karakter" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Mesin" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "Plugin" @@ -4412,7 +4395,7 @@ msgstr "Gagal ubah nama Indeks ke PRIMARY!" msgid "No index parts defined!" msgstr "Bagian indeks belum diberi definisin!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, fuzzy, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Kesalahan membuat kunci asing pada %1$s (periksa tipe data)" @@ -4892,39 +4875,39 @@ msgstr "Fungsionalitas %s dipengaruhi oleh suatu bug, lihat %s" msgid "Click to toggle" msgstr "Klik untuk beralih" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Telusuri komputer Anda:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Pilih dari direktori unggah %s pada web server:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "" "Direktori yang telah ditetapkan untuk mengunggah tidak dapat dihubungi." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "Tidak ada arsip untuk diunggah!" # Imperative menu -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Kosongkan" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "Eksekusi" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Cetak" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "Pengguna" @@ -5097,8 +5080,8 @@ msgid "Add new column" msgstr "Tambah kolom" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5164,19 +5147,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "Anda harus memperbarui ke %s %s atau lebih baru." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "Error: Token tidak cocok" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "upaya penimpaan GLOBALS" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "memungkinkan mengeksploitasi" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "tombol angka terdeteksi" @@ -6080,7 +6063,7 @@ msgstr "Ingat templat nama berkas" # Imperative verb #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Tambahkan nilai AUTO_INCREMENT" @@ -6121,7 +6104,7 @@ msgstr "Tabel penyimpanan konfigurasi phpMyAdmin tidak ditemukan" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Tambahkan %s" @@ -7989,7 +7972,7 @@ msgstr "" "Mendefinisikan apakah kotak pertanyaan harus tinggal di layar setelah " "penyerahan." -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 #, fuzzy #| msgid "Hide query box" msgid "Retain query box" @@ -8312,107 +8295,35 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Teks OpenDocument" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "Daftar favorit sudah penuh!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Tabel %s telah dikosongkan." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "View %s telah dihapus" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "Tabel %s telah dihapus" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "Daftar favorit sudah penuh!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "tidak diketahui" -#: libraries/controllers/TableStructureController.php:162 -#, fuzzy, php-format -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.php:250 -msgid "No column selected." -msgstr "Tidak ada kolom yang dipilih." - -#: libraries/controllers/TableStructureController.php:484 -#, 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.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "Tabel %1$s berhasil diubah." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "Galat kueri" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Ubah" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Indeks" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "Spasial" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Teks penuh" - -#: libraries/controllers/TableStructureController.php:1201 -#, fuzzy -#| msgid "Browse distinct values" -msgid "Distinct values" -msgstr "Jelajahi nilai distingtif" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 #, fuzzy @@ -8430,6 +8341,14 @@ msgstr "Tidak ada kolom numerik yang muncul dalam tabel untuk perencanaan." msgid "No data to display" msgstr "Tidak ada data" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "Tabel %1$s berhasil diubah." + #: libraries/controllers/table/TableRelationController.php:212 #, fuzzy #| msgid "Thread %s was successfully killed." @@ -8442,19 +8361,83 @@ msgstr "Sukses hentikan Thread %s." msgid "Internal relations were successfully updated." msgstr "Relasi internal ditambahkan" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "Pencarian Tabel" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "Perbesar pencarian" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Cari dan Gantikan" +#: libraries/controllers/table/TableStructureController.php:163 +#, fuzzy, php-format +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/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "Tidak ada kolom yang dipilih." + +#: libraries/controllers/table/TableStructureController.php:485 +#, fuzzy +#| msgid "The selected users have been deleted successfully." +msgid "The columns have been moved successfully." +msgstr "Sukses menghapus pengguna yang dipilih." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "Galat kueri" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Ubah" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Indeks" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "Spasial" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Teks penuh" + +#: libraries/controllers/table/TableStructureController.php:1209 +#, fuzzy +#| msgid "Browse distinct values" +msgid "Distinct values" +msgstr "Jelajahi nilai distingtif" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8464,7 +8447,7 @@ msgstr "Ekstensi %s tidak ditemukan. Harap periksa konfigurasi PHP Anda." msgid "possible deep recursion attack" msgstr "Memungkinkan serangan rekursi dalam" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Tidak ada perubahan" @@ -8535,7 +8518,7 @@ msgstr "Buat" msgid "Create database:" msgstr "Buat basis data:" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Tidak Ada Hak Akses" @@ -9336,73 +9319,73 @@ msgid "Dump has been saved to file %s." msgstr "Dump (Skema) disimpan pada berkas %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL memberikan hasil kosong (atau nol baris)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 #, fuzzy msgid "[ROLLBACK occurred.]" msgstr "[ROLLBACK occurred.]" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 #, fuzzy msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Struktur berikut telah baik telah dibuat atau diubah. Di sini Anda dapat:" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 #, fuzzy msgid "View a structure's contents by clicking on its name." msgstr "Lihat isi struktur ini dengan mengklik namanya." -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 #, fuzzy msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "Mengubah pengaturan yang dengan mengklik sesuai \"Options\" link." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 #, fuzzy msgid "Edit structure by following the \"Structure\" link." msgstr "Mengedit struktur dengan mengikuti link \"Struktur\"." -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "Tuju ke basis data" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "Edit pengaturan %s" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "Tuju ke tabel" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "Struktur %s" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" msgstr "Tuju ke view" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 #, fuzzy msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "Hanya satu meja UPDATE dan DELETE query dapat disimulasikan." -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 #, fuzzy msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " @@ -9411,7 +9394,7 @@ msgstr "" "Hanya INSERT, UPDATE, DELETE dan REPLACE query SQL yang berisi tabel mesin " "transaksional dapat digulung kembali." -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "Buat indeks pada  %s  kolom" @@ -9434,70 +9417,70 @@ msgstr "Fungsi" msgid "Binary" msgstr "Biner" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 #, fuzzy #| msgid "Because of its length,
this column might not be editable" msgid "Because of its length,
this column might not be editable." msgstr "Karena panjangnya,
isian ini mungkin tidak dapat diedit" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Biner - jangan diedit" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Atau" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "direktori unggahan server web" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "Edit/Tambah" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "Lanjutkan penambahan untuk %s baris" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "selanjutnya" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Tambahkan sebagai baris baru" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "Tambahkan sebagai baris baru dan abaikan galat" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "Tampilkan kueri penambahan" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "kembali" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "tambahkan baris baru berikutnya" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Kembali ke halaman ini" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Edit baris berikut" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9507,7 +9490,7 @@ msgstr "" "Gunakan tombol TAB untuk maju dari angka ke angka atau gunakan CTRL+panah " "untuk maju kemana saja" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9519,11 +9502,11 @@ msgstr "" msgid "Value" msgstr "Nilai" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "Menampilkan kueri SQL" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "Nomor baris baru: %1$d" @@ -9540,41 +9523,41 @@ msgstr "Tidak ada" msgid "Convert to Kana" msgstr "Mengkonversi ke Kana" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Sukses!" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table prefix:" msgstr "Ganti prefiks tabel" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Copy table with prefix" msgid "Copy table with prefix:" msgstr "Salin tabel dengan prefiks" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "Dari" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "Menjadi" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Add table prefix" msgid "Add table prefix:" msgstr "Tambahkan prefiks tabel" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "Tambahkan prefiks" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -9807,8 +9790,8 @@ msgstr "Prosedur" msgid "Views:" msgstr "View" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Tampilkan" @@ -9851,10 +9834,9 @@ msgid_plural "%s results found" msgstr[0] "%s hasil lainnya ditemukan" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "Filter tables by name" -msgid "Filter databases by name or regex" -msgstr "Filter tabel menurut nama" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -9863,12 +9845,6 @@ msgstr "Filter tabel menurut nama" msgid "Clear fast filter" msgstr "Bersihkan seri" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "Filter tables by name" -msgid "Filter by name or regex" -msgstr "Filter tabel menurut nama" - #: libraries/navigation/NavigationTree.php:1433 #, fuzzy msgid "Collapse all" @@ -10359,7 +10335,7 @@ msgstr "Ubah nama basis data menjadi" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10370,7 +10346,7 @@ msgstr "Hak Akses Anda untuk melanjut tidak cukup!" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -10390,18 +10366,18 @@ msgstr "Hapus basis data" msgid "Drop the database (DROP)" msgstr "Hapus basis data (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Struktur saja" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Struktur dan data" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Data saja" @@ -10415,7 +10391,7 @@ msgstr "Salin basis data ke" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE sebelum menyalin" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Tambahkan batasan" @@ -10456,162 +10432,162 @@ msgstr "Mesin Penyimpanan" msgid "Change all column collations" msgstr "Membuat semua kolom atom" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Salin tabel ke (basis data.nama tabel)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Pindah ke tabel salinan" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Pemeliharaan tabel" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Analisis tabel" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Periksa tabel" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Periksa tabel" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Defragmentasikan tabel" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, fuzzy, php-format msgid "Table %s has been flushed." msgstr "Tabel %s telah dibersihkan." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "Bersihkan tabel (\"FLUSH\")" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Optimalkan tabel" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Perbaiki tabel" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "Hapus data atau tabel" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "Kosongkan tabel (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "Hapus tabel (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Analisis" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Periksa" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Optimalkan" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Bangun ulang" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Perbaiki" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy msgid "Coalesce" msgstr "Tutup" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "Pemeliharaan partisi" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "Partisi %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "Hapus partisi" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Cek integriti referensial:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Memindahkan tabel ke diri-sendiri tidak bisa dilakukan!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Penyalinan tabel pada diri-sendiri tidak bisa dilakukan!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabel %s telah dipindahkan ke %s." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabel %s telah disalin ke %s." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabel %s telah dipindahkan ke %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabel %s telah disalin ke %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Nama tabel kosong!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "Format ini tidak memiliki opsi" @@ -10793,7 +10769,7 @@ msgstr "Opsi dump data" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Dumping data untuk tabel" @@ -10817,21 +10793,21 @@ msgstr "Definisi" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Struktur dari tabel" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Struktur untuk view" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 #, fuzzy msgid "Stand-in structure for view" @@ -10938,7 +10914,7 @@ msgid "Database:" msgstr "Basis data" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11061,7 +11037,7 @@ msgid "Data creation options" msgstr "Opsi pembuatan objek" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 #, fuzzy msgid "Truncate table before insert" msgstr "Truncate table sebelum insert" @@ -11152,8 +11128,8 @@ msgstr "Tampaknya database Anda menggunakan prosedur;" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 #, fuzzy msgid "alias export may not work reliably in all cases." msgstr "ekspor alias mungkin tidak bekerja andal dalam semua kasus." @@ -11163,96 +11139,96 @@ msgstr "ekspor alias mungkin tidak bekerja andal dalam semua kasus." msgid "It appears your database uses functions;" msgstr "Tampaknya database Anda menggunakan fungsi;" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Metadata Headers" msgid "Metadata" msgstr "Kepala Metadata" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, fuzzy, php-format #| msgid "Metadata Headers" msgid "Metadata for %s" msgstr "Kepala Metadata" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Pembuatan:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Pembaruan terakhir:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Pemeriksaan terakhir:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "sedang digunakan" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 #, fuzzy msgid "It appears your database uses views;" msgstr "Tampaknya database Anda menggunakan pandangan;" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Ketidakleluasaan untuk tabel pelimpahan (Dumped Tables)" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Ketidakleluasaan untuk tabel" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Ketidakleluasaan untuk tabel pelimpahan (Dumped Tables)" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Dalam tabel:" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "Jangan gunakan AUTO_INCREMENT untuk nilai nol" # Imperative verb -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Tambahkan nilai AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "JENIS MIME UNTUK TABEL" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "RELASI UNTUK TABEL" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 #, fuzzy msgid "It appears your table uses triggers;" msgstr "Tampaknya meja Anda menggunakan pemicu;" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Struktur untuk view" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "Galat pembacaan data:" @@ -11521,9 +11497,9 @@ msgstr "Skema Relational" msgid "Table of contents" msgstr "Daftar Isi" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Ekstra" @@ -11764,47 +11740,47 @@ msgstr "Format teks sebagai kueri SQL dengan penyorotan sintaks." msgid "Formats text as XML with syntax highlighting." msgstr "Format teks sebagai kueri SQL dengan penyorotan sintaks." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Galat: relasi sudah ada." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "Relasi FOREIGN KEY telah ditambahkan." -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Galat: Relasi FOREIGN KEY tidak dapat ditambahkan.!" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "Galat: index hilang pada kolom." -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "Galat: Fitur Relasi tidak diaktifkan!" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "Relasi internal telah ditambahkan." -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 msgid "Error: Internal relation could not be added!" msgstr "Galat: Relasi internal tidak dapat ditambahkan!" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 msgid "FOREIGN KEY relation has been removed." msgstr "Relasi FOREIGN KEY telah dihapus." -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Galat: Relasi FOREIGN KEY tidak dapat dihapus!" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 msgid "Error: Internal relation could not be removed!" msgstr "Galat: Relasi Internal tidak dapat dihapus!" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "Relasi internal telah dihapus." @@ -11851,78 +11827,78 @@ msgstr "" "Silakan lihat dokumentasi mengenai bagaimana mengupdate column_info tabel " "anda. " -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Kueri SQL yang dimarkahi" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "Riwayat SQL" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "Tabel baru digunakan persisten" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 msgid "Persistent favorite tables" msgstr "Tabel favorit persisten" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "Tabel preferensi UI persisten" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "Preferensi pengguna" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "Menu konfigurasi" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 #, fuzzy #| msgid "Reload navigation frame" msgid "Hide/show navigation items" msgstr "Muat ulang bingkai navigasi" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 #, fuzzy msgid "Saving Query-By-Example searches" msgstr "Menyimpan Query-By-Contoh pencarian" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 #, fuzzy msgid "Managing Central list of columns" msgstr "Mengelola daftar Central kolom" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Remember table's sorting" msgid "Remembering Designer Settings" msgstr "Ingat urutan tabel" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "Jenis ekspor invalid" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "Langkah cepat untuk menyiapkan fitur lanjut:" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, fuzzy, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" "Membuat tabel yang dibutuhkan dengan contoh/create_tables.sql." -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 #, fuzzy msgid "Create a pma user and give access to these tables." msgstr "Membuat user pma dan memberikan akses ke tabel ini." -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 #, fuzzy msgid "" "Enable advanced features in configuration file (config.inc.php config.inc.php), misalnya dengan memulai dari config.sample.inc.php." -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 #, fuzzy msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "Login ulang ke phpMyAdmin untuk memuat file konfigurasi yang baru." -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "tidak ada deskripsi" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11955,14 +11931,14 @@ msgid "" "configuration storage there." msgstr "Tabel penyimpanan konfigurasi phpMyAdmin tidak ditemukan" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Tabel penyimpanan konfigurasi phpMyAdmin tidak ditemukan" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -12164,8 +12140,8 @@ msgstr "Nama pengguna" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Nama pengguna" @@ -12173,7 +12149,7 @@ msgstr "Nama pengguna" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Kata Sandi" @@ -12847,7 +12823,7 @@ msgstr[0] "Sukses menghapus basis data %s." msgid "Plugin" msgstr "Plugin" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Versi" @@ -12855,102 +12831,98 @@ msgstr "Versi" msgid "Author" msgstr "Pembuat" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "Lisensi" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "tidak aktif" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Tanpa hak akses." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Mencakup semua hak akses selain GRANT." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Mengizinkan untuk baca data." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Mengizinkan untuk tambah dan ganti data." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Mengizinkan untuk ubah data." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Mengizinkan untuk menghapus data." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Mengizinkan untuk membuat basis data dan tabel baru." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Mengizinkan penghapusan basis data dan tabel." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Mengizinkan untuk memuat ulang pengaturan server dan membersihkan singgahan " "server." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Mengizinkan untuk shut-down server." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 #, fuzzy #| msgid "Allows viewing processes of all users" msgid "Allows viewing processes of all users." msgstr "Mengizinkan untuk melihat proses dari semua pengguna" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "Mengizinkan mengimpor data dari dan mengekspor data ke berkas." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "Tidak ada efek dalam versi MySQL yang digunakan." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Mengizinkan untuk menciptakan dan hapus Indeks." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Mengizinkan untuk mengubah struktur dari tabel yang ada." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Memberi akses ke seluruh daftar basis data." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12962,22 +12934,22 @@ msgstr "" "lain." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Mengizinkan untuk membuat tabel temporer." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Mengizinkan untuk mengunci tabel dalam Thread yang lagi berjalan." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Digunakan untuk replikasi dari slaves." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Memberi hak kepada pengguna untuk menanyakan lokasi dari slaves / masters." @@ -12985,19 +12957,19 @@ msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Mengizinkan untuk membuat view baru." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "Mengizinkan penyiapan event untuk penjadwal event" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 #, fuzzy #| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." @@ -13005,27 +12977,27 @@ msgstr "Mengizinkan untuk membuat dan menghapus trigger" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Mengizinkan pencarian dengan cara SHOW CREATE VIEW." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Mengizinkan untuk membuat routine tersimpan." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Mengizinkan untuk mengubah dan menghapus routine tersimpan." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "Mengizinkan untuk membuat, menghapus, dan mengubah nama akun pengguna." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Mengizinkan eksekusi routine tersimpan." @@ -13037,8 +13009,8 @@ msgstr "Tidak ada" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Grup pengguna" @@ -13084,14 +13056,14 @@ msgstr "" "yang telah ditentukan." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Membatasi jumlah kueri yang diperbolehkan untuk setiap pengguna dalam batas " "waktu satu jam." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -13100,21 +13072,21 @@ msgstr "" "setiap pengguna dalam batas waktu satu jam." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Membatasi jumlah koneksi baru yang diperbolehkan untuk setiap pengguna dalam " "batas waktu satu jam." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "Membatasi jumlah koneksi simultan yang dapat dibuat pengguna." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -13122,7 +13094,7 @@ msgid "Routine" msgstr "Routine" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -13143,14 +13115,14 @@ msgstr "Mengizinkan eksekusi routine tersimpan." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Hak akses khusus tabel" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -13162,7 +13134,7 @@ msgid "Administration" msgstr "Administrasi" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Hak akses global" @@ -13173,15 +13145,15 @@ msgid "Global" msgstr "global" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Hak akses khusus basis data" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Mengizinkan untuk membuat tabel baru." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Mengizinkan untuk hapus tabel." @@ -13204,7 +13176,7 @@ msgid "Native MySQL Authentication" msgstr "Autentikasi kuki" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Informasi Masuk" @@ -13232,8 +13204,8 @@ msgstr "Nama pengguna" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Log name" msgid "Host name" @@ -13255,227 +13227,227 @@ msgstr "Autentikasi" msgid "Password Hashing Method" msgstr "Pengernaian Kata Sandi (Password Hashing)" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "Sukses mengubah Kata Sandi untuk %s ." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Anda telah mencabut hak akses untuk %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add user group" msgid "Add user account" msgstr "Tambah grup pengguna" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Basis data untuk pengguna" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "Buat basis data dengan nama yang sama dan beri semua hak." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Berikan semua hak untuk nama wildcard (pengguna\\_%)." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Berikan semua hak untuk basis data \"%s\"." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Pengguna memiliki akses ke \"%s\"" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "Pengguna %s telah ditambahkan." # Table column to indicate if the user able to grant a privilege -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Pemberi Izin" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 #, fuzzy msgid "Not enough privilege to view users." msgstr "Hak akses tidak cukup untuk melihat pengguna." -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "Pengguna tidak ditemukan." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Semua" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "khusus basis data" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 #, fuzzy msgid "wildcard" msgstr "wildcard" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "khusus basis data" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Edit Hak Akses" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Cabut" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 #, fuzzy msgid "Edit user group" msgstr "Edit server" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… mempertahankan yang lama." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… hapus yang lama dari User Table." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… cabut seluruh hak yang aktif, kemudian hapuskan yang lama." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… hapuskan yang lama dari tabel pengguna, kemudian muat ulang hak akses." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Ubah Informasi Masuk / Salin Pengguna" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Buat pengguna baru dengan hak akses yang sama dan …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Hak akses khusus kolom" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Hapus pengguna yang dipilih" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Cabut semua hak akses dari pengguna dan hapus setelahnya." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "Hapus basis data yang memiliki nama yang sama dengan pengguna." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "Tidak ada pengguna yang dipilih untuk dihapus!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Memuat hak akses" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Sukses menghapus pengguna yang dipilih." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Anda telah memperbarui hak akses untuk %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "Menghapus %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Hak akses berhasil dimuat ulang." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "Pengguna %s telah terdaftar!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Hak Akses untuk %s" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Pengguna" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 #, fuzzy #| msgid "New" msgctxt "Create new user" msgid "New" msgstr "Baru" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Edit Hak Akses" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "User group" msgid "User account" msgstr "Grup pengguna" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 #, fuzzy msgid "" "Note: You are attempting to edit privileges of the user with which you are " @@ -13483,20 +13455,20 @@ msgid "" msgstr "" "Catatan: Anda mencoba untuk mengedit hak-hak user yang Anda sedang login." -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "Ikhtisar pengguna" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13510,7 +13482,7 @@ msgstr "" "diubah secara manual. Disarankan untuk %sme-reload profil pengguna%s sebelum " "melanjut." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13530,11 +13502,11 @@ msgstr "" "diubah secara manual. Disarankan untuk %sme-reload profil pengguna%s sebelum " "melanjut." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "Pengguna yang dipilih tidak ditemukan pada tabel hak akses." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Pengguna baru telah ditambahkan." @@ -13817,26 +13789,26 @@ msgstr "Petunjuk/Penyiapan" msgid "Done dragging (rearranging) charts" msgstr "Selesai mengatur ulang/mengedit bagan" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 #, fuzzy #| msgid "Enable highlighting" msgid "Enable charts dragging" msgstr "Aktifkan penyorotan" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "Laju penyegaran" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "Kolom bagan" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "Pengaturan bagan" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 #, fuzzy msgid "" "The arrangement of the charts is stored to the browsers local storage. You " @@ -13845,7 +13817,7 @@ msgstr "" "Susunan tangga lagu disimpan untuk browser penyimpanan lokal. Anda mungkin " "ingin mengekspornya jika Anda memiliki satu set yang rumit up." -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "Kembalikan nilai bawaan" @@ -13915,7 +13887,7 @@ msgid "Statements" msgstr "Keterangan" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "#" @@ -13940,7 +13912,7 @@ msgstr "Tampilkan nilai tanpa format" msgid "Related links:" msgstr "Tautan terkait:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -13948,11 +13920,11 @@ msgstr "" "Jumlah koneksi yang digugurkan karena klien terputus tanpa menutup koneksi " "dengan baik." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Jumlah upaya koneksi ke server MySQL yang gagal." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13962,16 +13934,16 @@ msgstr "" "melebihi nilai binlog_cache_size dan menggunakan berkas temporer untuk " "menyimpan perintah dari transaksi." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "Jumlah transaksi yang menggunakan singgahan log biner temporer." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Jumlah upaya koneksi ke server MySQL (baik berhasil maupun tidak)." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13983,11 +13955,11 @@ msgstr "" "mungkin perlu meningkatkan nilai tmp_table_size agar tabel temporer disimpan " "di yang berbasis memori daripada yang berbasis diska." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "Jumlah berkas temporer yang telah dibuat mysqld." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13995,7 +13967,7 @@ msgstr "" "Jumlah tabel temporer dalam-memori yang dibuat otomatis oleh server sewaktu " "mengeksekusi perintah." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -14003,7 +13975,7 @@ msgstr "" "Jumlah baris yang ditulis oleh INSERT DELAYED yang menyebabkan beberapa " "galat (kemungkinan karena kunci duplikat)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -14011,23 +13983,23 @@ msgstr "" "Jumlah thread handler INSERT DELAYED yang dipakai. Setiap tabel berbeda yang " "menggunakan INSERT DELAYED mendapat satu thread sendiri." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "Jumlah baris INSERT DELAYED yang ditulis." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "Jumlah perintah FLUSH yang dieksekusi." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "Jumlah perintah COMMIT internal." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "Berapa kali suatu baris dihapus dari suatu tabel." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 #, fuzzy msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " @@ -14038,7 +14010,7 @@ msgstr "" "tentang meja dengan nama yang diberikan. Ini disebut penemuan. " "Handler_discover menunjukkan jumlah waktu tabel telah ditemukan." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -14048,7 +14020,7 @@ msgstr "" "bahwa server melakukan banyak pemindaian indeks lengkap; sebagai contoh, " "SELECT col1 FROM foo, dengan asumsi bahwa col1 diindeks." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -14057,7 +14029,7 @@ msgstr "" "tinggi merupakan indikasi bagus bahwa kueri dan tabel Anda diindeks dengan " "baik." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -14067,7 +14039,7 @@ msgstr "" "bertambah jika Anda melakukan kueri terhadap kolom indeks dengan suatu " "rentang batasan atau jika Anda melakukan pemindaian indeks." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -14075,7 +14047,7 @@ msgstr "" "Jumlah permintaan membaca baris sebelumnya dalam urutan kunci. Metode baca " "ini terutama digunakan untuk mengoptimalkan ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -14087,7 +14059,7 @@ msgstr "" "Anda mungkin memiliki banyak kueri yang mengharuskan MySQL memindai seluruh " "tabel atau Anda memiliki join yang tidak menggunakan kunci dengan baik." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -14099,36 +14071,36 @@ msgstr "" "bahwa tabel Anda tidak diindeks dengan baik atau bahwa kueri Anda tidak " "ditulis dengan memanfaatkan indeks yang Anda miliki." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "Jumlah perintah ROLLBACK internal." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "Jumlah permintaan untuk memperbarui baris dalam tabel." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "Jumlah permintaan untuk menambah baris dalam tabel." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "Jumlah halaman yang mengandung data (kotor atau bersih)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "Jumlah halaman kotor saat ini." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 #, fuzzy msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Jumlah halaman kolam penyangga yang telah diminta untuk memerah." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "Jumlah halaman bebas." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 #, fuzzy msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " @@ -14139,7 +14111,7 @@ msgstr "" "sedang dibaca atau ditulis atau yang tidak dapat memerah atau dihapus karena " "beberapa alasan lainnya." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 #, fuzzy msgid "" "The number of pages busy because they have been allocated for administrative " @@ -14152,12 +14124,12 @@ msgstr "" "dapat dihitung sebagai Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 #, fuzzy msgid "Total size of buffer pool, in pages." msgstr "Total ukuran buffer pool, di halaman." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 #, fuzzy msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " @@ -14166,7 +14138,7 @@ msgstr "" "Jumlah \"random\" read-aheads InnoDB dimulai. Hal ini terjadi ketika " "permintaan adalah untuk memindai sebagian besar meja tapi secara acak." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 #, fuzzy msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " @@ -14175,12 +14147,12 @@ msgstr "" "Jumlah sequential read-aheads InnoDB dimulai. Hal ini terjadi ketika InnoDB " "melakukan sekuensial penuh scan meja." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 #, fuzzy msgid "The number of logical read requests InnoDB has done." msgstr "Jumlah permintaan membaca logis InnoDB telah dilakukan." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 #, fuzzy msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " @@ -14189,7 +14161,7 @@ msgstr "" "Jumlah logis membaca bahwa InnoDB tidak bisa memuaskan dari kolam buffer dan " "harus melakukan satu halaman dibaca." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 #, fuzzy msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " @@ -14204,56 +14176,56 @@ msgstr "" "pertama. Counter ini menghitung contoh menunggu ini. Jika ukuran kolam " "penyangga ditetapkan dengan benar, nilai ini harus kecil." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 #, fuzzy msgid "The number writes done to the InnoDB buffer pool." msgstr "Jumlah menulis dilakukan untuk buffer pool InnoDB." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 #, fuzzy msgid "The number of fsync() operations so far." msgstr "Jumlah fsync() operasi sejauh ini." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "Jumlah operasi fsync() tunda saat ini." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "Jumlah baca tunda saat ini." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "Jumlah tulis tunda saat ini." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "Jumlah data yang dibaca sampai saat ini, dalam bita." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "Jumlah total baca data." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "Jumlah total tulis data." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 #, fuzzy msgid "The amount of data written so far, in bytes." msgstr "Jumlah data yang ditulis sejauh ini, dalam byte." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 #, fuzzy msgid "The number of pages that have been written for doublewrite operations." msgstr "Jumlah halaman yang telah ditulis untuk operasi Doublewrite." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 #, fuzzy msgid "The number of doublewrite operations that have been performed." msgstr "Jumlah operasi Doublewrite yang telah dilakukan." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 #, fuzzy msgid "" "The number of waits we had because log buffer was too small and we had to " @@ -14262,42 +14234,42 @@ msgstr "" "Jumlah menunggu kami punya karena log buffer terlalu kecil dan kami harus " "menunggu untuk itu harus memerah sebelum melanjutkan." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 #, fuzzy msgid "The number of log write requests." msgstr "Jumlah permintaan log menulis." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 #, fuzzy msgid "The number of physical writes to the log file." msgstr "Jumlah fisik menulis ke file log." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 #, fuzzy msgid "The number of fsync() writes done to the log file." msgstr "Jumlah fsync() menulis dilakukan ke file log." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 #, fuzzy msgid "The number of pending log file fsyncs." msgstr "Jumlah tertunda fsyncs file log." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 #, fuzzy msgid "Pending log file writes." msgstr "Tertunda file log menulis." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 #, fuzzy msgid "The number of bytes written to the log file." msgstr "Jumlah byte yang ditulis ke file log." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 #, fuzzy msgid "The number of pages created." msgstr "Jumlah halaman yang dibuat." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 #, fuzzy msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " @@ -14307,57 +14279,57 @@ msgstr "" "dihitung dalam halaman; ukuran halaman memungkinkan mereka untuk dapat " "dengan mudah dikonversi ke byte." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "Jumlah halaman yang dibaca." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "Jumlah halaman yang ditulis." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 #, fuzzy msgid "The number of row locks currently being waited for." msgstr "Jumlah baris kunci saat ini sedang menunggu." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 #, fuzzy msgid "The average time to acquire a row lock, in milliseconds." msgstr "Rata-rata waktu untuk mendapatkan kunci baris, dalam milidetik." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 #, fuzzy msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Total waktu yang dihabiskan untuk memperoleh baris kunci, dalam milidetik." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 #, fuzzy msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Waktu maksimum untuk mendapatkan kunci baris, dalam milidetik." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 #, fuzzy msgid "The number of times a row lock had to be waited for." msgstr "Frekuensi kunci berturut-turut harus menunggu." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "Jumlah baris yang dihapus dari tabel InnoDB." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "Jumlah baris yang ditambahkan pada tabel InnoDB." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "Jumlah baris yang dibaca dari tabel InnoDB." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "Jumlah baris yang diperbarui pada tabel InnoDB." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 #, fuzzy msgid "" "The number of key blocks in the key cache that have changed but haven't yet " @@ -14366,7 +14338,7 @@ msgstr "" "Jumlah blok kunci dalam cache kunci yang telah berubah tetapi belum memerah " "ke disk. Dulu dikenal sebagai Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 #, fuzzy msgid "" "The number of unused blocks in the key cache. You can use this value to " @@ -14375,7 +14347,7 @@ msgstr "" "Jumlah blok yang tidak digunakan dalam cache kunci. Anda dapat menggunakan " "nilai ini untuk menentukan berapa banyak dari cache kunci sedang digunakan." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 #, fuzzy msgid "" "The number of used blocks in the key cache. This value is a high-water mark " @@ -14386,18 +14358,18 @@ msgstr "" "air yang menunjukkan jumlah maksimum blok yang pernah digunakan pada satu " "waktu." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 #, fuzzy #| msgid "Percentage of used open files limit" msgid "Percentage of used key cache (calculated value)" msgstr "Persentase limit berkas terbuka yang dipakai" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 #, fuzzy msgid "The number of requests to read a key block from the cache." msgstr "Jumlah permintaan untuk membaca blok kunci dari cache." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 #, fuzzy msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " @@ -14408,7 +14380,7 @@ msgstr "" "nilai key_buffer_size Anda mungkin terlalu kecil. Tingkat cache miss dapat " "dihitung sebagai Key_reads / Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 #, fuzzy msgid "" "Key cache miss calculated as rate of physical reads compared to read " @@ -14417,17 +14389,17 @@ msgstr "" "Key Cache rindu dihitung sebagai tingkat fisik berbunyi dibandingkan dengan " "membaca permintaan (nilai yang dihitung)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 #, fuzzy msgid "The number of requests to write a key block to the cache." msgstr "Jumlah permintaan untuk menulis blok kunci untuk cache." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 #, fuzzy msgid "The number of physical writes of a key block to disk." msgstr "Jumlah menulis fisik blok kunci disk." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 #, fuzzy msgid "" "Percentage of physical writes compared to write requests (calculated value)" @@ -14435,7 +14407,7 @@ msgstr "" "Persentase menulis fisik dibandingkan dengan menulis permintaan (nilai yang " "dihitung)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 #, fuzzy msgid "" "The total cost of the last compiled query as computed by the query " @@ -14447,7 +14419,7 @@ msgstr "" "untuk pertanyaan yang sama. Nilai default 0 berarti bahwa tidak ada " "permintaan telah disusun belum." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 #, fuzzy msgid "" "The maximum number of connections that have been in use simultaneously since " @@ -14456,12 +14428,12 @@ msgstr "" "Jumlah maksimum koneksi yang telah digunakan secara bersamaan karena server " "dimulai." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 #, fuzzy msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Jumlah baris yang menunggu untuk ditulis dalam INSERT DELAYED antrian." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 #, fuzzy msgid "" "The number of tables that have been opened. If opened tables is big, your " @@ -14470,20 +14442,20 @@ msgstr "" "Jumlah meja yang sudah dibuka. Jika tabel dibuka besar, nilai tembolok meja " "Anda mungkin terlalu kecil." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "Jumlah file yang terbuka." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 #, fuzzy msgid "The number of streams that are open (used mainly for logging)." msgstr "Jumlah aliran yang terbuka (digunakan terutama untuk logging)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "Jumlah tabel yang terbuka." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 #, fuzzy msgid "" "The number of free memory blocks in query cache. High numbers can indicate " @@ -14494,21 +14466,21 @@ msgstr "" "masalah fragmentasi, yang dapat dipecahkan dengan mengeluarkan pernyataan " "FLUSH QUERY CACHE." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "Jumlah memori kosong untuk cache query." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 #, fuzzy msgid "The number of cache hits." msgstr "Jumlah cache hits." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 #, fuzzy msgid "The number of queries added to the cache." msgstr "Jumlah query ditambahkan ke cache." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 #, fuzzy msgid "" "The number of queries that have been removed from the cache to free up " @@ -14521,7 +14493,7 @@ msgstr "" "cache query. The cache query menggunakan setidaknya baru-baru digunakan " "(LRU) strategi untuk memutuskan mana query untuk menghapus dari cache." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 #, fuzzy msgid "" "The number of non-cached queries (not cachable, or not cached due to the " @@ -14530,22 +14502,22 @@ msgstr "" "Jumlah permintaan non-cache (tidak cachable, atau tidak di-cache karena " "pengaturan query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 #, fuzzy msgid "The number of queries registered in the cache." msgstr "Jumlah query terdaftar dalam cache." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 #, fuzzy msgid "The total number of blocks in the query cache." msgstr "Total jumlah blok dalam cache query." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 #, fuzzy msgid "The status of failsafe replication (not yet implemented)." msgstr "Status replikasi failsafe (belum diimplementasikan)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 #, fuzzy msgid "" "The number of joins that do not use indexes. If this value is not 0, you " @@ -14554,12 +14526,12 @@ msgstr "" "Jumlah bergabung yang tidak menggunakan indeks. Jika nilai ini tidak 0, Anda " "harus hati-hati memeriksa indeks dari tabel Anda." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 #, fuzzy msgid "The number of joins that used a range search on a reference table." msgstr "Jumlah bergabung yang digunakan pencarian range di tabel referensi." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 #, fuzzy msgid "" "The number of joins without keys that check for key usage after each row. " @@ -14569,7 +14541,7 @@ msgstr "" "baris. (Jika hal ini tidak 0, Anda harus hati-hati memeriksa indeks dari " "tabel Anda.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 #, fuzzy msgid "" "The number of joins that used ranges on the first table. (It's normally not " @@ -14578,17 +14550,17 @@ msgstr "" "Jumlah bergabung yang digunakan berkisar pada tabel pertama. (Ini biasanya " "tidak kritis bahkan jika ini adalah besar.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 #, fuzzy msgid "The number of joins that did a full scan of the first table." msgstr "Jumlah bergabung yang melakukan scan penuh meja pertama." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 #, fuzzy msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Jumlah tabel sementara yang sedang terbuka oleh thread budak SQL." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 #, fuzzy msgid "" "Total (since startup) number of times the replication slave SQL thread has " @@ -14597,12 +14569,12 @@ msgstr "" "Jumlah (sejak startup) beberapa kali replikasi budak SQL benang telah dicoba " "transaksi." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 #, fuzzy msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ini adalah ON jika server ini adalah budak yang terhubung ke master." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 #, fuzzy msgid "" "The number of threads that have taken more than slow_launch_time seconds to " @@ -14611,14 +14583,14 @@ msgstr "" "Jumlah thread yang telah mengambil lebih dari slow_launch_time detik untuk " "membuat." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 #, fuzzy msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Jumlah pertanyaan yang telah mengambil lebih dari long_query_time detik." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 #, fuzzy msgid "" "The number of merge passes the sort algorithm has had to do. If this value " @@ -14629,26 +14601,26 @@ msgstr "" "ini besar, Anda harus mempertimbangkan untuk meningkatkan nilai variabel " "sistem sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 #, fuzzy msgid "The number of sorts that were done with ranges." msgstr "Jumlah macam yang dilakukan dengan rentang." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "Jumlah baris diurutkan." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 #, fuzzy msgid "The number of sorts that were done by scanning the table." msgstr "Jumlah macam yang dilakukan dengan memindai meja." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 #, fuzzy msgid "The number of times that a table lock was acquired immediately." msgstr "Frekuensi yang kunci meja diakuisisi segera." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 #, fuzzy msgid "" "The number of times that a table lock could not be acquired immediately and " @@ -14661,7 +14633,7 @@ msgstr "" "terlebih dahulu mengoptimalkan pertanyaan Anda, dan kemudian membagi meja " "Anda atau meja atau penggunaan replikasi." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 #, fuzzy msgid "" "The number of threads in the thread cache. The cache hit rate can be " @@ -14672,11 +14644,11 @@ msgstr "" "threads_created / Koneksi. Jika nilai ini merah Anda harus meningkatkan " "thread_cache_size Anda." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "Jumlah koneksi yang sedang terbuka." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 #, fuzzy msgid "" "The number of threads created to handle connections. If Threads_created is " @@ -14689,13 +14661,13 @@ msgstr "" "ini tidak memberikan peningkatan kinerja penting jika Anda memiliki " "implementasi benang yang baik.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 #, fuzzy #| msgid "Thread cache hit rate %%" msgid "Thread cache hit rate (calculated value)" msgstr "Tingkat penggunaan singgahan thread %%" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 #, fuzzy msgid "The number of threads that are not sleeping." msgstr "Jumlah thread yang tidak tidur." @@ -14705,72 +14677,72 @@ msgstr "Jumlah thread yang tidak tidur." msgid "Users of '%s' user group" msgstr "Anggota dari grup pengguna '%s'" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 #, fuzzy msgid "No users were found belonging to this user group." msgstr "Tidak ada pengguna ditemukan milik kelompok pengguna ini." -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "Grup pengguna" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "Versi Server" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Database server" msgid "Database level tabs" msgstr "Server basis data" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table comments" msgid "Table level tabs" msgstr "Komentar tabel" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "tampilan pengguna" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "Tambah grup pengguna" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "Edit grup pengguna: '%s'" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Tanpa hak akses." -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Column names: " msgid "Group name:" msgstr "Nama kolom: " -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Versi Server" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "Server basis data" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14836,21 +14808,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14921,133 +14889,133 @@ msgstr "Event %1$s telah dibuat." msgid "Variable name was expected." msgstr "Templat nama tabel" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Pada Awal Tabel" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 #, fuzzy #| msgid "Unexpected characters on line %s." msgid "Unexpected token." msgstr "Karakter tidak diharapkan pada baris %s." -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 #, fuzzy #| msgid "The number of tables that are open." msgid "The name of the entity was expected." msgstr "Jumlah tabel yang terbuka." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Baris telah dihapus." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Besar pertumbuhan berkas data" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Lainnya" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "Mulai" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 #, fuzzy msgid "Summary by state" msgstr "Ringkasan berdasarkan negara" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Total waktu:" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Waktu" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Tutup" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Waktu" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Markahi kueri SQL ini" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Label" msgid "Label:" msgstr "Judul" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Izinkan semua pengguna untuk mengakses markah ini" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created!" msgstr "Markah %s dibuat" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Menggunakan markah \"%s\" sebagai kueri penjelajahan bawaan." -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "Tampilkan sebagai kode PHP" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -15060,7 +15028,7 @@ msgstr "" "grid, kotak centang, Edit, Copy dan Delete link mungkin tidak bekerja " "setelah disimpan." -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -15073,7 +15041,7 @@ msgstr "" "grid, kotak centang, Edit, Copy dan Delete link mungkin tidak bekerja " "setelah disimpan." -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Ditemukan masalah dengan indeks dalam tabel `%s`" @@ -15104,30 +15072,30 @@ msgstr "" msgid "Bind parameters" msgstr "Pembatasan yang buruk!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 #, fuzzy #| msgid "Bookmark this SQL query" msgid "Bookmark this SQL query:" msgstr "Markahi kueri SQL ini" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Ganti markah bernama sama yang ada" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Pembatas" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Tampilkan ulang perintah SQL" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 #, fuzzy msgid "Rollback when finished" msgstr "Kembalikan ketika selesai" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Hanya melihat" @@ -15175,116 +15143,116 @@ msgstr "Nonaktifkan pelacakan untuk %s.%s" msgid "Deactivate now" msgstr "Nonaktifkan sekarang" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Dibuat" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Diperbarui" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "Buat versi" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Laporan pelacakan" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Snapshot struktur" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "aktif" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "tidak aktif" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "Laporan pelacakan" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "Hapus baris pelacakan data dari laporan" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "Tidak ada data" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" "Tampilkan %1$s berdasarkan tanggal dari %2$s sampai %3$s oleh pengguna %4$s " "%5$s" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "Dump SQL (unduhan berkas)" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "Dump SQL" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "Pilihan ini akan mengganti table dan data isi table." -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "Eksekusi SQL" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "Ekspor sebagai %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "Penyataan manipulasi data" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "Pernyataan definisi data" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Tanggal" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Nama Pengguna" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Versi snapshot %s (kode SQL)" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Tidak ada" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "Pelacakan definisi data berhasil dihapus" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "Pelacakan manipulasi data berhasil dihapus" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -15292,67 +15260,67 @@ msgstr "" "Anda dapat mengeksekusi dump dengan membuat dan menggunakan basis data " "sementara. Harap pastikan Anda mempunyai hak untuk melakukannya." -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 #, fuzzy msgid "Comment out these two lines if you do not need them." msgstr "Komentar dari dua baris ini jika Anda tidak membutuhkan mereka." -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 #, fuzzy msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Pernyataan SQL diekspor. Silahkan salin dump atau melaksanakannya." -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "Laporan pelacakan untuk table '%s'" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Pelacakan %s.%s diaktifkan." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Pelacakan %s.%s diaktifkan." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Version %1$s of %2$s was deleted." msgstr "Buat versi %s dari %s.%s" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versi %s telah dibuat, pelacakan untuk %s.%s diaktifkan." -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Tabel yang tidak dilacak" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Lacak tabel" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Tabel yang dilacak" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Versi terakhir" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "Hapus pelacak" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Versi" @@ -15360,11 +15328,11 @@ msgstr "Versi" msgid "Manage your settings" msgstr "Kelola pengaturan Anda" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "Konfigurasi telah disimpan." -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, fuzzy, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -15470,7 +15438,7 @@ msgstr "Basis data tidak ditemukan" msgid "View dump (schema) of databases" msgstr "Tampilkan dump (skema) basis data" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -15499,7 +15467,7 @@ msgstr "" "phpMyAdmin gagal menutup Thread %s. Kemungkinan Thread tersebut sudah " "ditutup terlebih dahulu." -#: server_status_queries.php:50 +#: server_status_queries.php:47 #, fuzzy msgid "Not enough privilege to view query statistics." msgstr "Hak akses tidak cukup untuk melihat pengguna." @@ -16456,48 +16424,54 @@ msgstr "menyebarkan" msgid "Stacked" msgstr "Bertumpuk" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "Judul bagan" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "Sumbu-X:" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "Seri:" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "Label Sumbu-X:" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "Nilai X" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "Label Sumbu-Y:" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Nilai Y" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 #, fuzzy msgid "Series names are in a column" msgstr "Nama seri dalam kolom" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside column:" msgid "Series column:" msgstr "Dalam kolom:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Values for column %s" msgid "Value Column:" msgstr "Nilai untuk kolom %s" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -16560,41 +16534,25 @@ msgstr "Komentar:" msgid "Drag to reorder" msgstr "Seret untuk mengubah urutan" -#: templates/table/relation/common_form.phtml:7 -msgid "Internal relations" -msgstr "Relasi internal" - -#: templates/table/relation/common_form.phtml:11 -msgid "Internal relation" -msgstr "Relasi internal" - -#: templates/table/relation/common_form.phtml:14 -#, fuzzy -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "" -"Relasi internal tidak diperlukan bila hubungan FOREIGN KEY yang sesuai." - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 #, fuzzy #| msgid "Foreign key limit" msgid "Foreign key constraints" msgstr "Batas foreign key" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 #, fuzzy #| msgid "Action" msgid "Actions" msgstr "Tindakan" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 #, fuzzy #| msgid "Constraints for table" msgid "Constraint properties" msgstr "Ketidakleluasaan untuk tabel" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 #, fuzzy msgid "" "Only columns with index will be displayed. You can define an index below." @@ -16602,18 +16560,35 @@ msgstr "" "Hanya kolom dengan indeks akan ditampilkan. Anda dapat menentukan indeks di " "bawah ini." -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 #, fuzzy msgid "Foreign key constraint" msgstr "Batasan kunci asing" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Tambahkan batasan" -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +msgid "Internal relations" +msgstr "Relasi internal" + +#: templates/table/relation/common_form.phtml:80 +msgid "Internal relation" +msgstr "Relasi internal" + +#: templates/table/relation/common_form.phtml:83 +#, fuzzy +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "" +"Relasi internal tidak diperlukan bila hubungan FOREIGN KEY yang sesuai." + +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16756,7 +16731,7 @@ msgid "at beginning of table" msgstr "Pada Awal Tabel" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16805,7 +16780,7 @@ msgstr "dipartisi" msgid "Edit partitioning" msgstr "Hapus partisi" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "Tampilan edit" @@ -18359,6 +18334,40 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert diatur ke 0" +#~ 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" + +#~ msgid "To filter all %s in database, press Enter after a search term" +#~ msgstr "Untuk memfilter %s di database, tekan Enter setelah kata kunci" + +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "Tabel" + +#~ msgid "views" +#~ msgstr "Tampilan" + +#~ msgid "procedures" +#~ msgstr "Prosedur" + +#~ msgid "events" +#~ msgstr "Kejadian" + +#~ msgid "functions" +#~ msgstr "Fungsi" + +#, fuzzy +#~| msgid "Filter tables by name" +#~ msgid "Filter databases by name or regex" +#~ msgstr "Filter tabel menurut nama" + +#, fuzzy +#~| msgid "Filter tables by name" +#~ msgid "Filter by name or regex" +#~ msgstr "Filter tabel menurut nama" + #~ msgid "Username and hostname didn't change." #~ msgstr "Username dan hostname tidak berubah." diff --git a/po/it.po b/po/it.po index 569c1cfc30..3c76481807 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-27 09:44+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" @@ -15,7 +15,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.5-dev\n" -#: changelog.php:37 license.php:30 +#: changelog.php:37 license.php:33 #, php-format msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " @@ -37,7 +37,7 @@ msgstr "Clicca per ordinare." msgid "Showing rows %1$s - %2$s." msgstr "Mostro le righe %1$s - %2$s." -#: db_create.php:61 +#: db_create.php:62 #, php-format msgid "Database %1$s has been created." msgstr "Il database %1$s è stato creato." @@ -46,13 +46,13 @@ msgstr "Il database %1$s è stato creato." msgid "Database comment" msgstr "Commento del database" -#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:601 +#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:599 #: templates/columns_definitions/column_definitions_form.phtml:84 msgid "Table comments:" msgstr "Commenti alla tabella:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1568 +#: libraries/insert_edit.lib.php:1575 #: libraries/navigation/nodes/NodeColumn.php:34 #: libraries/plugins/export/ExportHtmlword.php:288 #: libraries/plugins/export/ExportHtmlword.php:384 @@ -62,13 +62,14 @@ msgstr "Commenti alla tabella:" #: libraries/plugins/export/ExportTexytext.php:282 #: libraries/plugins/export/ExportTexytext.php:373 #: libraries/plugins/export/PMA_ExportPdf.php:472 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:882 libraries/tracking.lib.php:978 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 +#: libraries/tracking.lib.php:892 libraries/tracking.lib.php:990 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:10 -#: templates/table/relation/common_form.phtml:43 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:27 +#: templates/table/relation/common_form.phtml:79 #: templates/table/relation/foreign_key_row.phtml:176 #: templates/table/relation/foreign_key_row.phtml:188 #: templates/table/relation/internal_relational_row.phtml:73 @@ -88,14 +89,14 @@ msgstr "Colonna" #: libraries/plugins/export/ExportTexytext.php:283 #: libraries/plugins/export/ExportTexytext.php:374 #: libraries/plugins/export/PMA_ExportPdf.php:474 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 #: libraries/rte/rte_list.lib.php:78 libraries/rte/rte_list.lib.php:106 #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2606 libraries/tracking.lib.php:883 -#: libraries/tracking.lib.php:975 +#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -105,7 +106,7 @@ msgstr "Tipo" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:709 -#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1577 +#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1584 #: libraries/plugins/export/ExportHtmlword.php:294 #: libraries/plugins/export/ExportHtmlword.php:390 #: libraries/plugins/export/ExportLatex.php:517 @@ -114,9 +115,9 @@ msgstr "Tipo" #: libraries/plugins/export/ExportTexytext.php:284 #: libraries/plugins/export/ExportTexytext.php:375 #: libraries/plugins/export/PMA_ExportPdf.php:476 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 -#: libraries/tracking.lib.php:885 libraries/tracking.lib.php:981 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/tracking.lib.php:895 libraries/tracking.lib.php:993 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 @@ -133,9 +134,9 @@ msgstr "Null" #: libraries/plugins/export/ExportTexytext.php:285 #: libraries/plugins/export/ExportTexytext.php:376 #: libraries/plugins/export/PMA_ExportPdf.php:478 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 -#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:886 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:896 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 @@ -147,8 +148,8 @@ msgstr "Predefinito" #: libraries/plugins/export/ExportOdt.php:488 #: libraries/plugins/export/ExportTexytext.php:378 #: libraries/plugins/export/PMA_ExportPdf.php:487 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:640 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:663 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 msgid "Links to" msgstr "Collegamenti a" @@ -159,37 +160,38 @@ msgstr "Collegamenti a" #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:381 #: libraries/plugins/export/PMA_ExportPdf.php:494 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:651 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:664 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:649 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 #: templates/columns_definitions/table_fields_definitions.phtml:65 msgid "Comments" msgstr "Commenti" -#: db_datadict.php:155 libraries/controllers/TableStructureController.php:1189 -#: libraries/controllers/TableStructureController.php:1194 -#: libraries/tracking.lib.php:925 +#: db_datadict.php:155 +#: libraries/controllers/table/TableStructureController.php:1197 +#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:79 +#: templates/table/structure/display_structure.phtml:80 msgid "Primary" msgstr "Primaria" -#: db_datadict.php:165 js/messages.php:370 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:371 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 -#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:403 -#: libraries/mult_submits.lib.php:417 +#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:408 +#: libraries/mult_submits.lib.php:422 #: libraries/plugins/export/ExportHtmlword.php:654 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:710 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2971 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3620 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1013 libraries/tracking.lib.php:1018 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2973 +#: libraries/server_privileges.lib.php:2993 +#: libraries/server_privileges.lib.php:3631 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -198,32 +200,32 @@ msgstr "Primaria" msgid "No" msgstr "No" -#: db_datadict.php:165 js/messages.php:515 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:516 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 #: libraries/config/FormDisplay.tpl.php:280 -#: libraries/controllers/TableStructureController.php:770 -#: libraries/controllers/TableStructureController.php:1440 -#: libraries/controllers/TableStructureController.php:1449 -#: libraries/controllers/TableStructureController.php:1454 -#: libraries/controllers/TableStructureController.php:1459 -#: libraries/controllers/TableStructureController.php:1464 -#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:199 -#: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 -#: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 +#: libraries/controllers/table/TableStructureController.php:771 +#: libraries/controllers/table/TableStructureController.php:1448 +#: libraries/controllers/table/TableStructureController.php:1457 +#: libraries/controllers/table/TableStructureController.php:1462 +#: libraries/controllers/table/TableStructureController.php:1467 +#: libraries/controllers/table/TableStructureController.php:1472 +#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:200 +#: libraries/mult_submits.lib.php:344 libraries/mult_submits.lib.php:377 +#: libraries/mult_submits.lib.php:406 libraries/mult_submits.lib.php:420 #: libraries/plugins/export/ExportHtmlword.php:655 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:788 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:711 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2968 -#: libraries/server_privileges.lib.php:2989 -#: libraries/server_privileges.lib.php:3617 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1011 libraries/tracking.lib.php:1016 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2970 +#: libraries/server_privileges.lib.php:2991 +#: libraries/server_privileges.lib.php:3628 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -236,8 +238,8 @@ msgstr "Sì" msgid "View dump (schema) of database" msgstr "Visualizza dump (schema) del database" -#: db_export.php:51 db_tracking.php:102 export.php:382 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:176 +#: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 +#: libraries/controllers/DatabaseStructureController.php:157 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "Non ci sono tabelle nel database." @@ -254,7 +256,7 @@ msgstr "Tabelle" #: db_export.php:66 libraries/Menu.php:320 libraries/Menu.php:427 #: libraries/Util.php:3407 libraries/Util.php:3417 libraries/Util.php:3423 -#: libraries/Util.php:3702 libraries/Util.php:4339 libraries/Util.php:4356 +#: libraries/Util.php:3703 libraries/Util.php:4340 libraries/Util.php:4357 #: libraries/central_columns.lib.php:729 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:320 @@ -262,10 +264,10 @@ msgstr "Tabelle" #: libraries/config/user_preferences.forms.php:218 #: libraries/config/user_preferences.forms.php:259 #: libraries/config/user_preferences.forms.php:285 -#: libraries/import.lib.php:1299 libraries/navigation/nodes/NodeColumn.php:44 +#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:44 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 -#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:877 +#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:887 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -310,11 +312,11 @@ msgstr "" "La configurazione dello storage di phpMyAdmin è disabilitata. %sScopri la " "ragione%s." -#: db_qbe.php:135 +#: db_qbe.php:136 msgid "You have to choose at least one column to display!" msgstr "Devi scegliere almeno un campo da mostrare!" -#: db_qbe.php:152 +#: db_qbe.php:154 #, php-format msgid "Switch to %svisual builder%s" msgstr "Passa a %svisual builder%s" @@ -342,7 +344,7 @@ msgstr "" msgid "No tables selected." msgstr "Nessuna tabella selezionata." -#: db_tracking.php:146 +#: db_tracking.php:149 msgid "Database Log" msgstr "Log database" @@ -378,7 +380,7 @@ msgstr "Si consiglia di aggiornare la pagina." msgid "Bad type!" msgstr "Tipo errato!" -#: export.php:276 +#: export.php:278 msgid "Bad parameters!" msgstr "Parametri errati!" @@ -386,98 +388,98 @@ msgstr "Parametri errati!" msgid "Invalid export type" msgstr "Tipo di esportazione non valido" -#: gis_data_editor.php:119 +#: gis_data_editor.php:117 #, php-format msgid "Value for the column \"%s\"" msgstr "Valore per il campo \"%s\"" -#: gis_data_editor.php:147 +#: gis_data_editor.php:145 #: templates/table/gis_visualization/gis_visualization.phtml:37 msgid "Use OpenStreetMaps as Base Layer" msgstr "Usa OpenStreetMaps come livello base" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:169 +#: gis_data_editor.php:167 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:192 +#: gis_data_editor.php:190 #, php-format msgid "Geometry %d:" msgstr "Geometria %d:" -#: gis_data_editor.php:214 +#: gis_data_editor.php:212 msgid "Point:" msgstr "Punto:" -#: gis_data_editor.php:215 gis_data_editor.php:242 gis_data_editor.php:298 -#: gis_data_editor.php:371 js/messages.php:504 +#: gis_data_editor.php:213 gis_data_editor.php:240 gis_data_editor.php:296 +#: gis_data_editor.php:369 js/messages.php:505 msgid "X" msgstr "X" -#: gis_data_editor.php:218 gis_data_editor.php:246 gis_data_editor.php:302 -#: gis_data_editor.php:377 js/messages.php:505 +#: gis_data_editor.php:216 gis_data_editor.php:244 gis_data_editor.php:300 +#: gis_data_editor.php:375 js/messages.php:506 msgid "Y" msgstr "Y" -#: gis_data_editor.php:240 gis_data_editor.php:296 gis_data_editor.php:369 -#: js/messages.php:507 +#: gis_data_editor.php:238 gis_data_editor.php:294 gis_data_editor.php:367 +#: js/messages.php:508 #, php-format msgid "Point %d" msgstr "Punto %d" -#: gis_data_editor.php:253 gis_data_editor.php:309 gis_data_editor.php:387 -#: js/messages.php:513 +#: gis_data_editor.php:251 gis_data_editor.php:307 gis_data_editor.php:385 +#: js/messages.php:514 msgid "Add a point" msgstr "Aggiungi un punto" -#: gis_data_editor.php:270 +#: gis_data_editor.php:268 #, php-format msgid "Linestring %d:" msgstr "Linestring %d:" -#: gis_data_editor.php:273 gis_data_editor.php:350 +#: gis_data_editor.php:271 gis_data_editor.php:348 msgid "Outer ring:" msgstr "Cerchio esterno:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:273 gis_data_editor.php:350 #, php-format msgid "Inner ring %d:" msgstr "Cerchio interno %d:" -#: gis_data_editor.php:312 +#: gis_data_editor.php:310 msgid "Add a linestring" msgstr "Aggiungi un linestring" -#: gis_data_editor.php:313 gis_data_editor.php:392 js/messages.php:514 +#: gis_data_editor.php:311 gis_data_editor.php:390 js/messages.php:515 msgid "Add an inner ring" msgstr "Aggiunge una cerchia interna" -#: gis_data_editor.php:334 +#: gis_data_editor.php:332 #, php-format msgid "Polygon %d:" msgstr "Poligono %d:" -#: gis_data_editor.php:398 +#: gis_data_editor.php:396 msgid "Add a polygon" msgstr "Aggiungi un poligono" -#: gis_data_editor.php:404 +#: gis_data_editor.php:402 msgid "Add geometry" msgstr "Aggiungi una geometria" -#: gis_data_editor.php:410 js/messages.php:345 libraries/DbSearch.php:462 -#: libraries/DisplayResults.php:1783 libraries/browse_foreigners.lib.php:142 +#: gis_data_editor.php:408 js/messages.php:346 libraries/DbSearch.php:462 +#: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:151 #: libraries/display_export.lib.php:404 libraries/display_export.lib.php:410 -#: libraries/display_import.lib.php:403 libraries/index.lib.php:42 -#: libraries/insert_edit.lib.php:1547 libraries/insert_edit.lib.php:1584 +#: libraries/display_import.lib.php:403 libraries/index.lib.php:45 +#: libraries/insert_edit.lib.php:1554 libraries/insert_edit.lib.php:1591 #: libraries/normalization.lib.php:168 libraries/normalization.lib.php:825 #: libraries/operations.lib.php:47 libraries/operations.lib.php:114 #: libraries/operations.lib.php:266 libraries/operations.lib.php:309 #: libraries/operations.lib.php:806 libraries/operations.lib.php:877 -#: libraries/operations.lib.php:926 libraries/operations.lib.php:1336 -#: libraries/operations.lib.php:1653 +#: libraries/operations.lib.php:926 libraries/operations.lib.php:1339 +#: libraries/operations.lib.php:1656 #: libraries/plugins/auth/AuthenticationCookie.php:239 #: libraries/replication_gui.lib.php:124 libraries/replication_gui.lib.php:163 #: libraries/replication_gui.lib.php:328 libraries/replication_gui.lib.php:465 @@ -486,12 +488,12 @@ msgstr "Aggiungi una geometria" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2343 -#: libraries/server_privileges.lib.php:3114 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_user_groups.lib.php:285 -#: libraries/sql_query_form.lib.php:369 libraries/sql_query_form.lib.php:429 -#: libraries/tracking.lib.php:536 libraries/tracking.lib.php:656 +#: libraries/server_privileges.lib.php:2345 +#: libraries/server_privileges.lib.php:3116 +#: libraries/server_privileges.lib.php:3735 +#: libraries/server_user_groups.lib.php:290 +#: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 +#: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 #: prefs_manage.php:280 prefs_manage.php:358 #: templates/columns_definitions/column_definitions_form.phtml:64 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 @@ -504,11 +506,11 @@ msgstr "Aggiungi una geometria" msgid "Go" msgstr "Esegui" -#: gis_data_editor.php:413 +#: gis_data_editor.php:411 msgid "Output" msgstr "Output" -#: gis_data_editor.php:416 +#: gis_data_editor.php:414 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -520,7 +522,7 @@ msgstr "" msgid "Succeeded" msgstr "Riuscito" -#: import.php:59 js/messages.php:588 +#: import.php:59 js/messages.php:589 msgid "Failed" msgstr "Fallito" @@ -586,7 +588,7 @@ msgstr "" "Non è stato possibile caricare i plugin di importazione, controlla la tua " "installazione!" -#: import.php:669 libraries/sql.lib.php:744 libraries/sql.lib.php:1468 +#: import.php:669 libraries/sql.lib.php:754 libraries/sql.lib.php:1485 #, php-format msgid "Bookmark %s has been created." msgstr "Segnalibro %s creato." @@ -620,7 +622,7 @@ msgid "Could not load the progress of the import." msgstr "" "Non è stato possibile caricare la progressione del processo di importazione." -#: import_status.php:111 js/messages.php:444 libraries/Util.php:797 +#: import_status.php:111 js/messages.php:445 libraries/Util.php:797 #: libraries/export.lib.php:523 #: libraries/plugins/schema/ExportRelationSchema.php:301 user_password.php:268 msgid "Back" @@ -645,7 +647,7 @@ msgstr "" msgid "General settings" msgstr "Impostazioni generali" -#: index.php:191 js/messages.php:617 +#: index.php:191 js/messages.php:618 #: libraries/display_change_password.lib.php:54 #: libraries/display_change_password.lib.php:57 user_password.php:262 msgid "Change password" @@ -745,7 +747,11 @@ msgstr "Ricevi aiuto" msgid "List of changes" msgstr "Lista dei cambiamenti" -#: index.php:453 +#: index.php:438 libraries/server_plugins.lib.php:83 +msgid "License" +msgstr "Licenza" + +#: index.php:460 msgid "" "You are connected as 'root' with no password, which corresponds to the " "default MySQL privileged account. Your MySQL server is running with this " @@ -758,7 +764,7 @@ msgstr "" "dovresti realmente sistemare questa falla nella sicurezza impostando una " "password per l'utente 'root'." -#: index.php:470 +#: index.php:477 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -768,7 +774,7 @@ msgstr "" "opzione è incompatibile con phpMyAdmin e potrebbe causare la corruzione di " "alcuni dati!" -#: index.php:485 +#: index.php:492 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -779,7 +785,7 @@ msgstr "" "phpMyAdmin non è in grado di dividere correttamente le stringhe di caratteri " "e questo può portare a risultati inaspettati." -#: index.php:502 +#: index.php:509 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than " @@ -792,7 +798,7 @@ msgstr "" "sessione configurato da phpMyAdmin; per questo motivo, questa sessione " "potrebbe scadere prima del periodo impostato in phpMyAdmin." -#: index.php:521 +#: index.php:528 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -801,13 +807,13 @@ msgstr "" "phpMyAdmin, per questo motivo, it tuo login scadrá prima di quanto " "configurato in phpMyAdmin." -#: index.php:537 +#: index.php:544 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Adesso c'è bisogno di una password per il file di configurazione " "(blowfish_secret)." -#: index.php:550 +#: index.php:557 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. It is strongly recommended to remove it " @@ -820,7 +826,7 @@ msgstr "" "caso contrario la sicurezza del vostro server potrebbe essere compromessa da " "persone non autorizzate che scaricano la vostra configurazione." -#: index.php:566 +#: index.php:573 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -829,14 +835,14 @@ msgstr "" "La configurazione dello storage di phpMyAdmin non é completa, quindi alcune " "caratteristiche aggiuntive sono state disattivate. %sScopri perché%s. " -#: index.php:573 +#: index.php:580 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "In alternativa, vai alla scheda 'Operazioni' di qualunque database per " "configurarlo da lì." -#: index.php:619 +#: index.php:626 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -845,7 +851,7 @@ msgstr "" "Le tue librerie di PHP per MySQL versione %s sono diverse dalla versione di " "MySQL server %s. Potrebbe causare comportamenti imprevedibili." -#: index.php:647 +#: index.php:654 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -867,7 +873,7 @@ msgstr "Conferma" msgid "Do you really want to execute \"%s\"?" msgstr "Sei sicuro di voler eseguire \"%s\"?" -#: js/messages.php:45 libraries/mult_submits.lib.php:397 +#: js/messages.php:45 libraries/mult_submits.lib.php:402 msgid "You are about to DESTROY a complete database!" msgstr "Stai per DISTRUGGERE COMPLETAMENTE un intera base di dati!" @@ -986,13 +992,6 @@ 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:95 -#| msgid "" -#| "Through this operation, MySQL attempts to map the data values between " -#| "collations. If the character sets are incompatible, there may be data " -#| "loss and this lost data may NOT be recoverable simply by changing " -#| "back the column collation(s). To convert existing data, it is " -#| "suggested to use the column(s) editing feature (the \"Change\" Link) on " -#| "the table structure page. " 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,10 +1003,10 @@ msgstr "" "Con questa operazione, MySQL cerca di mappare i valori dei dati tra le " "collation. Se i set di caratteri sono incompatibili, potrebbe esserci " "perdita di dati e questi dati persi potrebbero NON essere " -"recuperabili tramite un semplice ripristino della collation del/dei " -"campo(i). Per convertire i dati esistenti, si suggerisce di usare le " -"funzioni di editing dei campi (il Link \"Modifica\") sulla pagina di " -"struttura della tabella. " +"recuperabili tramite un semplice ripristino della collation del/dei campo(i)." +" Per convertire i dati esistenti, si suggerisce di usare le funzioni di " +"editing dei campi (il Link \"Modifica\") sulla pagina di struttura della " +"tabella. " #: js/messages.php:104 msgid "" @@ -1022,7 +1021,7 @@ msgid "Save & close" msgstr "Salva & chiudi" #: js/messages.php:109 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1551 prefs_manage.php:364 +#: libraries/insert_edit.lib.php:1558 prefs_manage.php:364 #: prefs_manage.php:375 msgid "Reset" msgstr "Riavvia" @@ -1080,10 +1079,10 @@ msgstr "Selezionare il campo/i per l'indice." msgid "You have to add at least one column." msgstr "Devi aggiungere almeno un campo." -#: js/messages.php:129 libraries/insert_edit.lib.php:1549 +#: js/messages.php:129 libraries/insert_edit.lib.php:1556 #: templates/columns_definitions/column_definitions_form.phtml:159 #: templates/table/index_form.phtml:237 -#: templates/table/relation/common_form.phtml:108 +#: templates/table/relation/common_form.phtml:127 msgid "Preview SQL" msgstr "Anteprima SQL" @@ -1126,8 +1125,8 @@ msgstr "La password non coincide!" msgid "Removing Selected Users" msgstr "Rimozione Utenti Selezionati" -#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:461 -#: libraries/tracking.lib.php:831 +#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:471 +#: libraries/tracking.lib.php:841 msgid "Close" msgstr "Chiudi" @@ -1149,7 +1148,7 @@ msgstr "Il template è stato eliminato." #. l10n: Other, small valued, queries #: js/messages.php:155 libraries/ServerStatusData.php:130 -#: libraries/server_status_queries.lib.php:148 +#: libraries/server_status_queries.lib.php:150 msgid "Other" msgstr "Altre" @@ -1317,7 +1316,7 @@ msgstr "Domande" msgid "Traffic" msgstr "Traffico" -#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4330 +#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4331 #: libraries/server_status_monitor.lib.php:258 msgid "Settings" msgstr "Impostazioni" @@ -1330,9 +1329,9 @@ msgstr "Aggiungi diagramma alla griglia" msgid "Please add at least one variable to the series!" msgstr "Aggiungi almeno una variabile alla serie!" -#: js/messages.php:216 libraries/DisplayResults.php:1477 +#: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1448,7 +1447,7 @@ msgstr "Modifica impostazioni" msgid "Current settings" msgstr "Impostazioni attuali" -#: js/messages.php:253 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:253 msgid "Chart title" msgstr "Titolo del grafico" @@ -1538,21 +1537,21 @@ msgstr "Analisi in corso…" msgid "Explain output" msgstr "Spiega l'output" -#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4326 +#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4327 #: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:396 #: libraries/rte/rte_list.lib.php:104 -#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:282 -#: libraries/tracking.lib.php:1623 +#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:284 +#: libraries/tracking.lib.php:1639 msgid "Status" msgstr "Stato" -#: js/messages.php:289 js/messages.php:870 +#: js/messages.php:289 js/messages.php:862 #: libraries/plugins/export/ExportHtmlword.php:484 #: libraries/plugins/export/ExportOdt.php:600 #: libraries/plugins/export/ExportTexytext.php:445 #: libraries/plugins/export/PMA_ExportPdf.php:314 #: libraries/rte/rte_list.lib.php:93 -#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:239 +#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:243 msgid "Time" msgstr "Tempo" @@ -1639,10 +1638,10 @@ msgstr "" "Ripristino alle impostazioni predefinite in corso…" #: js/messages.php:322 libraries/Menu.php:355 libraries/Menu.php:457 -#: libraries/Menu.php:578 libraries/Util.php:4329 libraries/Util.php:4344 -#: libraries/Util.php:4361 libraries/config/messages.inc.php:260 +#: libraries/Menu.php:578 libraries/Util.php:4330 libraries/Util.php:4345 +#: libraries/Util.php:4362 libraries/config/messages.inc.php:260 #: libraries/display_import.lib.php:108 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:241 +#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:241 #: setup/frames/menu.inc.php:26 msgid "Import" msgstr "Importa" @@ -1699,7 +1698,13 @@ msgstr "Prova" msgid "Formatting SQL…" msgstr "Formatto SQL…" -#: js/messages.php:346 libraries/server_variables.lib.php:159 +#: js/messages.php:343 +#, fuzzy +#| msgid "Bad parameters!" +msgid "No parameters found!" +msgstr "Parametri errati!" + +#: js/messages.php:347 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 @@ -1710,59 +1715,59 @@ msgstr "Formatto SQL…" msgid "Cancel" msgstr "Annulla" -#: js/messages.php:349 libraries/Header.php:457 +#: js/messages.php:350 libraries/Header.php:457 msgid "Page-related settings" msgstr "Impostazioni specifiche della pagina" -#: js/messages.php:350 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:351 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Applica" -#: js/messages.php:353 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:354 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:124 msgid "Loading…" msgstr "Caricamento…" -#: js/messages.php:354 +#: js/messages.php:355 msgid "Request aborted!!" msgstr "Richiesta interrotta!" -#: js/messages.php:355 +#: js/messages.php:356 msgid "Processing request" msgstr "Elaborazione richiesta" -#: js/messages.php:356 +#: js/messages.php:357 msgid "Request failed!!" msgstr "Richiesta fallita!" -#: js/messages.php:357 +#: js/messages.php:358 msgid "Error in processing request" msgstr "Errore nell'elaborazione della richiesta" -#: js/messages.php:358 +#: js/messages.php:359 #, php-format msgid "Error code: %s" msgstr "Codice errore: %s" -#: js/messages.php:359 +#: js/messages.php:360 #, php-format msgid "Error text: %s" msgstr "Messaggio errore: %s" -#: js/messages.php:360 libraries/db_common.inc.php:73 +#: js/messages.php:361 libraries/db_common.inc.php:73 #: libraries/db_table_exists.lib.php:33 libraries/server_databases.lib.php:462 msgid "No databases selected." msgstr "Nessun database selezionato." -#: js/messages.php:361 +#: js/messages.php:362 msgid "Dropping column" msgstr "Eliminazione campo" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Adding primary key" msgstr "Aggiungo chiave primaria" -#: js/messages.php:363 +#: js/messages.php:364 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1772,168 +1777,168 @@ msgstr "Aggiungo chiave primaria" msgid "OK" msgstr "OK" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Click to dismiss this notification" msgstr "Clicca per chiudere questa notifica" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Renaming databases" msgstr "Rinomino database" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Copying database" msgstr "Copio il database" -#: js/messages.php:369 +#: js/messages.php:370 msgid "Changing charset" msgstr "Cambio il charset" -#: js/messages.php:373 libraries/Util.php:3289 +#: js/messages.php:374 libraries/Util.php:3289 msgid "Enable foreign key checks" msgstr "Abilita i controlli sulle chiavi esterne" -#: js/messages.php:376 +#: js/messages.php:377 msgid "Failed to get real row count." msgstr "Il conteggio delle righe reali è fallito." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Searching" msgstr "Ricerca in corso" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide search results" msgstr "Nascondi i risultati della ricerca" -#: js/messages.php:381 +#: js/messages.php:382 msgid "Show search results" msgstr "Mostra i risultati della ricerca" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Browsing" msgstr "Navigazione" -#: js/messages.php:383 +#: js/messages.php:384 msgid "Deleting" msgstr "Cancellazione" -#: js/messages.php:387 +#: js/messages.php:388 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:388 libraries/DisplayResults.php:4832 -#: libraries/DisplayResults.php:5091 libraries/Menu.php:347 -#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3709 -#: libraries/Util.php:3710 libraries/Util.php:4328 libraries/Util.php:4343 -#: libraries/Util.php:4360 libraries/config/messages.inc.php:254 +#: js/messages.php:389 libraries/DisplayResults.php:4850 +#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 +#: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 +#: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2448 -#: libraries/server_privileges.lib.php:2527 -#: libraries/server_privileges.lib.php:2873 -#: libraries/server_privileges.lib.php:3532 -#: libraries/server_status_monitor.lib.php:321 prefs_manage.php:306 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2875 +#: libraries/server_privileges.lib.php:3543 +#: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 msgid "Export" msgstr "Esporta" -#: js/messages.php:391 libraries/rte/rte_routines.lib.php:742 +#: js/messages.php:392 libraries/rte/rte_routines.lib.php:742 msgid "ENUM/SET editor" msgstr "Editor di ENUM/SET" -#: js/messages.php:392 +#: js/messages.php:393 #, php-format msgid "Values for column %s" msgstr "Valori per il campo %s" -#: js/messages.php:393 +#: js/messages.php:394 msgid "Values for a new column" msgstr "Valori per un nuovo campo" -#: js/messages.php:394 +#: js/messages.php:395 msgid "Enter each value in a separate field." msgstr "Inserisci i valori in campi separati." -#: js/messages.php:395 +#: js/messages.php:396 #, php-format msgid "Add %d value(s)" msgstr "Aggiungi %d valore/i" -#: js/messages.php:399 +#: js/messages.php:400 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:403 +#: js/messages.php:404 msgid "Hide query box" msgstr "Nascondi riquadro query SQL" -#: js/messages.php:404 +#: js/messages.php:405 msgid "Show query box" msgstr "Mostra riquadro query SQL" -#: js/messages.php:405 libraries/Console.php:88 libraries/Console.php:217 -#: libraries/DisplayResults.php:3457 libraries/DisplayResults.php:4816 +#: js/messages.php:406 libraries/Console.php:88 libraries/Console.php:217 +#: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4834 #: libraries/Index.php:721 libraries/Util.php:727 libraries/Util.php:1238 -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:119 +#: libraries/server_user_groups.lib.php:121 #: libraries/server_variables.lib.php:242 #: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 msgid "Edit" msgstr "Modifica" -#: js/messages.php:406 libraries/Console.php:89 libraries/DbSearch.php:360 -#: libraries/DisplayResults.php:3526 libraries/DisplayResults.php:4800 +#: js/messages.php:407 libraries/Console.php:89 libraries/DbSearch.php:360 +#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4818 #: libraries/central_columns.lib.php:854 #: libraries/central_columns.lib.php:1200 libraries/display_export.lib.php:227 -#: libraries/server_user_groups.lib.php:129 -#: libraries/sql_query_form.lib.php:416 libraries/tracking.lib.php:480 +#: libraries/server_user_groups.lib.php:131 +#: libraries/sql_query_form.lib.php:417 libraries/tracking.lib.php:490 #: setup/frames/index.inc.php:187 setup/frames/index.inc.php:295 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Elimina" -#: js/messages.php:407 libraries/DisplayResults.php:915 -#: libraries/DisplayResults.php:923 +#: js/messages.php:408 libraries/DisplayResults.php:919 +#: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d non è un numero valido di righe." -#: js/messages.php:408 -#: libraries/controllers/table/TableSearchController.php:435 -#: libraries/controllers/table/TableSearchController.php:920 -#: libraries/sql.lib.php:193 tbl_change.php:159 +#: js/messages.php:409 +#: libraries/controllers/table/TableSearchController.php:432 +#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "Naviga tra i valori esterni" -#: js/messages.php:409 +#: js/messages.php:410 msgid "No auto-saved query" msgstr "Nessuna query auto-memorizzata" -#: js/messages.php:410 +#: js/messages.php:411 #, php-format msgid "Variable %d:" msgstr "Variabile %d:" -#: js/messages.php:413 libraries/normalization.lib.php:889 +#: js/messages.php:414 libraries/normalization.lib.php:889 msgid "Pick" msgstr "Seleziona" -#: js/messages.php:414 +#: js/messages.php:415 msgid "Column selector" msgstr "Selettore colonne" -#: js/messages.php:415 +#: js/messages.php:416 msgid "Search this list" msgstr "Cerca nella lista" -#: js/messages.php:417 +#: js/messages.php:418 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1942,15 +1947,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:420 +#: js/messages.php:421 msgid "See more" msgstr "Vedi altri" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Are you sure?" msgstr "Sei sicuro?" -#: js/messages.php:423 +#: js/messages.php:424 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1958,51 +1963,51 @@ msgstr "" "Questa azione potrebbe cambiare la definizione di alcune colonne.
Vuoi " "continuare?" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "Continua" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "Aggiungi chiave primaria" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "Chiave primaria aggiunta." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "Alla fase successiva…" -#: js/messages.php:433 +#: js/messages.php:434 #, 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:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "Fase terminata" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "Seconda fase di normalizzazione (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Fatto" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "Conferma dipendenze parziali" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "Le dipendenze parziali selezionate sono come segue:" -#: js/messages.php:440 +#: js/messages.php:441 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2010,20 +2015,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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "Nessuna dipendenza parziale selezionata!" -#: js/messages.php:446 +#: js/messages.php:447 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:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "Nascondi la lista delle dipendenze parziali" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2031,170 +2036,170 @@ msgstr "" "Stai pronto! Potrebbero volerci alcuni secondi, in base alla quantità di " "dati e al numero di colonne della tabella." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "Fase" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "Verranno eseguite le seguenti azioni:" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "ELIMINA le colonne %s dalla tabella %s" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "Crea la tabella seguente" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "Terzo livello di normalizzazione (3NF)" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "Conferma le dipendenze transitive" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "Le dipendenze selezionate sono come segue:" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "Nessuna dipendenza selezionata!" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Salva" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Nascondi criteri di ricerca" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Mostra criteri di ricerca" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "Ricerca nell'intervallo" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "Numero massimo dei campi:" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "Numero minimo dei campi:" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "Valore minimo:" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "Valore massimo:" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "Nascondi i criteri di trova e sostituisci" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "Mostra criteri di ricerca e sostituzione" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "Ogni punto rappresenta una riga dei dati." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "Passando il mouse su un punto mostrerà la sua etichetta." -#: js/messages.php:486 +#: js/messages.php:487 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:488 +#: js/messages.php:489 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:490 +#: js/messages.php:491 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:492 +#: js/messages.php:493 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:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "Seleziona due campi" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "Seleziona due campi diversi" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "Contenuto del punto" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignora" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Copia" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Punto" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Stringa su più linee" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Poligono" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "Anello Interno" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "Anello esterno" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "Vuoi copiare la chiave di criptazione?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "Chiave di criptazione" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2202,24 +2207,24 @@ msgstr "" "Indica che hai modificato questa pagina; ti verrà chiesta una conferma prima " "di abbandonare le modifiche" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Seleziona le chiavi referenziali" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Seleziona Foreign Key" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "Seleziona la chiave primaria o una chiave univoca!" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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:532 +#: js/messages.php:533 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?" @@ -2227,77 +2232,77 @@ msgstr "" "Non hai salvato i cambiamenti della disposizione. Questi cambiamenti saranno " "persi se non li salvi. Vuoi procedere?" -#: js/messages.php:535 +#: js/messages.php:536 msgid "Page name" msgstr "Nome della pagina" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Salva pagina" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Apri pagina" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "Cancella pagina" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Senza titolo" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "Scegli una pagina per continuare" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "Inserisci un nome di pagina valido" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "Vuoi salvare le modifiche apportate alla pagina corrente?" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "Pagina eliminata con sucesso" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "Esporta schema relazionale" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Le modifiche sono state salvate" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "Aggiungi un'opzione al campo \"%s\"." -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "%d oggetto/i creato/i." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Invia" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "Premi Esc per annullare la modifica." -#: js/messages.php:557 +#: js/messages.php:558 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?" @@ -2305,15 +2310,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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "Trascina per riordinare." -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "Clicca per ordinare i risultati secondo questa colonna." -#: js/messages.php:563 +#: js/messages.php:564 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 " @@ -2323,28 +2328,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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "Clicca per selezionare/deselezionare." -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "Doppio click per copiare il nome della colonna." -#: js/messages.php:570 +#: js/messages.php:571 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:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Mostra tutti" -#: js/messages.php:574 +#: js/messages.php:575 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." @@ -2353,13 +2358,13 @@ msgstr "" "modifica, copia ed eliminazione potrebbero non funzionare dopo il " "salvataggio." -#: js/messages.php:578 +#: js/messages.php:579 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:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2367,130 +2372,98 @@ msgstr "" "Vuoi davvero vedere tutte le righe? Con una tabella di grandi dimensioni, " "questa operazione potrebbe mandare il browser in crash." -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "Lunghezza originale" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "Annulla" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Fallito" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "Riuscito" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "Importa stato" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Rilascia i file qui" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "Prima seleziona un database" -#: js/messages.php:598 +#: js/messages.php:599 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:603 +#: js/messages.php:604 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:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "Vai al link:" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "Copia il nome del campo." -#: js/messages.php:612 +#: js/messages.php:613 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:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Genera password" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Genera" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "Più" -#: js/messages.php:623 +#: js/messages.php:624 msgid "Show panel" msgstr "Mostra pannello" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "Nascondi pannello" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "Mostra elementi nascosti dell'albero di navigazione." -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "Collega al pannello principale" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "Scollega dal pannello principale" -#: js/messages.php:629 -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:631 -#, 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:632 -msgid "tables" -msgstr "tabelle" - -#: js/messages.php:633 -msgid "views" -msgstr "viste" - -#: js/messages.php:634 -msgid "procedures" -msgstr "procedure" - -#: js/messages.php:635 -msgid "events" -msgstr "eventi" - -#: js/messages.php:636 -msgid "functions" -msgstr "funzioni" - -#: js/messages.php:640 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:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2500,27 +2473,27 @@ msgstr "" "l'aggiornamento. La versione più recente è la %s, rilasciata il %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", versione stabile piú recente:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "aggiornata" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "Crea vista" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "Invia rapporto di errore" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "Invia segnalazione di errore" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2528,15 +2501,15 @@ msgstr "" "Un errore fatale di JavaScript si è verificato. Vuoi inviare una " "segnalazione?" -#: js/messages.php:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "Modifica le impostazioni della segnalazione" -#: js/messages.php:660 +#: js/messages.php:652 msgid "Show report details" msgstr "Mostra i dettagli della segnalazione" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2544,7 +2517,7 @@ msgstr "" "L'esportazione non è stata completata, a causa di un limite di tempo troppo " "basso nell'esecuzione di script PHP!" -#: js/messages.php:667 +#: js/messages.php:659 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2554,62 +2527,62 @@ msgstr "" "alcuni campi saranno ignorati, a causa della configuazione max_input_vars di " "PHP." -#: js/messages.php:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "Sono stati rilevati alcuni errori sul server!" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "Guarda in fondo a questa finestra." -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "Ignora Tutto" -#: js/messages.php:689 +#: js/messages.php:681 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:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "Eseguire di nuovo questa query?" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "Sei sicuro di voler eliminare questo bookmark?" -#: js/messages.php:703 +#: js/messages.php:695 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:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s query eseguite %s volte in %s secondi." -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "%s argomento(i) passati" -#: js/messages.php:707 +#: js/messages.php:699 msgid "Show arguments" msgstr "Mostra argomenti" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "Nascondi argomenti" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "Tempo utilizzato:" -#: js/messages.php:711 +#: js/messages.php:703 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 " @@ -2620,291 +2593,291 @@ msgstr "" "essere disponibili. Nel browser Safari questo problema di solito è causato " "dalla modalità \"Navigazione Privata\"." -#: js/messages.php:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "Prec" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "Prossimo" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Oggi" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "Gennaio" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "Febbraio" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "Marzo" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "Aprile" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Maggio" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "Giugno" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "Luglio" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "Agosto" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "Setttembre" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "Ottobre" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "Novembre" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "Dicembre" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "Mag" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Giu" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Lug" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Ott" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Dic" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "Domenica" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "Lunedì" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "Martedì" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "Mercoledì" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "Giovedì" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "Venerdì" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "Sabato" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Gio" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "Gi" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "Sett" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "Nessuno" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Ora" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Minuto" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Secondo" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "Questo campo è obbligatorio" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "Si prega di correggere questo campo" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "Per favore inserisci un indirizzo email valido" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "Si prega di inserire un URL valido" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "Si prega di inserire una data valida" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "Si prega di inserire una data valida ( ISO )" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "Si prega di inserire un numero valido" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "Si prega di inserire un numero di carta di credito valido" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "Si prega di inserire solo cifre" @@ -2912,41 +2885,41 @@ msgstr "Si prega di inserire solo cifre" msgid "Please enter the same value again" msgstr "Si prega di inserire lo stesso valore di nuovo" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "Si prega di inserire non più di {0} caratteri" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "Si prega di inserire almeno {0} caratteri" -#: js/messages.php:896 +#: js/messages.php:907 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:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "Immettere un valore compreso tra {0} e {1}" -#: js/messages.php:898 +#: js/messages.php:917 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:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "Immettere un valore maggiore o uguale a {0}" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "Si prega di inserire una data o un'ora valida" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "Si prega di inserire un input HEX valido" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Errore" @@ -3036,11 +3009,12 @@ msgstr "Re-query" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3082,7 +3056,7 @@ msgstr "Durante la sessione corrente" msgid "Explain" msgstr "Spiega" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Profiling" @@ -3116,8 +3090,8 @@ msgid "History" msgstr "History" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3264,7 +3238,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Passare al tema scuro" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3272,25 +3246,25 @@ msgstr "" "Il server non risponde (o il socket del server locale MySQL non è " "correttamente configurato)." -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "Il server non risponde." -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "Controllate i privilegi della cartella che contiene il database." -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Dettagli…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Connessione per controluser come definito nella configurazione fallita." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3300,8 +3274,8 @@ msgstr "" msgid "Ascending" msgstr "Crescente" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3444,8 +3418,8 @@ msgstr[0] "%1$s corrispondenza in %2$s" msgstr[1] "%1$s corrispondenze in %2$s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3487,119 +3461,120 @@ msgstr "Deseleziona tutto" msgid "Inside column:" msgstr "All'interno del campo:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "Salva i dati modificati" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "Ripristina l'ordine dei campi" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "Filtra righe" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "Cerca nella tabella" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "Inizio" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "Precedente" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "Prossima" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "Ultima" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Tutti" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Numero di righe:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Ordina per chiave" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "Testi parziali" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "Testi completi" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Chiave relazionale" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 msgid "Display column for relations" msgstr "Visualizza il campo per le relazioni" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "Mostra contenuti binari" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "Mostra contenuti BLOB" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "Nascondi le trasformazioni del browser" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "Well Known Text" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "Well Known Binary" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "La riga è stata eliminata." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Rimuovi" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Può essere approssimativo. Vedi [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "La query SQL è stata eseguita con successo." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3608,64 +3583,64 @@ msgstr "" "Questa vista ha, come minimo, questo numero di righe. Per informazioni " "controlla la %sdocumentazione%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "Mostro le righe %1s - %2s" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d totali, %2$d nella query" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "%d del totale" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "La query ha impiegato %01.4f secondi." -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Se selezionati:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 msgid "Check all" msgstr "Seleziona tutto" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Visualizza per stampa" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Operazioni sui risultati della query" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Mostra diagramma" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "Visualizzare dati GIS" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "Link non trovato!" @@ -3759,19 +3734,19 @@ msgstr "Nessun indice definito!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Indici" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3780,24 +3755,24 @@ msgid "Action" msgstr "Azione" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Chiave" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Unica" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Compresso" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Cardinalità" @@ -3805,8 +3780,8 @@ msgstr "Cardinalità" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3816,8 +3791,8 @@ msgid "Collation" msgstr "Codifica caratteri" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3833,15 +3808,15 @@ msgstr "La chiave primaria è stata eliminata." msgid "Index %s has been dropped." msgstr "L'indice %s è stato eliminato." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Elimina" @@ -3882,12 +3857,13 @@ msgstr "Vista" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3895,7 +3871,7 @@ msgstr "Tabella" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3904,8 +3880,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3913,41 +3889,41 @@ msgid "Search" msgstr "Cerca" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Inserisci" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilegi" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Operazioni" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Monitoraggio" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3958,16 +3934,16 @@ msgstr "Trigger" msgid "Database seems to be empty!" msgstr "Il database sembra essere vuoto!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Query da esempio" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Routine" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3975,20 +3951,20 @@ msgstr "Routine" msgid "Events" msgstr "Eventi" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Designer" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "Colonne centrali" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Database" @@ -3997,33 +3973,33 @@ msgid "User accounts" msgstr "Account utenti" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Log binario" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replicazione" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Variabili" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Set di caratteri" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Motori" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "Plugin" @@ -4322,7 +4298,7 @@ msgstr "Impossibile rinominare l'indice a PRIMARIO!" msgid "No index parts defined!" msgstr "Nessuna parte di indice definita!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Errore nel creare una foreign key su %1$s (controlla il tipo di dati)" @@ -4802,37 +4778,37 @@ msgstr "La %s funzionalità è affetta da un bug noto, vedi %s" msgid "Click to toggle" msgstr "Clicca per alternare" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Cerca sul tuo computer:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Selezionare dalla cartella di upload del server web %s:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "La directory impostata per l'upload non può essere trovata." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "Nessun file da caricare!" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Svuota" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "Esegui" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Stampa" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "Utenti" @@ -4994,8 +4970,8 @@ msgid "Add new column" msgstr "Aggiungi nuovo campo" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5063,19 +5039,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "Si dovrebbe aggiornare %s alla versione %s o successiva." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "Errore: token non corrispondente" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "Tentativo di sovrascrivere GLOBALS" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "possibile exploit" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "chiave numerica rilevata" @@ -5934,7 +5910,7 @@ msgid "Remember file name template" msgstr "Ricorda il modello per i nomi dei file" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Aggiungi valore AUTO_INCREMENT" @@ -5975,7 +5951,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Aggiungi %s" @@ -7717,7 +7693,7 @@ msgstr "" "Definisce se la finestra della query deve stare sullo schermo dopo la " "conferma." -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "Nascondi riquadro query SQL" @@ -8026,103 +8002,33 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Testo OpenDocument" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "La lista dei preferiti è piena!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "La tabella %s è stata svuotata." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "La vista %s è stata eliminata." -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "La tabella %s è stata eliminata." -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "La lista dei preferiti è piena!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "sconosciuto" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -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.php:250 -msgid "No column selected." -msgstr "Nessuna colonna selezionata." - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "I campi sono stati spostati con successo." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "La tabella %1$s è già stata modificata con successo." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "Errore nella query" - -#: libraries/controllers/TableStructureController.php:967 -#, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "" -"La tabella %1$s è già stata modificata con successo. I privilegi sono stati " -"adattati." - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Modifica" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Indice" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "Spaziale" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Testo completo" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "Valori distinti" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8137,6 +8043,14 @@ msgstr "" msgid "No data to display" msgstr "Nessun dato da visualizzare" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "La tabella %1$s è già stata modificata con successo." + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "Il campo display è stato aggiornato con successo." @@ -8145,19 +8059,81 @@ msgstr "Il campo display è stato aggiornato con successo." msgid "Internal relations were successfully updated." msgstr "Le relazioni interne sono state aggiornate con successo." -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "Ricerca nella Tabella" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "Ricerca Zoom" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Trova e sostituisci" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +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/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "Nessuna colonna selezionata." + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "I campi sono stati spostati con successo." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "Errore nella query" + +#: libraries/controllers/table/TableStructureController.php:975 +#, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "" +"La tabella %1$s è già stata modificata con successo. I privilegi sono stati " +"adattati." + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Modifica" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Indice" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "Spaziale" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Testo completo" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "Valori distinti" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8167,7 +8143,7 @@ msgstr "L'estensione %s è mancante. Controlla la tua configurazione di PHP." msgid "possible deep recursion attack" msgstr "possibile attacco di ricorsione in profondità" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Nessun cambiamento" @@ -8239,7 +8215,7 @@ msgstr "Crea" msgid "Create database:" msgstr "Crea database:" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Nessun Privilegio" @@ -8978,65 +8954,65 @@ msgid "Dump has been saved to file %s." msgstr "Il dump è stato salvato nel file %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ha restituito un insieme vuoto (i.e. zero righe)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "[è stato fatto un ROLLBACK.]" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Le seguenti strutture sono state create o modificate. Qui tu puoi:" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "Visualizza i contenuti della struttura facendo click sul suo nome." -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Modifica una qualunque impostazione cliccando sul corrispondente link " "\"Opzioni\"." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "Modifica la struttura seguendo il link \"Struttura\"." -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "Vai al database: %s" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "Modifica impostazioni per %s" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "Vai alla tabella: %s" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "Struttura di %s" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "Vai alla visualizzazione: %s" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "Possono essere simulate query UPDATE e DELETE solo su tabelle singole." -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9044,7 +9020,7 @@ msgstr "" "Possono essere annulate (rolled back) solo query SQL INSERT, UPDATE, DELETE " "and REPLACE contenenti tabelle di un motore transazionale." -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "Crea un indice su  %s campi" @@ -9067,75 +9043,75 @@ msgstr "Funzione" msgid "Binary" msgstr "Binario" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "" "A causa della sua lunghezza,
questo campo potrebbe non essere " "modificabile." -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Dato binario - non modificare" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Oppure" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "directory di upload del web-server:" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "Modifica/Inserisci" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "Riprendi inserimento con %s righe" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "e quindi" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Inserisci come nuova riga" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "Inserisci come nuova riga e ignora gli errori" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "Mostra la insert query" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Indietro" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Inserisci un nuovo record" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Torna a questa pagina" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Modifica il record successivo" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" "Usare il tasto TAB per spostare il cursore di valore in valore, o CTRL" "+frecce per spostarlo altrove." -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9147,11 +9123,11 @@ msgstr "" msgid "Value" msgstr "Valore" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "Visualizzo la query SQL" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "Inserita riga id: %1$d" @@ -9167,35 +9143,35 @@ msgstr "Nessuno" msgid "Convert to Kana" msgstr "Converti a Kana" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Successo!" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "Sostituisci il prefisso della tabella:" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "Copia tabella col prefisso:" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "Da" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "A" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "Aggiungi un prefisso alla tabella:" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "Aggiungi prefisso" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "Sei sicuro di voler eseguire la seguente query?" @@ -9414,8 +9390,8 @@ msgstr "Procedure:" msgid "Views:" msgstr "Viste:" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Mostra" @@ -9456,18 +9432,15 @@ msgstr[0] "%s risultato trovato" msgstr[1] "%s risultati trovati" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" -msgstr "Filtra i database in base al nome o all'espressione regolare (regex)" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 msgid "Clear fast filter" msgstr "Cancella il fast filter" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "Filtra in base al nome o all'espressione regolare (regex)" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "Collassa tutto" @@ -9894,7 +9867,7 @@ msgstr "Rinomina il database come" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9905,7 +9878,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Adatta Privilegi" @@ -9923,18 +9896,18 @@ msgstr "Elimina il database" msgid "Drop the database (DROP)" msgstr "Cancella il database (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Solo struttura" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Struttura e dati" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Solo dati" @@ -9946,7 +9919,7 @@ msgstr "Copia il database come" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE prima di copiare" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Aggiungi vincoli" @@ -9986,157 +9959,157 @@ msgstr "Motore di Memorizzazione" msgid "Change all column collations" msgstr "Cambia tutte le collation dei campi" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Copia la tabella in (database.tabella)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Passa alla tabella copiata" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Amministrazione tabella" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Analizza tabella" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Controlla tabella" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 msgid "Checksum table" msgstr "Checksum tabella" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Deframmenta la tabella" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "La tabella %s è stata inizializzata." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "Ricarica la tabella (FLUSH)" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Ottimizza tabella" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Ripara tabella" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "Rimuovi la tabella o i dati" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "Svuota la tabella (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "Elimina la tabella (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Analizza" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Controlla" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Ottimizza" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Ricrea" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Ripara" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "Tronca" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 msgid "Coalesce" msgstr "Fondi" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "Manutenzione partizione" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "Partizione %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "Rimuove partizionamento" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Controlla l'integrità delle referenze:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Impossibile spostare la tabella su se stessa!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Impossibile copiare la tabella su se stessa!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "La tabella %s è stata spostata in %s. I privilegi sono stati adattati." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "La tabella %s è stata copiata su %s. I privilegi sono stati adattati." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "La tabella %s è stata spostata in %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "La tabella %s è stata copiata su %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Il nome della tabella è vuoto!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "Questo formato non ha opzioni" @@ -10312,7 +10285,7 @@ msgstr "Opzioni del dump dei dati" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Dump dei dati per la tabella" @@ -10336,21 +10309,21 @@ msgstr "Definizione" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Struttura della tabella" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Struttura per la vista" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Struttura stand-in per le viste" @@ -10442,7 +10415,7 @@ msgid "Database:" msgstr "Database:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "Dati:" @@ -10546,7 +10519,7 @@ msgid "Data creation options" msgstr "Opzioni di creazione dei dati" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "Svuota la tabella prima dell'inserimento" @@ -10629,8 +10602,8 @@ msgstr "Il tuo database sembra utilizzare le procedure;" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" "l'esportazione degli alias potrebbe non funzionare correttamente in tutti i " @@ -10640,81 +10613,81 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "Il tuo database sembra utilizzare le funzioni;" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 msgid "Metadata" msgstr "Metadati" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "Metadati per %s" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Creazione:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Ultimo aggiornamento:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Ultimo controllo:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "in uso" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "Il tuo database sembra utilizzare le viste;" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Limiti per le tabelle scaricate" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Limiti per la tabella" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "Indici per le tabelle scaricate" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "Indici per le tabelle" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT per le tabelle scaricate" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT per la tabella" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "Il tuo database sembra utilizzare i trigger;" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, 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.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "Si è verificato un errore durante la lettura dei dati:" @@ -10960,9 +10933,9 @@ msgstr "Schema relazionale" msgid "Table of contents" msgstr "Tabella dei contenuti" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Extra" @@ -11187,47 +11160,47 @@ msgstr "Formatta il testo come JSON con evidenziazione della sintassi." msgid "Formats text as XML with syntax highlighting." msgstr "Formatta il testo come XML con evidenziazione della sintassi." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Errore: relazione già esistente." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "La relazione FOREIGN KEY è stata aggiunta." -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Errore: non è stato possibile aggiungere la relazione FOREIGN KEY!" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "Errore: manca l'indice su campo/i." -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "Errore: Le funzionalità relazionali sono disabilitate!" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "La relazioni interna è stata aggiunta." -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 msgid "Error: Internal relation could not be added!" msgstr "Errore: non è stato possibile aggiungere la relazione interna!" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 msgid "FOREIGN KEY relation has been removed." msgstr "La relazione FOREIGN KEY è stata rimossa." -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Errore: non è stato possibile rimuovere la relazione FOREIGN KEY!" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 msgid "Error: Internal relation could not be removed!" msgstr "Errore: non è stato possibile rimuovere la relazione interna!" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "La relazione interna è stata rimossa." @@ -11274,68 +11247,68 @@ msgstr "" "Si prega di leggere la documentazione su come aggiornare la tabella " "column_info. " -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Query SQL aggiunte ai preferiti" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "Storico dell'SQL" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "Tabelle persistenti utilizzate di recente" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 msgid "Persistent favorite tables" msgstr "Tabelle persistenti preferite" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "Preferenze UI delle tabelle persistenti" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "Impostazioni utente" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "Menu configurabili" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "Mostra/nascondi le voci di navigazione" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "Salvataggio ricerche Query-By-Example" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "Gestione lista Centrale dei campi" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "Memorizzazione Impostazioni Designer" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 msgid "Saving export templates" msgstr "Salvataggio template esportazione" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "Passi veloci per l'installazione delle funzionalità avanzate:" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "Crea le tabelle necessarie con %screate_tables.sql." -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "Crea l'utente pma e dagli accesso a queste tabelle." -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -11343,17 +11316,17 @@ msgstr "" "Attiva funzionalità avanzate nel file di configuratione (config.inc." "php), per esempio partendo da config.sample.inc.php." -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Rieffettua il login in phpMyAdmin per caricare il file della configurazione " "aggiornato." -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "nessuna descrizione" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11364,7 +11337,7 @@ msgstr "" "database per impostare in quel database la memorizzazione della " "configurazione di phpMyAdmin." -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11373,14 +11346,14 @@ msgstr "" "%sCrea%s un database denominato 'phpmyadmin' e imposta la configurazione di " "storage phpMyAdmin lì." -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" "%sCreate%s la configurazione salvata di phpMyAdmin nel database corrente." -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11573,8 +11546,8 @@ msgstr "Nome utente:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Nome utente" @@ -11582,7 +11555,7 @@ msgstr "Nome utente" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Password" @@ -12221,7 +12194,7 @@ msgstr[1] "%1$d databasi sono stati eliminati correttamente." msgid "Plugin" msgstr "Plugin" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Versione" @@ -12229,100 +12202,96 @@ msgstr "Versione" msgid "Author" msgstr "Autore" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "Licenza" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "disabilitato" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Nessun privilegio." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Comprende tutti i privilegi tranne GRANT." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Permette di leggere i dati." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Permette di inserire e sovrascrivere dati." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Permette di cambiare i dati." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Permette di cancellare dati." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Permette di creare nuove tabelle e nuovi databases." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Permette di eliminare databases e tabelle." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permette di ricaricare i parametri del server e di resettare la cache del " "server." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Permette di chiudere il server." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "Permette di vedere i processi di tutti gli utenti." #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "Permette di importare dati da e esportare dati in file." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "Non ha alcun effetto in questa versione di MySQL." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Permette di creare ed eliminare gli indici." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Permette di alterare la struttura di tabelle esistenti." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Accorda l'accesso alla lista completa dei databases." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12334,65 +12303,65 @@ msgstr "" "utenti." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Permette di creare tabelle temporanee." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Permette di bloccare le tabelle per il thread corrente." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Necessario per la replicazione degli slaves." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "Consente ad un utente di domandare dove sono i master / slave." #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Permette la creazione di nuove viste." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "Permette di impostare gli eventi per lo scheduler." #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "Permette di creare e di eliminare i triggers." #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permette di effettuare query del tipo SHOW CREATE VIEW." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Permette la creazione di routines memorizzate." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Permette l'alterazione e l'eliminazione di routines memorizzate." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permette di creare, cancellare e rinominare gli account utente." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Permette l'esecuzione di routines memorizzate." @@ -12404,8 +12373,8 @@ msgstr "Nessun" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Gruppo utenti" @@ -12451,13 +12420,13 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "N.B.: 0 (zero) significa nessun limite." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limita il numero di query che un utente può mandare al server in un'ora." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12466,26 +12435,26 @@ msgstr "" "che un utente può eseguire in un'ora." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Limita il numero di nuove connessioni che un utente può aprire in un'ora." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limite di connessioni simultanee che un utente può fare." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Routine" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12502,14 +12471,14 @@ msgstr "Permette l'esecuzione di questa routine." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Privilegi relativi alle tabelle" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Nota: i nomi dei privilegi di MySQL sono espressi in Inglese." @@ -12519,7 +12488,7 @@ msgid "Administration" msgstr "Amministrazione" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Privilegi globali" @@ -12528,15 +12497,15 @@ msgid "Global" msgstr "Globale" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Privilegi specifici al database" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Permette di creare nuove tabelle." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Permette di eliminare tabelle." @@ -12553,7 +12522,7 @@ msgid "Native MySQL Authentication" msgstr "Autenticazione MySQL nativa" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Informazioni di Login" @@ -12578,8 +12547,8 @@ msgstr "Nome host:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 msgid "Host name" msgstr "Nome host" @@ -12595,112 +12564,112 @@ msgstr "Plugin di Autenticazione" msgid "Password Hashing Method" msgstr "Metodo di Password Hashing" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "La password per l'utente %s è cambiata con successo." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Hai revocato i privilegi per %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 msgid "Add user account" msgstr "Aggiungi account utente" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 msgid "Database for user account" msgstr "Database per account utente" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "Crea un database con lo stesso nome e concedi tutti i privilegi." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Concedi tutti i privilegi al nome con caratteri jolly (username\\_%)." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Garantisci tutti i privilegi per il database \"%s\"." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Utenti che hanno accesso a \"%s\"" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "L'utente é stato aggiunto." -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Grant" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "Non hai sufficienti privilegi per visualizzare gli utenti." -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "Nessun utente trovato." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Qualsiasi" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "globale" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "specifico del database" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "carattere jolly" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "specifico di tabella" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 msgid "Edit privileges" msgstr "Modifica privilegi" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Revoca" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "Modifica il gruppo utente" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… mantieni quello vecchio." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… cancella quello vecchio dalla tabella degli utenti." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… revoca tutti i privilegi attivi da quello vecchio e in seguito cancellalo." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12708,89 +12677,89 @@ msgstr "" "… cancella quello vecchio dalla tabella degli utenti e in seguito ricarica i " "privilegi." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "Cambia le informazioni di login / Copia account utente" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "Crea un nuovo account utente con gli stessi privilegi e …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Privilegi specifici per la routine" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 msgid "Remove selected user accounts" msgstr "Rimuove gli account utente selezionati" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Revoca tutti i privilegi attivi agli utenti e dopo li cancella." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "Elimina i databases gli stessi nomi degli utenti." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "Nessun utente selezionato per la cancellazione!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Caricamento dei privilegi in corso" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Gli utenti selezionati sono stati cancellati con successo." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Hai aggiornato i permessi per %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "Cancellazione in corso di %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "I privilegi sono stati ricaricati con successo." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "L'utente %s esiste già!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "Privilegi per %s" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Utente" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "Nuovo" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 msgid "Edit privileges:" msgstr "Modifica privilegi:" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "Account utente" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12798,11 +12767,11 @@ msgstr "" "Nota: Stai cercando di modificare i privilegi dell'utente con cui sei " "collegato attualmente." -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "Vista d'insieme degli account utente" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " @@ -12813,7 +12782,7 @@ msgstr "" "di connettersi se la parte host del loro account permette una connessione da " "host qualsiasi (%)." -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12826,7 +12795,7 @@ msgstr "" "privilegi usati dal server se sono stati fatti cambiamenti manuali. In " "questo caso, Si dovrebbero %srinfrescare i privilegi%s prima di continuare." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12840,11 +12809,11 @@ msgstr "" "questo caso, si devono ricaricare i privilegi ma al momento non disponi del " "privilegio RELOAD." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "L'utente selezionato non è stato trovato nella tabella dei privilegi." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Hai aggiunto un nuovo utente." @@ -13108,24 +13077,24 @@ msgstr "Istruzioni/Configurazione" msgid "Done dragging (rearranging) charts" msgstr "Ho finito di spostare (riarrangiare) i grafici" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "Abilita spostamento grafici" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "Ritmo di aggiornamenti" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "Numero di grafici per rigo" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "Disposizione dei grafici" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -13133,7 +13102,7 @@ msgstr "" "La configurazione dei grafici è memorizzata nella memoria locale dei " "browser. Potreste voler esportarla se avete una configurazione complicata." -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "Ripristina i valori predefiniti" @@ -13189,7 +13158,7 @@ msgid "Statements" msgstr "Istruzioni" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "#" @@ -13214,7 +13183,7 @@ msgstr "Mostra i valore non formattati" msgid "Related links:" msgstr "Collegamenti associati:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -13222,11 +13191,11 @@ msgstr "" "Il numero di connessioni fallite perché il cliente é morto senza chiudere la " "connessione correttemente." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Il numero di tentativi falliti di connettere al server MySQL." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13236,19 +13205,19 @@ msgstr "" "ma che oltrepassano il valore di binlog_cache_size e usano un file " "temporaneo per salvare gli statements dalle transazioni." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Il numero delle transazioni che usano la cache temporanea del log binario." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Il numero di tentativi di connesione al server MySQL (completati con " "successo o no)." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13260,11 +13229,11 @@ msgstr "" "grande, potresti voler aumentare il valore tmp_table_size, per fare im modo " "che le tabelle temporanee siano memory-based anzichè disk-based." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "Numero di file temporanei che mysqld ha creato." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13272,7 +13241,7 @@ msgstr "" "Il numero di tabelle temporanee create automaticamente in memoria dal server " "durante l'esecuzione dei comandi." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13280,7 +13249,7 @@ msgstr "" "Numero di righe scritte con INSERT DELAYED in cui ci sono stati degli errori " "(probabilmete chiave dublicata)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13288,23 +13257,23 @@ msgstr "" "Il numero di processi INSERT DELAYED in uso. Ciascuna tabella su cui è usato " "INSERT DELAYED occupa un thread." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "Il numero di righe INSERT DELAYED scritte." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "Il numero di comandi FLUSH eseguiti." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "Il numero di comandi interni COMMIT eseguiti." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "Il numero di volte in cui una riga è stata cancellata da una tabella." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13314,7 +13283,7 @@ msgstr "" "tabella sulla base di un nome dato. Questo è chaiamto discovery. " "Handler_discover indica il numero di volte che una tabella è stata trovata." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13325,7 +13294,7 @@ msgstr "" "degli indici; per esempio, SELECT col1 FROM foo, assumento che col1 sia " "indicizzata." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -13334,7 +13303,7 @@ msgstr "" "alta, è un buon indice che le tue query e le tue tabelle sono correttamente " "indicizzate." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13345,7 +13314,7 @@ msgstr "" "indice con un range costante, oppure se stai facendo una scansione degli " "indici." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13354,7 +13323,7 @@ msgstr "" "chiavi. Questo metodo di lettura è principalmente utilizzato per ottimizzare " "ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13367,7 +13336,7 @@ msgstr "" "MySQL di leggere l'intera tabella oppure ci sono dei joins che non usano le " "chiavi correttamente." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13380,37 +13349,37 @@ msgstr "" "indicizzate, o che le query non sono state scritte per trarre vantaggi dagli " "indici che hai." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "Il numero di comandi ROLLBACK interni." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "Il numero di richieste per aggiornare una riga in una tabella." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "Il numero di richieste per inserire una riga in una tabella." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "Il numero di pagine che contengono dati (sporchi o puliti)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "Il numero di pagine attualmente sporche." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Il numero di buffer pool pages che hanno avuto richiesta di essere " "aggiornate." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "Il numero di pagine libere." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13420,7 +13389,7 @@ msgstr "" "attualmente in lettura o in scittura e non possono essere aggiornate o " "rimosse per altre ragioni." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13432,11 +13401,11 @@ msgstr "" "come Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "Il numero totale di buffer pool, in pagine." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13444,7 +13413,7 @@ msgstr "" "Il numero di read-aheads \"random\" InnoDB iniziate. Questo accade quando " "una query legge una porzione di una tabella, ma in ordine casuale." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13452,11 +13421,11 @@ msgstr "" "Il numero di read-aheads InnoDB sequanziali. Questo accade quando InnoDB " "esegue una scansione completa sequenziale di una tabella." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "Il numero di richieste logiche che InnoDb ha fatto." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13464,7 +13433,7 @@ msgstr "" "Il numero di richieste logiche che InnoDB non può soddisfare dal buffer pool " "e che devono fare una lettura di una pagina singola." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13479,55 +13448,55 @@ msgstr "" "dimesione del buffer pool è stata settata correttamente questo valore " "dovrebbe essere basso." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "Il numero di scritture effettuate nel buffer pool InnoDB." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "Il numero delle operazioni fsync() fino ad ora." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "Il numero di operazioni fsync() in attesa." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "Il numero di letture in attesa." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "Il numero di scritture in attesa." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "La quantità di dati letti fino ad ora, in bytes." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "Il numero totale di dati letti." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "Il numero totale di dati scritti." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "La quantità di dati scritti fino ad ora, in bytes." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Il numero di scritture doublewrite che sono state eseguite ed il numero che " "sono state scritte a questo scopo." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" "Il numero di scritture doublewrite che sono state eseguite ed il numero che " "sono state scritte a questo scopo." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13535,35 +13504,35 @@ msgstr "" "Il numero di attese che abbiamo avuto perchè il buffer di log era troppo " "piccolo e abbiamo duvuto attendere che fosse aggiornato prima di continuare." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "Il numero di richieste di scrittura dei log." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "Il numero scritture fisiche del log file." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "Il numero di scritture effettuate da fsync() sul log file." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "Il numero degli fsyncs in sospeso sul log file." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "Il numero di scritture in sospeso sul log file." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "Il numero di bytes scritti sul log file." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "Il numero di pagine create." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -13572,51 +13541,51 @@ msgstr "" "valori sono conteggiati nelle pagine; la dimesione delle pagine permette di " "convertirli facilmente in bytes." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "Il numero di pagine lette." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "Il numero di pagine scritte." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "Il numero di row locks attualmente in attesa." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Il tempo medio per l'acquisizione di un row lock, in millisecondi." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Il tempo totale per l'acquisizione di un row locks, in millisecondi." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Il tempo massimo per l'acquisizione di un row lock, in millisecondi." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "Il numero di volte che un row lock ha dovuto attendere." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "Il numero di righe cancellate da una tabella InnoDB." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "Il numero di righe inserite da una tabella InnoDB." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "Il numero di righe lette da una tabella InnoDB." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "Il numero di righe aggiornate da una tabella InnoDB." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13625,7 +13594,7 @@ msgstr "" "cambiati, ma che non sono stai aggiornati su disco. É conosciuto con il nome " "di Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -13633,7 +13602,7 @@ msgstr "" "Il numero di blocchi non usati nella cache chiave. Puoi usare questo valore " "per determinare quanta cache chiave è in uso." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13643,15 +13612,15 @@ msgstr "" "segnale che indica il numero massimo di blocchi che sono stati in uso " "contemporaneamente." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "Percentuale di cache delle chiavi utilizzata (valore calcolato)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "Il numero di richieste per leggere un blocco chiave dalla cache." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13662,7 +13631,7 @@ msgstr "" "rapporto di mancate letture dalla cache delle chivi può essere calcolato " "come Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13670,22 +13639,22 @@ msgstr "" "La mancata lettura dalla cache delle chiavi viene calcolato come rapporto " "tra le letture fisiche e le richieste di lettura (valore calcolato)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "Il numero di richieste per scrivere una blocco chiave nella cache." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "Il numero di scritture fisiche di un blocco chiave sul disco." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Percentuale di scritture fisiche in rapporto alle scritture richieste " "(valore calcolato)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13696,7 +13665,7 @@ msgstr "" "query per la stessa operazione di query. Il valore di default è 0, che " "significa che nessuna query è stata ancora compilata." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13704,12 +13673,12 @@ msgstr "" "Il massimo numero di connessioni che sono state utilizzate " "contemporaneamente dall'avvio del server." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "In numero di righe in attesa di essere scritte nella coda INSERT DELAYED." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13717,20 +13686,20 @@ msgstr "" "Il numero di tabelle che sono state aperte. Se il valore opened_tables è " "grande, probabilmente il valore di table cache è troppo piccolo." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "Il numero di file che sono aperti." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Il numero di stream che sono aperti (usato principalmente per il logging)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "Il numero di tabelle che sono aperte." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13740,19 +13709,19 @@ msgstr "" "potrebbero indicare problemi di fragmentazione che possono essere risolti " "con l'esecuzione dell'istruzione FLUSH QUERY CACHE." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "L'ammontare di memoria libera nella cache delle query." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "Il numero di cache hits." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "Il numero di query aggiunte alla cache." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13765,7 +13734,7 @@ msgstr "" "una strategia di \"meno usate recentemente\" (LRU - least recently used) per " "decidere quali query rimuovere dalla cache." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13773,19 +13742,19 @@ msgstr "" "Il numero di query non in cache (impossibilità di inserirle nella cache " "oppure non inserite per i settaggi del parametro query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "Il numero di query registrate nella cache." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "Il numero totale di blocchi nella cache delle query." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "Lo sato delle repliche failsafe (non ancora implementato)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -13793,13 +13762,13 @@ msgstr "" "Il numero di joins che non usano gli indici. Se questo valore non è 0, " "dovresti controllare attentamente gli indici delle tue tabelle." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" "Il numero di joins che usano una ricerca limitata su di una tabella di " "riferimento." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -13808,7 +13777,7 @@ msgstr "" "ogni riga. (Se questo valore non è 0, dovresti controllare attentamente gli " "indici delle tue tabelle.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13816,17 +13785,17 @@ msgstr "" "Il numero di joins che usano un range sulla prima tabella. (Non è, " "solitamente, un valore critico anche se è grande.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" "Il numero di join che hanno effettuato una scansione completa della prima " "tabella." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Il numero di tabelle temporaneamente aperte da processi SQL slave." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13834,12 +13803,12 @@ msgstr "" "Numero totale di volte (dalla partenza) in cui la replica slave SQL ha " "ritentato una transazione." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Questa chiave è ON se questo è un server slave connesso ad un server master." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -13847,12 +13816,12 @@ msgstr "" "Numero di processi che hanno impiegato più di slow_launch_time secondi per " "partire." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Numero di query che hanno impiegato più di long_query_time secondi." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13862,23 +13831,23 @@ msgstr "" "fatte. Se questo valore è grande, dovresti incrementare la variabile di " "sistema sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "Il numero di ordinamenti che sono stati eseguiti in un intervallo." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "Il numero di righe ordinate." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "Il numero di ordinamenti che sono stati fatti leggendo la tabella." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "Il numero di volte che un table lock è stato eseguito immediatamente." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13890,7 +13859,7 @@ msgstr "" "performance, dovresti prima ottimizzare le query, oppure sia utilizzare le " "repliche, sia dividere le tabelle." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13900,11 +13869,11 @@ msgstr "" "essere calcolato come processi_creati/connessioni. Se questo valore è rosso " "devi aumentare la tua thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "Il numero di connessioni correntemente aperte." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13916,11 +13885,11 @@ msgstr "" "(Normalmente questo non fornisce un significatico incremento delle " "performace se hai una buona implementazione dei processi.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "Percentuale hit nella cache del thread (valore calcolato)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "Il numero di processi non in attesa." @@ -13929,57 +13898,57 @@ msgstr "Il numero di processi non in attesa." msgid "Users of '%s' user group" msgstr "Utenti del gruppo utenti '%s'" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "Non sono stati trovati utenti appartenenti a questo gruppo." -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "Gruppi utenti" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "Tabulazioni livello server" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "Tabulazioni livello Database" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "Tabulazioni livello tabella" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "Vista utenti" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "Aggiungi gruppo utente" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "Modifica il gruppo utenti: '%s'" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "Menu assegnazioni del gruppo utente" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "Nome del gruppo:" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "Tabulazioni livello server" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "Tabulazioni livello database" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "Tabulazioni livello tabella" @@ -14039,21 +14008,17 @@ msgstr "Era attesa una parentesi chiusa." msgid "Unrecognized data type." msgstr "Tipo dati non riconosciuto." -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "Parentesi chiusa inattesa." - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "Un alias è stato trovato precedentemente." -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "Segno di punteggiatura \"punto\" inatteso." -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 msgid "An alias was expected." msgstr "Era atteso un alias." @@ -14109,107 +14074,107 @@ msgstr "Era atteso il fine quote %1$s." msgid "Variable name was expected." msgstr "Era atteso un nome di variabile." -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 msgid "Unexpected beginning of statement." msgstr "Inizio di statement inatteso." -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "Tipo statement non riconosciuto." -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "Non è stata iniziata alcuna transazione in precedenza." -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "Token inatteso." -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "Questo tipo di clausola è stata esaminata in precedenza." -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" "E' stato trovato un nuovo statement, ma c'è alcun delimitatore tra questo " "nuovo statement e il precedente." -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "Parola chiave non riconosciuta." -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "Era atteso il nome dell'entity." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 msgid "At least one column definition was expected." msgstr "Era attesa almeno la definizione di un campo." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "Era attesa una parola chiave \"RETURNS\"." -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "Profilo dettagliato" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "Ordine" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "Stato" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "Sommario per stato" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "Tempo Totale" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "% Tempo" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "Chiamate" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "ø Tempo" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Aggiungi ai preferiti questa query SQL" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "Etichetta:" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Permetti ad ogni utente di accedere a questo bookmark" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "Segnalibro non creato!" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Usa il segnalibro \"%s\" come la query di navigazione predefinita." -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "Visualizzo comel codice PHP" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " @@ -14218,7 +14183,7 @@ msgstr "" "La selezione corrente non contiene un campo unico. Modifica griglia, " "checkbox, Modifica, Copia ed Elimina potrebbero non essere disponibili. %s" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " @@ -14227,7 +14192,7 @@ msgstr "" "La selezione corrente non contiene un campo unico. Modifica griglia, " "Modifica, Copia ed Elimina potrebbero mostrare comportamenti indesiderati. %s" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemi con gli indici della tabella `%s`" @@ -14255,27 +14220,27 @@ msgstr "Ottieni la query auto-memorizzata" msgid "Bind parameters" msgstr "Parametri Bind" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "Aggiungi ai preferiti questa query SQL:" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Sostituisci segnalibro esistente se con lo stesso nome" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Delimitatori" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Mostra di nuovo questa query" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "Annulla le modifiche quando hai finito" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Visualizza solo" @@ -14319,113 +14284,113 @@ msgstr "Disattiva il tracking per %s" msgid "Deactivate now" msgstr "Disattiva ora" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Creato" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Aggiornato" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 msgid "Delete version" msgstr "Cancella versione" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Rapporto tracking" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Snapshot della struttura" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "attivo" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "non attivo" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "Instruzioni per il monitoraggio" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "Cancella dati di tracciamento dal report" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "Nessun dato" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Mostra %1$s con date dal %2$s al %3$s dell'utente %4$s %5$s" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "Dump SQL (scarica il file)" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "Dump SQL" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "Questa opzione sostituirà la tua tabella e i dati contenuti." -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "Esecuzione SQL" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "Esporta come %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "Instruzione di manipolazione dei dati" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "Instruzione di definizione dei dati" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Data" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Nome utente" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Versione %s dello snapshot (codice SQL)" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Nessuno" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "Le definizioni dei dati di monitoraggio eliminati con successo" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" "Le manipolazioni dei dati di monitoraggio sono state cancellate con successo" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14433,61 +14398,61 @@ msgstr "" "Puoi eseguire il dump creando ed utilizzando un database temporaneo. Prego " "assicurati che hai i corretti permessi per effettuare queste azioni." -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "Commenta le linee seguenti se non ne hai bisogno." -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Istruzione SQL esportata. Copia il dump o eseguilo." -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "Report di monitoraggio per la tabella `%s`" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Monitoraggio di %1$s é attivo dalla version %2$s." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Monitoraggio per %1$s é disattivato dalla version %2$s." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "La versione %1$s di %2$s è stata cancellata." -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versione %1$s creata, monitoraggio attivato per %2$s." -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Tabelle non monitorate" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Controlla tabella" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Tabelle monitorate" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Ultima versione" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "Cancella monitoraggio" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Versioni" @@ -14495,11 +14460,11 @@ msgstr "Versioni" msgid "Manage your settings" msgstr "Gestisci le tue impostazioni" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "La configurazione é stata salvata." -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14606,7 +14571,7 @@ msgstr "Nessun database" msgid "View dump (schema) of databases" msgstr "Visualizza il dump (schema) dei databases" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14635,7 +14600,7 @@ msgstr "" "phpMyAdmin non è in grado di terminare il thread %s. Probabilmente è già " "stato terminato." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "Non sei autorizzato a visualizzare le statistiche di query." @@ -15454,43 +15419,49 @@ msgstr "Distribuzione" msgid "Stacked" msgstr "Sovrapposti" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "Titolo del grafico" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "Asse X:" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "Serie:" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "Etichetta per l'asse X:" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "Valori per asse X" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "Etichetta per l'asse Y:" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Valori per asse Y" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "I nomi delle serie sono i un campo" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "Campo serie:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 msgid "Value Column:" msgstr "Campo Valore:" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "Salva il grafico come immagine" @@ -15544,15 +15515,43 @@ msgstr "Commento:" msgid "Drag to reorder" msgstr "Trascina per riordinare" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +msgid "Foreign key constraints" +msgstr "Vincoli della foreign key" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "Azioni" + +#: templates/table/relation/common_form.phtml:10 +msgid "Constraint properties" +msgstr "Proprietà del vincolo" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" +"Saranno visualizzati solo campi con indice. Puoi definire un indice qui " +"sotto." + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "Vincolo della chiave esterna" + +#: templates/table/relation/common_form.phtml:60 +msgid "+ Add constraint" +msgstr "+ Aggiungi vincolo" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "Relazioni interne" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "Relazioni interne" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15560,34 +15559,7 @@ msgstr "" "Una relazione interna non %è necessaria, quando una corrispondente relazione " "FOREIGN KEY esiste." -#: templates/table/relation/common_form.phtml:37 -msgid "Foreign key constraints" -msgstr "Vincoli della foreign key" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "Azioni" - -#: templates/table/relation/common_form.phtml:41 -msgid "Constraint properties" -msgstr "Proprietà del vincolo" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" -"Saranno visualizzati solo campi con indice. Puoi definire un indice qui " -"sotto." - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "Vincolo della chiave esterna" - -#: templates/table/relation/common_form.phtml:83 -msgid "+ Add constraint" -msgstr "+ Aggiungi vincolo" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "Scegli il campo da mostrare:" @@ -15714,7 +15686,7 @@ msgid "at beginning of table" msgstr "All'inizio della tabella" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 msgid "Partitions" msgstr "Partizioni" @@ -15747,7 +15719,7 @@ msgstr "Tabella partizioni" msgid "Edit partitioning" msgstr "Modifica partizionamento" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "Modifica la vista" @@ -17172,6 +17144,41 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert è impostato a 0" +#~ 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" + +#~ 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" + +#~ msgid "tables" +#~ msgstr "tabelle" + +#~ msgid "views" +#~ msgstr "viste" + +#~ msgid "procedures" +#~ msgstr "procedure" + +#~ msgid "events" +#~ msgstr "eventi" + +#~ msgid "functions" +#~ msgstr "funzioni" + +#~ msgid "Filter databases by name or regex" +#~ msgstr "" +#~ "Filtra i database in base al nome o all'espressione regolare (regex)" + +#~ msgid "Filter by name or regex" +#~ msgstr "Filtra in base al nome o all'espressione regolare (regex)" + +#~ msgid "Unexpected closing bracket." +#~ msgstr "Parentesi chiusa inattesa." + #~ msgid "Username and hostname didn't change." #~ msgstr "Username e hostname non sono cambiati." diff --git a/po/ja.po b/po/ja.po index ce84ee4f40..58fc41af16 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-18 20:27+0200\n" "Last-Translator: Eshin Kunishima \n" "Language-Team: Japanese Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "phpMyAdmin に協力するには" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "主キーを追加する" -#: js/messages.php:430 +#: js/messages.php:431 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "%s に主キーを追加しました" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "追跡レポート" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 #, fuzzy @@ -2036,253 +2048,253 @@ msgstr "" msgid "End of step" msgstr "改行コード" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "決定" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "データベースが選択されていません。" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 #, fuzzy #| msgid "The following queries have been executed:" msgid "The following actions will be performed:" msgstr "次のクエリが実行されます:" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "テーブルに特権を追加" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "データベースが選択されていません。" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "保存する" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "検索条件を隠す" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "検索条件を表示する" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Table Search" msgid "Range search" msgstr "テーブル検索" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Column names: " msgid "Column maximum:" msgstr "カラム名: " -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Column names: " msgid "Column minimum:" msgstr "カラム名: " -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "テーブルの最大数" -#: js/messages.php:474 +#: js/messages.php:475 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "テーブルの最大数" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "検索と置換の条件を隠す" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "検索と置換の条件を表示" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "プロット点は、それぞれの行のデータを表します。" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "プロット点にマウスカーソルを重ねると、そのラベルが表示されます。" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "拡大するには、マウスでグラフ内を範囲選択してください。" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "「Reset zoom」ボタンをクリックすることで元の状態に戻せます。" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "プロット点をクリックすることで、行のデータの閲覧と編集が可能です。" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "グラフの右下をドラッグすることで、大きさの調整が行えます。" -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "カラムを 2 つ選択してください" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "異なるカラムを 2 つ選択してください" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "プロット点におけるデータ内容" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "無視" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "コピー" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "座標" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "線分" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "ポリゴン" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "幾何データ" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "内輪" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "外枠:" -#: js/messages.php:516 +#: js/messages.php:517 #, fuzzy #| msgid "Do you want to import remaining settings?" msgid "Do you want to copy encryption key?" msgstr "暗号化キーをコピーしますか?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "参照されているキーを選択" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "外部キーを選択してください" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "主キーまたはユニークキーを選択してください!" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "表示するカラムの選択" -#: js/messages.php:532 +#: js/messages.php:533 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?" @@ -2290,94 +2302,94 @@ msgstr "" "レイアウトの変更を保存していません。保存しないと失われてしまいます。このまま" "続行しますか?" -#: js/messages.php:535 +#: js/messages.php:536 msgid "Page name" msgstr "ページ名" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 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:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 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:539 +#: js/messages.php:540 #, fuzzy #| msgid "Select page" msgid "Delete page" msgstr "ページを選択してください" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "単位" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "編集するページを選択してください" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "有効なポート番号ではありません" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "リレーショナルスキーマをエクスポートする" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "修正を保存しました" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "カラム「\"%s\"」に対するオプションを追加する。" -#: js/messages.php:551 +#: js/messages.php:552 #, fuzzy, php-format #| msgid "%1$d row(s) affected." msgid "%d object(s) created." msgstr "%1$d 行変更しました。" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "実行する" -#: js/messages.php:555 +#: js/messages.php:556 #, fuzzy #| msgid "Press escape to cancel editing" msgid "Press escape to cancel editing." msgstr "ESC キーで編集キャンセル" -#: js/messages.php:557 +#: js/messages.php:558 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?" @@ -2385,49 +2397,49 @@ msgstr "" "データの一部を変更しましたが保存していません。データを保存せずにこのページか" "ら移動してもよろしいですか?" -#: js/messages.php:560 +#: js/messages.php:561 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder." msgstr "ドラッグでカラムの入れ替え" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "クリックでカラムを反転/解除" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy #| msgid "Double-click to copy column name" msgid "Double-click to copy column name." msgstr "ダブルクリックでカラム名をコピー。" -#: js/messages.php:570 +#: js/messages.php:571 #, 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:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "すべて表示" -#: js/messages.php:574 +#: js/messages.php:575 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." @@ -2436,159 +2448,120 @@ msgstr "" "ボックス、編集、コピー、削除のリンクに関連する機能は、保存後に動作しない場合" "があります。" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "元の位置" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "キャンセル" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "中断" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "インポートのデフォルト" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "ログファイルの閾値" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "最初にデータベースを選択してください" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "ほとんどの値は、直接ダブルクリック
することでも、編集できます。" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "ほとんどの値は、直接クリック
することでも、編集できます。" -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "リンク先へ移動する:" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Copy column name" msgid "Copy column name." msgstr "カラム名のコピー。" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "右クリックでカラム名をクリップボードにコピーしてください。" -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "パスワードを生成する" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "生成する" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "その他" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "パネルを表示" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "パネルを隠す" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "左のフレーム内にロゴを表示します。" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "メインフレームの詳細設定" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "メインフレームの詳細設定" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -#, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "テーブル" - -#: js/messages.php:633 -#, fuzzy -#| msgid "Views" -msgid "views" -msgstr "ビュー" - -#: js/messages.php:634 -#, fuzzy -#| msgid "Procedures" -msgid "procedures" -msgstr "プロシージャ" - -#: js/messages.php:635 -#, fuzzy -#| msgid "event" -msgid "events" -msgstr "イベント" - -#: js/messages.php:636 -#, fuzzy -#| msgid "Functions" -msgid "functions" -msgstr "関数" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "リクエストされたページが履歴にありません。おそらく有効期限切れです。" -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2598,427 +2571,427 @@ msgstr "" "します。最新バージョンは %s で、%s にリリースされています。" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", 最終安定バージョン:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "最新版" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "ビューを作成する" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "サーバのポート" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "エラー報告を送信" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "JavaScript の致命的なエラーが発生しました。エラー報告を送信しますか?" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "報告の設定の変更" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "報告の詳細を表示" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "全て無視" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "このクエリをもう一度実行しますか?" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "このブックマークを本当に削除しますか?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, fuzzy, php-format #| msgid "Executed queries" msgid "%s queries executed %s times in %s seconds." msgstr "実行されたクエリ" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "テーブルのコメント" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "検索結果を隠す" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "前月" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "翌月" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "今日" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "1 月" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "2 月" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "3 月" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "4 月" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "5 月" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "6 月" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "7 月" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "8 月" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "9 月" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "10 月" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "11 月" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "12 月" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "1 月" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "2 月" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "3 月" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "4 月" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "5 月" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "6 月" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "7 月" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "8 月" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "9 月" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "10 月" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "11 月" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "12 月" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "日" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "月" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "火" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "水" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "木" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "金" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "土" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "日" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "月" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "火" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "水" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "木" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "金" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "土" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "日" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "月" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "火" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "水" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "木" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "金" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "土" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "週" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "calendar-year-month" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "年" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "時" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "分" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "秒" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "テキスト入力項目の値を利用する" -#: js/messages.php:886 +#: js/messages.php:878 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "有効なポート番号ではありません" -#: js/messages.php:887 +#: js/messages.php:879 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "有効なポート番号を入力してください!" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "有効なポート番号ではありません" -#: js/messages.php:889 +#: js/messages.php:883 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "有効なポート番号ではありません" -#: js/messages.php:890 +#: js/messages.php:885 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "有効なポート番号を入力してください!" -#: js/messages.php:891 +#: js/messages.php:888 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "有効なポート番号を入力してください!" -#: js/messages.php:892 +#: js/messages.php:890 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" @@ -3030,53 +3003,53 @@ msgstr "正しい長さを入力してください!" msgid "Please enter the same value again" msgstr "有効なポート番号ではありません" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "有効なポート番号ではありません" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "有効なポート番号ではありません" -#: js/messages.php:898 +#: js/messages.php:917 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" msgstr "正しい長さを入力してください!" -#: js/messages.php:899 +#: js/messages.php:922 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "有効なポート番号ではありません" -#: js/messages.php:901 +#: js/messages.php:928 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "有効なポート番号ではありません" -#: js/messages.php:902 +#: js/messages.php:933 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "有効なポート番号を入力してください!" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "エラー" @@ -3166,11 +3139,12 @@ msgstr "サブクエリ" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3219,7 +3193,7 @@ msgstr "現在のエラーをスキップする" msgid "Explain" msgstr "EXPLAIN で確認" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "プロファイリング" @@ -3261,8 +3235,8 @@ msgid "History" msgstr "SQL 履歴" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3449,7 +3423,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "コピーしたテーブルに切り替える" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3457,26 +3431,26 @@ msgstr "" "サーバが応答しません (あるいはローカルサーバのソケットが正しく設定されていま" "せん)。" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "サーバが応答しません。" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" "データベースを含んでいるディレクトリのパーミッションを確認してください。" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "詳細…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "設定ファイルに定義されている管理ユーザ(controluser)での接続に失敗しました。" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3486,8 +3460,8 @@ msgstr "" msgid "Ascending" msgstr "昇順" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3654,8 +3628,8 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s 件 (テーブル %2$s)" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3699,123 +3673,123 @@ msgstr "全選択解除" msgid "Inside column:" msgstr "検索するカラム:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "変更したデータを保存する" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "カラムの順番を元に戻す" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 #, fuzzy #| msgid "Filters" msgid "Filter rows" msgstr "フィルタ" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Search in database" msgid "Search this table" msgstr "データベース内検索" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "先頭" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "前へ" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "次へ" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "最後" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "全部" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "行数:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "キーでソート" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "部分テキスト" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "全文" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "リレーションキー" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Display foreign key relationships" msgid "Display column for relations" msgstr "外部キーリレーションシップを表示する" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "バイナリの内容を表示する" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "BLOB の内容を表示する" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "ブラウザ変換機能を隠す" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "空間データをテキストで表示" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "空間データをバイナリで表示" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "行を削除しました" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "停止" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "正確な数字とは限りません。[doc@faq3-11]FAQ 3.11[/doc] をご覧ください" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -3823,50 +3797,51 @@ msgstr "正確な数字とは限りません。[doc@faq3-11]FAQ 3.11[/doc] を msgid "Your SQL query has been executed successfully." msgstr "SQL は正常に実行されました" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "このビューの最低行数。詳しくは%sドキュメント%sをご覧ください。" -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "行の表示" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "合計" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "クエリの実行時間 %01.4f 秒" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "チェックしたものを:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3874,25 +3849,25 @@ msgstr "チェックしたものを:" msgid "Check all" msgstr "すべてチェックする" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "印刷用画面" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "クエリ結果操作" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "グラフで表示する" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "空間情報のデータを視覚化する" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 #, fuzzy #| msgid "Link not found" msgid "Link not found!" @@ -4004,19 +3979,19 @@ msgstr "インデックスが定義されていません!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "インデックス" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -4025,24 +4000,24 @@ msgid "Action" msgstr "操作" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "キー名" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "ユニーク" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "圧縮" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "一意な値の数" @@ -4050,8 +4025,8 @@ msgstr "一意な値の数" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -4061,8 +4036,8 @@ msgid "Collation" msgstr "照合順序" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -4078,15 +4053,15 @@ msgstr "主キーを削除しました。" msgid "Index %s has been dropped." msgstr "インデックス %s を削除しました。" -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "削除" @@ -4125,12 +4100,13 @@ msgstr "ビュー" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4138,7 +4114,7 @@ msgstr "テーブル" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4147,8 +4123,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4156,41 +4132,41 @@ msgid "Search" msgstr "検索" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "挿入" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "特権" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "操作" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "SQL コマンドの追跡" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4201,16 +4177,16 @@ msgstr "トリガ" msgid "Database seems to be empty!" msgstr "データベースが空のようです!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "クエリ" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "ルーチン" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4218,22 +4194,22 @@ msgstr "ルーチン" msgid "Events" msgstr "イベント" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "デザイナ" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "Textarea columns" msgid "Central columns" msgstr "textarea の 1 行の文字数" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "データベース" @@ -4244,33 +4220,33 @@ msgid "User accounts" msgstr "ユーザグループ" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "バイナリログ" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "レプリケーション" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "変数" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "文字セット" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "エンジン" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "プラグイン" @@ -4591,7 +4567,7 @@ msgstr "インデックス名を PRIMARY に変更することはできません msgid "No index parts defined!" msgstr "インデックス部分が定義されていません!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5065,39 +5041,39 @@ msgstr "%s の機能には既知のバグがあります。%s をご覧くださ msgid "Click to toggle" msgstr "クリックでオン/オフ切り替え" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "アップロードファイル:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "ウェブサーバ上のアップロードディレクトリ %s から選択する:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "指定したアップロードディレクトリが利用できません。" -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 #, fuzzy #| msgid "There are no files to upload" msgid "There are no files to upload!" msgstr "アップロードファイルがありません" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "空にする" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "実行" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "印刷" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "ユーザ" @@ -5270,8 +5246,8 @@ msgid "Add new column" msgstr "カラムを追加する" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5337,19 +5313,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "%s を %s 以降にアップグレードしてください。" -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS 変数が書き換えられている可能性があります" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "なんらかの攻撃をされている可能性があります" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "グローバル変数から数値キーが検出されました" @@ -6317,7 +6293,7 @@ msgid "Remember file name template" msgstr "ファイル名のテンプレートを記憶しておく" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT 値を追加する" @@ -6360,7 +6336,7 @@ msgstr "phpMyAdmin 環境保管領域用のテーブルが不明" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "%s を追加する" @@ -8432,7 +8408,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "送信後もクエリボックスを画面上に残しておくかどうかを定義します。" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "クエリボックスを保持する" @@ -8787,103 +8763,35 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Open Document テキスト" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "テーブル %s を空にしました。" -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "ビュー %s を破棄しました" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "テーブル %s を削除しました" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "不明" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "カラムが選択されていません。" - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "カラムは正常に移動されました。" - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "テーブル %1$s は正常に変更されました。" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "クエリエラー" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "変更" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "インデックス" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "空間" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "全文" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "件数集計" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8899,6 +8807,14 @@ msgstr "" msgid "No data to display" msgstr "データが存在しません" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "テーブル %1$s は正常に変更されました。" + #: libraries/controllers/table/TableRelationController.php:212 #, fuzzy #| msgid "Thread %s was successfully killed." @@ -8911,25 +8827,85 @@ msgstr "スレッド %s は正常終了しました。" msgid "Internal relations were successfully updated." msgstr "内部リレーションを追加しました" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Table Search" msgid "Table search" msgstr "テーブル検索" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Zoom Search" msgid "Zoom search" msgstr "検索プロット" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "Hide find and replace criteria" msgid "Find and replace" msgstr "検索と置換の条件を隠す" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "カラムが選択されていません。" + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "カラムは正常に移動されました。" + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "クエリエラー" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "変更" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "インデックス" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "空間" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "全文" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "件数集計" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8939,7 +8915,7 @@ msgstr "%s 拡張がありません。PHP の設定をチェックしてみて msgid "possible deep recursion attack" msgstr "深い再帰的な攻撃を受けている可能性があります" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "変更なし" @@ -9014,7 +8990,7 @@ msgstr "作成" msgid "Create database:" msgstr "データベースを作成する" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "特権なし" @@ -9794,28 +9770,28 @@ msgid "Dump has been saved to file %s." msgstr "ダンプをファイル %s に保存しました。" #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "返り値が空でした (行数 0)。" -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "以下に示す構成が、作成もしくは変更されました。ここで次のことが行えます。" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 #, fuzzy #| msgid "View a structure's contents by clicking on its name" msgid "View a structure's contents by clicking on its name." msgstr "名前をクリックすることで構造内容を表示します。" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -9824,48 +9800,48 @@ msgid "" msgstr "" "「オプション」のリンクをクリックすることで対応する設定の変更が行えます。" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 #, fuzzy #| msgid "Edit structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link." msgstr "名前の後ろにある「構造」のリンクより構造の編集が行えます。" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "データベース %s に移動" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "%s に対する設定の変更を行います" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "テーブル %s に移動" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "%s の構造" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "ビュー %s に移動" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "%s つのカラムにインデックスを作成する" @@ -9888,70 +9864,70 @@ msgstr "関数" msgid "Binary" msgstr "バイナリ" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 #, fuzzy #| msgid "Because of its length,
this column might not be editable" msgid "Because of its length,
this column might not be editable." msgstr "長さによってはこのカラムを
編集できなくなる場合もあります。" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "バイナリ - 編集不可" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "または" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "ウェブサーバ上のアップロードディレクトリ" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "編集/挿入" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "%s 行づつ挿入を行う" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "続いて" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "新しい行として挿入する" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "新しい行として挿入し、エラーは無視する" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "挿入クエリ文を表示する" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "前のページに戻る" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "新しいレコードを追加する" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "このページに戻る" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "次の行を編集する" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9961,7 +9937,7 @@ msgstr "" "次の値に移動するときは TAB キーを使ってください。CTRL+カーソルキーを使うと自" "由に移動できます" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9973,11 +9949,11 @@ msgstr "" msgid "Value" msgstr "値" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "SQL クエリを表示" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "id %1$d の行を挿入しました" @@ -9993,41 +9969,41 @@ msgstr "なし" msgid "Convert to Kana" msgstr "全角カナに変換する" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table prefix:" msgstr "テーブル名の接頭辞を付け替える" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Copy table with prefix" msgid "Copy table with prefix:" msgstr "接頭辞を付け替えてテーブルをコピーする" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "付け替え元" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "付け替え先" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Add table prefix" msgid "Add table prefix:" msgstr "テーブル接頭辞の追加" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "追加する接頭辞" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "以下のクエリを本当に実行しますか?" @@ -10257,8 +10233,8 @@ msgstr "プロシージャ" msgid "Views:" msgstr "ビュー" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "表示" @@ -10299,10 +10275,9 @@ msgid_plural "%s results found" msgstr[0] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "Filter databases by name" -msgid "Filter databases by name or regex" -msgstr "データベース名を絞る" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -10311,12 +10286,6 @@ msgstr "データベース名を絞る" msgid "Clear fast filter" msgstr "系列をクリアする" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "Filter tables by name" -msgid "Filter by name or regex" -msgstr "テーブル名を絞る" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -10739,7 +10708,7 @@ msgstr "データベース名の変更" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10750,7 +10719,7 @@ msgstr "特権不足でアクセスできません!" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -10770,18 +10739,18 @@ msgstr "データベースの削除" msgid "Drop the database (DROP)" msgstr "データベースを削除する (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "構造のみ" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "構造とデータ" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "データのみ" @@ -10795,7 +10764,7 @@ msgstr "データベースのコピー先" msgid "CREATE DATABASE before copying" msgstr "コピーの前に CREATE DATABASE する" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "制約を追加する" @@ -10835,163 +10804,163 @@ msgstr "ストレージエンジン" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "テーブルを (データベース).(テーブル) にコピーする:" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "コピーしたテーブルに切り替える" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "テーブルメンテナンス" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "テーブルを分析する" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "テーブルをチェックする" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "テーブルをチェックする" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "テーブルのデフラグ" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "テーブル %s をフラッシュしました。" -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "テーブルをフラッシュする (FLUSH)" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "テーブルを最適化する" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "テーブルを修復する" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "データまたはテーブルの削除" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "テーブルを空にする (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "テーブルを削除する (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "分析" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "確認" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "最適化" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "再構築" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "修復" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "閉じる" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "パーティション管理" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "パーティション %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "パーティションを削除" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "参照整合性の確認:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "同じテーブルには移動できません!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "同じテーブルにはコピーできません!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "テーブル %s を %s に移動しました。" -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "テーブル %s を %s にコピーしました。" -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "テーブル %s を %s に移動しました。" -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "テーブル %s を %s にコピーしました。" -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "テーブル名が空です!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "この書式にはオプションはありません" @@ -11168,7 +11137,7 @@ msgstr "データのダンプオプション" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "テーブルのデータのダンプ" @@ -11192,21 +11161,21 @@ msgstr "定義" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "テーブルの構造" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "ビュー用の構造" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "ビュー用の代替構造" @@ -11312,7 +11281,7 @@ msgid "Database:" msgstr "データベース" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11423,7 +11392,7 @@ msgid "Data creation options" msgstr "生成オプション" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "挿入前にテーブルを空にする" @@ -11507,8 +11476,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11516,93 +11485,93 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Metadata Headers" msgid "Metadata" msgstr "メタデータヘッダ" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, fuzzy, php-format #| msgid "Metadata Headers" msgid "Metadata for %s" msgstr "メタデータヘッダ" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "作成日時:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "最終更新:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "最終検査:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "使用中" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "ダンプしたテーブルの制約" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "テーブルの制約" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "ダンプしたテーブルの制約" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "検索するテーブル:" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "値がゼロのものに対して AUTO_INCREMENT を使用しない" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT 値を追加する" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "テーブルに含まれている MIME タイプ" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "テーブルのリレーション" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "ビュー用の構造" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "データ読み込みエラー:" @@ -11866,9 +11835,9 @@ msgstr "リレーショナルスキーマ" msgid "Table of contents" msgstr "テーブルの内容" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "その他" @@ -12096,61 +12065,61 @@ msgstr "テキストの内容を SQL クエリとみなし、構文ハイライ msgid "Formats text as XML with syntax highlighting." msgstr "テキストの内容を SQL クエリとみなし、構文ハイライト表示します。" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "エラー: リレーションはすでに存在しています。" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "外部キーを追加しました" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "エラー: リレーションを追加できませんでした。" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "エラー: リレーション機能は無効になっています!" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "内部リレーションを追加しました" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "エラー: リレーションを追加できませんでした。" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "外部キーを追加しました" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "エラー: リレーションを追加できませんでした。" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "エラー: リレーションを追加できませんでした。" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -12205,80 +12174,80 @@ msgid "Please see the documentation on how to update your column_info table. " msgstr "" "column_comments テーブルの更新方法についてはドキュメントをご覧ください。" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "ブックマークされている SQL" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL 履歴" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "永続的な『最近使用したテーブル』" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "Persistent recently used tables" msgid "Persistent favorite tables" msgstr "永続的な『最近使用したテーブル』" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "永続的な『テーブルに対する環境設定』" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "ユーザ環境設定" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Configuration: %s" msgid "Configurable menus" msgstr "設定:%s" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 #, fuzzy #| msgid "Reload navigation frame" msgid "Hide/show navigation items" msgstr "ナビゲーションフレームの再読み込み" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Remember table's sorting" msgid "Remembering Designer Settings" msgstr "テーブルのソートを記憶する" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "無効なエクスポート形式" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "高度な機能の設定する簡単な方法:" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, fuzzy, php-format #| msgid "" #| "Create the needed tables with the examples/create_tables.sql." msgid "Create the needed tables with the %screate_tables.sql." msgstr "examples/create_tables.sql で必要なテーブルを作成します。" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "作ったテーブルにアクセスできる pma ユーザを作成します。" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -12286,22 +12255,22 @@ msgstr "" "設定ファイル (config.inc.php) で高度な機能を有効にします。" "config.sample.inc.php にある設定例をコピーするといいでしょう。" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "更新した設定ファイルを読み込むために phpMyAdmin にログインし直します。" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "説明がありません" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -12309,14 +12278,14 @@ msgid "" "configuration storage there." msgstr "phpMyAdmin 環境保管領域用のテーブルが不明" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "phpMyAdmin 環境保管領域用のテーブルが不明" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -12521,8 +12490,8 @@ msgstr "ユーザ名" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "ユーザ名" @@ -12530,7 +12499,7 @@ msgstr "ユーザ名" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "パスワード" @@ -13202,7 +13171,7 @@ msgstr[0] "%1$d 個のデータベースが正常に削除されました。" msgid "Plugin" msgstr "プラグイン" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "バージョン" @@ -13210,100 +13179,96 @@ msgstr "バージョン" msgid "Author" msgstr "作者" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "ライセンス" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "無効" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "特権はありません。" -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "GRANT 以外のすべての特権を付与する。" #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "データの読み込みを許可する。" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "データの挿入、置換を許可する。" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "データの修正を許可する。" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "データの削除を許可する。" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "新しいデータベースやテーブルの作成を許可する。" #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "データベースとテーブルの削除を許可する。" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "サーバ設定の再読み込み、サーバキャッシュのフラッシュを許可する。" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "サーバのシャットダウンを許可する。" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 #, fuzzy #| msgid "Allows viewing processes of all users" msgid "Allows viewing processes of all users." msgstr "全ユーザのプロセスを閲覧できるようにする。" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "データのインポート、エクスポートを許可する。" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "このバージョンの MySQL では無効です。" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "インデックスの作成、削除を許可する。" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "既存のテーブル構造の変更を許可する。" #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "データベース総一覧へのアクセスを許可する。" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -13314,41 +13279,41 @@ msgstr "" "ります。" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "一時テーブルの作成を許可する。" #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "現在のスレッドのテーブルロックを許可する。" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "レプリケーションスレーブでは有効にする必要があります。" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "スレーブ/マスタの照会を許可する。" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "新しいビューの作成を許可する。" #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "イベントスケジューラにイベントを設定できるようにする。" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 #, fuzzy #| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." @@ -13356,27 +13321,27 @@ msgstr "トリガの作成・削除を許可する。" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "SHOW CREATE VIEW クエリの実行を許可する。" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "ストアドルーチンの作成を許可する。" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "ストアドルーチンの修正と削除を許可する。" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "ユーザアカウントの作成・削除・名前の変更を許可する。" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "ストアドルーチンの実行を許可する。" @@ -13388,8 +13353,8 @@ msgstr "なし" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -13433,12 +13398,12 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "注意: オプションを 0 (ゼロ)に設定すると制限を解除します。" #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "単位時間内にサーバに送信可能なクエリ数を制限する。" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -13446,19 +13411,19 @@ msgstr "" "単位時間内に実行可能なテーブルないしデータベースの編集コマンド数を制限する。" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "単位時間内に可能な新規接続回数を制限する。" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "ユーザの同時接続数を制限する。" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -13466,7 +13431,7 @@ msgid "Routine" msgstr "ルーチン" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "特権テーブルの再読み込みなしでユーザ・特権の追加を許可する。" @@ -13485,14 +13450,14 @@ msgstr "ストアドルーチンの実行を許可する。" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "テーブル固有の特権" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -13504,7 +13469,7 @@ msgid "Administration" msgstr "管理" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "グローバル特権" @@ -13515,15 +13480,15 @@ msgid "Global" msgstr "グローバル" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "データベースに固有の特権" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "新しいテーブルの作成を許可する。" -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "テーブルの削除を許可する。" @@ -13546,7 +13511,7 @@ msgid "Native MySQL Authentication" msgstr "クッキー認証" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "ログイン情報" @@ -13571,8 +13536,8 @@ msgstr "ユーザ名" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Log name" msgid "Host name" @@ -13594,243 +13559,243 @@ msgstr "認証" msgid "Password Hashing Method" msgstr "パスワードハッシュ" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "%s のパスワードは正しく変更されました。" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "%s の特権を取り消しました。" -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "ユーザを追加する" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "ユーザ専用データベース" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "同名のデータベースを作成してすべての特権を与える。" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "ワイルドカード(ユーザ名_%)に該当するデータベースにすべての特権を与える。" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "データベース \"%s\" への全ての特権を与える。" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\" にアクセスできるユーザ" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "ビュー %s を破棄しました。" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "権限委譲" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "ユーザが存在しません。" -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "すべて" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "グローバル" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "データベース固有" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "ワイルドカード" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "データベース固有" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "特権を編集" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "取り消し" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "サーバの編集" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "元のユーザも残す。" -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "ユーザテーブルから元のユーザを削除する。" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "元のユーザの特権をすべて無効にしてから削除する。" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "ユーザテーブルから元のユーザを削除し、特権の再読み込みをする。" -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "ログイン情報の変更 / ユーザの複製" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "同じ特権を持つ新しいユーザを作る…" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "このカラムに固有の特権" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "選択したユーザを削除する" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "特権をすべて取り消してユーザを削除する。" -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "ユーザと同名のデータベースを削除する。" -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "削除するユーザが選択されていません!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "特権を再読み込みしています" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "選択されたユーザは正常に削除されました。" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "%s の特権を更新しました。" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "%s を削除中です" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "特権を正常に再読み込みしました。" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "ユーザ %s は既に存在します!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "%s に対する特権" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "ユーザ" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 #, fuzzy #| msgid "New" msgctxt "Create new user" msgid "New" msgstr "新規作成" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "特権を編集" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "Users" msgid "User account" msgstr "ユーザグループ" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "ユーザ概略" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13843,7 +13808,7 @@ msgstr "" "特権の内容が一致しなくなることがありますので、作業を続ける前に %s特権の再読み" "込み%s をしてください。" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13862,11 +13827,11 @@ msgstr "" "特権の内容が一致しなくなることがありますので、作業を続ける前に %s特権の再読み" "込み%s をしてください。" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "特権テーブルには選択したユーザがいません。" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "新しいユーザを追加しました。" @@ -14130,26 +14095,26 @@ msgstr "使用方法/セットアップ" msgid "Done dragging (rearranging) charts" msgstr "グラフの再配置/編集完了" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 #, fuzzy #| msgid "Enable highlighting" msgid "Enable charts dragging" msgstr "強調表示を有効にする" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "再描画間隔" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "1 段のグラフ数" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "モニタ環境設定" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -14157,7 +14122,7 @@ msgstr "" "モニタの環境設定をローカルに保存します。変更されているモニタ環境をエクスポー" "トできます。" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "デフォルトに戻す" @@ -14221,7 +14186,7 @@ msgid "Statements" msgstr "ステートメント" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "クエリ数" @@ -14246,17 +14211,17 @@ msgstr "生の値 (書式化なし) で表示する" msgid "Related links:" msgstr "関連リンク:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "クライアントが適切に接続を閉じなかったために中断された接続数。" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL サーバへの接続を試みて失敗した回数。" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -14265,16 +14230,16 @@ msgstr "" "一時バイナリログキャッシュを利用したものの binlog_cache_size の値を超過したた" "め一時ファイルにステートメントを保存したトランザクション数。" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "一時バイナリログキャッシュを使用したトランザクション数。" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "MySQL サーバへの接続試行回数 (成否に関わらず)。" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -14285,24 +14250,24 @@ msgstr "" "Created_tmp_disk_tables の値が大きい場合は tmp_table_size の値を増やしてディ" "スク上ではなくメモリ上に一時テーブルを構築した方がよいかもしれません。" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "mysqld が生成した一時ファイル数。" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "ステートメント実行中にサーバが自動生成したメモリ上の一時テーブル数。" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" "何らかのエラー (たぶんキーの重複) が発生したため INSERT DELAYED された行数。" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -14310,23 +14275,23 @@ msgstr "" "使用中の INSERT DELAYED ハンドラのスレッド数。INSERT DELAYED を適用するテーブ" "ルの数だけ固有のスレッドが用意されます。" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED で書き込まれた行数。" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "FLUSH 文の実行回数。" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "内部で COMMIT 文を実行した回数。" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "テーブルから行を削除した回数。" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -14336,7 +14301,7 @@ msgstr "" "ての情報を持っているか問い合わせることができます。これを開示と言いますが、" "Handler_discover はその開示されたタイムテーブルの数です。" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -14346,7 +14311,7 @@ msgstr "" "もインデックスの全スキャンを実行しているものと思われます。例えば SELECT col1 " "FROM foo を実行した場合 (col1 はインデックスに含まれているものとします)。" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -14354,7 +14319,7 @@ msgstr "" "キーに基づいて行を読み込んだリクエストの数。この値が高い場合はクエリとテーブ" "ルが適切にインデックスされているものと考えられます。" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -14364,7 +14329,7 @@ msgstr "" "エリに範囲指定をしているか、インデックススキャンを行っているときに増加しま" "す。" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -14372,7 +14337,7 @@ msgstr "" "キーの順序通りに前の行を読み込んだリクエストの数。この読み込みは主に ORDER " "BY … DESC の最適化に利用されます。" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -14384,7 +14349,7 @@ msgstr "" "キャンしなければならないクエリを大量に行っているか、結合の際のキーの使い方に" "不適切なところがあります。" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -14395,36 +14360,36 @@ msgstr "" "キャンを大量に実行しているためです。一般にこれはテーブルのインデックスが不適" "切か、クエリがインデックスを利用するように書かれていないことを意味します。" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "内部で ROLLBACK 文を実行した回数。" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "テーブル内の行を更新したリクエストの数。" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "テーブル内に行を挿入したリクエストの数。" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" "データが含まれるページの数 (ダーティページ、クリーンページの別を問わず)。" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "現在のダーティページの数。" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "フラッシュリクエストを受けたバッファプールのページ数。" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "空きページ数。" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -14434,7 +14399,7 @@ msgstr "" "るいは書き込んでいるページ、あるいは他の何らかの理由でフラッシュしたり削除し" "たりできなくなっているページの数です。" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -14446,11 +14411,11 @@ msgstr "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data という式でも計" "算できます。" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "ページのバッファプールサイズの合計。" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -14458,7 +14423,7 @@ msgstr "" "InnoDB が開始したランダム読み込みの回数。これはクエリがテーブルの大部分をラン" "ダムな順番でスキャンするときに発生します。" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -14466,11 +14431,11 @@ msgstr "" "InnoDB が開始したシーケンシャル読み込みの回数。これは InnoDB がシーケンシャル" "なテーブル全スキャンを行うときに発生します。" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB が実行した論理読み込みリクエストの数。" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -14478,7 +14443,7 @@ msgstr "" "InnoDB がバッファプールの内容を利用できず、シングルページ読み込みを行わなけれ" "ばならなかった論理読み込みの回数。" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -14492,51 +14457,51 @@ msgstr "" "そのウェイトの回数をカウントするものです。バッファプールの値が適切に設定され" "ていれば、この値は小さいはずです。" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB バッファプールへの書き込み回数。" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "これまでに fsync() を実行した回数。" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "現在保留されている fsync() の回数。" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "現在保留されている読み込みの数。" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "現在保留されている書き込みの数。" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "これまでのデータ読み込み量 (単位:バイト)。" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "データ読み込み回数の合計。" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "データ書き込み回数の合計。" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "これまでのデータの書き込み量 (単位:バイト)。" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "二重書き込みの実行回数と二重書き込みが発生したページ数。" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "二重書き込みの実行回数と二重書き込みが発生したページ数。" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -14544,35 +14509,35 @@ msgstr "" "ログバッファが小さすぎてフラッシュしないと作業を続行できなくなったために発生" "したウェイトの回数。" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "ログ書き込みリクエストの数。" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "ログファイルへの物理書き込みの回数。" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "ログファイルへの fsync 書き込みの回数。" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "保留中のログファイルへの fsync 回数。" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "保留中のログファイルへの書き込み回数。" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "ログファイルに書き込んだバイト数。" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "作成されたページ数。" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -14580,51 +14545,51 @@ msgstr "" "コンパイル時の InnoDB のページサイズ (デフォルト:16KB)。多くの値がページ単位" "で計算されますが、この値を使えば簡単にバイト単位に変換できます。" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "読み込んだページ数。" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "書き込んだページ数。" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "現在待機中の行ロックの数。" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "行ロック取得に要した平均時間 (単位:ミリ秒)。" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "行ロック取得に要した時間の合計 (単位:ミリ秒)。" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "行ロック取得に要した時間の最大値 (単位:ミリ秒)。" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "行ロック取得時に待機した回数。" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB テーブルから削除した行数。" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB テーブルに挿入した行数。" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB テーブルから読み込んだ行数。" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB テーブルで更新された行数。" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -14632,7 +14597,7 @@ msgstr "" "変更されてからディスクにフラッシュされていないキーキャッシュのキーブロックの" "数。以前は Not_flushed_key_blocks でした。" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -14640,7 +14605,7 @@ msgstr "" "キーキャッシュの未使用ブロックの数。キーキャッシュの使用率を調べるときに使え" "ます。" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -14649,15 +14614,15 @@ msgstr "" "キーキャッシュの使用済みブロックの数。この値はこれまで一度に使用されたブロッ" "クの最大数です。" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "使われているキーキャッシュの比率 (計算値)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "キャッシュからキーブロックを読み込んだリクエストの数。" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -14667,7 +14632,7 @@ msgstr "" "く key_buffer_size が小さすぎるためです。キャッシュミスの割合は Key_reads/" "Key_read_requests で計算できます。" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -14675,20 +14640,20 @@ msgstr "" "キーキャッシュミスの割合。読み込みリクエストに対する物理読み込みで算出。(計算" "値)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "キャッシュにキーブロックを書き込んだリクエストの数。" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "ディスクにキーブロックを物理書き込みした回数。" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "書き込みリクエストに対する物理書き込みの比率 (計算値)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -14698,17 +14663,17 @@ msgstr "" "クエリのプランを変えたときにコストがどう変わるか比較するときに便利です。デ" "フォルト値の 0 はまだ一度もクエリをコンパイルしていないという意味です。" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "サーバが起動してからの同時接続の最大数。" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "INSERT DELAYED キューの中で書き込まれるのを待っている行数。" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -14716,19 +14681,19 @@ msgstr "" "開いているテーブルの数。開いているテーブルが多い場合はおそらくテーブルキャッ" "シュの値が小さすぎます。" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "開いているファイルの数。" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "開いているストリームの数 (主にログの記録用です)。" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "開いているテーブルの数。" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -14738,19 +14703,19 @@ msgstr "" "ていることを示しています。FLUSH QUERY CACHE 文を発行することによって解消され" "るかもしれません。" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "クエリキャッシュの空きメモリ量。" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "キャッシュのヒット数。" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "キャッシュに追加されたクエリの数。" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14762,7 +14727,7 @@ msgstr "" "エリキャッシュは最後に使われた時刻が最も古いものから削除する (LRU) 戦略に従っ" "て削除するクエリを決めます。" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -14770,19 +14735,19 @@ msgstr "" "キャッシュされなかった (キャッシュできないか query_cache_type の設定でキャッ" "シュしないことになっている) クエリの数。" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "キャッシュに登録されているクエリの数。" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "クエリキャッシュの総ブロック数。" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "フェイルセーフレプリケーションの状態 (未実装)。" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -14790,11 +14755,11 @@ msgstr "" "インデックスを利用しなかった結合の数。この値が 0 でない場合はテーブルのイン" "デックスをよく確認してください。" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "参照テーブルで範囲検索をした結合の数。" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -14802,7 +14767,7 @@ msgstr "" "キーが指定されていなかったため一行ずつキーが使われているか確認した結合の数" "(0 でない場合はテーブルのインデックスをよく確認してください)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -14810,15 +14775,15 @@ msgstr "" "最初のテーブルで範囲指定された結合の数 (この値は大きくてもふつう問題ありませ" "ん)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "最初のテーブルを全スキャンした結合の数。" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "スレーブの SQL スレッドが現在開いている一時テーブルの数。" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -14826,23 +14791,23 @@ msgstr "" "レプリケーションスレーブの SQL スレッドがトランザクションを再試行した回数(起" "動時からの合計)。" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "このサーバがマスタに接続するスレーブである場合は ON になります。" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "slow_launch_time で指定された秒数以上に作成時間がかかったスレッドの数。" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "long_query_time で指定された秒数以上に時間のかかったクエリの数。" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -14851,23 +14816,23 @@ msgstr "" "ソートアルゴリズムが実行しなければならなかったマージの回数。この値が高い場合" "は sort_buffer_size システム変数の値を増やした方がよいでしょう。" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "範囲指定付きでソートが行われた回数。" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "ソート済の行数。" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "テーブルをスキャンしたときに実行されたソートの回数。" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "テーブルロックをすぐに取得できた回数。" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14878,7 +14843,7 @@ msgstr "" "フォーマンスに問題が生じている場合は、まずクエリを最適化してください。それで" "もだめならテーブルを分割するか、レプリケーションを利用してください。" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -14888,11 +14853,11 @@ msgstr "" "Connections で計算できます。この値が赤くなっている場合は thread_cache_size を" "大きくしてください。" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "現在開いている接続の数。" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14903,11 +14868,11 @@ msgstr "" "thread_cache_size の値を増やした方がよいかもしれません (スレッドの実装に問題" "がない場合はふつうあまりパフォーマンスは向上しません)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "スレッドキャッシュのヒット割合 (計算値)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "スリープしていないスレッドの数。" @@ -14916,77 +14881,77 @@ msgstr "スリープしていないスレッドの数。" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 #, fuzzy #| msgid "Users" msgid "User groups" msgstr "ユーザグループ" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "サーバのバージョン" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Database server" msgid "Database level tabs" msgstr "データベースサーバ" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table removal" msgid "Table level tabs" msgstr "テーブル名" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy #| msgid "Views" msgid "View users" msgstr "ビュー" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "ユーザを追加する" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "特権はありません。" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Column names: " msgid "Group name:" msgstr "カラム名: " -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "サーバのバージョン" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "データベースサーバ" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table removal" msgid "Table-level tabs" @@ -15052,21 +15017,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -15137,132 +15098,132 @@ msgstr "イベント %1$s を作成しました。" msgid "Variable name was expected." msgstr "テーブル名のテンプレート" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "テーブルの先頭" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 #, fuzzy #| msgid "Unexpected characters on line %s." msgid "Unexpected token." msgstr "予期しない文字 (行: %s)。" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 #, fuzzy #| msgid "The number of tables that are open." msgid "The name of the entity was expected." msgstr "開いているテーブルの数。" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "行を削除しました" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "データファイルの増分" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 #, fuzzy #| msgid "Other" msgid "Order" msgstr "その他" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "開始" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "合計時間:" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "時間" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "閉じる" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "時間" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "この SQL をブックマークする" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Label" msgid "Label:" msgstr "ラベル" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "すべてのユーザがこのブックマークを利用できるようにする" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created!" msgstr "ブックマーク %s を作成しました" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "デフォルトの表示クエリとしてブックマーク \"%s\" を使用する。" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "PHP コードとして表示" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -15275,7 +15236,7 @@ msgstr "" "ボックス、編集、コピー、削除のリンクに関連する機能は、保存後に動作しない場合" "があります。" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -15288,7 +15249,7 @@ msgstr "" "ボックス、編集、コピー、削除のリンクに関連する機能は、保存後に動作しない場合" "があります。" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "テーブル `%s` のインデックスに問題があります" @@ -15319,27 +15280,27 @@ msgstr "" msgid "Bind parameters" msgstr "パラメータが正しくありません!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "この SQL をブックマークする。" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "同名のブックマークは差し替える" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "デリミタ" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "実行したクエリをここに表示する" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "表示のみ" @@ -15384,115 +15345,115 @@ msgstr "%s への SQL コマンド追跡を非アクティブにする" msgid "Deactivate now" msgstr "すぐに非アクティブにする" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "作成日時" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "更新日時" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "世代を作成する" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "追跡レポート" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "構造のスナップショット" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "アクティブ" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "非アクティブ" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "追跡しているコマンド" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "レポートからこの追跡データを削除する" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "データが存在しません" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "種別:%1$s、期間:%2$s-%3$s、ユーザ:%4$sで絞り込む %5$s" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "SQL 文のダンプ (ファイルでダウンロード)" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "SQL 文のダンプ" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" "このオプションは、テーブルやそれに含まれるデータを置き換えるかもしれません。" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "SQL 文を実行" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "上の結果をエクスポートする %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "データ操作コマンド" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "データ定義コマンド" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "日時" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "ユーザ名" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "世代 %s のスナップショット (SQL コード)" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "なし" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "追跡データ定義コマンドは正常に削除されました" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "追跡データ操作コマンドは正常に削除されました" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -15500,68 +15461,68 @@ msgstr "" "作成された一時的なデータベースを使用してダンプを実行することができます。これ" "を実行できる特権を持っていることを確認してください。" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" "一時的なデータベースに対して実行しない場合は、この2行をコメントアウトします。" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "SQL 文をエクスポートしました。ダンプしたものをコピーするか実行するかしてくだ" "さい。" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "テーブル `%s` に対しての追跡レポート" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "%1$s に対する SQL コマンド追跡機能は、世代 %2$s でアクティブです。" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "%1$s に対する SQL コマンド追跡機能は、世代 %2$s で非アクティブです。" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format #| msgid "Create version %1$s of %2$s" msgid "Version %1$s of %2$s was deleted." msgstr "%2$s に世代 %1$s を作成" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" "世代 %1$s を作成しました。%2$s の SQL コマンド追跡機能はアクティブです。" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "SQL コマンドを追跡していないテーブル" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "テーブルを追跡する" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "SQL コマンドを追跡しているテーブル" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "最後の世代" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "追跡データを削除しています" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "世代" @@ -15569,11 +15530,11 @@ msgstr "世代" msgid "Manage your settings" msgstr "ユーザ環境設定の管理" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "設定を保存しました。" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -15683,7 +15644,7 @@ msgstr "データベースが存在しません" msgid "View dump (schema) of databases" msgstr "データベースのダンプ (スキーマ) 表示" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -15708,7 +15669,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "スレッド %s の終了に失敗しました。すでに閉じているようです。" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -16631,47 +16592,53 @@ msgstr "" msgid "Stacked" msgstr "積み上げ形式" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "グラフの題名" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "X 軸:" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "系列:" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "X 軸のラベル:" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "X 軸の値" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "Y 軸のラベル:" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Y 軸の値" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside column:" msgid "Series column:" msgstr "検索するカラム:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Values for column %s" msgid "Value Column:" msgstr "カラム %s に対しての値" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -16736,53 +16703,54 @@ msgstr "コメント" msgid "Drag to reorder" msgstr "ドラッグでカラムの入れ替え" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +#, fuzzy +#| msgid "Foreign key constraint" +msgid "Foreign key constraints" +msgstr "外部キー制約" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "アクション" + +#: templates/table/relation/common_form.phtml:10 +#, fuzzy +#| msgid "Constraints for table" +msgid "Constraint properties" +msgstr "テーブルの制約" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "外部キー制約" + +#: templates/table/relation/common_form.phtml:60 +#, fuzzy +#| msgid "Add constraints" +msgid "+ Add constraint" +msgstr "制約を追加する" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "内部リレーション" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "内部リレーション" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "対応する外部リレーションが存在する場合、内部リレーションは必要ありません。" -#: templates/table/relation/common_form.phtml:37 -#, fuzzy -#| msgid "Foreign key constraint" -msgid "Foreign key constraints" -msgstr "外部キー制約" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "アクション" - -#: templates/table/relation/common_form.phtml:41 -#, fuzzy -#| msgid "Constraints for table" -msgid "Constraint properties" -msgstr "テーブルの制約" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "外部キー制約" - -#: templates/table/relation/common_form.phtml:83 -#, fuzzy -#| msgid "Add constraints" -msgid "+ Add constraint" -msgstr "制約を追加する" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16933,7 +16901,7 @@ msgid "at beginning of table" msgstr "テーブルの先頭" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16982,7 +16950,7 @@ msgstr "パーティション有り" msgid "Edit partitioning" msgstr "パーティションを削除" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "ビューを編集する" @@ -18476,6 +18444,41 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert は 0 に設定されています" +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "テーブル" + +#, fuzzy +#~| msgid "Views" +#~ msgid "views" +#~ msgstr "ビュー" + +#, fuzzy +#~| msgid "Procedures" +#~ msgid "procedures" +#~ msgstr "プロシージャ" + +#, fuzzy +#~| msgid "event" +#~ msgid "events" +#~ msgstr "イベント" + +#, fuzzy +#~| msgid "Functions" +#~ msgid "functions" +#~ msgstr "関数" + +#, fuzzy +#~| msgid "Filter databases by name" +#~ msgid "Filter databases by name or regex" +#~ msgstr "データベース名を絞る" + +#, fuzzy +#~| msgid "Filter tables by name" +#~ msgid "Filter by name or regex" +#~ msgstr "テーブル名を絞る" + #, fuzzy #~| msgid "Tracking report" #~ msgid "Taking you to %s." diff --git a/po/ka.po b/po/ka.po index 76dc123786..5e5f2a1c41 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Georgian Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "ატრიბუტები" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 #, fuzzy #| msgid "Change" msgid "Taking you to next step…" msgstr "შეცვლა" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 #, fuzzy @@ -2145,285 +2157,285 @@ msgstr "" msgid "End of step" msgstr "სტრიქონის დასასრული" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "შემოწირულობა" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "პრივილეგიების დამატება შემდეგი ცხრილისათვის" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "შენახვა" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy #| msgid "SQL Query box" msgid "Hide search criteria" msgstr "SQL Query box" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy #| msgid "SQL Query box" msgid "Show search criteria" msgstr "SQL Query box" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "ძებნა" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "სვეტების სახელები" -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "სვეტების სახელები" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "SQL Query box" msgid "Hide find and replace criteria" msgstr "SQL Query box" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "SQL Query box" msgid "Show find and replace criteria" msgstr "SQL Query box" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "ველის სვეტების დამატება/წაშლა" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Data pointer size" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "იგნორირება" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "ასლი" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "" -#: js/messages.php:508 +#: js/messages.php:509 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Lines terminated by" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Add an inner ring" msgid "Inner ring" msgstr "შიდა ქსელის დამატება" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Lines terminated by" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "გვერდის ნომერი:" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 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:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgctxt "PDF" @@ -2431,275 +2443,236 @@ msgstr "ყველას მონიშნვა" msgid "Open page" msgstr "pages" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "ყველას მონიშნვა" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "გთხოვთ აირჩიოთ დასარედაქტირებელი გვერდი" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 #, fuzzy #| msgid "Relational schema" msgid "Export relational schema" msgstr "Relational schema" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "ცვლილებები შენახულია" -#: js/messages.php:550 +#: js/messages.php:551 #, fuzzy, php-format #| msgid "Values for column %s" msgid "Add an option for column \"%s\"." msgstr "ველების რაოდენობა სვეტებისათვის %s" -#: js/messages.php:551 +#: js/messages.php:552 #, fuzzy, php-format #| msgid "%1$d row(s) affected." msgid "%d object(s) created." msgstr "%1$d row(s) affected." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Submit" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "სვეტების სახელები" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "ყველაფრის ჩვენება" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "საწყისი მდებარეობა" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "გაუქმება" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "შეწყვეტილია" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 #, fuzzy #| msgid "Import files" msgid "Import status" msgstr "ფაილების შემოტანა" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "ცხრილების არჩევა" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 #, fuzzy msgid "Go to link:" msgstr "მონაცემთა ბაზები არაა" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "სვეტების სახელები" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "პაროლის დაგენერირება" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "დაგენერირება" -#: js/messages.php:620 +#: js/messages.php:621 #, fuzzy #| msgid "Mon" msgid "More" msgstr "ორშ" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "ყველაფრის ჩვენება" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "ახალი ველის დამატება" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "მარცხენა ჩარჩოში ლოგოს ჩვენება" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 #, fuzzy #| msgid "Customize export options" msgid "Link with main panel" msgstr "Customize export options" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 #, fuzzy #| msgid "Customize export options" msgid "Unlink from main panel" msgstr "Customize export options" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -#, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "ცხრილები" - -#: js/messages.php:633 -#, fuzzy -#| msgid "View" -msgid "views" -msgstr "ხედო" - -#: js/messages.php:634 -#, fuzzy -#| msgid "Procedures" -msgid "procedures" -msgstr "პროცედურები" - -#: js/messages.php:635 -#, fuzzy -#| msgid "Event" -msgid "events" -msgstr "მოვლენა" - -#: js/messages.php:636 -#, fuzzy -#| msgid "Functions" -msgid "functions" -msgstr "ფუნქციები" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2707,140 +2680,140 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "უკანასკნელ ვერსიაზე შემოწმება" -#: js/messages.php:649 +#: js/messages.php:641 #, fuzzy msgid "up to date" msgstr "მონაცემთა ბაზები არაა" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 #, fuzzy msgid "Create view" msgstr "Create relation" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "სერვერის პორტი" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "სერვერის პორტი" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "Other core settings" msgid "Change report settings" msgstr "Other core settings" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Report title" msgid "Show report details" msgstr "Report title" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "იგნორირება" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 #, fuzzy msgid "Execute this query again?" msgstr "SQL მოთხოვნები" -#: js/messages.php:701 +#: js/messages.php:693 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "ნამდვილად გსურთ " -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "ცხრილის კომენტარები" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy #| msgid "SQL Query box" msgid "Hide arguments" msgstr "SQL Query box" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "წინა" -#: js/messages.php:748 +#: js/messages.php:740 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2848,96 +2821,96 @@ msgid "Next" msgstr "შემდეგი" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 #, fuzzy #| msgid "Total" msgid "Today" msgstr "სულ" -#: js/messages.php:755 +#: js/messages.php:747 #, fuzzy #| msgid "Binary" msgid "January" msgstr "ბინარული" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:749 #, fuzzy #| msgid "Mar" msgid "March" msgstr "მარ" -#: js/messages.php:758 +#: js/messages.php:750 #, fuzzy #| msgid "Apr" msgid "April" msgstr "აპრ" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "მაი" -#: js/messages.php:760 +#: js/messages.php:752 #, fuzzy #| msgid "Jun" msgid "June" msgstr "ივნ" -#: js/messages.php:761 +#: js/messages.php:753 #, fuzzy #| msgid "Jul" msgid "July" msgstr "ივლ" -#: js/messages.php:762 +#: js/messages.php:754 #, fuzzy #| msgid "Aug" msgid "August" msgstr "აგვ" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:756 #, fuzzy #| msgid "Oct" msgid "October" msgstr "ოქტ" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "იან" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "თებ" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "მარ" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "აპრ" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2945,78 +2918,78 @@ msgid "May" msgstr "მაი" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "ივნ" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "ივლ" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "აგვ" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "სექ" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "ოქტ" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "ნოე" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "დეკ" -#: js/messages.php:801 +#: js/messages.php:793 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "კვი" -#: js/messages.php:802 +#: js/messages.php:794 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "ორშ" -#: js/messages.php:803 +#: js/messages.php:795 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "სამ" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:798 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "პარ" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3024,86 +2997,86 @@ msgid "Sun" msgstr "კვი" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "ორშ" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "სამ" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "ოთხ" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "ხუთ" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "პარ" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "შაბ" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "კვი" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "ორშ" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "სამ" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 #, fuzzy #| msgid "Wed" msgid "We" msgstr "ოთხ" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "ხუთ" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "პარ" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "შაბ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 #, fuzzy #| msgid "Wiki" msgid "Wk" @@ -3112,81 +3085,81 @@ msgstr "ვიკი" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "არაა" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:864 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "in use" -#: js/messages.php:873 +#: js/messages.php:865 #, fuzzy #| msgid "per second" msgid "Second" msgstr "წამში" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "გამოიყენე ტექსტური ველი" -#: js/messages.php:886 +#: js/messages.php:878 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:887 +#: js/messages.php:879 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:889 +#: js/messages.php:883 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:890 +#: js/messages.php:885 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:891 +#: js/messages.php:888 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:892 +#: js/messages.php:890 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" @@ -3198,53 +3171,53 @@ msgstr "პორტის ნომერი არასწორია" msgid "Please enter the same value again" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:898 +#: js/messages.php:917 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:899 +#: js/messages.php:922 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:901 +#: js/messages.php:928 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:902 +#: js/messages.php:933 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "შეცდომა" @@ -3332,11 +3305,12 @@ msgstr "მოთხოვნაში" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3382,7 +3356,7 @@ msgstr "" msgid "Explain" msgstr "SQL-ის ახსნა" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Profiling" @@ -3426,8 +3400,8 @@ msgid "History" msgstr "SQL history" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3609,7 +3583,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -3617,26 +3591,26 @@ msgid "" "configured)." msgstr "(or the local MySQL server's socket is not correctly configured)" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "სერვერი არ პასუხობს" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "დეტალები…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3646,8 +3620,8 @@ msgstr "" msgid "Ascending" msgstr "ზრდადობით" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3818,8 +3792,8 @@ msgstr[0] "%s match(es) inside table %s" msgstr[1] "%s match(es) inside table %s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3867,30 +3841,30 @@ msgstr "მონიშნვის მოხსნა" msgid "Inside column:" msgstr "სვეტში:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 #, fuzzy #| msgid "Save directory" msgid "Save edited data" msgstr "დირექტორიის შენახვა" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 #, fuzzy #| msgid "CHAR textarea columns" msgid "Restore column order" msgstr "CHAR textarea columns" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 #, fuzzy msgid "Filter rows" msgstr "ფაილები" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Search in database" msgid "Search this table" msgstr "მონაცემთა ბაზაში ძებნა" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 #, fuzzy #| msgid "Begin" @@ -3898,7 +3872,7 @@ msgctxt "First page" msgid "Begin" msgstr "დასაწყისი" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 #, fuzzy @@ -3907,7 +3881,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "წინა" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 #, fuzzy @@ -3916,7 +3890,7 @@ msgctxt "Next page" msgid "Next" msgstr "შემდეგი" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 #, fuzzy #| msgid "End" @@ -3924,85 +3898,85 @@ msgctxt "Last page" msgid "End" msgstr "დასასრული" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "ყველა" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of fields" msgid "Number of rows:" msgstr "ველების რაოდენობა" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Partial Texts" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Full Texts" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Disable foreign key checks" msgid "Display column for relations" msgstr "Disable foreign key checks" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "ორობითი შიგთავსის ჩვენება" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "ინფორმაცია ბრაუზერის შესახებ" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "სტრიქონი წაიშალა" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "შეიძლება იყოს მიახლოებითი. იხილეთ [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -4010,49 +3984,50 @@ msgstr "შეიძლება იყოს მიახლოებითი. msgid "Your SQL query has been executed successfully." msgstr "%s databases have been dropped successfully." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "სულ" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "მოთხოვნას დასჭირდა %01.4f წმ" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -4060,27 +4035,27 @@ msgstr "" msgid "Check all" msgstr "ყველას შემოწმება" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "ხედის ამობეჭდვა" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF სქემის ჩვენება" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 #, fuzzy #| msgid "Link not found" msgid "Link not found!" @@ -4182,19 +4157,19 @@ msgstr "ინდექსი არაა განსაზღვრული! #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "ინდექსები" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -4203,24 +4178,24 @@ msgid "Action" msgstr "მოქმედება" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "უნიკალური" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "შეკუმშული" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Cardinality" @@ -4228,8 +4203,8 @@ msgstr "Cardinality" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -4239,8 +4214,8 @@ msgid "Collation" msgstr "კოლაცია" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -4256,15 +4231,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "" @@ -4301,12 +4276,13 @@ msgstr "ხედო" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4314,7 +4290,7 @@ msgstr "ცხრილი" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4323,8 +4299,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4332,41 +4308,41 @@ msgid "Search" msgstr "ძებნა" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "ჩასმა" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "პრივილეგიები" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "მოქმედებები" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4377,16 +4353,16 @@ msgstr "ტრიგერები" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "მოთხოვნა" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Routines" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4394,22 +4370,22 @@ msgstr "Routines" msgid "Events" msgstr "მოვლენები" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "შემქნელი" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "CHAR textarea columns" msgid "Central columns" msgstr "CHAR textarea columns" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "მონაცემთა ბაზები" @@ -4420,33 +4396,33 @@ msgid "User accounts" msgstr "მომხმარებელი" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "ბინარული ჟურნალი" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "რეპლიკაცია" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "ცვლადები" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "სიმბოლოთა ნაკრებები" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "ძრავები" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4778,7 +4754,7 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5203,40 +5179,40 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "web server upload directory" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 #, fuzzy #| msgid "There are no configured servers" msgid "There are no files to upload!" msgstr "There are no configured servers" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "ცარიელი" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "დაბეჭდვა" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 #, fuzzy #| msgid "User" msgid "Users" @@ -5419,8 +5395,8 @@ msgid "Add new column" msgstr "%s ველის დამატება" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5484,19 +5460,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -6437,7 +6413,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -6480,7 +6456,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "" @@ -8316,7 +8292,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 #, fuzzy #| msgid "SQL Query box" msgid "Retain query box" @@ -8621,109 +8597,35 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Open Document Text" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "Field %s has been dropped." msgid "View %s has been dropped." msgstr "Field %s has been dropped" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Field %s has been dropped." msgid "Table %s has been dropped." msgstr "Field %s has been dropped" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "უცნობი" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "" - -#: libraries/controllers/TableStructureController.php:484 -#, 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.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -#, fuzzy -#| msgid "Ignore errors" -msgid "Query error" -msgstr "შეცდომების იგნორირება" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "შეცვლა" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "ინდექსი" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Fulltext" - -#: libraries/controllers/TableStructureController.php:1201 -#, fuzzy -#| msgid "Session value" -msgid "Distinct values" -msgstr "სესიის მნიშვნელობა" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8739,6 +8641,14 @@ msgstr "" msgid "No data to display" msgstr "მონაცემთა ბაზები არაა" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "" + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "" @@ -8749,25 +8659,91 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr "Internal relations" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Search" msgid "Table search" msgstr "ძებნა" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Search" msgid "Zoom search" msgstr "ძებნა" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "SQL Query box" msgid "Find and replace" msgstr "SQL Query box" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:485 +#, fuzzy +#| msgid "%s databases have been dropped successfully." +msgid "The columns have been moved successfully." +msgstr "%s databases have been dropped successfully." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +#, fuzzy +#| msgid "Ignore errors" +msgid "Query error" +msgstr "შეცდომების იგნორირება" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "შეცვლა" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "ინდექსი" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Fulltext" + +#: libraries/controllers/table/TableStructureController.php:1209 +#, fuzzy +#| msgid "Session value" +msgid "Distinct values" +msgstr "სესიის მნიშვნელობა" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8777,7 +8753,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "ცვლილების გარეშე" @@ -8850,7 +8826,7 @@ msgstr "შექმნა" msgid "Create database:" msgstr "ახალი მონაცემთა ბაზის შექმნა" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "პრივილეგიები არაა" @@ -9601,72 +9577,72 @@ msgid "Dump has been saved to file %s." msgstr "" #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, fuzzy, php-format msgid "Go to database: %s" msgstr "მონაცემთა ბაზები არაა" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Missing data for %s" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, fuzzy, php-format msgid "Go to table: %s" msgstr "მონაცემთა ბაზები არაა" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "მხოლოდ სტრუქტურა" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, fuzzy, php-format #| msgid "Export views" msgid "Go to view: %s" msgstr "Export defaults" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" @@ -9690,79 +9666,79 @@ msgstr "ფუნქცია" msgid "Binary" msgstr "ბინარული" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "Because of its length,
this field might not be editable " -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "ან" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "web server upload directory" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "ჩასმა" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Restart insertion with %s rows" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "და შემდეგ" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "ახალი სტრიქონის ჩამატება" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 #, fuzzy msgid "Show insert query" msgstr "Showing SQL query" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "წინა გვერდზე დაბრუნება" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "სხვა ახალი სტრიქონის დამატება" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "ამ გვერდზე დაბრუნება" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "შემდეგი სტრიქონის რედაქტირება" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9774,11 +9750,11 @@ msgstr "" msgid "Value" msgstr "მნიშვნელობა" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "ჩამატებული სტრიქონის id: %1$d" @@ -9796,45 +9772,45 @@ msgstr "არაა" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix:" msgstr "Replace table data with file" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix:" msgstr "Replace table data with file" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 #, fuzzy #| msgid "Fri" msgid "From" msgstr "პარ" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Add new field" msgid "Add table prefix:" msgstr "ახალი ველის დამატება" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 #, fuzzy #| msgid "Add new field" msgid "Add prefix" msgstr "ახალი ველის დამატება" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -10066,8 +10042,8 @@ msgstr "პროცედურები" msgid "Views:" msgstr "ხედო" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "ჩვენება" @@ -10107,10 +10083,9 @@ msgid_plural "%s results found" msgstr[0] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "table name" -msgid "Filter databases by name or regex" -msgstr "ცხრილის სახელი" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -10119,12 +10094,6 @@ msgstr "ცხრილის სახელი" msgid "Clear fast filter" msgstr "ფაილის სახის შენახვა" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "table name" -msgid "Filter by name or regex" -msgstr "ცხრილის სახელი" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -10530,7 +10499,7 @@ msgstr "ახალი მონაცემთა ბაზის შექმ #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -10539,7 +10508,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -10560,18 +10529,18 @@ msgstr "" msgid "Drop the database (DROP)" msgstr "მონაცემთა ბაზები არაა" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "მხოლოდ სტრუქტურა" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "სტრუქტურა და მონაცემები" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "მხოლოდ მონაცემები" @@ -10585,7 +10554,7 @@ msgstr "Copy database to" msgid "CREATE DATABASE before copying" msgstr "" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "" @@ -10625,63 +10594,63 @@ msgstr "" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "ცხრილის შემოწმება" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "ცხრილის შემოწმება" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Flush the table (\"FLUSH\")" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "ცხრილის ოპტიმიზება" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "ცხრილის აღდგენა" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 #, fuzzy @@ -10689,103 +10658,103 @@ msgstr "ცხრილის აღდგენა" msgid "Delete data or table" msgstr "Dumping data for table" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "მაგიდების წაშლა (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "შემოწმება" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "ოპტიმიზება" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "აღდგენა" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Count tables" msgid "Coalesce" msgstr "ცხრილების დათვლა" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "დანაყოფი %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Table %s has been dropped" -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Table %s has been dropped" -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "ცხრილის სახელი ცარიელია!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10972,7 +10941,7 @@ msgstr "მონაცემთა ბაზის ჩვენების პ #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -10998,21 +10967,21 @@ msgstr "აღწერილობა" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "სტრუქტურა ხედისათვის" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -11130,7 +11099,7 @@ msgid "Database:" msgstr "მონაცემთა ბაზა" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11245,7 +11214,7 @@ msgid "Data creation options" msgstr "გარდაქმნის პარამეტრები" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -11314,8 +11283,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11323,96 +11292,96 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Export type" msgid "Metadata" msgstr "Export type" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 #, fuzzy #| msgid "Creation" msgid "Creation:" msgstr "შეიქმნა" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 #, fuzzy #| msgid "Last update" msgid "Last update:" msgstr "უკანასკნელი განახლება" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for dumped tables" msgstr "ცხრილ(ებ)ში:" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "ცხრილ(ებ)ში:" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Add AUTO_INCREMENT value" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Add AUTO_INCREMENT value" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "სტრუქტურა ხედისათვის" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11672,9 +11641,9 @@ msgstr "" msgid "Table of contents" msgstr "" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "ექსტრა" @@ -11910,61 +11879,61 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been added." msgstr "ცვლილებები შენახულია" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "ფაილის წაკითხვა ვერ მოხერხდა" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "Internal relations" msgid "Internal relation has been added." msgstr "Internal relations" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be added!" msgstr "ფაილის წაკითხვა ვერ მოხერხდა" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been removed." msgstr "ცვლილებები შენახულია" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "ფაილის წაკითხვა ვერ მოხერხდა" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be removed!" msgstr "ფაილის წაკითხვა ვერ მოხერხდა" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Internal relations" msgid "Internal relation has been removed." @@ -12017,112 +11986,112 @@ msgstr "ინფორმაცია ბრაუზერის შესა msgid "Please see the documentation on how to update your column_info table. " msgstr "" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 #, fuzzy #| msgid "Persistent connections" msgid "Persistent recently used tables" msgstr "Persistent connections" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "Persistent connections" msgid "Persistent favorite tables" msgstr "Persistent connections" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Configuration file" msgid "Configurable menus" msgstr "კონფიგურაციის ფაილი" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 #, fuzzy msgid "Hide/show navigation items" msgstr "Customize navigation frame" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Rename table to" msgid "Remembering Designer Settings" msgstr "Rename table to" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy msgid "Saving export templates" msgstr "Export type" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -12306,8 +12275,8 @@ msgstr "მომხმარებლის სახელი" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "მომხმარებლის სახელი" @@ -12315,7 +12284,7 @@ msgstr "მომხმარებლის სახელი" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "პაროლი" @@ -13040,7 +13009,7 @@ msgstr[0] "%s databases have been dropped successfully." msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 #, fuzzy msgid "Version" msgstr "სპარსული" @@ -13049,100 +13018,96 @@ msgstr "სპარსული" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "გათიშულია" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "პრივილეგიები არაა." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "შეიცავს ყველა პრივილეგიას GRANT-ის გამოკლებით." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "" #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "" #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -13150,65 +13115,65 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "" #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "" #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -13222,8 +13187,8 @@ msgstr "არაა" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -13267,31 +13232,31 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -13299,7 +13264,7 @@ msgid "Routine" msgstr "Routines" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -13314,14 +13279,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -13331,7 +13296,7 @@ msgid "Administration" msgstr "ადმინისტრირება" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "გლობალური პრივილეგიები" @@ -13342,15 +13307,15 @@ msgid "Global" msgstr "გლობალულრი" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "" @@ -13373,7 +13338,7 @@ msgid "Native MySQL Authentication" msgstr "Host authentication order" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "" @@ -13398,8 +13363,8 @@ msgstr "მომხმარებლის სახელი" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Log name" msgid "Host name" @@ -13421,124 +13386,124 @@ msgstr "ავთენტიფიკაციის ტიპი" msgid "Password Hashing Method" msgstr "Password Hashing" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "მომხმარებლის დამატება" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "მონაცემთა ბაზა მომხმარებლისთვის" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" "იგივე სახელის მქონე მონაცემთა ბაზის შექმნა და ყველა პრივილეგიის მინიჭება." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "ყველა პრივილეგიის მინიჭება მონაცემთა ბაზისთვის \"%s\"." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "View %s has been dropped" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Grant" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "მომხმარებლ(ებ)ის პოვნა ვერ მოხერხდა." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "ნებისმიერი" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "გლობალულრი" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "wildcard" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "პრივილეგიების რედაქტირება" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "სერვერის რედაქტირება" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… ძველის შენახვა." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… ძველი მომხმარებლის მომხმარებლების ცხრილიდან წაშლა." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -13546,119 +13511,119 @@ msgstr "" "… ძველი მომხმარებლის მომხმარებლების სიიდან წაშლა და შემდეგ პრივილეგიების " "გადატვირთვა." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "იგივე პრივილეგიების მქონე ახალი მომხმარებლის შექმნა და …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Check Privileges" msgid "Routine-specific privileges" msgstr "პრივილეგიების შემოწმება" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Remove selected users" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "%s-ის წაშლა" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "მომხმარებელი %s უკვე არსებობს!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "პრივილეგიები" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "მომხმარებელი" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "პრივილეგიების რედაქტირება" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "User" msgid "User account" msgstr "მომხმარებელი" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "მომხმარებლის მიმოხილვა" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13667,7 +13632,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -13676,11 +13641,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "თქვენ დაამატეთ ახალი მომხმარებელი." @@ -13930,33 +13895,33 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 #, fuzzy msgid "Refresh rate" msgstr "განახლება" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 #, fuzzy #| msgid "CHAR textarea columns" msgid "Chart columns" msgstr "CHAR textarea columns" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" @@ -14022,7 +13987,7 @@ msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -14055,35 +14020,35 @@ msgstr "Show open tables" msgid "Related links:" msgstr "Relations" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL სერვერთან დაკავშირება ვერ მოხერხდა" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -14091,78 +14056,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -14170,7 +14135,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -14178,42 +14143,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -14221,33 +14186,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -14256,244 +14221,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "შემოტანილი ფაილების ფორმატი" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14501,99 +14466,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14601,18 +14566,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14620,13 +14585,13 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Key cache" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -14635,77 +14600,77 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 #, fuzzy #| msgid "User" msgid "User groups" msgstr "მომხმარებელი" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "სერვერის ვერსია" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Database for user" msgid "Database level tabs" msgstr "მონაცემთა ბაზა მომხმარებლისთვის" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table removal" msgid "Table level tabs" msgstr "ცხრილის სახელი" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy #| msgid "View" msgid "View users" msgstr "ხედო" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "მომხმარებლის დამატება" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "პრივილეგიები არაა." -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "სვეტების სახელები" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "სერვერის ვერსია" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Database for user" msgid "Database-level tabs" msgstr "მონაცემთა ბაზა მომხმარებლისთვის" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table removal" msgid "Table-level tabs" @@ -14769,21 +14734,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "Remove selected users" msgid "An alias was expected." @@ -14846,137 +14807,137 @@ msgstr "Table %1$s has been created." msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "ცხრილის დასაწყისში" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "სტრიქონი წაიშალა" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "მონაცემთა ფაილები" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy #| msgid "Startup" msgid "State" msgstr "Startup" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "სულ" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "დრო" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "დრო" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Label" msgid "Label:" msgstr "Label" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 #, fuzzy #| msgid "Bookmark table" msgid "Bookmark not created!" msgstr "ცხრილის ჩანიშვნა" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "PHP კოდის სახით ჩვენება" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -15007,27 +14968,27 @@ msgstr "" msgid "Bind parameters" msgstr "შეუსაბამობაა პარამეტრებში!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "გამყოფი" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "" @@ -15074,105 +15035,105 @@ msgstr "Missing data for %s" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "შეიქმნა" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy msgid "Delete version" msgstr "Create relation" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "სნეიფშუთის სტრუქტურა" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Allows inserting and replacing data." -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "მონაცემთა ბაზები არაა" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, fuzzy, php-format msgid "Export as %s" msgstr "Export defaults" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 #, fuzzy msgid "Date" msgstr "მონაცემები" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 #, fuzzy msgid "Username" msgstr "მომხმარებელი:" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -15180,78 +15141,78 @@ msgctxt "None for default" msgid "None" msgstr "არაა" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Create relation" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 #, fuzzy msgid "Track table" msgstr "ცხრილის შემოწმება" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "ნანახი ცხრილები" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking" msgstr "Allows inserting and replacing data." -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "ვერსია" @@ -15261,13 +15222,13 @@ msgstr "ვერსია" msgid "Manage your settings" msgstr "Other core settings" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." msgstr "ცვლილებები შენახულია" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -15378,7 +15339,7 @@ msgstr "მონაცემთა ბაზები არაა" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -15403,7 +15364,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -16358,53 +16319,59 @@ msgstr "" msgid "Stacked" msgstr "შეკუმშული" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Report title" +msgid "Chart title:" +msgstr "Report title" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 #, fuzzy #| msgid "SQL queries" msgid "Series:" msgstr "SQL მოთხოვნები" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "მნიშვნელობა" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "მნიშვნელობა" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside column:" msgid "Series column:" msgstr "სვეტში:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Values for column %s" msgid "Value Column:" msgstr "ველების რაოდენობა სვეტებისათვის %s" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -16471,58 +16438,59 @@ msgstr "კომენტარი" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 -#, fuzzy -#| msgid "Internal relations" -msgid "Internal relations" -msgstr "Internal relations" - -#: templates/table/relation/common_form.phtml:11 -#, fuzzy -#| msgid "Internal relations" -msgid "Internal relation" -msgstr "Internal relations" - -#: templates/table/relation/common_form.phtml:14 -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "" - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 #, fuzzy #| msgid "Foreign key limit" msgid "Foreign key constraints" msgstr "Foreign key limit" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 msgid "Actions" msgstr "მოქმედებები" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 #, fuzzy #| msgid "Routines" msgid "Constraint properties" msgstr "Routines" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 #, fuzzy #| msgid "Foreign key limit" msgid "Foreign key constraint" msgstr "Foreign key limit" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 #, fuzzy #| msgid "Foreign key limit" msgid "+ Add constraint" msgstr "Foreign key limit" -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +#, fuzzy +#| msgid "Internal relations" +msgid "Internal relations" +msgstr "Internal relations" + +#: templates/table/relation/common_form.phtml:80 +#, fuzzy +#| msgid "Internal relations" +msgid "Internal relation" +msgstr "Internal relations" + +#: templates/table/relation/common_form.phtml:83 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "" + +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -16686,7 +16654,7 @@ msgid "at beginning of table" msgstr "ცხრილის დასაწყისში" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16735,7 +16703,7 @@ msgstr "დაყოფილი" msgid "Edit partitioning" msgstr "დაყოფილი" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -18067,6 +18035,41 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "max. concurrent connections" +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "ცხრილები" + +#, fuzzy +#~| msgid "View" +#~ msgid "views" +#~ msgstr "ხედო" + +#, fuzzy +#~| msgid "Procedures" +#~ msgid "procedures" +#~ msgstr "პროცედურები" + +#, fuzzy +#~| msgid "Event" +#~ msgid "events" +#~ msgstr "მოვლენა" + +#, fuzzy +#~| msgid "Functions" +#~ msgid "functions" +#~ msgstr "ფუნქციები" + +#, fuzzy +#~| msgid "table name" +#~ msgid "Filter databases by name or regex" +#~ msgstr "ცხრილის სახელი" + +#, fuzzy +#~| msgid "table name" +#~ msgid "Filter by name or regex" +#~ msgstr "ცხრილის სახელი" + #, fuzzy #~| msgid "Change" #~ msgid "Taking you to %s." diff --git a/po/kk.po b/po/kk.po index d362436b48..d9da914b7c 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Kazakh Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Column" msgid "Continue" msgstr "Бағана" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Бақылаудың есептемесі" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Дайын" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "No rows selected" msgid "No dependencies selected!" msgstr "Бірде-бір қатар таңдалынбады" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Сақтау" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Іздеу параметрлерiн жасыру" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Іздеу параметрлерiн көрсету" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Column" msgid "Column maximum:" msgstr "Бағана" -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Column" msgid "Column minimum:" msgstr "Бағана" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "Іздеу параметрлерiн жасыру" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "Іздеу параметрлерiн көрсету" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Елемеу" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Көшіру" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Нүкте" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Сызық" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Көпбұрыш" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Геометрия" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Ішкі пішін" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Outer Ring" msgid "Outer ring" msgstr "Сыртқы пішін" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Сыртқы кілтті таңдаңыз" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 msgid "Page name" msgstr "" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Save" msgid "Save page" msgstr "Сақтау" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy #| msgid "Delete" msgid "Delete page" msgstr "Жою" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "Бiрлiк" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Байланыс схемасын түзету немесе экспорттау" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:550 +#: js/messages.php:551 #, fuzzy, php-format #| msgid "Value for the column \"%s\"" msgid "Add an option for column \"%s\"." msgstr "\"%s\" баған мәні" -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "Белгіні алу/орнату үшін шертіңіз" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy #| msgid "Double-click to copy column name" msgid "Double-click to copy column name." msgstr "Атын көшіру үшін өріске тышқанмен екі рет шерту жасаңыз" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Бәрін көрсету" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Linestring" msgid "Original length" msgstr "Сызық" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 #, fuzzy #| msgid "Import" msgid "Import status" msgstr "Импорт" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "Барлығын ерекшелеу" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "Сілтемеге өту" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Copy column name" msgid "Copy column name." msgstr "Баған атын көшіру" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Шығару" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "Тағы" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Бәрін көрсету" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Hide indexes" msgid "Hide panel" msgstr "Индекстерді жасыру" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Show indexes" msgid "Show hidden navigation tree items." msgstr "Индекстерді көрсету" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 #, fuzzy #| msgid "Hide indexes" msgid "Link with main panel" msgstr "Индекстерді жасыру" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 #, fuzzy #| msgid "Hide indexes" msgid "Unlink from main panel" msgstr "Индекстерді жасыру" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -#, fuzzy -#| msgid "Table" -msgid "tables" -msgstr "Кесте" - -#: js/messages.php:633 -#, fuzzy -#| msgid "View" -msgid "views" -msgstr "Түр" - -#: js/messages.php:634 -#, fuzzy -#| msgid "Processes" -msgid "procedures" -msgstr "Процесстер" - -#: js/messages.php:635 -#, fuzzy -#| msgid "Recommendation" -msgid "events" -msgstr "Ұсыныс" - -#: js/messages.php:636 -#, fuzzy -#| msgid "Questions" -msgid "functions" -msgstr "Сұрақтар" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2555,410 +2528,410 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr "Соңғы тұрақты болжам:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "Баптауын өзгерту" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Show all" msgid "Show report details" msgstr "Бәрін көрсету" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Елемеу" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "" -#: js/messages.php:701 +#: js/messages.php:693 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "Сіз шынымен де сұраныстың орындалуын қалайсыз бе \"%s\"?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Кестеге түсініктеме" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Іздеу нәтижелерін жасыру" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "Алдыңғы" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "Келесі" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Бүгін" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "Қаңтар" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "Ақпан" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "Наурыз" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "Сәуір" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Мамыр" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "Маусым" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "Шілде" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "Тамыз" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "Қыркүйек" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "Қазан" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "Қараша" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "Желтоқсан" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Қаң" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Ақп" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Нау" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Сәу" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "Мам" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Мау" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Шіл" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Там" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Қыр" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Қаз" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Қар" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Жел" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "Жексенбі" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "Дүйсенбі" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "Сейсенбі" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "Сәрсенбі" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "Бейсенбі" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "Жұма" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "Сенбі" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "Жек" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Дүй" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Сей" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Сәр" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Бей" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Жұм" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Сен" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "Жк" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "Дс" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "Сс" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "Ср" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "Бс" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "Жм" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "Сн" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "Апт" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Сағат" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Минут" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Секунд" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Select All" msgid "Please enter a valid date" msgstr "Барлығын ерекшелеу" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "" @@ -2966,43 +2939,43 @@ msgstr "" msgid "Please enter the same value again" msgstr "" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 #, fuzzy #| msgid "Please add at least one variable to the series" msgid "Please enter at least {0} characters" msgstr "Тәңiр жарылқасын, ең болмаса топтамаға бiр айнымалы қосыңыз" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Қате" @@ -3088,11 +3061,12 @@ msgstr "" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3137,7 +3111,7 @@ msgstr "" msgid "Explain" msgstr "" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "" @@ -3177,8 +3151,8 @@ msgid "History" msgstr "" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3361,30 +3335,30 @@ msgstr "" msgid "Switch to dark theme" msgstr "Көшірілген дерекқорына өту" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3394,8 +3368,8 @@ msgstr "" msgid "Ascending" msgstr "Өсу бойынша" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3564,8 +3538,8 @@ msgstr[0] "%1$s кестедегi сәйкестiк %2$s" msgstr[1] "%1$s кестедегi сәйкестiктер %2$s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3609,121 +3583,121 @@ msgstr "Eрекшеленгендерді алып тастау" msgid "Inside column:" msgstr "Бағана бойынша:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 #, fuzzy #| msgid "Filter" msgid "Filter rows" msgstr "Сүзгі" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Search in database" msgid "Search this table" msgstr "Дерекқорынан іздеу" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Inside column:" msgid "Display column for relations" msgstr "Бағана бойынша:" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "Table %s has been emptied." msgid "The row has been deleted." msgstr "%s кестесі аластанды" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -3731,48 +3705,49 @@ msgstr "" msgid "Your SQL query has been executed successfully." msgstr "SQL-сұранысы сәтті орындалды" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, fuzzy, php-format #| msgid "%d table(s)" msgid "%d total" msgstr "%d Кесте(лер)" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Белгi соғылғандарды:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3780,25 +3755,25 @@ msgstr "Белгi соғылғандарды:" msgid "Check all" msgstr "Барлығын белгілеу" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Баспаға шығару түрі" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 #, fuzzy #| msgid "Links to" msgid "Link not found!" @@ -3896,19 +3871,19 @@ msgstr "Индексі анықталмаған!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Индекстер" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3917,24 +3892,24 @@ msgid "Action" msgstr "Әрекет" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Индекс атауы" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Бірегей" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Қапталған" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "" @@ -3942,8 +3917,8 @@ msgstr "" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3953,8 +3928,8 @@ msgid "Collation" msgstr "Салыстыру" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3970,15 +3945,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "Индекс %s жойылған болатын." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Жою" @@ -4015,12 +3990,13 @@ msgstr "Түр" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4028,7 +4004,7 @@ msgstr "Кесте" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4037,8 +4013,8 @@ msgid "SQL" msgstr "" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4046,41 +4022,41 @@ msgid "Search" msgstr "Іздеу" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4091,16 +4067,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4108,22 +4084,22 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "Add columns" msgid "Central columns" msgstr "Бағаналар қосу" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Дерекқоры" @@ -4132,33 +4108,33 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Репликация" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4469,7 +4445,7 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4888,37 +4864,37 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Тазарту" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "" @@ -5089,8 +5065,8 @@ msgid "Add new column" msgstr "Бағандарды Қосу/Өшіру" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5152,19 +5128,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -5952,7 +5928,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT қосу" @@ -5991,7 +5967,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Қосу %s" @@ -7590,7 +7566,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "" @@ -7868,106 +7844,34 @@ msgstr "" msgid "OpenDocument Text" msgstr "" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "%s кестесі аластанды." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format msgid "View %s has been dropped." msgstr "%s көрсетілімі жойылған" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "%s кестесі жойылған болатын" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "белгісіз" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" - -#: libraries/controllers/TableStructureController.php:250 -#, fuzzy -#| msgid "No rows selected" -msgid "No column selected." -msgstr "Бірде-бір қатар таңдалынбады" - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "" - -#: libraries/controllers/TableStructureController.php:967 -#, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "" - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Өзгерту" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1201 -#, fuzzy -#| msgid "Use this value" -msgid "Distinct values" -msgstr "Осы мәнді қолданыңыз" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -7983,6 +7887,14 @@ msgstr "" msgid "No data to display" msgstr "Мәліметтер жоқ" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "" + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "" @@ -7993,25 +7905,89 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr "%s кестесі аластанды" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Databases" msgid "Table search" msgstr "Мәлімет қорлары" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Zoom Search" msgid "Zoom search" msgstr "Iздестiрудi үлкейту" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "Hide search criteria" msgid "Find and replace" msgstr "Іздеу параметрлерiн жасыру" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" + +#: libraries/controllers/table/TableStructureController.php:251 +#, fuzzy +#| msgid "No rows selected" +msgid "No column selected." +msgstr "Бірде-бір қатар таңдалынбады" + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:975 +#, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Өзгерту" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1209 +#, fuzzy +#| msgid "Use this value" +msgid "Distinct values" +msgstr "Осы мәнді қолданыңыз" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8021,7 +7997,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8090,7 +8066,7 @@ msgstr "" msgid "Create database:" msgstr "Дерекқорын өшіру" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "" @@ -8784,69 +8760,69 @@ msgid "Dump has been saved to file %s." msgstr "%s файлына дамп сақталынды." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "" @@ -8869,71 +8845,71 @@ msgstr "" msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Немесе" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -8945,11 +8921,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -8965,41 +8941,41 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table prefix:" msgstr "Кестениң префиксін ауыстыру" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Copy table with prefix" msgid "Copy table with prefix:" msgstr "Кестені префикс пен бірге көшіру" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Replace table prefix" msgid "Add table prefix:" msgstr "Кестениң префиксін ауыстыру" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "" @@ -9225,8 +9201,8 @@ msgstr "Процесстер" msgid "Views:" msgstr "Түр" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Көрсету" @@ -9268,22 +9244,15 @@ msgstr[0] "" msgstr[1] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "The database name is empty!" -msgid "Filter databases by name or regex" -msgstr "Дерекқорының аты көрсетілмеген!" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "The database name is empty!" -msgid "Filter by name or regex" -msgstr "Дерекқорының аты көрсетілмеген!" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -9680,7 +9649,7 @@ msgstr "Дерекқорының атауын қайта қою." #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9689,7 +9658,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Reloading Privileges" @@ -9709,18 +9678,18 @@ msgstr "Дерекқорын өшіру" msgid "Drop the database (DROP)" msgstr "(DROP) дерекқорын өшіру" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Тек құрылымы ғана" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Құрылымы және мәліметтері" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Тек мәліметтер ғана" @@ -9734,7 +9703,7 @@ msgstr "Дерекқорының көшірілуі" msgid "CREATE DATABASE before copying" msgstr "Көшірмес бұрын, дерекқорын құрып алыңыз(CREATE DATABASE)" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Шектеу қою" @@ -9774,161 +9743,161 @@ msgstr "" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Кестенiң талдауы" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Кестені тексеру" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Кестені тексеру" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Кестені тиімді ету" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Кестені калпына келтіру" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "Жабу" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "" @@ -10096,7 +10065,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -10120,21 +10089,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10232,7 +10201,7 @@ msgid "Database:" msgstr "Дерекқор" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Database" msgid "Data:" @@ -10333,7 +10302,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -10402,8 +10371,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10411,91 +10380,91 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Static data" msgid "Metadata" msgstr "Статикалық мәлiметтер" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Құру:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Соңғы жаңарту:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Соңғы тексеріс:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "қолданыста" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for dumped tables" msgstr "Кесте бойынша:" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Кесте бойынша:" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT қосу" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT қосу" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "" @@ -10739,9 +10708,9 @@ msgstr "" msgid "Table of contents" msgstr "" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "" @@ -10905,59 +10874,59 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Файлды оқу мүмкін емес" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "Table %s has been emptied." msgid "Internal relation has been added." msgstr "%s кестесі аластанды" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be added!" msgstr "Файлды оқу мүмкін емес" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "Table %s has been emptied." msgid "FOREIGN KEY relation has been removed." msgstr "%s кестесі аластанды" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Файлды оқу мүмкін емес" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be removed!" msgstr "Файлды оқу мүмкін емес" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Table %s has been emptied." msgid "Internal relation has been removed." @@ -11004,106 +10973,106 @@ msgstr "" msgid "Please see the documentation on how to update your column_info table. " msgstr "" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "Tracking is not active." msgid "Persistent favorite tables" msgstr "Бақылауды белсендендірілу" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "Экспорт типі қате" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11279,8 +11248,8 @@ msgstr "Қолданушы:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "" @@ -11288,7 +11257,7 @@ msgstr "" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "" @@ -11908,7 +11877,7 @@ msgstr[1] "" msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "" @@ -11916,98 +11885,94 @@ msgstr "" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "" #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "" #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "" #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12015,65 +11980,65 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "" #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "" #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -12085,8 +12050,8 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12130,37 +12095,37 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12175,14 +12140,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -12192,7 +12157,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "" @@ -12201,15 +12166,15 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "" @@ -12228,7 +12193,7 @@ msgid "Native MySQL Authentication" msgstr "" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "" @@ -12253,8 +12218,8 @@ msgstr "Қолданушы:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Add constraints" msgid "Host name" @@ -12276,228 +12241,228 @@ msgstr "Ағымдағы баптау" msgid "Password Hashing Method" msgstr "Құпия сөз:" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Қолданушыны қосу" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database comment" msgid "Database for user account" msgstr "Дерекқорына түсініктеме: " -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Reloading Privileges" msgid "Edit privileges" msgstr "Артықшылықтардың қайта қосылуы" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Reloading Privileges" msgid "Routine-specific privileges" msgstr "Артықшылықтардың қайта қосылуы" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Removing Selected Users" msgid "Remove selected user accounts" msgstr "Таңдалынған қолдаушыларды жою" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Reloading Privileges" msgid "Edit privileges:" msgstr "Артықшылықтардың қайта қосылуы" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12506,7 +12471,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12515,11 +12480,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "" @@ -12745,30 +12710,30 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -12830,7 +12795,7 @@ msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -12855,33 +12820,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12889,78 +12854,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12968,7 +12933,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12976,42 +12941,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13019,33 +12984,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13054,242 +13019,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13297,99 +13262,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13397,18 +13362,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13416,11 +13381,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -13429,73 +13394,73 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Current settings" msgid "Server level tabs" msgstr "Ағымдағы баптау" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Database comment" msgid "Database level tabs" msgstr "Дерекқорына түсініктеме: " -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table comments" msgid "Table level tabs" msgstr "Кестеге түсініктеме" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy #| msgid "in use" msgid "View users" msgstr "қолданыста" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "Қолданушыны қосу" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Username:" msgid "Group name:" msgstr "Қолданушы:" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Current settings" msgid "Server-level tabs" msgstr "Ағымдағы баптау" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Database comment" msgid "Database-level tabs" msgstr "Дерекқорына түсініктеме: " -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -13559,21 +13524,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No rows selected" msgid "An alias was expected." @@ -13635,135 +13596,135 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "Replace table prefix" msgid "Unexpected beginning of statement." msgstr "Кестениң префиксін ауыстыру" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "Table %s has been emptied." msgid "At least one column definition was expected." msgstr "%s кестесі аластанды" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Басқа" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy #| msgid "Sat" msgid "State" msgstr "Сен" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Толық уақыт:" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Уақыт" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Жабу" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Уақыт" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -13794,27 +13755,27 @@ msgstr "" msgid "Bind parameters" msgstr "Параметрлері қате!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "" @@ -13859,176 +13820,176 @@ msgstr "" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Құрылған" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Жаңартылған" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Last version" msgid "Delete version" msgstr "Соңғы нұсқа" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Бақылаудың есептемесі" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Құрылым түсірілімі" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "қосулы" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "өшірулі" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Бақылауға болмайтын кестелер" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Кестені бақылау" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Қадағаланатын кестелер" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Соңғы нұсқа" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Deleting" msgid "Delete tracking" msgstr "Жою" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Нұсқа" @@ -14036,11 +13997,11 @@ msgstr "Нұсқа" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14139,7 +14100,7 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14164,7 +14125,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -15002,47 +14963,53 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart Title" +msgid "Chart title:" +msgstr "График тақырыбы" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside column:" msgid "Series column:" msgstr "Бағана бойынша:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Values for column %s" msgid "Value Column:" msgstr "%s баған мәні" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "" @@ -15101,56 +15068,57 @@ msgstr "Пікірлеу" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 -#, fuzzy -#| msgid "Table %s has been emptied." -msgid "Internal relations" -msgstr "%s кестесі аластанды" - -#: templates/table/relation/common_form.phtml:11 -msgid "Internal relation" -msgstr "" - -#: templates/table/relation/common_form.phtml:14 -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "" - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 #, fuzzy #| msgid "Foreign key check:" msgid "Foreign key constraints" msgstr "Сыртқы кілттерді тексерілісі:" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 #, fuzzy #| msgid "Action" msgid "Actions" msgstr "Әрекет" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 #, fuzzy #| msgid "Add constraints" msgid "Constraint properties" msgstr "Шектеу қою" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Шектеу қою" -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +#, fuzzy +#| msgid "Table %s has been emptied." +msgid "Internal relations" +msgstr "%s кестесі аластанды" + +#: templates/table/relation/common_form.phtml:80 +msgid "Internal relation" +msgstr "" + +#: templates/table/relation/common_form.phtml:83 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "" + +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "Choose column to display:" @@ -15299,7 +15267,7 @@ msgid "at beginning of table" msgstr "Кестениң префиксін ауыстыру" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 msgid "Partitions" msgstr "" @@ -15342,7 +15310,7 @@ msgstr "Сипаттама" msgid "Edit partitioning" msgstr "Индексті өзгерту" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "" @@ -16574,6 +16542,41 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Паралельді_кірістірмелерді анықтау" +#, fuzzy +#~| msgid "Table" +#~ msgid "tables" +#~ msgstr "Кесте" + +#, fuzzy +#~| msgid "View" +#~ msgid "views" +#~ msgstr "Түр" + +#, fuzzy +#~| msgid "Processes" +#~ msgid "procedures" +#~ msgstr "Процесстер" + +#, fuzzy +#~| msgid "Recommendation" +#~ msgid "events" +#~ msgstr "Ұсыныс" + +#, fuzzy +#~| msgid "Questions" +#~ msgid "functions" +#~ msgstr "Сұрақтар" + +#, fuzzy +#~| msgid "The database name is empty!" +#~ msgid "Filter databases by name or regex" +#~ msgstr "Дерекқорының аты көрсетілмеген!" + +#, fuzzy +#~| msgid "The database name is empty!" +#~ msgid "Filter by name or regex" +#~ msgstr "Дерекқорының аты көрсетілмеген!" + #, fuzzy #~| msgid "Tracking report" #~ msgid "Taking you to %s." diff --git a/po/km.po b/po/km.po index 0a60ca11d9..9164724ef9 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:06+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Central Khmer Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "រួម​ចំណែក" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "មិន​បាន​ជ្រើស​មូលដ្ឋាន​ទិន្នន័យ។" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "មិន​បាន​ជ្រើស​មូលដ្ឋាន​ទិន្នន័យ។" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 msgid "Page name" msgstr "" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 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:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 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:539 +#: js/messages.php:540 #, fuzzy #| msgid "Reload page" msgid "Delete page" msgstr "ផ្ទុក​ទំព័រ​ឡើង​វិញ" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid page name" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:550 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:551 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:552 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "បោះបង់" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 #, fuzzy #| msgid "Import" msgid "Import status" msgstr "នាំចូល" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "ជ្រើសទាំងអស់" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Table comments:" msgid "Show panel" msgstr "មតិយោបល់​តារាង៖" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -#, fuzzy -#| msgid "Table" -msgid "tables" -msgstr "តារាង" - -#: js/messages.php:633 -msgid "views" -msgstr "" - -#: js/messages.php:634 -#, fuzzy -#| msgid "Processes" -msgid "procedures" -msgstr "ដំណើរការ" - -#: js/messages.php:635 -#, fuzzy -#| msgid "Recent" -msgid "events" -msgstr "ថ្មីៗ" - -#: js/messages.php:636 -#, fuzzy -#| msgid "Action" -msgid "functions" -msgstr "សកម្មភាព" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2452,414 +2427,414 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr "" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "ប្ដូរ​ការ​កំណត់" -#: js/messages.php:660 +#: js/messages.php:652 msgid "Show report details" msgstr "" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "" -#: js/messages.php:701 +#: js/messages.php:693 #, 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:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments:" msgid "Show arguments" msgstr "មតិយោបល់​តារាង៖" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:878 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid email address" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:887 +#: js/messages.php:879 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:889 +#: js/messages.php:883 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date ( ISO )" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:890 +#: js/messages.php:885 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:891 +#: js/messages.php:888 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:892 +#: js/messages.php:890 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" @@ -2871,53 +2846,53 @@ msgstr "សូម​បញ្ចូល​ប្រវែង​ត្រឹម​ msgid "Please enter the same value again" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter at least {0} characters" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a value between {0} and {1}" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:898 +#: js/messages.php:917 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" msgstr "សូម​បញ្ចូល​ប្រវែង​ត្រឹម​ត្រូវ!" -#: js/messages.php:899 +#: js/messages.php:922 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a value greater than or equal to {0}" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:901 +#: js/messages.php:928 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date or time" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:902 +#: js/messages.php:933 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "" @@ -3002,11 +2977,12 @@ msgstr "" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3053,7 +3029,7 @@ msgstr "" msgid "Explain" msgstr "ពន្យល់​លទ្ធផល" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "" @@ -3089,8 +3065,8 @@ msgid "History" msgstr "" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3247,30 +3223,30 @@ msgstr "" msgid "Switch to dark theme" msgstr "" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3280,8 +3256,8 @@ msgstr "" msgid "Ascending" msgstr "" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3424,8 +3400,8 @@ msgstr[0] "" msgstr[1] "" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3469,161 +3445,162 @@ msgstr "មិនរើសទាំងអស់" msgid "Inside column:" msgstr "" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "ត្រង​ជួរ​ដេក" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Select All" msgid "Display column for relations" msgstr "ជ្រើសទាំងអស់" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3631,25 +3608,25 @@ msgstr "" msgid "Check all" msgstr "តាមដាន​តារាង" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "" @@ -3743,19 +3720,19 @@ msgstr "" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3764,24 +3741,24 @@ msgid "Action" msgstr "សកម្មភាព" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "" @@ -3789,8 +3766,8 @@ msgstr "" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3800,8 +3777,8 @@ msgid "Collation" msgstr "" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3817,15 +3794,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "លុប" @@ -3862,12 +3839,13 @@ msgstr "" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3875,7 +3853,7 @@ msgstr "តារាង" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3884,8 +3862,8 @@ msgid "SQL" msgstr "" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3893,41 +3871,41 @@ msgid "Search" msgstr "" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3938,16 +3916,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3955,20 +3933,20 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "" @@ -3977,33 +3955,33 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4294,7 +4272,7 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4709,37 +4687,37 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "" @@ -4904,8 +4882,8 @@ msgid "Add new column" msgstr "" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -4964,19 +4942,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -5752,7 +5730,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -5791,7 +5769,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "" @@ -7341,7 +7319,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "" @@ -7613,100 +7591,33 @@ msgstr "" msgid "OpenDocument Text" msgstr "" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "បញ្ជី​ការ​ពេញ​ចិត្ត​គឺ​ពេញ​ហើយ!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "បញ្ជី​ការ​ពេញ​ចិត្ត​គឺ​ពេញ​ហើយ!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "" - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "" - -#: libraries/controllers/TableStructureController.php:967 -#, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "" - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -7720,6 +7631,14 @@ msgstr "" msgid "No data to display" msgstr "" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "" + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "" @@ -7728,19 +7647,78 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr "" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:975 +#, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -7750,7 +7728,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7815,7 +7793,7 @@ msgstr "" msgid "Create database:" msgstr "" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "" @@ -8497,69 +8475,69 @@ msgid "Dump has been saved to file %s." msgstr "" #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "" @@ -8582,71 +8560,71 @@ msgstr "" msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -8658,11 +8636,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -8678,35 +8656,35 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "" @@ -8924,8 +8902,8 @@ msgstr "" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "បង្ហាញ" @@ -8964,7 +8942,8 @@ msgid_plural "%s results found" msgstr[0] "" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" msgstr "" #: libraries/navigation/NavigationTree.php:1371 @@ -8972,10 +8951,6 @@ msgstr "" msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -9354,7 +9329,7 @@ msgstr "" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9363,7 +9338,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "" @@ -9381,18 +9356,18 @@ msgstr "" msgid "Drop the database (DROP)" msgstr "" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "" @@ -9404,7 +9379,7 @@ msgstr "" msgid "CREATE DATABASE before copying" msgstr "" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "" @@ -9444,161 +9419,161 @@ msgstr "" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Track table" msgid "Checksum table" msgstr "តាមដាន​តារាង" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "បិទ" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "" @@ -9763,7 +9738,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -9787,21 +9762,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -9891,7 +9866,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "" @@ -9984,7 +9959,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -10053,8 +10028,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10062,81 +10037,81 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 msgid "Metadata" msgstr "" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "ការបង្កើត៖" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "បច្ចុប្បន្នភាពចុងក្រោយ៖" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "ពិនិត្យចុងក្រោយ៖" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "កំពុង​ប្រើ" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "" @@ -10368,9 +10343,9 @@ msgstr "" msgid "Table of contents" msgstr "" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "" @@ -10534,55 +10509,55 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "Error: Relation could not be added!" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "កំហុស៖ មិន​អាច​បន្ថែម​ចំណង​សម្ព័ន្ធ​បាន!" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "Error: Relation could not be added!" msgid "Error: Internal relation could not be added!" msgstr "កំហុស៖ មិន​អាច​បន្ថែម​ចំណង​សម្ព័ន្ធ​បាន!" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 msgid "FOREIGN KEY relation has been removed." msgstr "" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "Error: Relation could not be added!" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "កំហុស៖ មិន​អាច​បន្ថែម​ចំណង​សម្ព័ន្ធ​បាន!" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "Error: Relation could not be added!" msgid "Error: Internal relation could not be removed!" msgstr "កំហុស៖ មិន​អាច​បន្ថែម​ចំណង​សម្ព័ន្ធ​បាន!" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "" @@ -10627,106 +10602,106 @@ msgstr "" msgid "Please see the documentation on how to update your column_info table. " msgstr "" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "Favorite tables" msgid "Persistent favorite tables" msgstr "តារាង​ដែល​ពេញ​ចិត្ត" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "ប្រភេទ​នាំ​ចេញ​មិន​ត្រឹម​ត្រូវ" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -10900,8 +10875,8 @@ msgstr "" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "" @@ -10909,7 +10884,7 @@ msgstr "" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "" @@ -11526,7 +11501,7 @@ msgstr[1] "" msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "" @@ -11534,98 +11509,94 @@ msgstr "" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "" #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "" #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "" #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -11633,65 +11604,65 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "" #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "" #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -11703,8 +11674,8 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -11744,37 +11715,37 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -11789,14 +11760,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11806,7 +11777,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "" @@ -11815,15 +11786,15 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "" @@ -11842,7 +11813,7 @@ msgid "Native MySQL Authentication" msgstr "" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "" @@ -11865,8 +11836,8 @@ msgstr "" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 msgid "Host name" msgstr "" @@ -11882,222 +11853,222 @@ msgstr "" msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database comment" msgid "Database for user account" msgstr "មតិយោបល់​មូលដ្ឋាន​ទិន្នន័យ៖" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Index" msgid "Edit privileges" msgstr "កែ​សន្ទស្សន៍" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Removing Selected Users" msgid "Remove selected user accounts" msgstr "ការ​លុប​អ្នក​ប្រើ​ដែល​បាន​ជ្រើស" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12106,7 +12077,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12115,11 +12086,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "" @@ -12343,30 +12314,30 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -12422,7 +12393,7 @@ msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -12447,33 +12418,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12481,78 +12452,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12560,7 +12531,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12568,42 +12539,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12611,33 +12582,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12646,242 +12617,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12889,99 +12860,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12989,18 +12960,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13008,11 +12979,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -13021,57 +12992,57 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "" @@ -13133,21 +13104,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -13209,121 +13176,121 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The bookmark has been deleted." msgid "At least one column definition was expected." msgstr "បាន​លុប​ចំណាំ។" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -13353,27 +13320,27 @@ msgstr "" msgid "Bind parameters" msgstr "ប៉ារ៉ាម៉ែត្រ​មិន​ល្អ!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "" @@ -13418,176 +13385,176 @@ msgstr "" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "បានបង្កើត" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "បានធ្វើបច្ចុប្បន្នភាព" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Last version" msgid "Delete version" msgstr "កំណែចុងក្រោយ" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "របាយការណ៍​តាមដាន" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "រូបភាព​រចនាសម្ព័ន្ធ" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "ដែល​សកម្ម" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "ដែល​អសកម្ម" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "តារាង​ដែល​មិន​តាមដាន" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "តាមដាន​តារាង" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "តារាង​ដែល​តាមដាន" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "កំណែចុងក្រោយ" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "ការ​លុប​ទិន្នន័យ​តាមដាន" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "កំណែ" @@ -13595,11 +13562,11 @@ msgstr "កំណែ" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -13698,7 +13665,7 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -13723,7 +13690,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -14528,45 +14495,49 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +msgid "Chart title:" +msgstr "" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "តម្លៃ Y" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Table comments:" msgid "Value Column:" msgstr "មតិយោបល់​តារាង៖" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "" @@ -14621,50 +14592,51 @@ msgstr "" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 -msgid "Internal relations" -msgstr "" - -#: templates/table/relation/common_form.phtml:11 -msgid "Internal relation" -msgstr "" - -#: templates/table/relation/common_form.phtml:14 -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "" - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 msgid "Foreign key constraints" msgstr "" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 #, fuzzy #| msgid "Action" msgid "Actions" msgstr "សកម្មភាព" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 msgid "Constraint properties" msgstr "" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 #, fuzzy #| msgid "Add %s column(s) to index" msgid "+ Add constraint" msgstr "បន្ថែម​ជួរ​ឈរ %s ទៅ​សន្ទស្សន៍" -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +msgid "Internal relations" +msgstr "" + +#: templates/table/relation/common_form.phtml:80 +msgid "Internal relation" +msgstr "" + +#: templates/table/relation/common_form.phtml:83 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "" + +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "" @@ -14790,7 +14762,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 msgid "Partitions" msgstr "" @@ -14827,7 +14799,7 @@ msgstr "ការបង្កើត៖" msgid "Edit partitioning" msgstr "កែ​សន្ទស្សន៍" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "" @@ -15986,6 +15958,26 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert ត្រូវវ​បាន​កំណត់​ទៅ 0" +#, fuzzy +#~| msgid "Table" +#~ msgid "tables" +#~ msgstr "តារាង" + +#, fuzzy +#~| msgid "Processes" +#~ msgid "procedures" +#~ msgstr "ដំណើរការ" + +#, fuzzy +#~| msgid "Recent" +#~ msgid "events" +#~ msgstr "ថ្មីៗ" + +#, fuzzy +#~| msgid "Action" +#~ msgid "functions" +#~ msgstr "សកម្មភាព" + #, fuzzy #~| msgid "Change password" #~ msgid "MySQL native password" diff --git a/po/kn.po b/po/kn.po index 5f96b8471c..929c61fb61 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-07-24 13:05+0200\n" "Last-Translator: Shameem Ahmed A Mulla \n" "Language-Team: Kannada Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 msgid "Page name" msgstr "" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:550 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:551 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:552 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "" -#: js/messages.php:623 +#: js/messages.php:624 msgid "Show panel" msgstr "" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -msgid "tables" -msgstr "" - -#: js/messages.php:633 -msgid "views" -msgstr "" - -#: js/messages.php:634 -msgid "procedures" -msgstr "" - -#: js/messages.php:635 -msgid "events" -msgstr "" - -#: js/messages.php:636 -msgid "functions" -msgstr "" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2340,396 +2323,396 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr "" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "" -#: js/messages.php:660 +#: js/messages.php:652 msgid "Show report details" msgstr "" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 msgid "Show arguments" msgstr "" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "ಜನವರಿ" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "ಫೆಬ್ರವರಿ" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "ಮಾರ್ಚ್" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "ಏಪ್ರಿಲ್" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "ಮೇ" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "ಜೂನ್" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "ಜುಲೈ" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "ಆಗಸ್ಟ್" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "ಸಪ್ಟೆಂಬರ್" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "ಅಕ್ಟೋಬರ್" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "ನವೆಂಬರ್" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "ಡಿಸೆಂಬರ್" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "ಜನ" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "ಫೆಬ್ರು" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "ಮಾ" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "ಏಪ್ರಿ" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "ಮೇ" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "ಜೂ" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "ಜು" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "ಆಗ" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "ಸೆಪ್ಟೆಂ" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "ಅಕ್ಟೋ" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "ನವೆಂ" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "ಡಿಸೆಂ" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "ರವಿವಾರ" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "ಸೋಮವಾರ" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "ಮಂಗಳವಾರ" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "ಬುಧವಾರ" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "ಗುರುವಾರ" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "ಶುಕ್ರವಾರ" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "ಶನಿವಾರ" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "ರ" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "ಸೋ" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "ಮಂ" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "ಬು" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "ಗು" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "ಶು" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "ಶನಿ" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "ರ" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "ಸೋ" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "ಮಂ" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "ಬು" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "ಗು" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "ಶು" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "ಶನಿ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "" @@ -2737,41 +2720,41 @@ msgstr "" msgid "Please enter the same value again" msgstr "" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "" @@ -2856,11 +2839,12 @@ msgstr "" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -2902,7 +2886,7 @@ msgstr "" msgid "Explain" msgstr "" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "" @@ -2936,8 +2920,8 @@ msgid "History" msgstr "" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3082,30 +3066,30 @@ msgstr "" msgid "Switch to dark theme" msgstr "" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3115,8 +3099,8 @@ msgstr "" msgid "Ascending" msgstr "" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3259,8 +3243,8 @@ msgstr[0] "" msgstr[1] "" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3304,183 +3288,184 @@ msgstr "ಎಲ್ಲಾ ಆಯ್ಕೆರದ್ದುಮಾಡಿ" msgid "Inside column:" msgstr "" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 msgid "Display column for relations" msgstr "" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 msgid "Check all" msgstr "" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "" @@ -3572,19 +3557,19 @@ msgstr "" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3593,24 +3578,24 @@ msgid "Action" msgstr "ಕ್ರಿಯೆ" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "" @@ -3618,8 +3603,8 @@ msgstr "" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3629,8 +3614,8 @@ msgid "Collation" msgstr "" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3646,15 +3631,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "" @@ -3691,12 +3676,13 @@ msgstr "" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3704,7 +3690,7 @@ msgstr "ಟೇಬಲ್" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3713,8 +3699,8 @@ msgid "SQL" msgstr "" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3722,41 +3708,41 @@ msgid "Search" msgstr "" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3767,16 +3753,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3784,20 +3770,20 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "" @@ -3806,33 +3792,33 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4123,7 +4109,7 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4536,37 +4522,37 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "ಬಳಕೆದಾರರು" @@ -4725,8 +4711,8 @@ msgid "Add new column" msgstr "" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -4785,19 +4771,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -5563,7 +5549,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -5602,7 +5588,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "" @@ -7142,7 +7128,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "" @@ -7414,101 +7400,33 @@ msgstr "" msgid "OpenDocument Text" msgstr "" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "" - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "" - -#: libraries/controllers/TableStructureController.php:967 -#, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "" - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -7522,6 +7440,14 @@ msgstr "" msgid "No data to display" msgstr "" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "" + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "" @@ -7530,19 +7456,79 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr "" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:975 +#, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -7552,7 +7538,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7617,7 +7603,7 @@ msgstr "" msgid "Create database:" msgstr "" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "" @@ -8281,69 +8267,69 @@ msgid "Dump has been saved to file %s." msgstr "" #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "" @@ -8366,71 +8352,71 @@ msgstr "" msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -8442,11 +8428,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -8462,35 +8448,35 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "" @@ -8708,8 +8694,8 @@ msgstr "" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "ತೋರಿಸು" @@ -8747,7 +8733,8 @@ msgstr[0] "" msgstr[1] "" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" msgstr "" #: libraries/navigation/NavigationTree.php:1371 @@ -8755,10 +8742,6 @@ msgstr "" msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -9131,7 +9114,7 @@ msgstr "" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9140,7 +9123,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "" @@ -9158,18 +9141,18 @@ msgstr "" msgid "Drop the database (DROP)" msgstr "" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "" @@ -9181,7 +9164,7 @@ msgstr "" msgid "CREATE DATABASE before copying" msgstr "" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "" @@ -9221,157 +9204,157 @@ msgstr "" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 msgid "Checksum table" msgstr "" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "" @@ -9536,7 +9519,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -9560,21 +9543,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -9664,7 +9647,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "" @@ -9756,7 +9739,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -9825,8 +9808,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9834,81 +9817,81 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 msgid "Metadata" msgstr "" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "ಸೃಷ್ಟಿ:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "ಕೊನೆಯ ನವೀಕರಣ:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "ಕೊನೆಯ ಪರಿಶೀಲನೆ:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "ಬಳಕೆಯಲ್ಲಿ" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "" @@ -10137,9 +10120,9 @@ msgstr "" msgid "Table of contents" msgstr "" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "" @@ -10303,47 +10286,47 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 msgid "Error: Internal relation could not be added!" msgstr "" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 msgid "FOREIGN KEY relation has been removed." msgstr "" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 msgid "Error: Internal relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "" @@ -10388,102 +10371,102 @@ msgstr "" msgid "Please see the documentation on how to update your column_info table. " msgstr "" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 msgid "Persistent favorite tables" msgstr "" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 msgid "Saving export templates" msgstr "" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -10655,8 +10638,8 @@ msgstr "ಬಳಕೆಯ ಹೆಸರು:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "ಬಳಕೆಯ ಹೆಸರು" @@ -10664,7 +10647,7 @@ msgstr "ಬಳಕೆಯ ಹೆಸರು" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "" @@ -11276,7 +11259,7 @@ msgstr[1] "" msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "" @@ -11284,98 +11267,94 @@ msgstr "" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "" #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "" #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "" #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -11383,65 +11362,65 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "" #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "" #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -11453,8 +11432,8 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -11494,37 +11473,37 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -11539,14 +11518,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11556,7 +11535,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "" @@ -11565,15 +11544,15 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "" @@ -11590,7 +11569,7 @@ msgid "Native MySQL Authentication" msgstr "" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "" @@ -11615,8 +11594,8 @@ msgstr "ಬಳಕೆಯ ಹೆಸರು:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "User name" msgid "Host name" @@ -11634,216 +11613,216 @@ msgstr "" msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 msgid "Database for user account" msgstr "" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 msgid "Remove selected user accounts" msgstr "" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "ಸದಸ್ಯ" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11852,7 +11831,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11861,11 +11840,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "" @@ -12087,30 +12066,30 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -12164,7 +12143,7 @@ msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -12189,33 +12168,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12223,78 +12202,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12302,7 +12281,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12310,42 +12289,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12353,33 +12332,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12388,242 +12367,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12631,99 +12610,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12731,18 +12710,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12750,11 +12729,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -12763,57 +12742,57 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "" @@ -12873,21 +12852,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 msgid "An alias was expected." msgstr "" @@ -12943,119 +12918,119 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 msgid "At least one column definition was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -13083,27 +13058,27 @@ msgstr "" msgid "Bind parameters" msgstr "" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "" @@ -13147,172 +13122,172 @@ msgstr "" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "ರಚಿಸಲಾಗಿದೆ" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "ನವೀಕರಿಸಲಾಗಿದೆ" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 msgid "Delete version" msgstr "" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "ಜಾಡೀಕರಣದ ವರದಿ" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "ರಚನೆಯ ಭಾವಚಿತ್ರ" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "ಸಕ್ರಿಯ" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "ಸಕ್ರಿಯವಾಗಿಲ್ಲ" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "ಬಳಕೆಯ ಹೆಸರು" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "ಜಾಡೀಕರಣ ಮಾಡಲಾರದ ಕೋಷ್ಟಕಗಳು" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "ಕೋಷ್ಟಕಗಳನ್ನು ಟ್ರ್ಯಾಕ್ ಮಾಡಿ" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "ಕಂಡುಬರುವ ಕೋಷ್ಟಕಗಳು" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "ಕೊನೆಯ ಆವೃತ್ತಿ" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "ಜಾಡೀಕರಣ ಅಳಿಸು" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "ಆವೃತ್ತಿಗಳು" @@ -13320,11 +13295,11 @@ msgstr "ಆವೃತ್ತಿಗಳು" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -13423,7 +13398,7 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -13448,7 +13423,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -14234,43 +14209,47 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +msgid "Chart title:" +msgstr "" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 msgid "Value Column:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "" @@ -14323,46 +14302,47 @@ msgstr "" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +msgid "Foreign key constraints" +msgstr "" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "" + +#: templates/table/relation/common_form.phtml:10 +msgid "Constraint properties" +msgstr "" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "" + +#: templates/table/relation/common_form.phtml:60 +msgid "+ Add constraint" +msgstr "" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:37 -msgid "Foreign key constraints" -msgstr "" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "" - -#: templates/table/relation/common_form.phtml:41 -msgid "Constraint properties" -msgstr "" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "" - -#: templates/table/relation/common_form.phtml:83 -msgid "+ Add constraint" -msgstr "" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "" @@ -14488,7 +14468,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 msgid "Partitions" msgstr "" @@ -14523,7 +14503,7 @@ msgstr "ಸೃಷ್ಟಿ:" msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "" diff --git a/po/ko.po b/po/ko.po index b032ad896c..1e52cfa744 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-26 11:00+0200\n" "Last-Translator: Kyeong Su Shin \n" "Language-Team: Korean Are you sure you " "want to continue?" msgstr "컬럼 정의의 일부가 변경될 수도 있습니다.
계속하겠습니까?" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "계속" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "기본키 추가" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "기본 키가 추가되었습니다." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "다음 단계로 가는 중…" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "정규화의 첫번째 단계는 테이블 '%s'를 완성하는 것이다." -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "단계의 끝" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "정규화의 두번째 단계 (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "완료" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "부분 의존성 확인" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "선택된 부분 의존성은 다음과 같다:" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "부분 의존성이 선택되지 않았습니다!" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "테이블의 데이터에 기초한 가능한 부분 의존성을 알려주세요" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "부분 의존성 목록을 숨김" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -1964,188 +1976,188 @@ msgstr "" "잠시 기다리십시오! 데이터의 크기와 열의 갯수에 따라 수 초 가량 시간이 걸릴 " "수 있습니다." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "단계" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "다음의 행동이 수행될 것이다:" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "다음 테이블을 생성" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "정규화의 세번째 단계 (3NF)" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "선택된 의존성은 다음과 같다:" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "의존성이 선택되지 않았습니다!" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "저장" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "검색 조건 숨기기" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "검색 조건 보이기" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "범위 검색" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "열(컬럼) 최댓값:" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "열(컬럼) 최솟값:" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "최솟값:" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "최댓값:" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "찾기와 바꾸기 조건 숨김" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "찾기와 바꾸기 조건 보임" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "각 포인트는 데이터 행을 나타냅니다." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "포인트에 마우스를 올리면 라벨이 표시됩니다." -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "확대하려면 마우스로 플롯의 한 영역을 선택하세요." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "줌 원래대로 보기 버튼을 클릭하면 원본 상태로 돌아갑니다." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "데이터 포인트(플롯 지점)를 클릭하면 행의 열람과 편집이 가능합니다." -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "우측 하단 코너로 드래그하여 플롯을 확대할 수 있습니다." -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "두 개의 열 선택" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "두 개의 서로다른 열 선택" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "데이터 포인트 내용" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "무시" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "복사" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "포인트" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "줄(열) 구분자" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "폴리곤" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "기하데이터" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "내부 원" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "외부 원" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "암호화 키를 복사하겠습니까?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "암호화 키" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "참고키 선택" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "외래키 선택" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "기본키 혹은 유니크키를 선택하십시오!" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "출력할 필드 선택" -#: js/messages.php:532 +#: js/messages.php:533 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?" @@ -2153,77 +2165,77 @@ msgstr "" "레이아웃의 변경을 저장하지 않았습니다. 저장하지 않으면, 변경사항이 손실됩니" "다. 이대로 계속 하시겠습니까?" -#: js/messages.php:535 +#: js/messages.php:536 msgid "Page name" msgstr "페이지 이름" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "페이지 저장" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "페이지를 다른 이름으로 저장" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "페이지 열기" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "페이지 삭제" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "제목 없음" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "계속할 페이지를 선택하세요" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "올바른 페이지 이름을 입력하세요" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "현재 페이지의 수정된 내용을 저장하겠습니까?" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "페이지 삭제 성공" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "관계 스키마를 내보내기" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "수정된 내용이 저장되었습니다" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "컬럼 \"%s\"에 대한옵션 추가 ." -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "%d 개의 개체가 생성되었습니다." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "확인" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "편집을 취소하려면 ESC를 누르세요." -#: js/messages.php:557 +#: js/messages.php:558 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?" @@ -2231,15 +2243,15 @@ msgstr "" "일부 데이터를 변경한 후 저장하지 않았습니다. 데이터를 저장하지 않고 페이지를 " "이동하기를 원합니까?" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "재정렬하려면 드래그하세요." -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "이 열의 값에 따라 결과를 정렬하려면 누르세요." -#: js/messages.php:563 +#: js/messages.php:564 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 " @@ -2249,26 +2261,26 @@ msgstr "" "
- Ctrl+Click 또는 Alt+Click (맥: Shift+Option+Click) 으로 ORDER BY 절로" "부터 이 컬럼 제거" -#: js/messages.php:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "선택/해제하려면 클릭하세요." -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "칼럼명을 복사하려면 더블클릭하세요." -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "칼럼보이기 여부를 바꾸려면
드롭다운 화살표를 클릭하세요." -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "모두 보기" -#: js/messages.php:574 +#: js/messages.php:575 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." @@ -2276,11 +2288,11 @@ msgstr "" "이 테이블에는 유일 속성을 가진 컬럼이 없습니다. 저장 시에 격자창 편집, 체크박" "스, 편집, 복사, 삭제 등의 기능이 정상적으로 동작하지 않을 수 있습니다." -#: js/messages.php:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "올바른 16진수 문자열을 입력하세요. 사용가능한 문자는 0-9, A-F 입니다." -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2288,123 +2300,94 @@ msgstr "" "정말 모든 열을 보시겠습니까? 테이블 크기가 큰 경우 브라우저가 정지할 수 있습" "니다." -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "원본 길이" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "취소" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "중지됨" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "성공" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "상태 가져오기" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "파일을 여기로 끌어오세요" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "데이터베이스를 먼저 선택하세요" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "값을 더블클릭 하여 바로 수정할 수 있습니다.
(일부 제외)." -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "값을 클릭하여 바로 수정할 수 있습니다.
(일부 제외)." -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "다음 링크로 이동:" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "컬럼 이름 복사." -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "마우스 오른쪽버튼을 클릭하여 클립보드에 컬럼 이름을 복사할 수 있습니다." -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "암호 생성" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "생성" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "더보기" -#: js/messages.php:623 +#: js/messages.php:624 msgid "Show panel" msgstr "패널 표시" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "패널 숨기기" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "숨겨진 탐색 트리의 항목보기." -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "매인 패널에 링크" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "매인 패널에서 링크 해제" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -msgid "tables" -msgstr "테이블" - -#: js/messages.php:633 -msgid "views" -msgstr "뷰" - -#: js/messages.php:634 -msgid "procedures" -msgstr "프로시저" - -#: js/messages.php:635 -msgid "events" -msgstr "이벤트" - -#: js/messages.php:636 -msgid "functions" -msgstr "함수" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" "요청하신 페이지를 기록에서 찾을 수 없습니다. 만기 되었을 수도 있습니다." -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2413,47 +2396,47 @@ msgstr "" "phpMyAdmin 업그레이드가 필요합니다. 최신버전은 %s이며 %s에 릴리즈 되었습니다." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", 최신 안정 버전:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "최신버전" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "뷰 생성" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "오류 보고서 전송" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "오류 보고서 제출" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "치명적인 자바스크립트 오류 발생. 오류를 전송할까요?" -#: js/messages.php:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "보고서 설정 변경" -#: js/messages.php:660 +#: js/messages.php:652 msgid "Show report details" msgstr "보고서 상세 보기" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "PHP의 실행시간 제한에 걸려 내보내기가 완료되지 않았습니다!" -#: js/messages.php:667 +#: js/messages.php:659 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2462,349 +2445,349 @@ msgstr "" "경고: 현재 페이지의 폼 필드는 %d개가 넘습니다. 폼이 전송될 때 PHP의 " "max_input_vars 설정에 의해 일부 필드가 손실될 수 있습니다." -#: js/messages.php:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "서버 에러가 감지되었습니다!" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "이 창의 아래쪽을 보세요." -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "모두 무시" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "각 설정은 현재 전송중입니다. 기다려주세요." -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "이 질의를 다시 실행합니까?" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "정말 이 북마크를 삭제하겠습니까?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 msgid "Show arguments" msgstr "매개변수 보이기" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "매개변수 숨기기" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "이전" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "다음" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "오늘" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "1월" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "2월" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "3월" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "4월" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "5월" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "6월" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "7월" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "8월" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "9월" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "10월" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "11월" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "12월" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "1월" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "2월" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "3월" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "4월" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "5월" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "6월" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "7월" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "8월" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "9월" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "10월" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "11월" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "12월" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "일요일" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "월요일" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "화요일" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "수요일" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "목요일" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "금요일" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "토요일" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "일" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "월" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "화" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "수" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "목" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "금" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "토" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "일" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "월" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "화" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "수" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "목" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "금" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "토" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "주" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "calendar-year-month" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "없음" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "시" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "분" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "초" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "이 필드를 수정하세요" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "올바른 이메일 주소를 입력하세요" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "올바른 URL을 입력하세요" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "올바른 날짜를 입력하세요" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "올바른 날짜(ISO 형식)를 입력하세요" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "올바른 숫자를 입력하세요" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "올바른 신용 카드 번호를 입력하세요" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "숫자만 입력해 주세요" @@ -2812,41 +2795,41 @@ msgstr "숫자만 입력해 주세요" msgid "Please enter the same value again" msgstr "같은 값을 한번 더 입력하세요" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "최소 {0} 글자 이상 입력해주세요" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "{0} 에서 {1} 사이의 값을 입력하세요" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "{0}과 같거나 작은 값을 입력하세요" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "{0}과 같거나 큰 값을 입력하세요" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "올바른 날짜 또는 시간을 입력하세요" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "올바른 HEX값을 입력하세요" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "오류" @@ -2934,11 +2917,12 @@ msgstr "다시 쿼리하기" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -2979,7 +2963,7 @@ msgstr "" msgid "Explain" msgstr "설명" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "프로파일링" @@ -3013,8 +2997,8 @@ msgid "History" msgstr "최근 기록" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3159,7 +3143,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "어두운 테마로 변경" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3167,24 +3151,24 @@ msgstr "" "서버가 응답하지 않습니다 (또는 로컬 서버의 소켓이 현재 제대로 구성되어 있지 " "않습니다)." -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "서버가 응답하지 않습니다." -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "디렉토리를 포함하는 데이터베이스의 권한을 확인하십시오." -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "자세히…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "관리사용자(controluser, 설정에 정의됨)로서의 접속에 실패." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3194,8 +3178,8 @@ msgstr "관리사용자(controluser, 설정에 정의됨)로서의 접속에 실 msgid "Ascending" msgstr "오름차순" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3336,8 +3320,8 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%2$s 에서 %1$s 건 일치" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3379,121 +3363,122 @@ msgstr "모두 선택해제" msgid "Inside column:" msgstr "검색할 컬럼:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "수정한 데이터 저장" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "컬럼(열) 순서 복구" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "행 필터링" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "현재 테이블 검색" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "처음" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "이전" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "다음" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "마지막" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "모두" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "행 갯수:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "키로 정렬" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "텍스트의 일부분" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "전체 텍스트" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "관계키" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display column for relations" msgstr "열(칼럼) 설명(코멘트) 출력하기" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "바이너리 항목 보이기" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "BLOB 내용 보기" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "브라우저 정보 숨기기" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "잘 알려진 텍스트" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "잘 알려진 바이너리" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "행을 삭제 하였습니다." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "강제로 끝냄" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "근사값입니다. [doc@faq3-11]FAQ 3.11[/doc]를 참조하세요." -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "쿼리가 성공적으로 실행되었습니다." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3501,64 +3486,64 @@ msgid "" msgstr "" "이 뷰는 최소 이 숫자 이상의 열을 가지고 있습니다. %s문서%s를 참조해 주십시오." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "%1s - %2s행 표시 중" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "총 %1$d개 중 현재 쿼리에 %2$d개" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "합계 %d" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "질의 실행시간 %01.4f 초." -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "선택한 것을:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 msgid "Check all" msgstr "모두 체크" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "인쇄용 보기" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "쿼리 결과 처리방법" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "차트 표시" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "GIS 데이터를 시각화" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "링크를 찾을 수 없습니다!" @@ -3653,19 +3638,19 @@ msgstr "인덱스가 설정되지 않았습니다!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "인덱스" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3674,24 +3659,24 @@ msgid "Action" msgstr "실행" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "키 이름" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "고유값" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "압축됨" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "관계성" @@ -3699,8 +3684,8 @@ msgstr "관계성" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3710,8 +3695,8 @@ msgid "Collation" msgstr "데이터정렬방식" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3727,15 +3712,15 @@ msgstr "기본 키를 제거했습니다." msgid "Index %s has been dropped." msgstr "인덱스 %s 를 제거했습니다." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "삭제" @@ -3773,12 +3758,13 @@ msgstr "뷰" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3786,7 +3772,7 @@ msgstr "테이블" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3795,8 +3781,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3804,41 +3790,41 @@ msgid "Search" msgstr "검색" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "삽입" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "사용권한" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "테이블 작업" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "SQL 명령어 트래킹" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3849,16 +3835,16 @@ msgstr "트리거" msgid "Database seems to be empty!" msgstr "데이터베이스가 비어있는 것 같습니다!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "질의 마법사" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "루틴" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3866,20 +3852,20 @@ msgstr "루틴" msgid "Events" msgstr "이벤트" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "디자이너" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "중심 열" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "데이터베이스" @@ -3888,33 +3874,33 @@ msgid "User accounts" msgstr "사용자 계정" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "바이너리 로그" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "복제" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "환경설정값" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "문자셋" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "엔진" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "플러그인" @@ -4205,7 +4191,7 @@ msgstr "인덱스 이름을 기본 키로 바꿀 수 없습니다!" msgid "No index parts defined!" msgstr "인덱스 부분의 정의가 없음!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "%1$s의 외래키 생성 에러 (데이터 타입을 확인하세요)" @@ -4668,37 +4654,37 @@ msgstr "%s 기능은 알려진 버그가 있습니다. %s 문서를 참조하십 msgid "Click to toggle" msgstr "토글하려면 클릭" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "업로드 파일:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "웹 서버 업로드 디렉토리중 %s에서 선택:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "설정한 업로드 디렉토리에 접근할 수 없습니다." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "업로드할 파일이 없습니다!" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "비우기" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "실행하기" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "인쇄" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "사용자" @@ -4857,8 +4843,8 @@ msgid "Add new column" msgstr "새 컬럼 추가" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -4920,19 +4906,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "%s를 %s 이상으로 업그레이드 하십시오." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "오류: 토큰 불일치" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS 덮어쓰기 시도" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "어떤 공격을 받고있을 가능성이 있습니다" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "전역 변수에서 숫자로 된 키가 발견 되었습니다" @@ -5756,7 +5742,7 @@ msgid "Remember file name template" msgstr "파일명 템플릿을 저장하기" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT 값 추가" @@ -5795,7 +5781,7 @@ msgstr "phpMyAdmin 설정 공간으로부터 관련 메타데이터 내보내기 #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "%s 추가" @@ -7514,7 +7500,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "쿼리 전송 후 쿼리 박스가 화면상에 남아있을지 여부." -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "쿼리 박스 유지" @@ -7808,104 +7794,35 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "OpenDocument 형식" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "즐겨찾기 목록이 가득 찼습니다!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "테이블 %s 을 비웠습니다." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "뷰 %s가 제거되었습니다." -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "테이블 %s를 삭제했습니다." -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "즐겨찾기 목록이 가득 찼습니다!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "알수없음" -#: libraries/controllers/TableStructureController.php:162 -#, fuzzy, php-format -#| msgid "The column name '%s' is a MySQL reserved keyword." -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.php:250 -msgid "No column selected." -msgstr "선택된 열이 없습니다." - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "컬럼을 이동했습니다." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "테이블 %1$s 가 성공적으로 수정되었습니다." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "질의 오류" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "변경" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "인덱스" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Fulltext" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "중복되지 않은 값" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -7919,6 +7836,14 @@ msgstr "테이블에 숫자형 컬럼이 없어 표시할 수 없습니다." msgid "No data to display" msgstr "표시할 데이터 없음" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "테이블 %1$s 가 성공적으로 수정되었습니다." + #: libraries/controllers/table/TableRelationController.php:212 #, fuzzy #| msgid "Thread %s was successfully killed." @@ -7931,21 +7856,82 @@ msgstr "쓰레드 %s 를 죽였습니다." msgid "Internal relations were successfully updated." msgstr "내부 릴레이션이 추가됨" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "테이블 검색" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Zoom Search" msgid "Zoom search" msgstr "추가 검색" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "찾기 및 바꾸기" +#: libraries/controllers/table/TableStructureController.php:163 +#, fuzzy, php-format +#| msgid "The column name '%s' is a MySQL reserved keyword." +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "'%s'라는 컬럼명은 MySQL 예약어입니다." + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "선택된 열이 없습니다." + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "컬럼을 이동했습니다." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "질의 오류" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "변경" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "인덱스" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Fulltext" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "중복되지 않은 값" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -7955,7 +7941,7 @@ msgstr "%s 확장기능이 설치되지 않았습니다. PHP의 설정을 확인 msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "변화 없음" @@ -8022,7 +8008,7 @@ msgstr "만들기" msgid "Create database:" msgstr "데이터베이스 생성:" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "권한 없음" @@ -8754,69 +8740,69 @@ msgid "Dump has been saved to file %s." msgstr "덤프 파일이 %s에 저장되었습니다." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "결과값이 없습니다. (빈 레코드 리턴)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "데이터베이스 이동: %s" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "%s 에 대한 설정 변경" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "테이블 이동: %s" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "%s 의 구조" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "뷰로 이동: %s" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "%s 개 열(칼럼)에 인덱스 만들기" @@ -8839,66 +8825,66 @@ msgstr "함수" msgid "Binary" msgstr "바이너리" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "컬럼의 길이 때문에,
이 컬럼을 편집할 수 없을 수도 있습니다." -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "바이너리 - 편집 금지" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "또는" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "웹 서버 업로드 디렉터리:" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "편집/삽입" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "%s 개의 행을 추가로 삽입" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "이어서" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "새 행을 삽입합니다" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "새 행을 삽입하고 에러를 무시합니다" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "삽입 쿼리 보기" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "이전 페이지로 되돌아가기" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "새 행(레코드) 삽입하기" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "이 페이지로 되돌아가기" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "다음 행 수정" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -8906,7 +8892,7 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "TAB 키나 CTRL+화살표로 값 사이를 이동할 수 있습니다" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -8918,11 +8904,11 @@ msgstr "TAB 키나 CTRL+화살표로 값 사이를 이동할 수 있습니다" msgid "Value" msgstr "값" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "SQL 쿼리 보기" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "삽입된 행의 id: %1$d" @@ -8938,35 +8924,35 @@ msgstr "없음" msgid "Convert to Kana" msgstr "전각 가나로 변환" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "성공!" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "테이블의 접두사를 교체:" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "복사할 테이블에 접두사 추가:" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "테이블 접두사 추가:" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "접두사 추가" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "정말로 다음 쿼리를 실행하시겠습니까?" @@ -9190,8 +9176,8 @@ msgstr "프로시저:" msgid "Views:" msgstr "뷰:" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "보기" @@ -9232,8 +9218,9 @@ msgid_plural "%s results found" msgstr[0] "%s 개의 결과가 발견됨" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" -msgstr "데이터베이스 이름 또는 정규식으로 필터링" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -9242,10 +9229,6 @@ msgstr "데이터베이스 이름 또는 정규식으로 필터링" msgid "Clear fast filter" msgstr "빠른 필터 비우기" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "이름 또는 정규식으로 필터링" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "전부 접기" @@ -9632,7 +9615,7 @@ msgstr "데이터베이스 이름을 변경합니다" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -9643,7 +9626,7 @@ msgstr "어떻게 들어오셨어요? 지금 여기 있을 권한이 없습니 #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -9663,18 +9646,18 @@ msgstr "데이터베이스 제거" msgid "Drop the database (DROP)" msgstr "데이터베이스 제거 (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "구조만" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "구조와 데이터 모두" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "데이터만" @@ -9686,7 +9669,7 @@ msgstr "데이터베이스를 복사합니다" msgid "CREATE DATABASE before copying" msgstr "복사 전에 CREATE DATABASE 실행" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "제약조건 추가" @@ -9726,163 +9709,163 @@ msgstr "스토리지 엔진" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "테이블 복사 (데이터베이스명.테이블명)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "복사한 테이블로 옮겨감" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "테이블 유지보수" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "테이블 분석" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "테이블 검사" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "테이블 검사" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "테이블 단편화 제거" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "테이블 %s을 플러시 했습니다." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "테이블 갱신 (캐시 삭제)" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "테이블 최적화" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "테이블 복구" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "데이터나 테이블 삭제" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "테이블 내용 비우기(TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "테이블 삭제(DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "분석" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "검사" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "옵티마이저" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "리빌드" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "복구" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Collapse" msgid "Coalesce" msgstr "접기" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "파티션 유지 보수" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "파티션 %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "파티셔닝 삭제" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "referential 무결성 검사:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "같은 테이블이 있어 옮길 수 없음!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "같은 테이블이 있어 복사할 수 없음!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "테이블 %s 을 %s 로 옮겼습니다." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "%s 테이블이 %s 으로 복사되었습니다." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "테이블 %s 을 %s 로 옮겼습니다." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "%s 테이블이 %s 으로 복사되었습니다." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "테이블명이 없습니다!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "이 형식은 옵션이 없음" @@ -10059,7 +10042,7 @@ msgstr "데이터 덤프 옵션" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "테이블의 덤프 데이터" @@ -10083,21 +10066,21 @@ msgstr "정의" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "테이블 구조" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "뷰 구조" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10189,7 +10172,7 @@ msgid "Database:" msgstr "데이터베이스:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "데이터:" @@ -10294,7 +10277,7 @@ msgid "Data creation options" msgstr "데이터 생성 옵션" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "삽입 전에 테이블 비우기" @@ -10371,8 +10354,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10380,85 +10363,85 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Missing data for %s" msgid "Metadata" msgstr "%s 데이터 누락" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Metadata for %s" msgstr "%s 데이터 누락" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "생성:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "마지막 업데이트:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "마지막 검사:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "사용중" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "덤프된 테이블의 제약사항" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "테이블의 제약사항" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "덤프된 테이블의 인덱스" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "테이블의 인덱스" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "덤프된 테이블의 AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "테이블의 AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "뷰 구조" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "데이터 읽기 오류:" @@ -10710,9 +10693,9 @@ msgstr "릴레이션 스키마" msgid "Table of contents" msgstr "목차(차례)" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "추가" @@ -10890,53 +10873,53 @@ msgstr "텍스트를 SQL 쿼리형식으로 문법 강조를 합니다." msgid "Formats text as XML with syntax highlighting." msgstr "텍스트를 SQL 쿼리형식으로 문법 강조를 합니다." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "오류: 릴레이션이 이미 존재함." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "FOREIGN KEY 릴레이션이 추가됨" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "오류: 외래키 릴레이션을 추가할 수 없습니다!" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "오류: 릴레이션 기능이 비활성화 되어 있음!" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "내부 릴레이션이 추가됨" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "오류: 릴레이션이 추가되지 않음." -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 msgid "FOREIGN KEY relation has been removed." msgstr "외래키 릴레이션이 제거되었습니다." -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "오류: 외래키 릴레이션을 제거할 수 없습니다!" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 msgid "Error: Internal relation could not be removed!" msgstr "오류: 내부 릴레이션을 제거할 수 없습니다!" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "내부 릴레이션이 제거되었습니다." @@ -10988,95 +10971,95 @@ msgstr "브라우저 변형" msgid "Please see the documentation on how to update your column_info table. " msgstr "도큐먼트에서 column_comments 테이블을 업데이트하는 방법을 참고하세요." -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "북마크된 SQL 질의" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL 내력(히스토리)" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "영속적인 최근 사용한 테이블" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "Persistent recently used tables" msgid "Persistent favorite tables" msgstr "영속적인 최근 사용한 테이블" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "영속적인 테이블의 UI 환경설정" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "사용자 환경설정" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "설정 가능한 메뉴" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "네비게이션 아이템 숨기기/보이기" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "Query-By-Example 검색을 저장" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Remember table's sorting" msgid "Remembering Designer Settings" msgstr "테이블의 정렬 순서 기억하기" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "잘못된 내보내기 타입" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "고급 기능을 설정을 쉽게 설정하기:" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "%screate_tables.sql에서 필요한 테이블을 생성하세요." -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "생성한 테이블에 접근할 수 있는 pma 사용자를 생성하세요." -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "수정된 설정 파일을 적용하기 위해 phpMyAdmin에 다시 로그인해야 합니다." -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "설명이 없습니다" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11084,14 +11067,14 @@ msgid "" "configuration storage there." msgstr "phpMyAdmin 설정 공간 테이블이 없습니다" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "phpMyAdmin 설정 공간 테이블이 없습니다" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -11270,8 +11253,8 @@ msgstr "사용자명:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "사용자명" @@ -11279,7 +11262,7 @@ msgstr "사용자명" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "암호" @@ -11919,7 +11902,7 @@ msgstr[0] "%1$d개의 데이터베이스를 삭제했습니다." msgid "Plugin" msgstr "플러그인" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "버전" @@ -11927,98 +11910,94 @@ msgstr "버전" msgid "Author" msgstr "저자" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "라이선스" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "사용불가" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "권한 없음." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "GRANT 이외의 모든 권한을 포함함." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "데이터 읽기 허용." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "데이터 추가(insert) 및 변경(replace) 허용." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "데이터 변경 허용." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "데이터 삭제 허용." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "DB 및 테이블 생성 허용." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "DB 및 테이블 삭제 허용." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "캐시를 비우고 서버를 재시동하는 것을 허용." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "서버 종료 허용." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "데이터를 파일에서 가져오기 및 파일로 내보내기 허용." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "이 버전의 MySQL에는 소용이 없습니다." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "인덱스 생성 및 삭제 허용." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "테이블 구조 변경 허용." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "전체 데이터베이스 목록 접근을 허용합니다." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12026,70 +12005,70 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "임시테이블 생성 허용." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "현재 쓰레드에 대한 테이블 잠금(lock) 허용." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "복제서버(replication slaves)에 필요합니다." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 #, fuzzy msgid "Allows creating new views." msgstr "테이블 생성 허용." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 #, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Allows to set up events for the event scheduler." msgstr "현재 쓰레드에 대한 테이블 잠금(lock) 허용." #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "트리거 생성 및 삭제 허용." #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 #, fuzzy msgid "Allows creating stored routines." msgstr "테이블 생성 허용." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "인덱스 생성 및 삭제 허용." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "사용자 계정을 생성, 삭제 및 계정명 변경하는 것을 허용." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -12103,8 +12082,8 @@ msgstr "없음" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12148,32 +12127,32 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "주의: 이 옵션을 0으로 하면 제한이 없어집니다." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "사용자가 서버에 시간당 보낼 수 있는 질의(쿼리)의 갯수를 제한함." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12181,7 +12160,7 @@ msgid "Routine" msgstr "루틴" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "권한 테이블을 갱신하지 않고 사용자와 권한 추가하기 허용." @@ -12198,14 +12177,14 @@ msgstr "테이블 생성 허용." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "테이블에 관한 권한" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "주의: MySQL 권한 이름은 영어로 표시됩니다." @@ -12215,7 +12194,7 @@ msgid "Administration" msgstr "관리" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "전체적 권한" @@ -12224,15 +12203,15 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "데이터베이스에 관한 권한" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "테이블 생성 허용." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "테이블 삭제 허용." @@ -12255,7 +12234,7 @@ msgid "Native MySQL Authentication" msgstr "쿠키 인증" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "로그인 정보" @@ -12280,8 +12259,8 @@ msgstr "사용자명:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Log name" msgid "Host name" @@ -12303,243 +12282,243 @@ msgstr "인증" msgid "Password Hashing Method" msgstr "비밀번호 해싱:" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "%s 의 암호가 바뀌었습니다." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "%s의 권한을 제거했습니다." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "사용자 추가" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "유저 전용 데이터베이스" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "동명의 데이터베이스를 생성하고 모든 권한을 부여." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "데이터베이스 \"%s\"에 대한 모든 권한을 부여." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\" 에 접근할 수 있는 사용자들" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "사용자가 추가되었습니다." -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "허용" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "사용자가 없습니다." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "누구나" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "데이터베이스 고유" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 #, fuzzy #| msgid "Databases" msgid "table-specific" msgstr "데이터베이스" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "권한 수정:" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "제거" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "서버 수정" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 #, fuzzy #| msgid "Delete the matches for the %s table?" msgid "… delete the old one from the user tables." msgstr "테이블 %s에 대하여 일치하는 것들을 삭제 하겠습니까?" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "... 이전 버전의 모든 활성화된 권한을 취소한 후 이전 버전을 삭제합니다." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "... 사용자 테이블로부터 이전 것을 삭제하고, 권한 정보를 새로고침 합니다." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "로그인 정보 변경 / 사용자 복사" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "새로운 사용자를 동일한 권한으로 생성하고 …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "열(칼럼)에 관한 권한" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "선택한 사용자를 삭제" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "모든 활성화된 권한을 박탈하고 사용자를 삭제함." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "사용자명과 같은 이름의 데이터베이스를 삭제합니다." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "삭제할 사용자를 선택하세요!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "사용권한을 갱신합니다(Reloading the privileges)" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "선택한 사용자들을 삭제했습니다." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "%s 의 권한을 업데이트했습니다." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "%s 을 삭제합니다" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "권한을 다시 로딩했습니다." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "사용자 %s 가 이미 존재합니다!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "%s에 대한 권한" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "사용자" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "권한 수정:" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "Users" msgid "User account" msgstr "사용자" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "사용자 개요" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12551,7 +12530,7 @@ msgstr "" "다. 만약 수동으로 서버의 권한 정보를 수정하였다면, 서버의 정보와 맞지 않을 " "수 있습니다. 이 경우, %sreload the privileges%s를 먼저 수행하세요." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -12569,11 +12548,11 @@ msgstr "" "다. 만약 수동으로 서버의 권한 정보를 수정하였다면, 서버의 정보와 맞지 않을 " "수 있습니다. 이 경우, %sreload the privileges%s를 먼저 수행하세요." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "선택한 사용자는 사용권한 테이블에 존재하지 않습니다." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "새 사용자를 추가했습니다." @@ -12818,24 +12797,24 @@ msgstr "사용방법/셋업" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "그래프 드래그 사용" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "새로고침 간격" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "그래프 상의 컬럼 갯수" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "그래프 정렬" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -12843,7 +12822,7 @@ msgstr "" "차트 설정은 브라우저의 로컬 스토리지에 저장됩니다. 설정된 내용이 있다면 내보" "내기를 할 수 있습니다." -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "기본값으로 초기화" @@ -12901,7 +12880,7 @@ msgid "Statements" msgstr "명세" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "#" @@ -12926,17 +12905,17 @@ msgstr "원본 값 보기" msgid "Related links:" msgstr "추천 링크:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "연결을 닫지 않고 클라이언트가 죽어서 중지된 연결의 수." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL 서버에 연결 실패한 횟수." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -12945,16 +12924,16 @@ msgstr "" "트랜잭션의 구문을 임시로 저장하기 위해 바이너리 로그 캐시를 사용했지만 " "binlog_cache_size 값을 넘어버려 임시 파일을 사용한 트랜잭션 수." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "임시 바이너리 로그 캐시를 사용한 트랜잭션의 수." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "MySQL 서버에 연결 시도(성공 및 실패)한 횟수." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12965,78 +12944,78 @@ msgstr "" "Created_tmp_disk_tables 값이 크면, tmp_table_size 값을 늘려서 임시 테이블을 " "디스크에 생성하지 않고 메모리에 생성하도록 할 수 있습니다." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "mysqld가 생성한 임시파일의 갯수." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "구문을 실행하는 동안 서버가 메모리에 임시로 생성한 테이블 수." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "어떤 오류(중복된 키 등)로 인해 INSERT DELAYED로 기록된 행의 수." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13044,7 +13023,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13052,42 +13031,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "디스크에 저장이 필요한 페이지 수." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13095,33 +13074,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13130,205 +13109,205 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "현재 미완료된 fsync() 작업의 갯수." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "현재 미완료된 읽기 작업의 갯수." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "현재 미완료된 쓰기 작업의 갯수." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "현재까지 읽은 데이터의 바이트 수." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "데이터를 읽은 총 횟수." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "데이터를 쓴 총 횟수." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "현재까지 쓴 데이터의 바이트 수." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "이중쓰기 작업으로 쓰여진 페이지 수." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "이중쓰기 작업이 수행된 횟수." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "행에 대한 락을 획득하기 위해 기다릴 최대 시간 (밀리초)." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "INSERT DELAYED 큐에서 쓰기 작업을 대기중인 행의 수." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13336,19 +13315,19 @@ msgstr "" "열린 테이블 수. 열린 테이블이 많다면, 테이블 캐시값이 작은 경우일 수 있습니" "다." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "열린 파일 수." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "열린 스트림 수 (주로 로그 남기기용)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "열린 테이블 수." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13357,19 +13336,19 @@ msgstr "" "쿼리 캐시에 비어있는 메모리 블럭 수. 숫자가 크다면 파편화 문제가 있을 수 있으" "며, FLUSH QUERY CACHE 구문으로 해결할 할 수도 있습니다." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "쿼리 캐시의 빈 메모리 양." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "캐시 히트 수." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "캐시에 추가된 쿼리의 수." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13380,7 +13359,7 @@ msgstr "" "를 조정하는데 도움이 될겁니다. 쿼리캐시는 LRU 알고리즘을 사용하여 삭제할 쿼리" "를 선택합니다." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13388,19 +13367,19 @@ msgstr "" "캐시되지 않은 쿼리의 수(캐시 불가능한 것 또는 query_cache_type 설정때문에 캐" "시되지 않은 것)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "캐시에 등록된 쿼리 수." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "쿼리 캐시의 총 블럭 수." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "Failsafe 리플리케이션 상태 (아직 구현 안 됨)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -13408,75 +13387,75 @@ msgstr "" "인덱스를 사용하지 않은 조인의 수. 이 값이 0이 아니라면 테이블의 인덱스들을 주" "의 깊게 체크하세요." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "레퍼런스 테이블의 레인지 검색에 사용된 조인의 수." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "첫번째 테이블을 풀스캔한 조인의 갯수." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "지정된 범위에 완료된 정렬 수." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "정렬된 행의 수." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13484,18 +13463,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13503,11 +13482,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "스레드 캐시 적중률 (계산된 값)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -13516,75 +13495,75 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 #, fuzzy #| msgid "Users" msgid "User groups" msgstr "사용자" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "서버 버전" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Database server" msgid "Database level tabs" msgstr "데이터베이스 서버" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table comments" msgid "Table level tabs" msgstr "테이블 설명" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "사용자 보기" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "사용자 추가" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "권한 없음." -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Column names: " msgid "Group name:" msgstr "열(컬럼) 이름: " -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "서버 버전" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "데이터베이스 서버" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -13650,21 +13629,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -13735,123 +13710,123 @@ msgstr "이벤트 %1$s 를 생성했습니다." msgid "Variable name was expected." msgstr "파일명 템플릿" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "테이블의 처음" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 #, fuzzy #| msgid "Unexpected characters on line %s." msgid "Unexpected token." msgstr "%s 라인에 알 수 없는 문자가 있습니다." -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 #, fuzzy #| msgid "The number of tables that are open." msgid "The name of the entity was expected." msgstr "열린 테이블 수." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "행을 삭제 하였습니다." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "데이터 파일 증가량" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 #, fuzzy #| msgid "Other" msgid "Order" msgstr "기타" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "상태" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "전체 시간" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "% 시간" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "닫기" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "시간" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "이 SQL 질의를 북마크함" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created!" msgstr "북마크 %s가 생성되었습니다." -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "PHP 코드 보기" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Grid edit, checkbox, Edit, " @@ -13863,7 +13838,7 @@ msgstr "" "이 테이블에는 유일 속성을 가진 컬럼이 없습니다. 격자창 편집, 체크박스, 편집, " "복사, 삭제 기능을 사용할 수 없습니다." -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Grid edit, checkbox, Edit, " @@ -13875,7 +13850,7 @@ msgstr "" "이 테이블에는 유일 속성을 가진 컬럼이 없습니다. 격자창 편집, 체크박스, 편집, " "복사, 삭제 기능을 사용할 수 없습니다." -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -13906,27 +13881,27 @@ msgstr "" msgid "Bind parameters" msgstr "잘못된 인자!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "구분자" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "이 질의를 다시 보여줌" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "보기만" @@ -13971,178 +13946,178 @@ msgstr "%s 에 대한 추적을 비활성화하기" msgid "Deactivate now" msgstr "지금 비활성화" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "생성됨" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "수정됨" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 msgid "Delete version" msgstr "버전 삭제" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "추적 보고서" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "구조 요약" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "활성" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "비활성" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "추적 상태" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "이 테이블에 대한 추적 데이터를 제거" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "데이터 없음" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "SQL 덤프(파일 다운로드)" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "SQL 덤프" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "이 옵션은 테이블과 그 안에 담겨 있는 데이터를 교체하게 됩니다." -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "SQL 실행" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "%s로 내보내기" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 #, fuzzy #| msgid "Data point content" msgid "Data definition statement" msgstr "데이터 포인트 내용" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "날짜" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "사용자명" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "버전 %s 스냅샷 (SQL 코드)" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "없음" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "필요치 않을 경우 이 두 줄을 주석처리하시기 바랍니다." -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL 구문이 추출되었습니다. 덤프된 내용을 복사하거나 실행하세요." -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, fuzzy, php-format #| msgid "Tracking report" msgid "Tracking report for table `%s`" msgstr "추적 보고서" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format #| msgid "Create version %1$s of %2$s" msgid "Version %1$s of %2$s was deleted." msgstr "%2$s의 %1$s 버전 생성" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "추적되지 않은 테이블" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "테이블 추적" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "추적된 테이블" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "최근 버전" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "추적 데이터 삭제" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "버전" @@ -14150,11 +14125,11 @@ msgstr "버전" msgid "Manage your settings" msgstr "나만의 설정 관리" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "설정 저장 완료." -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14257,7 +14232,7 @@ msgstr "데이터베이스가 없습니다" msgid "View dump (schema) of databases" msgstr "데이터베이스의 덤프(스키마) 데이터 보기" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14284,7 +14259,7 @@ msgstr "" "phpMyAdmin이 쓰레드 %s를 종료하는데 실패했습니다. 이미 해당 쓰레드가 종료되었" "을 것입니다." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -15156,47 +15131,53 @@ msgstr "산포도(점도표)" msgid "Stacked" msgstr "누적" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "차트 제목" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "X축:" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "시리즈:" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "X축 레이블:" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "X 값" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "Y축 레이블:" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Y값" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside column:" msgid "Series column:" msgstr "검색할 컬럼:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Values for column %s" msgid "Value Column:" msgstr "\"%s\" 열의 값" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "차트를 이미지 파일로 저장" @@ -15261,51 +15242,52 @@ msgstr "설명:" msgid "Drag to reorder" msgstr "재정렬하려면 드래그하세요." -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +msgid "Foreign key constraints" +msgstr "외래키 제약" + +#: templates/table/relation/common_form.phtml:9 +#, fuzzy +#| msgid "Action" +msgid "Actions" +msgstr "실행" + +#: templates/table/relation/common_form.phtml:10 +#, fuzzy +#| msgid "Constraints for table" +msgid "Constraint properties" +msgstr "테이블의 제약사항" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "외래키 제약" + +#: templates/table/relation/common_form.phtml:60 +msgid "+ Add constraint" +msgstr "+ 제약조건 추가" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "내부 릴레이션" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "내부 릴레이션" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "외래키 릴레이션이 있을 경우, 거기에 해당하는 내부 릴레이션은 필요 없습니다." -#: templates/table/relation/common_form.phtml:37 -msgid "Foreign key constraints" -msgstr "외래키 제약" - -#: templates/table/relation/common_form.phtml:40 -#, fuzzy -#| msgid "Action" -msgid "Actions" -msgstr "실행" - -#: templates/table/relation/common_form.phtml:41 -#, fuzzy -#| msgid "Constraints for table" -msgid "Constraint properties" -msgstr "테이블의 제약사항" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "외래키 제약" - -#: templates/table/relation/common_form.phtml:83 -msgid "+ Add constraint" -msgstr "+ 제약조건 추가" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "출력할 필드 선택:" @@ -15441,7 +15423,7 @@ msgid "at beginning of table" msgstr "테이블의 처음" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -15490,7 +15472,7 @@ msgstr "파티션 있음" msgid "Edit partitioning" msgstr "파티셔닝 삭제" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "뷰 편집" @@ -16840,6 +16822,27 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert가 0으로 설정되었습니다" +#~ msgid "tables" +#~ msgstr "테이블" + +#~ msgid "views" +#~ msgstr "뷰" + +#~ msgid "procedures" +#~ msgstr "프로시저" + +#~ msgid "events" +#~ msgstr "이벤트" + +#~ msgid "functions" +#~ msgstr "함수" + +#~ msgid "Filter databases by name or regex" +#~ msgstr "데이터베이스 이름 또는 정규식으로 필터링" + +#~ msgid "Filter by name or regex" +#~ msgstr "이름 또는 정규식으로 필터링" + #~ msgid "Username and hostname didn't change." #~ msgstr "username과 hostname이 변경되지 않았음." diff --git a/po/ksh.po b/po/ksh.po index 6fcab9d69b..ae479e0b2c 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2014-10-02 15:09+0200\n" "Last-Translator: Purodha \n" "Language-Team: Colognian Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 msgid "Page name" msgstr "" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:550 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:551 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:552 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "Alle ußwähle" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "not active" msgid "Show panel" msgstr "nit aktief" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -#, fuzzy -#| msgid "Table" -msgid "tables" -msgstr "Tabäll" - -#: js/messages.php:633 -msgid "views" -msgstr "" - -#: js/messages.php:634 -msgid "procedures" -msgstr "" - -#: js/messages.php:635 -msgid "events" -msgstr "" - -#: js/messages.php:636 -msgid "functions" -msgstr "" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2356,398 +2335,398 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr "" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "" -#: js/messages.php:660 +#: js/messages.php:652 msgid "Show report details" msgstr "" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 msgid "Show arguments" msgstr "" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Select All" msgid "Please enter a valid date" msgstr "Alle ußwähle" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "" @@ -2755,41 +2734,41 @@ msgstr "" msgid "Please enter the same value again" msgstr "" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "" @@ -2874,11 +2853,12 @@ msgstr "" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -2921,7 +2901,7 @@ msgstr "" msgid "Explain" msgstr "" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "" @@ -2955,8 +2935,8 @@ msgid "History" msgstr "" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3107,30 +3087,30 @@ msgstr "" msgid "Switch to dark theme" msgstr "" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3140,8 +3120,8 @@ msgstr "" msgid "Ascending" msgstr "" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3286,8 +3266,8 @@ msgstr[1] "" msgstr[2] "" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3331,186 +3311,187 @@ msgstr "Alle nit mieh ußwähle" msgid "Inside column:" msgstr "" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Select All" msgid "Display column for relations" msgstr "Alle ußwähle" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy msgid "Check all" msgstr "Ein Tabäll" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "" @@ -3602,19 +3583,19 @@ msgstr "" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3623,24 +3604,24 @@ msgid "Action" msgstr "" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "" @@ -3648,8 +3629,8 @@ msgstr "" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3659,8 +3640,8 @@ msgid "Collation" msgstr "" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3676,15 +3657,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Falle lohße" @@ -3721,12 +3702,13 @@ msgstr "" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3734,7 +3716,7 @@ msgstr "Tabäll" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3743,8 +3725,8 @@ msgid "SQL" msgstr "" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3752,41 +3734,41 @@ msgid "Search" msgstr "" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3797,16 +3779,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3814,20 +3796,20 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "" @@ -3836,33 +3818,33 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4158,7 +4140,7 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4571,37 +4553,37 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "" @@ -4764,8 +4746,8 @@ msgid "Add new column" msgstr "" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -4824,19 +4806,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -5612,7 +5594,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -5651,7 +5633,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "" @@ -7192,7 +7174,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "" @@ -7464,102 +7446,33 @@ msgstr "" msgid "OpenDocument Text" msgstr "" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "" - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "" - -#: libraries/controllers/TableStructureController.php:967 -#, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "" - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -7573,6 +7486,14 @@ msgstr "" msgid "No data to display" msgstr "" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "" + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "" @@ -7581,19 +7502,80 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr "" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:975 +#, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -7603,7 +7585,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7668,7 +7650,7 @@ msgstr "" msgid "Create database:" msgstr "" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "" @@ -8342,69 +8324,69 @@ msgid "Dump has been saved to file %s." msgstr "" #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "" @@ -8427,71 +8409,71 @@ msgstr "" msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -8503,11 +8485,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -8523,35 +8505,35 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "" @@ -8769,8 +8751,8 @@ msgstr "" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "" @@ -8809,7 +8791,8 @@ msgstr[1] "" msgstr[2] "" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" msgstr "" #: libraries/navigation/NavigationTree.php:1371 @@ -8817,10 +8800,6 @@ msgstr "" msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -9195,7 +9174,7 @@ msgstr "" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9204,7 +9183,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "" @@ -9222,18 +9201,18 @@ msgstr "" msgid "Drop the database (DROP)" msgstr "" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "" @@ -9245,7 +9224,7 @@ msgstr "" msgid "CREATE DATABASE before copying" msgstr "" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "" @@ -9285,158 +9264,158 @@ msgstr "" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy msgid "Checksum table" msgstr "Ein Tabäll" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "" @@ -9601,7 +9580,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -9625,21 +9604,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -9729,7 +9708,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "" @@ -9821,7 +9800,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -9890,8 +9869,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9899,81 +9878,81 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 msgid "Metadata" msgstr "" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "weed jebruch" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "" @@ -10203,9 +10182,9 @@ msgstr "" msgid "Table of contents" msgstr "" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "" @@ -10369,47 +10348,47 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 msgid "Error: Internal relation could not be added!" msgstr "" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 msgid "FOREIGN KEY relation has been removed." msgstr "" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 msgid "Error: Internal relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "" @@ -10454,102 +10433,102 @@ msgstr "" msgid "Please see the documentation on how to update your column_info table. " msgstr "" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 msgid "Persistent favorite tables" msgstr "" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 msgid "Saving export templates" msgstr "" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -10721,8 +10700,8 @@ msgstr "" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "" @@ -10730,7 +10709,7 @@ msgstr "" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "" @@ -11346,7 +11325,7 @@ msgstr[2] "" msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "" @@ -11354,98 +11333,94 @@ msgstr "" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "" #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "" #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "" #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -11453,65 +11428,65 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "" #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "" #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -11523,8 +11498,8 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -11564,37 +11539,37 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -11609,14 +11584,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11626,7 +11601,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "" @@ -11635,15 +11610,15 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "" @@ -11660,7 +11635,7 @@ msgid "Native MySQL Authentication" msgstr "" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "" @@ -11683,8 +11658,8 @@ msgstr "" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 msgid "Host name" msgstr "" @@ -11700,216 +11675,216 @@ msgstr "" msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 msgid "Database for user account" msgstr "" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 msgid "Remove selected user accounts" msgstr "" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11918,7 +11893,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11927,11 +11902,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "" @@ -12153,30 +12128,30 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -12232,7 +12207,7 @@ msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -12257,33 +12232,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12291,78 +12266,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12370,7 +12345,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12378,42 +12353,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12421,33 +12396,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12456,242 +12431,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12699,99 +12674,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12799,18 +12774,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12818,11 +12793,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -12831,57 +12806,57 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "" @@ -12941,21 +12916,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 msgid "An alias was expected." msgstr "" @@ -13011,119 +12982,119 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 msgid "At least one column definition was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -13151,27 +13122,27 @@ msgstr "" msgid "Bind parameters" msgstr "" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "" @@ -13215,172 +13186,172 @@ msgstr "" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Aanjelaat" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 msgid "Delete version" msgstr "" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "aktief" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "nit aktief" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Väsjohne" @@ -13388,11 +13359,11 @@ msgstr "Väsjohne" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -13491,7 +13462,7 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -13516,7 +13487,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -14299,45 +14270,49 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +msgid "Chart title:" +msgstr "" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Column" msgid "Value Column:" msgstr "Kolonn" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "" @@ -14390,46 +14365,47 @@ msgstr "" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +msgid "Foreign key constraints" +msgstr "" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "" + +#: templates/table/relation/common_form.phtml:10 +msgid "Constraint properties" +msgstr "" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "" + +#: templates/table/relation/common_form.phtml:60 +msgid "+ Add constraint" +msgstr "" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:37 -msgid "Foreign key constraints" -msgstr "" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "" - -#: templates/table/relation/common_form.phtml:41 -msgid "Constraint properties" -msgstr "" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "" - -#: templates/table/relation/common_form.phtml:83 -msgid "+ Add constraint" -msgstr "" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "" @@ -14555,7 +14531,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 msgid "Partitions" msgstr "" @@ -14589,7 +14565,7 @@ msgstr "Ein Tabäll" msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "" @@ -15746,6 +15722,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Table" +#~ msgid "tables" +#~ msgstr "Tabäll" + #~ msgid "Select All" #~ msgstr "Alle ußwähle" diff --git a/po/ky.po b/po/ky.po index 3c2aa0aabc..db9e806a54 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Kyrgyz Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Inner ring %d:" msgid "Inner ring" msgstr "Ички шакекче %d:" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Сырткы шакекче:" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 msgid "Page name" msgstr "" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:550 +#: js/messages.php:551 #, fuzzy, php-format #| msgid "Value for the column \"%s\"" msgid "Add an option for column \"%s\"." msgstr "\"%s\" мамычанын мааниси" -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "Баарын танда" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Table comments:" msgid "Show panel" msgstr "Жадыбал жөнүндө маалымат:" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -#, fuzzy -#| msgid "Table" -msgid "tables" -msgstr "Жадыбал" - -#: js/messages.php:633 -msgid "views" -msgstr "" - -#: js/messages.php:634 -msgid "procedures" -msgstr "" - -#: js/messages.php:635 -msgid "events" -msgstr "" - -#: js/messages.php:636 -#, fuzzy -#| msgid "Action" -msgid "functions" -msgstr "Кыймыл" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2384,400 +2363,400 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr "" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "" -#: js/messages.php:660 +#: js/messages.php:652 msgid "Show report details" msgstr "" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments:" msgid "Show arguments" msgstr "Жадыбал жөнүндө маалымат:" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Select All" msgid "Please enter a valid date" msgstr "Баарын танда" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "" @@ -2785,41 +2764,41 @@ msgstr "" msgid "Please enter the same value again" msgstr "" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "" @@ -2904,11 +2883,12 @@ msgstr "" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -2950,7 +2930,7 @@ msgstr "" msgid "Explain" msgstr "" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "" @@ -2984,8 +2964,8 @@ msgid "History" msgstr "" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3136,30 +3116,30 @@ msgstr "" msgid "Switch to dark theme" msgstr "" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3169,8 +3149,8 @@ msgstr "" msgid "Ascending" msgstr "" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3313,8 +3293,8 @@ msgstr[0] "" msgstr[1] "" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3358,163 +3338,164 @@ msgstr "Баарынан баш тарт" msgid "Inside column:" msgstr "" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Value for the column \"%s\"" msgid "Display column for relations" msgstr "\"%s\" мамычанын мааниси" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "Database %1$s has been created." msgid "The row has been deleted." msgstr "%1$s аттуу берилиштер базасы түзүлдү." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3523,25 +3504,25 @@ msgstr "" msgid "Check all" msgstr "%s жадыбал" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 #, fuzzy #| msgid "Links to" msgid "Link not found!" @@ -3635,19 +3616,19 @@ msgstr "" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3656,24 +3637,24 @@ msgid "Action" msgstr "Кыймыл" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "" @@ -3681,8 +3662,8 @@ msgstr "" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3692,8 +3673,8 @@ msgid "Collation" msgstr "" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3709,15 +3690,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Алып сал" @@ -3754,12 +3735,13 @@ msgstr "" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3767,7 +3749,7 @@ msgstr "Жадыбал" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3776,8 +3758,8 @@ msgid "SQL" msgstr "" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3785,41 +3767,41 @@ msgid "Search" msgstr "" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3830,16 +3812,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3847,22 +3829,22 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "Value for the column \"%s\"" msgid "Central columns" msgstr "\"%s\" мамычанын мааниси" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "" @@ -3871,33 +3853,33 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4188,7 +4170,7 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4601,37 +4583,37 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "" @@ -4796,8 +4778,8 @@ msgid "Add new column" msgstr "\"%s\" мамычанын мааниси" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -4856,19 +4838,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -5644,7 +5626,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -5683,7 +5665,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "" @@ -7232,7 +7214,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "" @@ -7504,103 +7486,35 @@ msgstr "" msgid "OpenDocument Text" msgstr "" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "View %s has been dropped." msgstr "%1$s аттуу берилиштер базасы түзүлдү." -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "Table %s has been dropped." msgstr "%1$s аттуу берилиштер базасы түзүлдү." -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "" - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "" - -#: libraries/controllers/TableStructureController.php:967 -#, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "" - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -7614,6 +7528,14 @@ msgstr "" msgid "No data to display" msgstr "" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "" + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "" @@ -7624,19 +7546,79 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr "%1$s аттуу берилиштер базасы түзүлдү." -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:975 +#, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -7646,7 +7628,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7711,7 +7693,7 @@ msgstr "" msgid "Create database:" msgstr "" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "" @@ -8391,69 +8373,69 @@ msgid "Dump has been saved to file %s." msgstr "" #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "" @@ -8476,71 +8458,71 @@ msgstr "" msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -8552,11 +8534,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -8572,35 +8554,35 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "" @@ -8818,8 +8800,8 @@ msgstr "" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Көрсөт" @@ -8857,7 +8839,8 @@ msgstr[0] "" msgstr[1] "" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" msgstr "" #: libraries/navigation/NavigationTree.php:1371 @@ -8865,10 +8848,6 @@ msgstr "" msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -9247,7 +9226,7 @@ msgstr "" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9256,7 +9235,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "" @@ -9274,18 +9253,18 @@ msgstr "" msgid "Drop the database (DROP)" msgstr "" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "" @@ -9297,7 +9276,7 @@ msgstr "" msgid "CREATE DATABASE before copying" msgstr "" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "" @@ -9337,30 +9316,30 @@ msgstr "" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "%s table" @@ -9368,129 +9347,129 @@ msgstr "" msgid "Checksum table" msgstr "%s жадыбал" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "" @@ -9655,7 +9634,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -9679,21 +9658,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -9783,7 +9762,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "" @@ -9875,7 +9854,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -9944,8 +9923,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9953,81 +9932,81 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 msgid "Metadata" msgstr "" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Тузуу:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Акыркы жанылоо:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Акыркы текшеруу:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "колдонууда" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "" @@ -10257,9 +10236,9 @@ msgstr "" msgid "Table of contents" msgstr "" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "" @@ -10423,59 +10402,59 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Файл окулбай жатат" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "Database %1$s has been created." msgid "Internal relation has been added." msgstr "%1$s аттуу берилиштер базасы түзүлдү." -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be added!" msgstr "Файл окулбай жатат" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "Database %1$s has been created." msgid "FOREIGN KEY relation has been removed." msgstr "%1$s аттуу берилиштер базасы түзүлдү." -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Файл окулбай жатат" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be removed!" msgstr "Файл окулбай жатат" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Database %1$s has been created." msgid "Internal relation has been removed." @@ -10522,102 +10501,102 @@ msgstr "" msgid "Please see the documentation on how to update your column_info table. " msgstr "" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 msgid "Persistent favorite tables" msgstr "" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 msgid "Saving export templates" msgstr "" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -10789,8 +10768,8 @@ msgstr "" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "" @@ -10798,7 +10777,7 @@ msgstr "" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "" @@ -11412,7 +11391,7 @@ msgstr[1] "" msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "" @@ -11420,98 +11399,94 @@ msgstr "" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "" #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "" #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "" #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -11519,65 +11494,65 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "" #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "" #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -11589,8 +11564,8 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -11630,37 +11605,37 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -11675,14 +11650,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11692,7 +11667,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "" @@ -11701,15 +11676,15 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "" @@ -11726,7 +11701,7 @@ msgid "Native MySQL Authentication" msgstr "" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "" @@ -11749,8 +11724,8 @@ msgstr "" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 msgid "Host name" msgstr "" @@ -11766,220 +11741,220 @@ msgstr "" msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Value for the column \"%s\"" msgid "Add user account" msgstr "\"%s\" мамычанын мааниси" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database comment" msgid "Database for user account" msgstr "Берилиштер базасы жөнүндө маалымат:" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 msgid "Remove selected user accounts" msgstr "" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11988,7 +11963,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11997,11 +11972,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "" @@ -12223,30 +12198,30 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -12302,7 +12277,7 @@ msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -12327,33 +12302,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12361,78 +12336,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12440,7 +12415,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12448,42 +12423,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12491,33 +12466,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12526,242 +12501,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12769,99 +12744,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12869,18 +12844,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12888,11 +12863,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -12901,57 +12876,57 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "" @@ -13013,21 +12988,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "Database %1$s has been created." msgid "An alias was expected." @@ -13087,121 +13058,121 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "Database %1$s has been created." msgid "At least one column definition was expected." msgstr "%1$s аттуу берилиштер базасы түзүлдү." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -13231,27 +13202,27 @@ msgstr "" msgid "Bind parameters" msgstr "Туура эмес параметрлер!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "" @@ -13296,174 +13267,174 @@ msgstr "" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Жасалды" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Жаңыланды" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Last version" msgid "Delete version" msgstr "Акыркы версия" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "активдүү" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "активдүү эмес" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Акыркы версия" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Версиялар" @@ -13471,11 +13442,11 @@ msgstr "Версиялар" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -13574,7 +13545,7 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -13599,7 +13570,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -14395,45 +14366,49 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +msgid "Chart title:" +msgstr "" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Table comments:" msgid "Value Column:" msgstr "Жадыбал жөнүндө маалымат:" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "" @@ -14486,52 +14461,53 @@ msgstr "" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 -#, fuzzy -#| msgid "Database %1$s has been created." -msgid "Internal relations" -msgstr "%1$s аттуу берилиштер базасы түзүлдү." - -#: templates/table/relation/common_form.phtml:11 -msgid "Internal relation" -msgstr "" - -#: templates/table/relation/common_form.phtml:14 -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "" - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 msgid "Foreign key constraints" msgstr "" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 #, fuzzy #| msgid "Action" msgid "Actions" msgstr "Кыймыл" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 msgid "Constraint properties" msgstr "" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 #, fuzzy #| msgid "Value for the column \"%s\"" msgid "+ Add constraint" msgstr "\"%s\" мамычанын мааниси" -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +#, fuzzy +#| msgid "Database %1$s has been created." +msgid "Internal relations" +msgstr "%1$s аттуу берилиштер базасы түзүлдү." + +#: templates/table/relation/common_form.phtml:80 +msgid "Internal relation" +msgstr "" + +#: templates/table/relation/common_form.phtml:83 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "" + +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "" @@ -14662,7 +14638,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 msgid "Partitions" msgstr "" @@ -14697,7 +14673,7 @@ msgstr "Тузуу:" msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "" @@ -15854,6 +15830,16 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert 0 го барабарланды" +#, fuzzy +#~| msgid "Table" +#~ msgid "tables" +#~ msgstr "Жадыбал" + +#, fuzzy +#~| msgid "Action" +#~ msgid "functions" +#~ msgstr "Кыймыл" + #~ msgid "Select All" #~ msgstr "Баарын танда" diff --git a/po/li.po b/po/li.po index ef750fd18b..d07eedc67f 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2014-12-21 13:06+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: changelog.php:37 license.php:30 +#: changelog.php:37 license.php:33 #, php-format msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " @@ -37,7 +37,7 @@ msgstr "" msgid "Showing rows %1$s - %2$s." msgstr "" -#: db_create.php:61 +#: db_create.php:62 #, php-format msgid "Database %1$s has been created." msgstr "" @@ -46,13 +46,13 @@ msgstr "" msgid "Database comment" msgstr "" -#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:601 +#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:599 #: templates/columns_definitions/column_definitions_form.phtml:84 msgid "Table comments:" msgstr "" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1568 +#: libraries/insert_edit.lib.php:1575 #: libraries/navigation/nodes/NodeColumn.php:34 #: libraries/plugins/export/ExportHtmlword.php:288 #: libraries/plugins/export/ExportHtmlword.php:384 @@ -62,13 +62,14 @@ msgstr "" #: libraries/plugins/export/ExportTexytext.php:282 #: libraries/plugins/export/ExportTexytext.php:373 #: libraries/plugins/export/PMA_ExportPdf.php:472 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:882 libraries/tracking.lib.php:978 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 +#: libraries/tracking.lib.php:892 libraries/tracking.lib.php:990 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:10 -#: templates/table/relation/common_form.phtml:43 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:27 +#: templates/table/relation/common_form.phtml:79 #: templates/table/relation/foreign_key_row.phtml:176 #: templates/table/relation/foreign_key_row.phtml:188 #: templates/table/relation/internal_relational_row.phtml:73 @@ -88,14 +89,14 @@ msgstr "" #: libraries/plugins/export/ExportTexytext.php:283 #: libraries/plugins/export/ExportTexytext.php:374 #: libraries/plugins/export/PMA_ExportPdf.php:474 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 #: libraries/rte/rte_list.lib.php:78 libraries/rte/rte_list.lib.php:106 #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2606 libraries/tracking.lib.php:883 -#: libraries/tracking.lib.php:975 +#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -105,7 +106,7 @@ msgstr "" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:709 -#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1577 +#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1584 #: libraries/plugins/export/ExportHtmlword.php:294 #: libraries/plugins/export/ExportHtmlword.php:390 #: libraries/plugins/export/ExportLatex.php:517 @@ -114,9 +115,9 @@ msgstr "" #: libraries/plugins/export/ExportTexytext.php:284 #: libraries/plugins/export/ExportTexytext.php:375 #: libraries/plugins/export/PMA_ExportPdf.php:476 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 -#: libraries/tracking.lib.php:885 libraries/tracking.lib.php:981 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/tracking.lib.php:895 libraries/tracking.lib.php:993 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 @@ -133,9 +134,9 @@ msgstr "" #: libraries/plugins/export/ExportTexytext.php:285 #: libraries/plugins/export/ExportTexytext.php:376 #: libraries/plugins/export/PMA_ExportPdf.php:478 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 -#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:886 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:896 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 @@ -147,8 +148,8 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:488 #: libraries/plugins/export/ExportTexytext.php:378 #: libraries/plugins/export/PMA_ExportPdf.php:487 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:640 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:663 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 msgid "Links to" msgstr "" @@ -159,37 +160,38 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:381 #: libraries/plugins/export/PMA_ExportPdf.php:494 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:651 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:664 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:649 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 #: templates/columns_definitions/table_fields_definitions.phtml:65 msgid "Comments" msgstr "" -#: db_datadict.php:155 libraries/controllers/TableStructureController.php:1189 -#: libraries/controllers/TableStructureController.php:1194 -#: libraries/tracking.lib.php:925 +#: db_datadict.php:155 +#: libraries/controllers/table/TableStructureController.php:1197 +#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:79 +#: templates/table/structure/display_structure.phtml:80 msgid "Primary" msgstr "" -#: db_datadict.php:165 js/messages.php:370 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:371 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 -#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:403 -#: libraries/mult_submits.lib.php:417 +#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:408 +#: libraries/mult_submits.lib.php:422 #: libraries/plugins/export/ExportHtmlword.php:654 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:710 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2971 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3620 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1013 libraries/tracking.lib.php:1018 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2973 +#: libraries/server_privileges.lib.php:2993 +#: libraries/server_privileges.lib.php:3631 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -198,32 +200,32 @@ msgstr "" msgid "No" msgstr "" -#: db_datadict.php:165 js/messages.php:515 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:516 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 #: libraries/config/FormDisplay.tpl.php:280 -#: libraries/controllers/TableStructureController.php:770 -#: libraries/controllers/TableStructureController.php:1440 -#: libraries/controllers/TableStructureController.php:1449 -#: libraries/controllers/TableStructureController.php:1454 -#: libraries/controllers/TableStructureController.php:1459 -#: libraries/controllers/TableStructureController.php:1464 -#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:199 -#: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 -#: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 +#: libraries/controllers/table/TableStructureController.php:771 +#: libraries/controllers/table/TableStructureController.php:1448 +#: libraries/controllers/table/TableStructureController.php:1457 +#: libraries/controllers/table/TableStructureController.php:1462 +#: libraries/controllers/table/TableStructureController.php:1467 +#: libraries/controllers/table/TableStructureController.php:1472 +#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:200 +#: libraries/mult_submits.lib.php:344 libraries/mult_submits.lib.php:377 +#: libraries/mult_submits.lib.php:406 libraries/mult_submits.lib.php:420 #: libraries/plugins/export/ExportHtmlword.php:655 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:788 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:711 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2968 -#: libraries/server_privileges.lib.php:2989 -#: libraries/server_privileges.lib.php:3617 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1011 libraries/tracking.lib.php:1016 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2970 +#: libraries/server_privileges.lib.php:2991 +#: libraries/server_privileges.lib.php:3628 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -236,8 +238,8 @@ msgstr "" msgid "View dump (schema) of database" msgstr "" -#: db_export.php:51 db_tracking.php:102 export.php:382 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:176 +#: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 +#: libraries/controllers/DatabaseStructureController.php:157 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "" @@ -254,7 +256,7 @@ msgstr "" #: db_export.php:66 libraries/Menu.php:320 libraries/Menu.php:427 #: libraries/Util.php:3407 libraries/Util.php:3417 libraries/Util.php:3423 -#: libraries/Util.php:3702 libraries/Util.php:4339 libraries/Util.php:4356 +#: libraries/Util.php:3703 libraries/Util.php:4340 libraries/Util.php:4357 #: libraries/central_columns.lib.php:729 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:320 @@ -262,10 +264,10 @@ msgstr "" #: libraries/config/user_preferences.forms.php:218 #: libraries/config/user_preferences.forms.php:259 #: libraries/config/user_preferences.forms.php:285 -#: libraries/import.lib.php:1299 libraries/navigation/nodes/NodeColumn.php:44 +#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:44 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 -#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:877 +#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:887 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -308,11 +310,11 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "" -#: db_qbe.php:135 +#: db_qbe.php:136 msgid "You have to choose at least one column to display!" msgstr "" -#: db_qbe.php:152 +#: db_qbe.php:154 #, php-format msgid "Switch to %svisual builder%s" msgstr "" @@ -338,7 +340,7 @@ msgstr "" msgid "No tables selected." msgstr "" -#: db_tracking.php:146 +#: db_tracking.php:149 msgid "Database Log" msgstr "" @@ -370,7 +372,7 @@ msgstr "" msgid "Bad type!" msgstr "" -#: export.php:276 +#: export.php:278 msgid "Bad parameters!" msgstr "" @@ -378,98 +380,98 @@ msgstr "" msgid "Invalid export type" msgstr "" -#: gis_data_editor.php:119 +#: gis_data_editor.php:117 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:147 +#: gis_data_editor.php:145 #: templates/table/gis_visualization/gis_visualization.phtml:37 msgid "Use OpenStreetMaps as Base Layer" msgstr "" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:169 +#: gis_data_editor.php:167 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:192 +#: gis_data_editor.php:190 #, php-format msgid "Geometry %d:" msgstr "" -#: gis_data_editor.php:214 +#: gis_data_editor.php:212 msgid "Point:" msgstr "" -#: gis_data_editor.php:215 gis_data_editor.php:242 gis_data_editor.php:298 -#: gis_data_editor.php:371 js/messages.php:504 +#: gis_data_editor.php:213 gis_data_editor.php:240 gis_data_editor.php:296 +#: gis_data_editor.php:369 js/messages.php:505 msgid "X" msgstr "" -#: gis_data_editor.php:218 gis_data_editor.php:246 gis_data_editor.php:302 -#: gis_data_editor.php:377 js/messages.php:505 +#: gis_data_editor.php:216 gis_data_editor.php:244 gis_data_editor.php:300 +#: gis_data_editor.php:375 js/messages.php:506 msgid "Y" msgstr "" -#: gis_data_editor.php:240 gis_data_editor.php:296 gis_data_editor.php:369 -#: js/messages.php:507 +#: gis_data_editor.php:238 gis_data_editor.php:294 gis_data_editor.php:367 +#: js/messages.php:508 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:253 gis_data_editor.php:309 gis_data_editor.php:387 -#: js/messages.php:513 +#: gis_data_editor.php:251 gis_data_editor.php:307 gis_data_editor.php:385 +#: js/messages.php:514 msgid "Add a point" msgstr "" -#: gis_data_editor.php:270 +#: gis_data_editor.php:268 #, php-format msgid "Linestring %d:" msgstr "" -#: gis_data_editor.php:273 gis_data_editor.php:350 +#: gis_data_editor.php:271 gis_data_editor.php:348 msgid "Outer ring:" msgstr "" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:273 gis_data_editor.php:350 #, php-format msgid "Inner ring %d:" msgstr "" -#: gis_data_editor.php:312 +#: gis_data_editor.php:310 msgid "Add a linestring" msgstr "" -#: gis_data_editor.php:313 gis_data_editor.php:392 js/messages.php:514 +#: gis_data_editor.php:311 gis_data_editor.php:390 js/messages.php:515 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:334 +#: gis_data_editor.php:332 #, php-format msgid "Polygon %d:" msgstr "" -#: gis_data_editor.php:398 +#: gis_data_editor.php:396 msgid "Add a polygon" msgstr "" -#: gis_data_editor.php:404 +#: gis_data_editor.php:402 msgid "Add geometry" msgstr "" -#: gis_data_editor.php:410 js/messages.php:345 libraries/DbSearch.php:462 -#: libraries/DisplayResults.php:1783 libraries/browse_foreigners.lib.php:142 +#: gis_data_editor.php:408 js/messages.php:346 libraries/DbSearch.php:462 +#: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:151 #: libraries/display_export.lib.php:404 libraries/display_export.lib.php:410 -#: libraries/display_import.lib.php:403 libraries/index.lib.php:42 -#: libraries/insert_edit.lib.php:1547 libraries/insert_edit.lib.php:1584 +#: libraries/display_import.lib.php:403 libraries/index.lib.php:45 +#: libraries/insert_edit.lib.php:1554 libraries/insert_edit.lib.php:1591 #: libraries/normalization.lib.php:168 libraries/normalization.lib.php:825 #: libraries/operations.lib.php:47 libraries/operations.lib.php:114 #: libraries/operations.lib.php:266 libraries/operations.lib.php:309 #: libraries/operations.lib.php:806 libraries/operations.lib.php:877 -#: libraries/operations.lib.php:926 libraries/operations.lib.php:1336 -#: libraries/operations.lib.php:1653 +#: libraries/operations.lib.php:926 libraries/operations.lib.php:1339 +#: libraries/operations.lib.php:1656 #: libraries/plugins/auth/AuthenticationCookie.php:239 #: libraries/replication_gui.lib.php:124 libraries/replication_gui.lib.php:163 #: libraries/replication_gui.lib.php:328 libraries/replication_gui.lib.php:465 @@ -478,12 +480,12 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2343 -#: libraries/server_privileges.lib.php:3114 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_user_groups.lib.php:285 -#: libraries/sql_query_form.lib.php:369 libraries/sql_query_form.lib.php:429 -#: libraries/tracking.lib.php:536 libraries/tracking.lib.php:656 +#: libraries/server_privileges.lib.php:2345 +#: libraries/server_privileges.lib.php:3116 +#: libraries/server_privileges.lib.php:3735 +#: libraries/server_user_groups.lib.php:290 +#: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 +#: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 #: prefs_manage.php:280 prefs_manage.php:358 #: templates/columns_definitions/column_definitions_form.phtml:64 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 @@ -496,11 +498,11 @@ msgstr "" msgid "Go" msgstr "" -#: gis_data_editor.php:413 +#: gis_data_editor.php:411 msgid "Output" msgstr "" -#: gis_data_editor.php:416 +#: gis_data_editor.php:414 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -510,7 +512,7 @@ msgstr "" msgid "Succeeded" msgstr "" -#: import.php:59 js/messages.php:588 +#: import.php:59 js/messages.php:589 msgid "Failed" msgstr "" @@ -563,7 +565,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:669 libraries/sql.lib.php:744 libraries/sql.lib.php:1468 +#: import.php:669 libraries/sql.lib.php:754 libraries/sql.lib.php:1485 #, php-format msgid "Bookmark %s has been created." msgstr "" @@ -590,7 +592,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "" -#: import_status.php:111 js/messages.php:444 libraries/Util.php:797 +#: import_status.php:111 js/messages.php:445 libraries/Util.php:797 #: libraries/export.lib.php:523 #: libraries/plugins/schema/ExportRelationSchema.php:301 user_password.php:268 msgid "Back" @@ -612,7 +614,7 @@ msgstr "" msgid "General settings" msgstr "" -#: index.php:191 js/messages.php:617 +#: index.php:191 js/messages.php:618 #: libraries/display_change_password.lib.php:54 #: libraries/display_change_password.lib.php:57 user_password.php:262 msgid "Change password" @@ -712,7 +714,11 @@ msgstr "" msgid "List of changes" msgstr "" -#: index.php:453 +#: index.php:438 libraries/server_plugins.lib.php:83 +msgid "License" +msgstr "" + +#: index.php:460 msgid "" "You are connected as 'root' with no password, which corresponds to the " "default MySQL privileged account. Your MySQL server is running with this " @@ -720,21 +726,21 @@ msgid "" "by setting a password for user 'root'." msgstr "" -#: index.php:470 +#: index.php:477 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: index.php:485 +#: index.php:492 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: index.php:502 +#: index.php:509 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than " @@ -742,17 +748,17 @@ msgid "" "expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:521 +#: index.php:528 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:537 +#: index.php:544 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: index.php:550 +#: index.php:557 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. It is strongly recommended to remove it " @@ -760,26 +766,26 @@ msgid "" "may be compromised by unauthorized people downloading your configuration." msgstr "" -#: index.php:566 +#: index.php:573 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. %sFind out why%s. " msgstr "" -#: index.php:573 +#: index.php:580 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" -#: index.php:619 +#: index.php:626 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: index.php:647 +#: index.php:654 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -799,7 +805,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:45 libraries/mult_submits.lib.php:397 +#: js/messages.php:45 libraries/mult_submits.lib.php:402 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -929,7 +935,7 @@ msgid "Save & close" msgstr "" #: js/messages.php:109 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1551 prefs_manage.php:364 +#: libraries/insert_edit.lib.php:1558 prefs_manage.php:364 #: prefs_manage.php:375 msgid "Reset" msgstr "" @@ -987,10 +993,10 @@ msgstr "" msgid "You have to add at least one column." msgstr "" -#: js/messages.php:129 libraries/insert_edit.lib.php:1549 +#: js/messages.php:129 libraries/insert_edit.lib.php:1556 #: templates/columns_definitions/column_definitions_form.phtml:159 #: templates/table/index_form.phtml:237 -#: templates/table/relation/common_form.phtml:108 +#: templates/table/relation/common_form.phtml:127 msgid "Preview SQL" msgstr "" @@ -1033,8 +1039,8 @@ msgstr "" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:461 -#: libraries/tracking.lib.php:831 +#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:471 +#: libraries/tracking.lib.php:841 msgid "Close" msgstr "" @@ -1056,7 +1062,7 @@ msgstr "" #. l10n: Other, small valued, queries #: js/messages.php:155 libraries/ServerStatusData.php:130 -#: libraries/server_status_queries.lib.php:148 +#: libraries/server_status_queries.lib.php:150 msgid "Other" msgstr "" @@ -1219,7 +1225,7 @@ msgstr "" msgid "Traffic" msgstr "" -#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4330 +#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4331 #: libraries/server_status_monitor.lib.php:258 msgid "Settings" msgstr "" @@ -1232,9 +1238,9 @@ msgstr "" msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:216 libraries/DisplayResults.php:1477 +#: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1343,7 +1349,7 @@ msgstr "" msgid "Current settings" msgstr "" -#: js/messages.php:253 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:253 msgid "Chart title" msgstr "" @@ -1423,21 +1429,21 @@ msgstr "" msgid "Explain output" msgstr "" -#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4326 +#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4327 #: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:396 #: libraries/rte/rte_list.lib.php:104 -#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:282 -#: libraries/tracking.lib.php:1623 +#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:284 +#: libraries/tracking.lib.php:1639 msgid "Status" msgstr "" -#: js/messages.php:289 js/messages.php:870 +#: js/messages.php:289 js/messages.php:862 #: libraries/plugins/export/ExportHtmlword.php:484 #: libraries/plugins/export/ExportOdt.php:600 #: libraries/plugins/export/ExportTexytext.php:445 #: libraries/plugins/export/PMA_ExportPdf.php:314 #: libraries/rte/rte_list.lib.php:93 -#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:239 +#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:243 msgid "Time" msgstr "Tied" @@ -1517,10 +1523,10 @@ msgid "" msgstr "" #: js/messages.php:322 libraries/Menu.php:355 libraries/Menu.php:457 -#: libraries/Menu.php:578 libraries/Util.php:4329 libraries/Util.php:4344 -#: libraries/Util.php:4361 libraries/config/messages.inc.php:260 +#: libraries/Menu.php:578 libraries/Util.php:4330 libraries/Util.php:4345 +#: libraries/Util.php:4362 libraries/config/messages.inc.php:260 #: libraries/display_import.lib.php:108 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:241 +#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:241 #: setup/frames/menu.inc.php:26 msgid "Import" msgstr "" @@ -1577,7 +1583,11 @@ msgstr "" msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 libraries/server_variables.lib.php:159 +#: js/messages.php:343 +msgid "No parameters found!" +msgstr "" + +#: js/messages.php:347 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 @@ -1588,59 +1598,59 @@ msgstr "" msgid "Cancel" msgstr "" -#: js/messages.php:349 libraries/Header.php:457 +#: js/messages.php:350 libraries/Header.php:457 msgid "Page-related settings" msgstr "" -#: js/messages.php:350 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:351 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:353 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:354 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:124 msgid "Loading…" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 msgid "Request aborted!!" msgstr "" -#: js/messages.php:355 +#: js/messages.php:356 msgid "Processing request" msgstr "" -#: js/messages.php:356 +#: js/messages.php:357 msgid "Request failed!!" msgstr "" -#: js/messages.php:357 -msgid "Error in processing request" -msgstr "" - #: js/messages.php:358 -#, php-format -msgid "Error code: %s" +msgid "Error in processing request" msgstr "" #: js/messages.php:359 #, php-format +msgid "Error code: %s" +msgstr "" + +#: js/messages.php:360 +#, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:360 libraries/db_common.inc.php:73 +#: js/messages.php:361 libraries/db_common.inc.php:73 #: libraries/db_table_exists.lib.php:33 libraries/server_databases.lib.php:462 msgid "No databases selected." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 msgid "Dropping column" msgstr "" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Adding primary key" msgstr "" -#: js/messages.php:363 +#: js/messages.php:364 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1650,680 +1660,651 @@ msgstr "" msgid "OK" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Renaming databases" msgstr "" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Copying database" msgstr "" -#: js/messages.php:369 +#: js/messages.php:370 msgid "Changing charset" msgstr "" -#: js/messages.php:373 libraries/Util.php:3289 +#: js/messages.php:374 libraries/Util.php:3289 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Searching" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide search results" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "Show search results" msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Browsing" msgstr "" -#: js/messages.php:383 +#: js/messages.php:384 msgid "Deleting" msgstr "" -#: js/messages.php:387 +#: js/messages.php:388 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:388 libraries/DisplayResults.php:4832 -#: libraries/DisplayResults.php:5091 libraries/Menu.php:347 -#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3709 -#: libraries/Util.php:3710 libraries/Util.php:4328 libraries/Util.php:4343 -#: libraries/Util.php:4360 libraries/config/messages.inc.php:254 +#: js/messages.php:389 libraries/DisplayResults.php:4850 +#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 +#: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 +#: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2448 -#: libraries/server_privileges.lib.php:2527 -#: libraries/server_privileges.lib.php:2873 -#: libraries/server_privileges.lib.php:3532 -#: libraries/server_status_monitor.lib.php:321 prefs_manage.php:306 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2875 +#: libraries/server_privileges.lib.php:3543 +#: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 msgid "Export" msgstr "" -#: js/messages.php:391 libraries/rte/rte_routines.lib.php:742 +#: js/messages.php:392 libraries/rte/rte_routines.lib.php:742 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:392 +#: js/messages.php:393 #, php-format msgid "Values for column %s" msgstr "" -#: js/messages.php:393 +#: js/messages.php:394 msgid "Values for a new column" msgstr "" -#: js/messages.php:394 +#: js/messages.php:395 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:395 +#: js/messages.php:396 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:399 +#: js/messages.php:400 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Hide query box" msgstr "" -#: js/messages.php:404 +#: js/messages.php:405 msgid "Show query box" msgstr "" -#: js/messages.php:405 libraries/Console.php:88 libraries/Console.php:217 -#: libraries/DisplayResults.php:3457 libraries/DisplayResults.php:4816 +#: js/messages.php:406 libraries/Console.php:88 libraries/Console.php:217 +#: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4834 #: libraries/Index.php:721 libraries/Util.php:727 libraries/Util.php:1238 -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:119 +#: libraries/server_user_groups.lib.php:121 #: libraries/server_variables.lib.php:242 #: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 msgid "Edit" msgstr "" -#: js/messages.php:406 libraries/Console.php:89 libraries/DbSearch.php:360 -#: libraries/DisplayResults.php:3526 libraries/DisplayResults.php:4800 +#: js/messages.php:407 libraries/Console.php:89 libraries/DbSearch.php:360 +#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4818 #: libraries/central_columns.lib.php:854 #: libraries/central_columns.lib.php:1200 libraries/display_export.lib.php:227 -#: libraries/server_user_groups.lib.php:129 -#: libraries/sql_query_form.lib.php:416 libraries/tracking.lib.php:480 +#: libraries/server_user_groups.lib.php:131 +#: libraries/sql_query_form.lib.php:417 libraries/tracking.lib.php:490 #: setup/frames/index.inc.php:187 setup/frames/index.inc.php:295 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "" -#: js/messages.php:407 libraries/DisplayResults.php:915 -#: libraries/DisplayResults.php:923 +#: js/messages.php:408 libraries/DisplayResults.php:919 +#: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:408 -#: libraries/controllers/table/TableSearchController.php:435 -#: libraries/controllers/table/TableSearchController.php:920 -#: libraries/sql.lib.php:193 tbl_change.php:159 +#: js/messages.php:409 +#: libraries/controllers/table/TableSearchController.php:432 +#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "" -#: js/messages.php:409 +#: js/messages.php:410 msgid "No auto-saved query" msgstr "" -#: js/messages.php:410 +#: js/messages.php:411 #, php-format msgid "Variable %d:" msgstr "" -#: js/messages.php:413 libraries/normalization.lib.php:889 +#: js/messages.php:414 libraries/normalization.lib.php:889 msgid "Pick" msgstr "" -#: js/messages.php:414 +#: js/messages.php:415 msgid "Column selector" msgstr "" -#: js/messages.php:415 +#: js/messages.php:416 msgid "Search this list" msgstr "" -#: js/messages.php:417 +#: js/messages.php:418 #, 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:420 +#: js/messages.php:421 msgid "See more" msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Are you sure?" msgstr "" -#: js/messages.php:423 +#: js/messages.php:424 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 msgid "Page name" msgstr "" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:550 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:551 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:552 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "" -#: js/messages.php:623 +#: js/messages.php:624 msgid "Show panel" msgstr "" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -msgid "tables" -msgstr "" - -#: js/messages.php:633 -msgid "views" -msgstr "" - -#: js/messages.php:634 -msgid "procedures" -msgstr "" - -#: js/messages.php:635 -msgid "events" -msgstr "" - -#: js/messages.php:636 -msgid "functions" -msgstr "" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2331,396 +2312,396 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr "" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "" -#: js/messages.php:660 +#: js/messages.php:652 msgid "Show report details" msgstr "" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 msgid "Show arguments" msgstr "" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "jannewarie" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "fibberwarie" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "miert" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "april" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "mei" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "juni" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "juli" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "augustus" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "september" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "oktober" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "november" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "mrt" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "mei" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "dec" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Oer" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "secónd" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "" @@ -2728,41 +2709,41 @@ msgstr "" msgid "Please enter the same value again" msgstr "" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "" @@ -2847,11 +2828,12 @@ msgstr "" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -2893,7 +2875,7 @@ msgstr "" msgid "Explain" msgstr "" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "" @@ -2927,8 +2909,8 @@ msgid "History" msgstr "" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3073,30 +3055,30 @@ msgstr "" msgid "Switch to dark theme" msgstr "" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3106,8 +3088,8 @@ msgstr "" msgid "Ascending" msgstr "" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3250,8 +3232,8 @@ msgstr[0] "" msgstr[1] "" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3293,183 +3275,184 @@ msgstr "" msgid "Inside column:" msgstr "" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 msgid "Display column for relations" msgstr "" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 msgid "Check all" msgstr "" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "" @@ -3561,19 +3544,19 @@ msgstr "" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3582,24 +3565,24 @@ msgid "Action" msgstr "" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "" @@ -3607,8 +3590,8 @@ msgstr "" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3618,8 +3601,8 @@ msgid "Collation" msgstr "" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3635,15 +3618,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "" @@ -3680,12 +3663,13 @@ msgstr "" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3693,7 +3677,7 @@ msgstr "" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3702,8 +3686,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3711,41 +3695,41 @@ msgid "Search" msgstr "" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3756,16 +3740,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3773,20 +3757,20 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "" @@ -3795,33 +3779,33 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4112,7 +4096,7 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4521,37 +4505,37 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "" @@ -4710,8 +4694,8 @@ msgid "Add new column" msgstr "" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -4770,19 +4754,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -5548,7 +5532,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -5587,7 +5571,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "" @@ -7127,7 +7111,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "" @@ -7399,101 +7383,33 @@ msgstr "" msgid "OpenDocument Text" msgstr "" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "" - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "" - -#: libraries/controllers/TableStructureController.php:967 -#, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "" - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -7507,6 +7423,14 @@ msgstr "" msgid "No data to display" msgstr "" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "" + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "" @@ -7515,19 +7439,79 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr "" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:975 +#, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -7537,7 +7521,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7602,7 +7586,7 @@ msgstr "" msgid "Create database:" msgstr "" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "" @@ -8266,69 +8250,69 @@ msgid "Dump has been saved to file %s." msgstr "" #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "" @@ -8351,71 +8335,71 @@ msgstr "" msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -8427,11 +8411,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -8447,35 +8431,35 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "" @@ -8693,8 +8677,8 @@ msgstr "" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "" @@ -8732,7 +8716,8 @@ msgstr[0] "" msgstr[1] "" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" msgstr "" #: libraries/navigation/NavigationTree.php:1371 @@ -8740,10 +8725,6 @@ msgstr "" msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -9116,7 +9097,7 @@ msgstr "" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9125,7 +9106,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "" @@ -9143,18 +9124,18 @@ msgstr "" msgid "Drop the database (DROP)" msgstr "" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "" @@ -9166,7 +9147,7 @@ msgstr "" msgid "CREATE DATABASE before copying" msgstr "" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "" @@ -9206,157 +9187,157 @@ msgstr "" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 msgid "Checksum table" msgstr "" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "" @@ -9521,7 +9502,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -9545,21 +9526,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -9649,7 +9630,7 @@ msgid "Database:" msgstr "Database:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "" @@ -9741,7 +9722,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -9810,8 +9791,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9819,81 +9800,81 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 msgid "Metadata" msgstr "" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "" @@ -10122,9 +10103,9 @@ msgstr "" msgid "Table of contents" msgstr "" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "" @@ -10288,47 +10269,47 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 msgid "Error: Internal relation could not be added!" msgstr "" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 msgid "FOREIGN KEY relation has been removed." msgstr "" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 msgid "Error: Internal relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "" @@ -10373,102 +10354,102 @@ msgstr "" msgid "Please see the documentation on how to update your column_info table. " msgstr "" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 msgid "Persistent favorite tables" msgstr "" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 msgid "Saving export templates" msgstr "" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -10640,8 +10621,8 @@ msgstr "" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "" @@ -10649,7 +10630,7 @@ msgstr "" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "" @@ -11261,7 +11242,7 @@ msgstr[1] "" msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "" @@ -11269,98 +11250,94 @@ msgstr "" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "" #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "" #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "" #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -11368,65 +11345,65 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "" #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "" #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -11438,8 +11415,8 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -11479,37 +11456,37 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -11524,14 +11501,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11541,7 +11518,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "" @@ -11550,15 +11527,15 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "" @@ -11575,7 +11552,7 @@ msgid "Native MySQL Authentication" msgstr "" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "" @@ -11598,8 +11575,8 @@ msgstr "" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 msgid "Host name" msgstr "" @@ -11615,216 +11592,216 @@ msgstr "" msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 msgid "Database for user account" msgstr "" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 msgid "Remove selected user accounts" msgstr "" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Gebroeker" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11833,7 +11810,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11842,11 +11819,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "" @@ -12068,30 +12045,30 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -12145,7 +12122,7 @@ msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "#" @@ -12170,33 +12147,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12204,78 +12181,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12283,7 +12260,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12291,42 +12268,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12334,33 +12311,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12369,242 +12346,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12612,99 +12589,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12712,18 +12689,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12731,11 +12708,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -12744,57 +12721,57 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "" @@ -12854,21 +12831,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 msgid "An alias was expected." msgstr "" @@ -12924,119 +12897,119 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 msgid "At least one column definition was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -13064,27 +13037,27 @@ msgstr "" msgid "Bind parameters" msgstr "" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "" @@ -13128,172 +13101,172 @@ msgstr "" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 msgid "Delete version" msgstr "" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "" @@ -13301,11 +13274,11 @@ msgstr "" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -13404,7 +13377,7 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -13429,7 +13402,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -14209,43 +14182,47 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +msgid "Chart title:" +msgstr "" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 msgid "Value Column:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "" @@ -14300,46 +14277,47 @@ msgstr "" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +msgid "Foreign key constraints" +msgstr "" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "" + +#: templates/table/relation/common_form.phtml:10 +msgid "Constraint properties" +msgstr "" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "" + +#: templates/table/relation/common_form.phtml:60 +msgid "+ Add constraint" +msgstr "" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:37 -msgid "Foreign key constraints" -msgstr "" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "" - -#: templates/table/relation/common_form.phtml:41 -msgid "Constraint properties" -msgstr "" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "" - -#: templates/table/relation/common_form.phtml:83 -msgid "+ Add constraint" -msgstr "" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "" @@ -14465,7 +14443,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 msgid "Partitions" msgstr "" @@ -14498,7 +14476,7 @@ msgstr "" msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "" diff --git a/po/lt.po b/po/lt.po index 520b6f16cd..f509b8dc9e 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:20+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Lithuanian =20) ? 1 : 2;\n" "X-Generator: Weblate 2.5-dev\n" -#: changelog.php:37 license.php:30 +#: changelog.php:37 license.php:33 #, php-format msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " @@ -40,7 +40,7 @@ msgstr "Spustelėkite, kad surūšiuoti" msgid "Showing rows %1$s - %2$s." msgstr "Rodomos eilutės %1$s - %2$s." -#: db_create.php:61 +#: db_create.php:62 #, php-format msgid "Database %1$s has been created." msgstr "Duomenų bazė %1$s sukurta." @@ -49,13 +49,13 @@ msgstr "Duomenų bazė %1$s sukurta." msgid "Database comment" msgstr "Duomenų bazės komentaras" -#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:601 +#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:599 #: templates/columns_definitions/column_definitions_form.phtml:84 msgid "Table comments:" msgstr "Lentelės komentarai:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1568 +#: libraries/insert_edit.lib.php:1575 #: libraries/navigation/nodes/NodeColumn.php:34 #: libraries/plugins/export/ExportHtmlword.php:288 #: libraries/plugins/export/ExportHtmlword.php:384 @@ -65,13 +65,14 @@ msgstr "Lentelės komentarai:" #: libraries/plugins/export/ExportTexytext.php:282 #: libraries/plugins/export/ExportTexytext.php:373 #: libraries/plugins/export/PMA_ExportPdf.php:472 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:882 libraries/tracking.lib.php:978 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 +#: libraries/tracking.lib.php:892 libraries/tracking.lib.php:990 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:10 -#: templates/table/relation/common_form.phtml:43 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:27 +#: templates/table/relation/common_form.phtml:79 #: templates/table/relation/foreign_key_row.phtml:176 #: templates/table/relation/foreign_key_row.phtml:188 #: templates/table/relation/internal_relational_row.phtml:73 @@ -91,14 +92,14 @@ msgstr "Stulpelis" #: libraries/plugins/export/ExportTexytext.php:283 #: libraries/plugins/export/ExportTexytext.php:374 #: libraries/plugins/export/PMA_ExportPdf.php:474 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 #: libraries/rte/rte_list.lib.php:78 libraries/rte/rte_list.lib.php:106 #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2606 libraries/tracking.lib.php:883 -#: libraries/tracking.lib.php:975 +#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -108,7 +109,7 @@ msgstr "Tipas" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:709 -#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1577 +#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1584 #: libraries/plugins/export/ExportHtmlword.php:294 #: libraries/plugins/export/ExportHtmlword.php:390 #: libraries/plugins/export/ExportLatex.php:517 @@ -117,9 +118,9 @@ msgstr "Tipas" #: libraries/plugins/export/ExportTexytext.php:284 #: libraries/plugins/export/ExportTexytext.php:375 #: libraries/plugins/export/PMA_ExportPdf.php:476 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 -#: libraries/tracking.lib.php:885 libraries/tracking.lib.php:981 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/tracking.lib.php:895 libraries/tracking.lib.php:993 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 @@ -136,9 +137,9 @@ msgstr "Null" #: libraries/plugins/export/ExportTexytext.php:285 #: libraries/plugins/export/ExportTexytext.php:376 #: libraries/plugins/export/PMA_ExportPdf.php:478 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 -#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:886 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:896 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 @@ -150,8 +151,8 @@ msgstr "Nutylint" #: libraries/plugins/export/ExportOdt.php:488 #: libraries/plugins/export/ExportTexytext.php:378 #: libraries/plugins/export/PMA_ExportPdf.php:487 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:640 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:663 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 msgid "Links to" msgstr "Sąryšis su" @@ -162,37 +163,38 @@ msgstr "Sąryšis su" #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:381 #: libraries/plugins/export/PMA_ExportPdf.php:494 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:651 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:664 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:649 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 #: templates/columns_definitions/table_fields_definitions.phtml:65 msgid "Comments" msgstr "Komentarai" -#: db_datadict.php:155 libraries/controllers/TableStructureController.php:1189 -#: libraries/controllers/TableStructureController.php:1194 -#: libraries/tracking.lib.php:925 +#: db_datadict.php:155 +#: libraries/controllers/table/TableStructureController.php:1197 +#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:79 +#: templates/table/structure/display_structure.phtml:80 msgid "Primary" msgstr "Pirminis" -#: db_datadict.php:165 js/messages.php:370 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:371 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 -#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:403 -#: libraries/mult_submits.lib.php:417 +#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:408 +#: libraries/mult_submits.lib.php:422 #: libraries/plugins/export/ExportHtmlword.php:654 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:710 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2971 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3620 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1013 libraries/tracking.lib.php:1018 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2973 +#: libraries/server_privileges.lib.php:2993 +#: libraries/server_privileges.lib.php:3631 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -201,32 +203,32 @@ msgstr "Pirminis" msgid "No" msgstr "Ne" -#: db_datadict.php:165 js/messages.php:515 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:516 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 #: libraries/config/FormDisplay.tpl.php:280 -#: libraries/controllers/TableStructureController.php:770 -#: libraries/controllers/TableStructureController.php:1440 -#: libraries/controllers/TableStructureController.php:1449 -#: libraries/controllers/TableStructureController.php:1454 -#: libraries/controllers/TableStructureController.php:1459 -#: libraries/controllers/TableStructureController.php:1464 -#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:199 -#: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 -#: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 +#: libraries/controllers/table/TableStructureController.php:771 +#: libraries/controllers/table/TableStructureController.php:1448 +#: libraries/controllers/table/TableStructureController.php:1457 +#: libraries/controllers/table/TableStructureController.php:1462 +#: libraries/controllers/table/TableStructureController.php:1467 +#: libraries/controllers/table/TableStructureController.php:1472 +#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:200 +#: libraries/mult_submits.lib.php:344 libraries/mult_submits.lib.php:377 +#: libraries/mult_submits.lib.php:406 libraries/mult_submits.lib.php:420 #: libraries/plugins/export/ExportHtmlword.php:655 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:788 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:711 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2968 -#: libraries/server_privileges.lib.php:2989 -#: libraries/server_privileges.lib.php:3617 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1011 libraries/tracking.lib.php:1016 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2970 +#: libraries/server_privileges.lib.php:2991 +#: libraries/server_privileges.lib.php:3628 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -239,8 +241,8 @@ msgstr "Taip" msgid "View dump (schema) of database" msgstr "Peržiūrėti duomenų bazės atvaizdį (schemą)" -#: db_export.php:51 db_tracking.php:102 export.php:382 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:176 +#: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 +#: libraries/controllers/DatabaseStructureController.php:157 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "Duomenų bazėje nerasta lentelių." @@ -257,7 +259,7 @@ msgstr "Lentelės" #: db_export.php:66 libraries/Menu.php:320 libraries/Menu.php:427 #: libraries/Util.php:3407 libraries/Util.php:3417 libraries/Util.php:3423 -#: libraries/Util.php:3702 libraries/Util.php:4339 libraries/Util.php:4356 +#: libraries/Util.php:3703 libraries/Util.php:4340 libraries/Util.php:4357 #: libraries/central_columns.lib.php:729 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:320 @@ -265,10 +267,10 @@ msgstr "Lentelės" #: libraries/config/user_preferences.forms.php:218 #: libraries/config/user_preferences.forms.php:259 #: libraries/config/user_preferences.forms.php:285 -#: libraries/import.lib.php:1299 libraries/navigation/nodes/NodeColumn.php:44 +#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:44 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 -#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:877 +#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:887 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -313,11 +315,11 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "phpMyAdmin nustatymų saugykla išjungta. %sIšsiaiškinkite kodėl%s." -#: db_qbe.php:135 +#: db_qbe.php:136 msgid "You have to choose at least one column to display!" msgstr "Pasirinkite bent vieną stulpelį išvedimui!" -#: db_qbe.php:152 +#: db_qbe.php:154 #, php-format msgid "Switch to %svisual builder%s" msgstr "Pereiti į %svizualią daryklę%s" @@ -347,7 +349,7 @@ msgstr "" msgid "No tables selected." msgstr "Nepažymėjote duomenų bazės." -#: db_tracking.php:146 +#: db_tracking.php:149 msgid "Database Log" msgstr "Duomenų bazės žurnalas" @@ -379,7 +381,7 @@ msgstr "" msgid "Bad type!" msgstr "Blogas tipas!" -#: export.php:276 +#: export.php:278 msgid "Bad parameters!" msgstr "Blogi parametrai!" @@ -387,99 +389,99 @@ msgstr "Blogi parametrai!" msgid "Invalid export type" msgstr "Neteisingas eksportavimo tipas" -#: gis_data_editor.php:119 +#: gis_data_editor.php:117 #, php-format msgid "Value for the column \"%s\"" msgstr "Reikšmė „%s“ stulpeliui" -#: gis_data_editor.php:147 +#: gis_data_editor.php:145 #: templates/table/gis_visualization/gis_visualization.phtml:37 msgid "Use OpenStreetMaps as Base Layer" msgstr "Naudoti OpenStreetMaps kaip pagrindinį sluoksnį" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:169 +#: gis_data_editor.php:167 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:192 +#: gis_data_editor.php:190 #, php-format msgid "Geometry %d:" msgstr "Geometrija %d:" -#: gis_data_editor.php:214 +#: gis_data_editor.php:212 msgid "Point:" msgstr "Taškas:" -#: gis_data_editor.php:215 gis_data_editor.php:242 gis_data_editor.php:298 -#: gis_data_editor.php:371 js/messages.php:504 +#: gis_data_editor.php:213 gis_data_editor.php:240 gis_data_editor.php:296 +#: gis_data_editor.php:369 js/messages.php:505 msgid "X" msgstr "X" -#: gis_data_editor.php:218 gis_data_editor.php:246 gis_data_editor.php:302 -#: gis_data_editor.php:377 js/messages.php:505 +#: gis_data_editor.php:216 gis_data_editor.php:244 gis_data_editor.php:300 +#: gis_data_editor.php:375 js/messages.php:506 msgid "Y" msgstr "Y" -#: gis_data_editor.php:240 gis_data_editor.php:296 gis_data_editor.php:369 -#: js/messages.php:507 +#: gis_data_editor.php:238 gis_data_editor.php:294 gis_data_editor.php:367 +#: js/messages.php:508 #, php-format msgid "Point %d" msgstr "Taškas %d" -#: gis_data_editor.php:253 gis_data_editor.php:309 gis_data_editor.php:387 -#: js/messages.php:513 +#: gis_data_editor.php:251 gis_data_editor.php:307 gis_data_editor.php:385 +#: js/messages.php:514 msgid "Add a point" msgstr "Pridėti tašką" -#: gis_data_editor.php:270 +#: gis_data_editor.php:268 #, fuzzy, php-format #| msgid "Linestring" msgid "Linestring %d:" msgstr "Atkarpų seka" -#: gis_data_editor.php:273 gis_data_editor.php:350 +#: gis_data_editor.php:271 gis_data_editor.php:348 msgid "Outer ring:" msgstr "Išorinis žiedas:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:273 gis_data_editor.php:350 #, php-format msgid "Inner ring %d:" msgstr "Vidinis žiedas %d:" -#: gis_data_editor.php:312 +#: gis_data_editor.php:310 msgid "Add a linestring" msgstr "Sukurti atkarpų seką" -#: gis_data_editor.php:313 gis_data_editor.php:392 js/messages.php:514 +#: gis_data_editor.php:311 gis_data_editor.php:390 js/messages.php:515 msgid "Add an inner ring" msgstr "Sukurti vidinį žiedą" -#: gis_data_editor.php:334 +#: gis_data_editor.php:332 #, php-format msgid "Polygon %d:" msgstr "Daugiakampis %d:" -#: gis_data_editor.php:398 +#: gis_data_editor.php:396 msgid "Add a polygon" msgstr "Pridėti daugiakampį" -#: gis_data_editor.php:404 +#: gis_data_editor.php:402 msgid "Add geometry" msgstr "Pridėti geometriją" -#: gis_data_editor.php:410 js/messages.php:345 libraries/DbSearch.php:462 -#: libraries/DisplayResults.php:1783 libraries/browse_foreigners.lib.php:142 +#: gis_data_editor.php:408 js/messages.php:346 libraries/DbSearch.php:462 +#: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:151 #: libraries/display_export.lib.php:404 libraries/display_export.lib.php:410 -#: libraries/display_import.lib.php:403 libraries/index.lib.php:42 -#: libraries/insert_edit.lib.php:1547 libraries/insert_edit.lib.php:1584 +#: libraries/display_import.lib.php:403 libraries/index.lib.php:45 +#: libraries/insert_edit.lib.php:1554 libraries/insert_edit.lib.php:1591 #: libraries/normalization.lib.php:168 libraries/normalization.lib.php:825 #: libraries/operations.lib.php:47 libraries/operations.lib.php:114 #: libraries/operations.lib.php:266 libraries/operations.lib.php:309 #: libraries/operations.lib.php:806 libraries/operations.lib.php:877 -#: libraries/operations.lib.php:926 libraries/operations.lib.php:1336 -#: libraries/operations.lib.php:1653 +#: libraries/operations.lib.php:926 libraries/operations.lib.php:1339 +#: libraries/operations.lib.php:1656 #: libraries/plugins/auth/AuthenticationCookie.php:239 #: libraries/replication_gui.lib.php:124 libraries/replication_gui.lib.php:163 #: libraries/replication_gui.lib.php:328 libraries/replication_gui.lib.php:465 @@ -488,12 +490,12 @@ msgstr "Pridėti geometriją" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2343 -#: libraries/server_privileges.lib.php:3114 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_user_groups.lib.php:285 -#: libraries/sql_query_form.lib.php:369 libraries/sql_query_form.lib.php:429 -#: libraries/tracking.lib.php:536 libraries/tracking.lib.php:656 +#: libraries/server_privileges.lib.php:2345 +#: libraries/server_privileges.lib.php:3116 +#: libraries/server_privileges.lib.php:3735 +#: libraries/server_user_groups.lib.php:290 +#: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 +#: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 #: prefs_manage.php:280 prefs_manage.php:358 #: templates/columns_definitions/column_definitions_form.phtml:64 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 @@ -506,11 +508,11 @@ msgstr "Pridėti geometriją" msgid "Go" msgstr "Vykdyti" -#: gis_data_editor.php:413 +#: gis_data_editor.php:411 msgid "Output" msgstr "Išvedimas" -#: gis_data_editor.php:416 +#: gis_data_editor.php:414 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -520,7 +522,7 @@ msgstr "" msgid "Succeeded" msgstr "Pavyko" -#: import.php:59 js/messages.php:588 +#: import.php:59 js/messages.php:589 msgid "Failed" msgstr "Nepavyko" @@ -584,7 +586,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "Nepavyko įkelti importuotų įskiepių, prašome patikrinti įdiegimą!" -#: import.php:669 libraries/sql.lib.php:744 libraries/sql.lib.php:1468 +#: import.php:669 libraries/sql.lib.php:754 libraries/sql.lib.php:1485 #, fuzzy, php-format #| msgid "Bookmark %s created" msgid "Bookmark %s has been created." @@ -620,7 +622,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "" -#: import_status.php:111 js/messages.php:444 libraries/Util.php:797 +#: import_status.php:111 js/messages.php:445 libraries/Util.php:797 #: libraries/export.lib.php:523 #: libraries/plugins/schema/ExportRelationSchema.php:301 user_password.php:268 msgid "Back" @@ -646,7 +648,7 @@ msgstr "" msgid "General settings" msgstr "Pagrindiniai nustatymai" -#: index.php:191 js/messages.php:617 +#: index.php:191 js/messages.php:618 #: libraries/display_change_password.lib.php:54 #: libraries/display_change_password.lib.php:57 user_password.php:262 msgid "Change password" @@ -764,7 +766,11 @@ msgstr "Gauti pagalbą" msgid "List of changes" msgstr "Pakeitimų sąrašas" -#: index.php:453 +#: index.php:438 libraries/server_plugins.lib.php:83 +msgid "License" +msgstr "" + +#: index.php:460 #, fuzzy #| msgid "" #| "Your configuration file contains settings (root with no password) that " @@ -782,7 +788,7 @@ msgstr "" "nesaugi, bei gali būti atvira įsilaužimams, todėl rekomenduotina pakeisti " "šias parinktis." -#: index.php:470 +#: index.php:477 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -791,7 +797,7 @@ msgstr "" "Savo PHP konfigūracijoje Jūs įjungėte mbstring.func_overload. Šis nustatymas " "nėra suderinamas su phpMyAdmin ir gali pažeisti Jūsų duomenis!" -#: index.php:485 +#: index.php:492 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -801,7 +807,7 @@ msgstr "" "simbolių kodaciją. Be mbstring plėtinio phpMyAdmin negali tesingai skaidyti " "stringų, todėl galite sulaukti netikėtų rezultatų." -#: index.php:502 +#: index.php:509 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than " @@ -809,17 +815,17 @@ msgid "" "expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:521 +#: index.php:528 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:537 +#: index.php:544 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Nustatymų faile nurodykite slaptą frazę (blowfish_secret)." -#: index.php:550 +#: index.php:557 #, fuzzy #| msgid "" #| "Directory [code]config[/code], which is used by the setup script, still " @@ -835,7 +841,7 @@ msgstr "" "yra Jūsų phpMyAdmin kataloge. Jūs turėtumėte jį pašalinti iškart po to kai " "sukonfigūruosite phpMyAdmin." -#: index.php:566 +#: index.php:573 #, fuzzy, php-format #| msgid "" #| "The phpMyAdmin configuration storage is not completely configured, some " @@ -847,12 +853,12 @@ msgstr "" "phpMyAdmin nustatymų saugykla nėra visiškai sukonfigūruota, išplėstinės " "funkcijos išjungtos. %sIšsiaiškinkite kodėl%s." -#: index.php:573 +#: index.php:580 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" -#: index.php:619 +#: index.php:626 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -861,7 +867,7 @@ msgstr "" "Jūsų PHP MySQL bibliotekos versija %s skiriasi nuo Jūsų MySQL serverio " "versijos %s. Tai gali sukelti nenuspėjamą elgesį." -#: index.php:647 +#: index.php:654 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -883,7 +889,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "Ar tikrai norite vykdyti „%s“?" -#: js/messages.php:45 libraries/mult_submits.lib.php:397 +#: js/messages.php:45 libraries/mult_submits.lib.php:402 msgid "You are about to DESTROY a complete database!" msgstr "Jūs ruošiatės SUNAIKINTI visą duomenų bazę!" @@ -1041,7 +1047,7 @@ msgid "Save & close" msgstr "Išsaugoti į failą" #: js/messages.php:109 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1551 prefs_manage.php:364 +#: libraries/insert_edit.lib.php:1558 prefs_manage.php:364 #: prefs_manage.php:375 msgid "Reset" msgstr "Atstatyti į pradinę būseną" @@ -1117,10 +1123,10 @@ msgstr "Pridėti %s stulpelį(-ius) į indeksą" msgid "You have to add at least one column." msgstr "Jūs turite pridėti bent vieną stulpelį (ar skiltį)." -#: js/messages.php:129 libraries/insert_edit.lib.php:1549 +#: js/messages.php:129 libraries/insert_edit.lib.php:1556 #: templates/columns_definitions/column_definitions_form.phtml:159 #: templates/table/index_form.phtml:237 -#: templates/table/relation/common_form.phtml:108 +#: templates/table/relation/common_form.phtml:127 msgid "Preview SQL" msgstr "" @@ -1171,8 +1177,8 @@ msgstr "Slaptažodžiai nesutampa!" msgid "Removing Selected Users" msgstr "Šalinami pažymėti vartotojai" -#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:461 -#: libraries/tracking.lib.php:831 +#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:471 +#: libraries/tracking.lib.php:841 msgid "Close" msgstr "Uždaryti" @@ -1200,7 +1206,7 @@ msgstr "Eilutė buvo ištrinta" #. l10n: Other, small valued, queries #: js/messages.php:155 libraries/ServerStatusData.php:130 -#: libraries/server_status_queries.lib.php:148 +#: libraries/server_status_queries.lib.php:150 msgid "Other" msgstr "Kita" @@ -1375,7 +1381,7 @@ msgstr "" msgid "Traffic" msgstr "Apkrovimas" -#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4330 +#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4331 #: libraries/server_status_monitor.lib.php:258 msgid "Settings" msgstr "Nustatymai" @@ -1392,9 +1398,9 @@ msgstr "Pritraukti prie tinklelio" msgid "Please add at least one variable to the series!" msgstr "Prašome pridėti bent vieną kintamąjį į eilę" -#: js/messages.php:216 libraries/DisplayResults.php:1477 +#: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1508,7 +1514,7 @@ msgstr "Keisti nustatymus" msgid "Current settings" msgstr "Dabartiniai nustatymai" -#: js/messages.php:253 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:253 msgid "Chart title" msgstr "Diagramos antraštė" @@ -1588,21 +1594,21 @@ msgstr "Analizuojama…" msgid "Explain output" msgstr "Paaiškinti išvestį" -#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4326 +#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4327 #: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:396 #: libraries/rte/rte_list.lib.php:104 -#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:282 -#: libraries/tracking.lib.php:1623 +#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:284 +#: libraries/tracking.lib.php:1639 msgid "Status" msgstr "Būsena" -#: js/messages.php:289 js/messages.php:870 +#: js/messages.php:289 js/messages.php:862 #: libraries/plugins/export/ExportHtmlword.php:484 #: libraries/plugins/export/ExportOdt.php:600 #: libraries/plugins/export/ExportTexytext.php:445 #: libraries/plugins/export/PMA_ExportPdf.php:314 #: libraries/rte/rte_list.lib.php:93 -#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:239 +#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:243 msgid "Time" msgstr "Laikas" @@ -1688,10 +1694,10 @@ msgstr "" "į numatytąją konfigūraciją…" #: js/messages.php:322 libraries/Menu.php:355 libraries/Menu.php:457 -#: libraries/Menu.php:578 libraries/Util.php:4329 libraries/Util.php:4344 -#: libraries/Util.php:4361 libraries/config/messages.inc.php:260 +#: libraries/Menu.php:578 libraries/Util.php:4330 libraries/Util.php:4345 +#: libraries/Util.php:4362 libraries/config/messages.inc.php:260 #: libraries/display_import.lib.php:108 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:241 +#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:241 #: setup/frames/menu.inc.php:26 msgid "Import" msgstr "Importuoti" @@ -1756,7 +1762,13 @@ msgstr "Išbandyti" msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 libraries/server_variables.lib.php:159 +#: js/messages.php:343 +#, fuzzy +#| msgid "Bad parameters!" +msgid "No parameters found!" +msgstr "Blogi parametrai!" + +#: js/messages.php:347 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 @@ -1767,71 +1779,71 @@ msgstr "" msgid "Cancel" msgstr "Atšaukti" -#: js/messages.php:349 libraries/Header.php:457 +#: js/messages.php:350 libraries/Header.php:457 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "Keisti nustatymus" -#: js/messages.php:350 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:351 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:353 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:354 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:124 msgid "Loading…" msgstr "Įkeliama…" -#: js/messages.php:354 +#: js/messages.php:355 msgid "Request aborted!!" msgstr "" -#: js/messages.php:355 +#: js/messages.php:356 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "Vykdoma užklausa" -#: js/messages.php:356 +#: js/messages.php:357 #, fuzzy #| msgid "Query cache" msgid "Request failed!!" msgstr "Užklausų saugykla" -#: js/messages.php:357 +#: js/messages.php:358 #, fuzzy #| msgid "Error in processing request" msgid "Error in processing request" msgstr "Klaida vykdant užklausą" -#: js/messages.php:358 +#: js/messages.php:359 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:359 +#: js/messages.php:360 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:360 libraries/db_common.inc.php:73 +#: js/messages.php:361 libraries/db_common.inc.php:73 #: libraries/db_table_exists.lib.php:33 libraries/server_databases.lib.php:462 msgid "No databases selected." msgstr "Nepažymėjote duomenų bazės." -#: js/messages.php:361 +#: js/messages.php:362 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "Šalinamas stulpelis" -#: js/messages.php:362 +#: js/messages.php:363 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "Pridėti pirminį raktą" -#: js/messages.php:363 +#: js/messages.php:364 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1841,234 +1853,234 @@ msgstr "Pridėti pirminį raktą" msgid "OK" msgstr "Gerai" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Click to dismiss this notification" msgstr "Paspauskite, kad praleistumėte šį perspėjimą" -#: js/messages.php:367 +#: js/messages.php:368 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "Keičiamas duomenų bazės pavadinimas" -#: js/messages.php:368 +#: js/messages.php:369 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "Kopijuojama duomenų bazė" -#: js/messages.php:369 +#: js/messages.php:370 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "Keičiama koduotė" -#: js/messages.php:373 libraries/Util.php:3289 +#: js/messages.php:374 libraries/Util.php:3289 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Atsisakyti išorinių raktų tikrinimo" -#: js/messages.php:376 +#: js/messages.php:377 #, fuzzy #| msgid "Failed to fetch headers" msgid "Failed to get real row count." msgstr "Nepavyko gauti/priimti antraščių" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Searching" msgstr "Ieškoma" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide search results" msgstr "Slėpti paieškos rezultatus" -#: js/messages.php:381 +#: js/messages.php:382 msgid "Show search results" msgstr "Rodyti paieškos rezultatas" -#: js/messages.php:382 +#: js/messages.php:383 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Peržiūrėti" -#: js/messages.php:383 +#: js/messages.php:384 msgid "Deleting" msgstr "Šaliname" -#: js/messages.php:387 +#: js/messages.php:388 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:388 libraries/DisplayResults.php:4832 -#: libraries/DisplayResults.php:5091 libraries/Menu.php:347 -#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3709 -#: libraries/Util.php:3710 libraries/Util.php:4328 libraries/Util.php:4343 -#: libraries/Util.php:4360 libraries/config/messages.inc.php:254 +#: js/messages.php:389 libraries/DisplayResults.php:4850 +#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 +#: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 +#: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2448 -#: libraries/server_privileges.lib.php:2527 -#: libraries/server_privileges.lib.php:2873 -#: libraries/server_privileges.lib.php:3532 -#: libraries/server_status_monitor.lib.php:321 prefs_manage.php:306 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2875 +#: libraries/server_privileges.lib.php:3543 +#: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 msgid "Export" msgstr "Eksportuoti" -#: js/messages.php:391 libraries/rte/rte_routines.lib.php:742 +#: js/messages.php:392 libraries/rte/rte_routines.lib.php:742 msgid "ENUM/SET editor" msgstr "ENUM/SET redaktorius" -#: js/messages.php:392 +#: js/messages.php:393 #, php-format msgid "Values for column %s" msgstr "Stulpelio „%s“ reikšmės" -#: js/messages.php:393 +#: js/messages.php:394 msgid "Values for a new column" msgstr "Reikšmės naujajam stulpeliui" -#: js/messages.php:394 +#: js/messages.php:395 #, 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:395 +#: js/messages.php:396 #, php-format msgid "Add %d value(s)" msgstr "Pridėti %d reikšmę(-es)" -#: js/messages.php:399 +#: js/messages.php:400 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:403 +#: js/messages.php:404 msgid "Hide query box" msgstr "Slėpti užklausos laukelį" -#: js/messages.php:404 +#: js/messages.php:405 msgid "Show query box" msgstr "Rodyti užklausos laukelį" -#: js/messages.php:405 libraries/Console.php:88 libraries/Console.php:217 -#: libraries/DisplayResults.php:3457 libraries/DisplayResults.php:4816 +#: js/messages.php:406 libraries/Console.php:88 libraries/Console.php:217 +#: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4834 #: libraries/Index.php:721 libraries/Util.php:727 libraries/Util.php:1238 -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:119 +#: libraries/server_user_groups.lib.php:121 #: libraries/server_variables.lib.php:242 #: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 msgid "Edit" msgstr "Redaguoti" -#: js/messages.php:406 libraries/Console.php:89 libraries/DbSearch.php:360 -#: libraries/DisplayResults.php:3526 libraries/DisplayResults.php:4800 +#: js/messages.php:407 libraries/Console.php:89 libraries/DbSearch.php:360 +#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4818 #: libraries/central_columns.lib.php:854 #: libraries/central_columns.lib.php:1200 libraries/display_export.lib.php:227 -#: libraries/server_user_groups.lib.php:129 -#: libraries/sql_query_form.lib.php:416 libraries/tracking.lib.php:480 +#: libraries/server_user_groups.lib.php:131 +#: libraries/sql_query_form.lib.php:417 libraries/tracking.lib.php:490 #: setup/frames/index.inc.php:187 setup/frames/index.inc.php:295 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Trinti" -#: js/messages.php:407 libraries/DisplayResults.php:915 -#: libraries/DisplayResults.php:923 +#: js/messages.php:408 libraries/DisplayResults.php:919 +#: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d nėra galimas eilutės numeris." -#: js/messages.php:408 -#: libraries/controllers/table/TableSearchController.php:435 -#: libraries/controllers/table/TableSearchController.php:920 -#: libraries/sql.lib.php:193 tbl_change.php:159 +#: js/messages.php:409 +#: libraries/controllers/table/TableSearchController.php:432 +#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "Naršyti išorines reikšmes" -#: js/messages.php:409 +#: js/messages.php:410 msgid "No auto-saved query" msgstr "" -#: js/messages.php:410 +#: js/messages.php:411 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Kintamasis" -#: js/messages.php:413 libraries/normalization.lib.php:889 +#: js/messages.php:414 libraries/normalization.lib.php:889 msgid "Pick" msgstr "" -#: js/messages.php:414 +#: js/messages.php:415 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "Nepasirinkti įrašai" -#: js/messages.php:415 +#: js/messages.php:416 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Paieška duomenų bazėje" -#: js/messages.php:417 +#: js/messages.php:418 #, 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:420 +#: js/messages.php:421 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "Laisva atmintis" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Are you sure?" msgstr "" -#: js/messages.php:423 +#: js/messages.php:424 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "Prisidėti" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "Pridėti pirminį raktą" -#: js/messages.php:430 +#: js/messages.php:431 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Stulpeliui %s sukurtas PIRMINIS raktas." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Sekimo ataskaita" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 #, fuzzy @@ -2076,564 +2088,525 @@ msgstr "" msgid "End of step" msgstr "Eilutės galas" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Atlikta" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Nepažymėjote duomenų bazės." -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 #, 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:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Sukurti privilegijas šiai lentelei" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Nepažymėjote duomenų bazės." -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Išsaugoti" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Slėpti paieškos kriterijų" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Rodyti paieškos kriterijų" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Paieška" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Column names: " msgid "Column maximum:" msgstr "Stulpelių vardai: " -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Column names: " msgid "Column minimum:" msgstr "Stulpelių vardai: " -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "Didžiausias skaičius lentelių" -#: js/messages.php:474 +#: js/messages.php:475 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "Didžiausias skaičius lentelių" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "Slėpti paieškos kriterijų" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "Rodyti paieškos kriterijų" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "Pasirinkite du stulpelius" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "Pasirinkite du skirtingus stulpelius" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Duomenų rodyklės dydis" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignoruoti" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Kopijuoti" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Taškas" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Atkarpų seka" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Daugiakampis" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometrija" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Vidinis žiedas" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Išorinis žiedas:" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Pasirinkite siejamą raktą" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Pasirinkti Foreign Key" -#: js/messages.php:529 +#: js/messages.php:530 #, 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:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 msgid "Page name" msgstr "Puslapio vardas" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 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:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 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:539 +#: js/messages.php:540 #, fuzzy #| msgid "Select page" msgid "Delete page" msgstr "Pasirinkite puslapį" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "Vienetas" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Pasirinkite puslapį redagavimui" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Keisti arba eksportuoti ryšių schemą" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Pakeitimai išsaugoti" -#: js/messages.php:550 +#: js/messages.php:551 #, 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:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Siųsti" -#: js/messages.php:555 +#: js/messages.php:556 #, 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:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder." msgstr "Vilkite, kad pertvarkytumėte" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "Paspauskite, kad (at)pažymėti" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Stulpelių vardai" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Rodyti viską" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Pirminė padėtis" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Atšaukti" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Nutraukta" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "Importuoti numatytąsias reikšmes" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Pasirinkite lenteles" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "Eiti pagal nuorodą" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Stulpelių vardai" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Generuoti slaptažodį" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Generuoti" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "Daugiau" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Rodyti viską" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Hide indexes" msgid "Hide panel" msgstr "Nerodyti indeksų" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "Logotipą rodyti kairiame rėmelyje" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "Adaptuoti pagrindinė rėmelį" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "Adaptuoti pagrindinė rėmelį" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 #, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "Lentelės" - -#: js/messages.php:633 -#, fuzzy -#| msgid "Views" -msgid "views" -msgstr "Rodinys (Views)" - -#: js/messages.php:634 -#, fuzzy -#| msgid "Procedures" -msgid "procedures" -msgstr "Procedūros" - -#: js/messages.php:635 -#, fuzzy -#| msgid "event" -msgid "events" -msgstr "įvykis" - -#: js/messages.php:636 -#, fuzzy -#| msgid "Functions" -msgid "functions" -msgstr "Funkcijos" - -#: js/messages.php:640 -#, 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:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2643,138 +2616,138 @@ msgstr "" "atnaujinimą. Naujausia versija yra %s, išleista %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", naujausia stabili versija:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "naujausias" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "Sukurti rodinį" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Serverio jungtis" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "Serverio jungtis" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "Keisti nustatymus" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Rodyti atidarytas lenteles" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignoruoti" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Rodyti šią užklausą vėl" -#: js/messages.php:701 +#: js/messages.php:693 #, 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:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, fuzzy, php-format #| msgid "Executed queries" msgid "%s queries executed %s times in %s seconds." msgstr "Įvykdytos užklausos" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Lentelės komentarai" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Slėpti paieškos rezultatus" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Ankstesnis" -#: js/messages.php:748 +#: js/messages.php:740 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2782,149 +2755,149 @@ msgid "Next" msgstr "Kitas" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Šiandien" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "sausio" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "vasario" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "kovo" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "balandžio" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Geg" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "birželio" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "liepos" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "rugpjūčio" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "rugsėjo" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "spalio" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "lapkričio" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "gruodžio" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Sau" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Vas" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Kov" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Bal" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "Geg" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Bir" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Lie" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Rgp" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Rgs" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Spa" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Lap" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Grd" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "Sekmadienis" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "Pirmadienis" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "Antradienis" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "Trečiadienis" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "Ketvirtadienis" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "Penktadienis" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "Šeštadienis" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2932,149 +2905,149 @@ msgid "Sun" msgstr "Sek" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Pir" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Ant" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Tre" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Ket" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Pen" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Šeš" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "Sk" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "Pr" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "An" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "Tr" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "Kt" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "Pn" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "Št" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "Sav." #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Ne" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Valanda" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Minutė" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Sekundės" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Naudokite teksto įvedimo lauką" -#: js/messages.php:886 +#: js/messages.php:878 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:887 +#: js/messages.php:879 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:889 +#: js/messages.php:883 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:890 +#: js/messages.php:885 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:891 +#: js/messages.php:888 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:892 +#: js/messages.php:890 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" @@ -3086,53 +3059,53 @@ msgstr "Neteisingas jungties skaičius" msgid "Please enter the same value again" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:898 +#: js/messages.php:917 #, 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:899 +#: js/messages.php:922 #, 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:901 +#: js/messages.php:928 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:902 +#: js/messages.php:933 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Klaida" @@ -3225,11 +3198,12 @@ msgstr "SQL užklausa" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3280,7 +3254,7 @@ msgstr "Praleisti šią klaidą" msgid "Explain" msgstr "Paaiškinti SQL" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Profiliavimas" @@ -3324,8 +3298,8 @@ msgid "History" msgstr "SQL užklausų istorija" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3512,7 +3486,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Pereiti į lentelės kopiją" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 #, fuzzy #| msgid " the local MySQL server's socket is not correctly configured)" msgid "" @@ -3520,26 +3494,26 @@ msgid "" "configured)." msgstr "(arba vietiniai MySQL serverio socketai yra blogai sukonfigūruoti)" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Serveris neatsako" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Detalės…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3549,8 +3523,8 @@ msgstr "" msgid "Ascending" msgstr "Didėjimo tvarka" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3721,8 +3695,8 @@ msgstr[1] "%s atitikmenys lentelėse %s" msgstr[2] "%s atitikmenų lentelėse %s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3766,29 +3740,29 @@ msgstr "Atžymėti visas" msgid "Inside column:" msgstr "Stulpelio viduje:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 #, fuzzy #| msgid "Save directory" msgid "Save edited data" msgstr "Išsaugoti katalogą" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "Atstatyti stulpelių rikiavimą" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 #, fuzzy #| msgid "Filters" msgid "Filter rows" msgstr "Filtrai" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Search in database" msgid "Search this table" msgstr "Paieška duomenų bazėje" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 #, fuzzy #| msgid "Begin" @@ -3796,7 +3770,7 @@ msgctxt "First page" msgid "Begin" msgstr "Pradžia" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 #, fuzzy @@ -3805,7 +3779,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Ankstesnis" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 #, fuzzy @@ -3814,7 +3788,7 @@ msgctxt "Next page" msgid "Next" msgstr "Kitas" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 #, fuzzy #| msgid "End" @@ -3822,79 +3796,79 @@ msgctxt "Last page" msgid "End" msgstr "Pabaiga" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Viską" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Eilučių skaičius:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Rūšiuoti pagal raktą" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "Tekstus rodyti dalinai" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "Tekstus rodyti pilnai" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Sąryšių raktas" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Display foreign key relationships" msgid "Display column for relations" msgstr "Rodyti išorinių raktų sąryšius" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "Rodyti dvejetainį turinį" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "Rodyti BLOB turinį" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Naršyklės transformacija" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Eilutė buvo ištrinta" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Stabdyti procesą" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Gali būti apytikslis. Žiūrėkite [doc@faq3-11]DUK 3.11[/doc]" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -3902,7 +3876,8 @@ msgstr "Gali būti apytikslis. Žiūrėkite [doc@faq3-11]DUK 3.11[/doc]" msgid "Your SQL query has been executed successfully." msgstr "Jūsų SQL užklausa sėkmingai įvykdyta" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3911,43 +3886,43 @@ msgstr "" "Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos " "%sdokumentacijoje%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Rodomi įrašai" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "iš viso" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "Užklausa užtruko %01.4f sek." -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Pasirinktus:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3955,25 +3930,25 @@ msgstr "Pasirinktus:" msgid "Check all" msgstr "Pažymėti visas" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Spausdinti struktūrą" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Veiksmai su užklausos rezultatais" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Rodyti diagramą" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 #, fuzzy #| msgid "Link not found" msgid "Link not found!" @@ -4081,19 +4056,19 @@ msgstr "Nėra aprašytų indeksų!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Indeksai" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -4102,24 +4077,24 @@ msgid "Action" msgstr "Veiksmas" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Indekso pavadinimas" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Unikalus" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Suspausta" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Elementų skaičius" @@ -4127,8 +4102,8 @@ msgstr "Elementų skaičius" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -4138,8 +4113,8 @@ msgid "Collation" msgstr "Palyginimas" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -4155,15 +4130,15 @@ msgstr "Panaikintas pirminis raktas." msgid "Index %s has been dropped." msgstr "Indeksas %s ištrintas." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Šalinti" @@ -4201,12 +4176,13 @@ msgstr "Rodinys" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4214,7 +4190,7 @@ msgstr "Lentelė" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4223,8 +4199,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4232,41 +4208,41 @@ msgid "Search" msgstr "Paieška" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Įterpti" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilegijos" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Veiksmai" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Sekimas" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4277,16 +4253,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "Duomenų bazė atrodo tuščia!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "SQL užklausa" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4294,22 +4270,22 @@ msgstr "" msgid "Events" msgstr "Įvykiai" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Projektavimas" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "Textarea columns" msgid "Central columns" msgstr "Textarea stulpeliai" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Duomenų bazės" @@ -4320,33 +4296,33 @@ msgid "User accounts" msgstr "Naudotojai" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Dvejetainis log'as" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikavimas" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Kintamieji" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Koduotės" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Varikliai" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4679,7 +4655,7 @@ msgstr "Negalima pervadinti indekso į PRIMARY!" msgid "No index parts defined!" msgstr "Neaprašytos indekso dalys!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5108,39 +5084,39 @@ msgstr "%s funkcionalumas paveiktas žinomos klaidos, žiūrėti %s" msgid "Click to toggle" msgstr "Spustelėkite suskleidimui/atskleidimui" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Naršyti savo kompiuteryje:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Pasirinkti iš saityno serverio atsisiuntimų katalogą %s:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Aplankas, kuris nurodytas įkeliamiems failams, nepasiekiamas." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 #, fuzzy #| msgid "There are no files to upload" msgid "There are no files to upload!" msgstr "Nėra failų išsiuntimui" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Išvalyti" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "Vykdyti" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Spausdinti" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "Naudotojai" @@ -5315,8 +5291,8 @@ msgid "Add new column" msgstr "Pridėti stulpelį" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5385,19 +5361,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "Rekomenduojame atnaujint %s iki %s ar vėlesnės versijos." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "galimas pažeidžiamumas" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -6337,7 +6313,7 @@ msgid "Remember file name template" msgstr "Atsiminti failo vardo šabloną" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Pridėti AUTO_INCREMENT reikšmę" @@ -6380,7 +6356,7 @@ msgstr "Trūksta phpMyAdmin nustatymų saugyklos lentelių" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Pridėti %s" @@ -8402,7 +8378,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 #, fuzzy #| msgid "Hide query box" msgid "Retain query box" @@ -8733,111 +8709,35 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Open Document rašyklė" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Lentelės reikšmės %s ištuštintos." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "Rodinys %s buvo panaikintas" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "Lentelė %s panaikinta" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "nežinoma" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: libraries/controllers/TableStructureController.php:250 -#, fuzzy -#| msgid "No rows selected" -msgid "No column selected." -msgstr "Nepasirinkti įrašai" - -#: libraries/controllers/TableStructureController.php:484 -#, 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.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "Lentelė %1$s sėkmingai pakeista." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "Užklausos klaida" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Redaguoti" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Indeksas" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Fulltext" - -#: libraries/controllers/TableStructureController.php:1201 -#, fuzzy -#| msgid "Browse distinct values" -msgid "Distinct values" -msgstr "Peržiūrėti skirtingas reikšmes" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8853,6 +8753,14 @@ msgstr "" msgid "No data to display" msgstr "Nėra duomenų" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "Lentelė %1$s sėkmingai pakeista." + #: libraries/controllers/table/TableRelationController.php:212 #, fuzzy #| msgid "Thread %s was successfully killed." @@ -8865,25 +8773,93 @@ msgstr "Gija %s buvo sėkmingai išjungta." msgid "Internal relations were successfully updated." msgstr "Vidinis sąryšis įdėtas" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Search" msgid "Table search" msgstr "Paieška" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Search" msgid "Zoom search" msgstr "Paieška" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "Hide search criteria" msgid "Find and replace" msgstr "Slėpti paieškos kriterijų" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: libraries/controllers/table/TableStructureController.php:251 +#, fuzzy +#| msgid "No rows selected" +msgid "No column selected." +msgstr "Nepasirinkti įrašai" + +#: libraries/controllers/table/TableStructureController.php:485 +#, 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/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "Užklausos klaida" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Redaguoti" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Indeksas" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Fulltext" + +#: libraries/controllers/table/TableStructureController.php:1209 +#, fuzzy +#| msgid "Browse distinct values" +msgid "Distinct values" +msgstr "Peržiūrėti skirtingas reikšmes" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8893,7 +8869,7 @@ msgstr "%s plėtinys nerastas. Prašome patikrinti PHP nustatymus." msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Nėra pakeitimų" @@ -8966,7 +8942,7 @@ msgstr "Sukurti" msgid "Create database:" msgstr "Sukurti duomenų bazę" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Nėra privilegijų" @@ -9709,27 +9685,27 @@ msgid "Dump has been saved to file %s." msgstr "Atvaizdis įrašytas faile %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL gražino tuščią rezultatų rinkinį (nėra eilučių)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Sekanti struktūra buvo sukurta arba pakeista. Čia galite:" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 #, fuzzy #| msgid "View a structure`s contents by clicking on its name" msgid "View a structure's contents by clicking on its name." msgstr "Peržiūrėti struktūros turinį paspaudžiant ant vardo" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -9738,51 +9714,51 @@ msgid "" msgstr "" "Keisti bet kuriuos iš šių nustatymų spauskite atitinkamą „Nustatymai“ nuorodą" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link." msgstr "Keisti jo struktūrą spauskite „Struktūra“ nuorodą" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "Eiti į duomenų bazę" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "Keisti nustatymus %s" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "Eiti į lentelę" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "Struktūra %s" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" msgstr "Eiti į rodinį (view)" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "Sukurti indeksą  %s stulpeliams" @@ -9805,72 +9781,72 @@ msgstr "Funkcija" msgid "Binary" msgstr "Dvejetainis" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 #, fuzzy #| msgid "Because of its length,
this column might not be editable" msgid "Because of its length,
this column might not be editable." msgstr "Dėl jo ilgio,
šis laukelis gali būti neredaguojamas (tinas)" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Dvejetainis - nekeisti" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Arba" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "web serverio katalogas atsiuntimams" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Įterpti" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "Tęstį įterpimą su %s eilučių" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "ir tada" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Įterpti kaip naują įrašą" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "Įterpti kaip naują eilutę ir ignoruoti klaidas" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "Rodyti įterptą užklausą" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Sugrįžti į buvusį puslapį" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Įterpti kitą naują eilutę" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Grįžti atgal į šį puslapį" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Redaguoti kitą įrašą" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9879,7 +9855,7 @@ msgid "" msgstr "" "Šokinėjimui tarp reikšmių naudokite TAB mygtuką arba naudokite CTRL+rodyklės" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9891,11 +9867,11 @@ msgstr "" msgid "Value" msgstr "Reikšmė" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "Rodoma SQL užklausa" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "Įterpto įrašo id: %1$d" @@ -9911,41 +9887,41 @@ msgstr "Nėra" msgid "Convert to Kana" msgstr "Konvertuoti į Kana" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table prefix:" msgstr "Pakeisti lentelės pavadinimo priešdėlį" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Copy table with prefix" msgid "Copy table with prefix:" msgstr "Kopijuoti lentelę su pavadinimo priešdėliu" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "Iš" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "Kam" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Add table prefix" msgid "Add table prefix:" msgstr "Pridėti lentelės priešdėlį" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "Pridėti priešdėlį" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -10177,8 +10153,8 @@ msgstr "Procedūros" msgid "Views:" msgstr "Rodinys (Views)" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Rodyti" @@ -10221,10 +10197,9 @@ msgstr[1] "" msgstr[2] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "Alter table order by" -msgid "Filter databases by name or regex" -msgstr "Pakeisti lentelės rikiavimą pagal:" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -10233,12 +10208,6 @@ msgstr "Pakeisti lentelės rikiavimą pagal:" msgid "Clear fast filter" msgstr "Išsaugoti į failą" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "Alter table order by" -msgid "Filter by name or regex" -msgstr "Pakeisti lentelės rikiavimą pagal:" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -10642,7 +10611,7 @@ msgstr "Pervadinti duomenų bazę į" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10653,7 +10622,7 @@ msgstr "Neturite pakankamai teisių čia būti!" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -10673,18 +10642,18 @@ msgstr "Pašalinti duomenų bazę" msgid "Drop the database (DROP)" msgstr "Pašalinti duomenų bazę (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Tik struktūra" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Struktūra ir duomenys" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Tik duomenys" @@ -10698,7 +10667,7 @@ msgstr "Kopijuoti duomenų bazę į" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE prieš kopijuojant" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Pridėti apribojimą" @@ -10738,163 +10707,163 @@ msgstr "Saugojimo variklis" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Kopijuoti lentelę į (duomenų_bazė.lentelė)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Pereiti į lentelės kopiją" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Lentelės diagnostika" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Analizuoti lentelę" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Patikrinti lentelę" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Patikrinti lentelę" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Defragmentuoti lentelę" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "Lentelės buferis %s išvalytas." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "Išvalyti ir perkrauti lentelės podėlį (FLUSH)" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Optimizuoti" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Taisyti lentelę" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "Ištrinti duomenis arba lentelę" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "Ištrinti lentelės duomenis (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "Ištrinti lentelę (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Analizuoti" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Pažymėti" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Optimizuoti" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Perdaryti" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Taisyti" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "Uždaryti" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "Skaidinio diagnostika" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "Skaidinys %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "Pašalinti skaidymą" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Patikrinti sąryšių vientisumą:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Negalima perkelti lentelės į ją pačią!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Negalima kopijuoti lentelės į ją pačią!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Lentelė %s perkelta į %s." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Letelė %s nukopijuota į %s." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "Lentelė %s perkelta į %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "Letelė %s nukopijuota į %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Tuščias lentelės vardas!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "Šis formatas neturi nustatymų" @@ -11073,7 +11042,7 @@ msgstr "Duomenų išvedimo nustatymai" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Sukurta duomenų kopija lentelei" @@ -11099,21 +11068,21 @@ msgstr "Paaiškinimas" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Sukurta duomenų struktūra lentelei" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Struktūra peržiūrėjimui" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Tik struktūra rodiniui" @@ -11219,7 +11188,7 @@ msgid "Database:" msgstr "Duomenų bazė" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11336,7 +11305,7 @@ msgid "Data creation options" msgstr "Objekto kūrimo nustatymai" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -11421,8 +11390,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11430,93 +11399,93 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Missing data for %s" msgid "Metadata" msgstr "Trūksta duomenų %s" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Metadata for %s" msgstr "Trūksta duomenų %s" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Kūrimas:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Paskutinis atnaujinimas:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Paskutinis patikrinimas:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "šiuo metu naudojama" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Apribojimai eksportuotom lentelėm" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Apribojimai lentelei" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Apribojimai eksportuotom lentelėm" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Viduje lentelių:" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "Nenaudoti AUTO_INCREMENT nulinėms reikšmėms" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Pridėti AUTO_INCREMENT reikšmę" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "MIME TIPAI LENTELEI" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "SĄRYŠIAI LENTELEI" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, 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.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "Klaida skaitant duomenis:" @@ -11772,9 +11741,9 @@ msgstr "Ryšių schema" msgid "Table of contents" msgstr "Turinys" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Papildomai" @@ -12012,63 +11981,63 @@ msgstr "Suformuoja tekstą kaip SQL užklausą su sintaksės paryškinimais." msgid "Formats text as XML with syntax highlighting." msgstr "Suformuoja tekstą kaip SQL užklausą su sintaksės paryškinimais." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Klaida: toks sąryšis jau yra." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "FOREIGN KEY sąryšis įdėtas" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Klaida: Sąryšis neįdėtas." -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Relational features are disabled!" msgstr "Klaida: Sąryšis neįdėtas." -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "Vidinis sąryšis įdėtas" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "Klaida: Sąryšis neįdėtas." -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "FOREIGN KEY sąryšis įdėtas" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Klaida: Sąryšis neįdėtas." -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "Klaida: Sąryšis neįdėtas." -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -12126,71 +12095,71 @@ msgstr "" "Informaciją, kaip atnaujinti column_comments lentelę, galite rasti " "dokumentacijoje." -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Sukurti nuoroda SQL-užklausai" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL užklausų istorija" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 #, fuzzy #| msgid "Persistent connections" msgid "Persistent recently used tables" msgstr "Ilgalaikiai sujungimai" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "Persistent connections" msgid "Persistent favorite tables" msgstr "Ilgalaikiai sujungimai" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "Naudotojo nuostatos" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Configuration: %s" msgid "Configurable menus" msgstr "Konfigūracija: %s" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 #, fuzzy #| msgid "Reload navigation frame" msgid "Hide/show navigation items" msgstr "Atsiųsti iš naujo navigacijos rėmelį" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Remember table's sorting" msgid "Remembering Designer Settings" msgstr "Įsiminti lentelės rūšiavimą" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "Neteisingas eksportavimo tipas" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "Greiti žingsneliai nustatyti išplėstines galimybes:" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, fuzzy, php-format #| msgid "" #| "Create the needed tables with the examples/create_tables.sql." @@ -12198,11 +12167,11 @@ msgid "Create the needed tables with the %screate_tables.sql." msgstr "" "Sukurti reikalaujamas lenteles su examples/create_tables.sql." -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "Sukurti pma naudotoją ir suteikti prieigą prie šių lentelių." -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -12210,24 +12179,24 @@ msgstr "" "Įjungti išplėstines funkcijas konfigūraciniame faile (config.inc.php), pavyzdžiui, pradėti galite nuo config.sample.inc.php." -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Iš naujo prisijunkite prie phpMyAdmin tam, kad užkrautumėte atnaujintą " "konfigūracijos failą." -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "Aprašymo nėra" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -12235,14 +12204,14 @@ msgid "" "configuration storage there." msgstr "Trūksta phpMyAdmin nustatymų saugyklos lentelių" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Trūksta phpMyAdmin nustatymų saugyklos lentelių" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -12450,8 +12419,8 @@ msgstr "Naudotojo vardas" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Naudotojo vardas" @@ -12459,7 +12428,7 @@ msgstr "Naudotojo vardas" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Slaptažodis" @@ -13138,7 +13107,7 @@ msgstr[2] "Sėkmingai pašalintos %s duomenų bazės." msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Versija" @@ -13146,103 +13115,99 @@ msgstr "Versija" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Išjungta" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Be teisių." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Įtraukti visas teises, išskyrus GRANT." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Leisti skaityti duomenis." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Leisti įterpti ir modifikuoti duomenis." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Leisti modifikuoti duomenis." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Leisti šalinti duomenis." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Leisti kurti naujas duomenų bazes ir lenteles." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Leisti šalinti duomenų bazes ir lenteles." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Leisti perkrauti serverio nustatymus, bei išvalyti laikinąją atmintį (cache)." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Leisti išjungti serverį." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 #, fuzzy #| msgid "Allows viewing processes of all users" msgid "Allows viewing processes of all users." msgstr "Leisti peržiūrėti procesus visiems naudotojams" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "Leisti įterpti ir eksportuoti duomenis iš failų." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "Negalioja šioje MySQL versijoje." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Leisti įterpti ir modifikuoti indeksus." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Leisti keisti jau egzistuojančių lenetelių struktūrą." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Suteikti prieigą prie visų duomenų bazių sąrašo." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -13253,22 +13218,22 @@ msgstr "" "vartotojų atjungimui." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Leisti kurti laikinas lenteles." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Leisti užrakinti lenteles procesų metu." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Leisti vartotojo užklausas dėl atstatymo master / slave darbinių stočių." @@ -13276,19 +13241,19 @@ msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Leidžia sukurti naujus rodinius (view)." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "Leisti nustatyti įvykius įvykių planuoklėje (scheduler)" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 #, fuzzy #| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." @@ -13296,27 +13261,27 @@ msgstr "Leisti įterpti ir pašalinti trigerius" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Leidžia vykdyti SHOW CREATE VIEW užklausas." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Leidžia sukurti naujas saugomas programas (stored routines)." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Leisti keisti pašalinti saugimas programas (stored routines)." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "Leidžia kurti, šalinti ir pervadinti vartotojus." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Leisti įvykdyti saugomas programas (stored routines)." @@ -13328,8 +13293,8 @@ msgstr "Nėra" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -13373,13 +13338,13 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Pastaba: nėra jokių apribojimų jeigu reikšmė nurodyta lygi 0 (nuliui)." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Riboti užklausų, kurias naudotojas gali siųsti į serverį, kiekį per valandą." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -13388,20 +13353,20 @@ msgstr "" "valandą." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "Riboti prisijungimų kiekį per valandą." # gal labiau kartu vykstančių #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "Riboti skaičių lygiagrečių prisijungimų kurį naudotojai gali turėti." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Column names" @@ -13409,7 +13374,7 @@ msgid "Routine" msgstr "Stulpelių vardai" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -13430,14 +13395,14 @@ msgstr "Leisti įvykdyti saugomas programas (stored routines)." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Specifinės lentelių privilegijos" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -13449,7 +13414,7 @@ msgid "Administration" msgstr "Administracija" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Globalios teisės" @@ -13460,15 +13425,15 @@ msgid "Global" msgstr "globalus" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Specifinės duomenų bazių privilegijos" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Leisti kurti naujas lenteles." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Leisti šalinti lenteles." @@ -13491,7 +13456,7 @@ msgid "Native MySQL Authentication" msgstr "Autentifikavimas slapukais" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Prisijungimo informacija" @@ -13516,8 +13481,8 @@ msgstr "Naudotojo vardas" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Log name" msgid "Host name" @@ -13539,123 +13504,123 @@ msgstr "Atpažinimas" msgid "Password Hashing Method" msgstr "Slaptažodžių Hešavimas" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "Vartotojo %s slaptažodis sėkmingai pakeistas." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Jūs panaikinote privilegijas %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Pridėti naudotoją" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Vartotojo duomenų bazė" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" "Sukurti duomenų bazę su tokiu pat vardu ir suteikti jai visas privilegijas." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Suteikti visas privilegijas pakaitos vardui (username\\_%)." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Suteikti visas privilegijas duomenų bazei „%s“." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Vartotojai turintys priėjimą prie „%s“" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "Naudotojas buvo pridėtas." -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Suteikti" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "Nerasta jokių naudotojų." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Bet kurį(ią)" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "globalus" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "tam tikros duomenų bazės" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "pakaitos simbolis" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "tam tikros duomenų bazės" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Redaguoti privilegijas" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Panaikinti" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Redaguoti serverį" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… palikti seną vartotoją." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… pašalinti seną vartotoją iš vartotojų lentelės." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… panaikinti visas privilegijas iš seno vartotojo ir poto jį pašalinti." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -13663,124 +13628,124 @@ msgstr "" "… pašalinti seną vartotoją iš vartotojų lentelės ir po to perkrauti " "privilegijas." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Pakeisti prisijungimo informaciją / Kopijuoti vartotojo duomenis" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Sukurti naują vartotoją su tom pačiom privilegijom ir …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Specifinės stulpelių privilegijos" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Pašalinti pažymėtus vartotojus" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Panaikinti visas aktyvias vartotojų privilegijas ir pašalinti vartotojus." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" "Pašalinti duomenų bazes, turinčias tokius pačius pavadinimus kaip ir " "vartotojai." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "Nepasirinta vartotojų trynimui!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Perkraunamos privilegijos" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Pažymėti vartotojai sėkmingai pašalinti." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Jūs pakeitėte privilegijas %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "Šaliname: %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Teisės sėkmingai perkrautos." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "Vartotojas %s jau yra!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilegijos" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Naudotojas" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Redaguoti privilegijas" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "Users" msgid "User account" msgstr "Naudotojai" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "Naudotojų apžvalga" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13792,7 +13757,7 @@ msgstr "" "lentelės. Šiose lentelėse nurodytos teisės gali skirtis nuo nustatymų " "failuose nurodytų teisių. Todėl %sperkraukite teises%s, jeigu norite tęsti." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13810,11 +13775,11 @@ msgstr "" "lentelės. Šiose lentelėse nurodytos teisės gali skirtis nuo nustatymų " "failuose nurodytų teisių. Todėl %sperkraukite teises%s, jeigu norite tęsti." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "Privilegijų lentelėje pasirinktas vartotojas nerastas." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Jūs sukūrėte naują vartotoją." @@ -14051,32 +14016,32 @@ msgstr "Instrukcijos/Diegimas" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 #, fuzzy #| msgid "Enable highlighting" msgid "Enable charts dragging" msgstr "Įjungti paryškinimą" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "Naujinimo dažnis" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "Diagramos stulpeliai" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "Diagramos išdėstymas" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "Atstatyti numatytąsias reikšmes" @@ -14145,7 +14110,7 @@ msgid "Statements" msgstr "Parametrai" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "#" @@ -14170,33 +14135,33 @@ msgstr "Rodyti nesuformatuotas reikšmes" msgid "Related links:" msgstr "Susijusios nuorodos:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Skaičius nepavykusių bandymų prisijungti prie MySQL serverio." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -14204,78 +14169,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "Kiek laikinųjų failų mysqld sukūrė." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "Įvykdytų FLUSH užklausų skaičius." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "Vidinių COMMIT užklausų skaičius." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -14283,7 +14248,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -14291,42 +14256,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "Vidinių ROLLBACK užklausų skaičius." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "Skaičius užklausų, kad atnaujinti eilutę lentelėje." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "Skaičius užklausų, kad įtraukti eilutę lentelėje." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "Tuščių puslapių skaičius." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -14334,33 +14299,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -14369,244 +14334,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "Esamu momentu laukiančių fsync() operacijų skaičius." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "Esamu momentu laukiančių skaitymų skaičius." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "Esamu momentu laukiančių rašymų skaičius." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "Duomenų nuskaitymų skaičius." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "Duomenų įrašymų skaičius." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "Sukurtų puslapių skaičius." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "Puslapių skaitymų skaičius." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "Įrašytų puslapių skaičius." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Įkelto failo formatas" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "Failų kurie yra atidaryti skaičius." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "Lentelių kurios yra atidarytos skaičius." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "Podėlio kreipimųsi skaičius." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14614,99 +14579,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "Surikiuotų eilučių skaičius." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "Rikiavimų kurie buvo atlikti skenuojant lentelę skaičius." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14714,18 +14679,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14733,13 +14698,13 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Sekimas yra neaktyvus." -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -14748,77 +14713,77 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 #, fuzzy #| msgid "Users" msgid "User groups" msgstr "Naudotojai" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "Serverio versija" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Database server" msgid "Database level tabs" msgstr "Duomenų bazės serveris" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table comments" msgid "Table level tabs" msgstr "Lentelės komentarai" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy #| msgid "Views" msgid "View users" msgstr "Rodinys (Views)" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "Pridėti naudotoją" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Be teisių." -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Column names: " msgid "Group name:" msgstr "Stulpelių vardai: " -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Serverio versija" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "Duomenų bazės serveris" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14884,21 +14849,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14967,143 +14928,143 @@ msgstr "Įvykis %1$s buvo sukurtas." msgid "Variable name was expected." msgstr "Lentelės vardo šablonas" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Lentelės pradžioje" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 #, fuzzy #| msgid "The number of tables that are open." msgid "The name of the entity was expected." msgstr "Lentelių kurios yra atidarytos skaičius." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Eilutė buvo ištrinta" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "Duomenų failai" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Kita" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy #| msgid "Start" msgid "State" msgstr "Paleisti" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Iš viso užtruko:" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Laikas" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Uždaryti" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Laikas" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Šios SQL užklausą pasižymėti kaip" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Label" msgid "Label:" msgstr "Nuorodos Antraštė" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Leisti kitiems vartotojams naudotis šia žyme" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created!" msgstr "Žymė %s sukurta" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "Rodomas PHP kodas" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Iškilo problemos su `%s` lentelės indeksais" @@ -15134,29 +15095,29 @@ msgstr "" msgid "Bind parameters" msgstr "Blogi parametrai!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 #, fuzzy #| msgid "Bookmark this SQL query" msgid "Bookmark this SQL query:" msgstr "Šios SQL užklausą pasižymėti kaip" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Pakeisti jau egzistuojančią žymę tuo pačiu vardu" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Skyriklis" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Rodyti šią užklausą vėl" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Peržiūra" @@ -15204,179 +15165,179 @@ msgstr "Deaktyvuoti dabar" msgid "Deactivate now" msgstr "Deaktyvuoti dabar" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Sukurta" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Atnaujinta" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "Sukurti versiją" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Sekimo ataskaita" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Momentinė struktūros kopija" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "aktyvus" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "neaktyvus" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "Ištrinti sekimo duomenis iš ataskaitos" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "Nėra duomenų" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "SQL vykdymas" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "Eksportuoti kaip %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Data" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Vartotojo vardas" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Jokio" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "Užkomentuokite (panaikinkite) šias dvi eilutes jeigu Jums jų nereikia." -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Stebėjimas %s.%s yra aktyvuotas." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Stebėjimas %s.%s yra aktyvuotas." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format #| msgid "Create version" msgid "Version %1$s of %2$s was deleted." msgstr "Sukurti versiją" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Nesekamos lentelės" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Sekti lentelę" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Sekamos lentelės" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Paskutinė versija" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "Trinami sekimo duomenys" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Versijos" @@ -15384,11 +15345,11 @@ msgstr "Versijos" msgid "Manage your settings" msgstr "Keiskite savo nustatymus" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "Konfigūracija išsaugota." -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -15493,7 +15454,7 @@ msgstr "Nėra duomenų bazių" msgid "View dump (schema) of databases" msgstr "Peržiūrėti duomenų bazių atvaizdį (schemą)" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -15519,7 +15480,7 @@ msgid "" msgstr "" "phpMyAdmin negalėjo išjungti %s proceso. Gali būti jog jis jau užbaigė darbą." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -16464,47 +16425,53 @@ msgstr "" msgid "Stacked" msgstr "Suspausta" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "Diagramos antraštė" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "X-ašis:" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "X ašies etiketė:" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "X Reikšmės" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "Y ašies etiketė:" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Y Reikšmės" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside column:" msgid "Series column:" msgstr "Stulpelio viduje:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Values for column %s" msgid "Value Column:" msgstr "Stulpelio „%s“ reikšmės" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -16567,56 +16534,57 @@ msgstr "Komentaras" msgid "Drag to reorder" msgstr "Vilkite, kad pertvarkytumėte" -#: templates/table/relation/common_form.phtml:7 -msgid "Internal relations" -msgstr "Vidiniai sąryšiai" - -#: templates/table/relation/common_form.phtml:11 -#, fuzzy -#| msgid "Internal relations" -msgid "Internal relation" -msgstr "Vidiniai sąryšiai" - -#: templates/table/relation/common_form.phtml:14 -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "" - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 #, fuzzy #| msgid "Foreign key limit" msgid "Foreign key constraints" msgstr "Svetimų raktų apribojimas" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 #, fuzzy #| msgid "Action" msgid "Actions" msgstr "Veiksmas" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 #, fuzzy #| msgid "Constraints for table" msgid "Constraint properties" msgstr "Apribojimai lentelei" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Pridėti apribojimą" -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +msgid "Internal relations" +msgstr "Vidiniai sąryšiai" + +#: templates/table/relation/common_form.phtml:80 +#, fuzzy +#| msgid "Internal relations" +msgid "Internal relation" +msgstr "Vidiniai sąryšiai" + +#: templates/table/relation/common_form.phtml:83 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "" + +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16777,7 +16745,7 @@ msgid "at beginning of table" msgstr "Lentelės pradžioje" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16824,7 +16792,7 @@ msgstr "Skaidinys %s" msgid "Edit partitioning" msgstr "Pašalinti skaidymą" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "Keisti rodinį" @@ -18144,6 +18112,41 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "MyISAM concurrent įterpimai" +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "Lentelės" + +#, fuzzy +#~| msgid "Views" +#~ msgid "views" +#~ msgstr "Rodinys (Views)" + +#, fuzzy +#~| msgid "Procedures" +#~ msgid "procedures" +#~ msgstr "Procedūros" + +#, fuzzy +#~| msgid "event" +#~ msgid "events" +#~ msgstr "įvykis" + +#, fuzzy +#~| msgid "Functions" +#~ msgid "functions" +#~ msgstr "Funkcijos" + +#, fuzzy +#~| msgid "Alter table order by" +#~ msgid "Filter databases by name or regex" +#~ msgstr "Pakeisti lentelės rikiavimą pagal:" + +#, fuzzy +#~| msgid "Alter table order by" +#~ msgid "Filter by name or regex" +#~ msgstr "Pakeisti lentelės rikiavimą pagal:" + #, fuzzy #~| msgid "Tracking report" #~ msgid "Taking you to %s." diff --git a/po/lv.po b/po/lv.po index 5c524eacff..608749f8b2 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:23+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Latvian Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "Piedalies" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 #, 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:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 #, fuzzy #| msgid "Change" msgid "Taking you to next step…" msgstr "Labot" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 #, fuzzy @@ -2027,281 +2039,281 @@ msgstr "" msgid "End of step" msgstr "Tabulas beigās" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 #, fuzzy #| msgid "None" msgid "Done" msgstr "Nav" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Datubāze nav izvēlēta." -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Pievienot privilēģijas uz sekojošo tabulu" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Datubāze nav izvēlēta." -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Saglabāt" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Slēpt meklēšanas kritērijus" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Rādīt meklēšanas kritērijus" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Meklēt" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Kolonnu nosaukumi" -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Kolonnu nosaukumi" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "Slēpt meklēšanas kritērijus" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "Rādīt meklēšanas kritērijus" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "Izvēlies 2 kolonnas" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "Izvēlies 2 dažādas kolonnas" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Table of contents" msgid "Data point content" msgstr "Satura rādītājs" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignorēt" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Kopēt" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Punkts" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Līnija" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Ģeometrija" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Iekšējais aplis" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Ārējais aplis:" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Lapas numurs:" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 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:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgctxt "PDF" @@ -2309,272 +2321,237 @@ msgstr "Iezīmēt visu" msgid "Open page" msgstr "Aizņem" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "Iezīmēt visu" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "Vienība" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Izvēlieties lapu redigēšanai" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid page name" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 #, fuzzy #| msgid "Relational schema" msgid "Export relational schema" msgstr "Relāciju shēma" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Labojumi tika saglabāti" -#: js/messages.php:550 +#: js/messages.php:551 #, 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:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Nosūtīt" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Kolonnu nosaukumi" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Rādīt visu" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Oriģinālā pozīcija" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Atcelt" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Pārtraukts" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 #, fuzzy msgid "Import status" msgstr "Importēt failus" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Izvēlieties tabulas" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 #, fuzzy msgid "Go to link:" msgstr "Nav datubāzu" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Kolonnu nosaukumi" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Mainīt paroli" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 #, fuzzy msgid "Generate" msgstr "Uzģenerēja" -#: js/messages.php:620 +#: js/messages.php:621 #, fuzzy #| msgid "Mon" msgid "More" msgstr "P" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Rādīt visu" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "Pievienot jaunu lauku" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Rādīt režģi" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 #, fuzzy msgid "Link with main panel" msgstr "Datubāzu eksporta opcijas" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 #, fuzzy msgid "Unlink from main panel" msgstr "Datubāzu eksporta opcijas" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 #, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "Tabulas" - -#: js/messages.php:633 -#, fuzzy -msgid "views" -msgstr "Lauki" - -#: js/messages.php:634 -#, fuzzy -msgid "procedures" -msgstr "Procesi" - -#: js/messages.php:635 -#, fuzzy -msgid "events" -msgstr "Nosūtīts" - -#: js/messages.php:636 -#, fuzzy -msgid "functions" -msgstr "Funkcija" - -#: js/messages.php:640 -#, 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:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2582,136 +2559,136 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr "" -#: js/messages.php:649 +#: js/messages.php:641 #, fuzzy msgid "up to date" msgstr "Nav datubāzu" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 #, fuzzy msgid "Create view" msgstr "Servera versija" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy msgid "Send error report" msgstr "Servera ID" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy msgid "Submit error report" msgstr "Servera ID" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "Mainīt uzstādījumus" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy msgid "Show report details" msgstr "Rādīt tabulas" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignorēt" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Rādīt šo vaicājumu šeit atkal" -#: js/messages.php:701 +#: js/messages.php:693 #, 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:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL vaicājums" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Komentārs tabulai" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Slēpt meklēšanas rezultātus" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Iepriekšējie" -#: js/messages.php:748 +#: js/messages.php:740 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2719,96 +2696,96 @@ msgid "Next" msgstr "Nākamie" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Kopā" -#: js/messages.php:755 +#: js/messages.php:747 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binārais" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:749 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:758 +#: js/messages.php:750 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Mai" -#: js/messages.php:760 +#: js/messages.php:752 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jūn" -#: js/messages.php:761 +#: js/messages.php:753 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jūl" -#: js/messages.php:762 +#: js/messages.php:754 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:756 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2816,78 +2793,78 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Jūn" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Jūl" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Dec" -#: js/messages.php:801 +#: js/messages.php:793 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Sv" -#: js/messages.php:802 +#: js/messages.php:794 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "P" -#: js/messages.php:803 +#: js/messages.php:795 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "O" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:798 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pk" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2895,167 +2872,167 @@ msgid "Sun" msgstr "Sv" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "P" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "O" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "T" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "C" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Pk" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "S" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Sv" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "P" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "O" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 #, fuzzy #| msgid "Wed" msgid "We" msgstr "T" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "C" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pk" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "S" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Nav" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:864 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "lietošanā" -#: js/messages.php:873 +#: js/messages.php:865 #, fuzzy #| msgid "per second" msgid "Second" msgstr "sekundē" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Lietot teksta lauku" -#: js/messages.php:886 +#: js/messages.php:878 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid email address" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:887 +#: js/messages.php:879 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid URL" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:889 +#: js/messages.php:883 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date ( ISO )" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:890 +#: js/messages.php:885 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid number" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:891 +#: js/messages.php:888 #, 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:892 +#: js/messages.php:890 #, fuzzy #| msgid "Please enter a valid length" msgid "Please enter only digits" @@ -3067,53 +3044,53 @@ msgstr "Lūdzu ievadiet derīgu garumu" msgid "Please enter the same value again" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter at least {0} characters" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 #, 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:898 +#: js/messages.php:917 #, 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:899 +#: js/messages.php:922 #, 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:901 +#: js/messages.php:928 #, 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:902 +#: js/messages.php:933 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid HEX input" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Kļūda" @@ -3200,11 +3177,12 @@ msgstr "vaicājumā" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3253,7 +3231,7 @@ msgstr "" msgid "Explain" msgstr "Izskaidrot SQL" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "" @@ -3294,8 +3272,8 @@ msgid "History" msgstr "SQL vēsture" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3480,32 +3458,32 @@ msgstr "" msgid "Switch to dark theme" msgstr "Pārslēgties uz nokopēto tabulu" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Serveris neatbild" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3515,8 +3493,8 @@ msgstr "" msgid "Ascending" msgstr "Augošā secībā" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3689,8 +3667,8 @@ msgstr[0] "%s rezultāti tabulā %s" msgstr[1] "%s rezultāti tabulā %s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3741,29 +3719,29 @@ msgstr "Neiezīmēt neko" msgid "Inside column:" msgstr "Tabulā(s):" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "Pievienot/Dzēst laukus (kolonnas)" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 #, fuzzy #| msgid "Filter" msgid "Filter rows" msgstr "Filtrs" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Search in database" msgid "Search this table" msgstr "Meklēt datubāzē" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 #, fuzzy #| msgid "Begin" @@ -3771,7 +3749,7 @@ msgctxt "First page" msgid "Begin" msgstr "Sākums" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 #, fuzzy @@ -3780,7 +3758,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Iepriekšējie" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 #, fuzzy @@ -3789,7 +3767,7 @@ msgctxt "Next page" msgid "Next" msgstr "Nākamie" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 #, fuzzy #| msgid "End" @@ -3797,86 +3775,86 @@ msgctxt "Last page" msgid "End" msgstr "Beigas" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Visi" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of rows per page" msgid "Number of rows:" msgstr "Rindu skaits vienā lapā" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Kārtot pēc atslēgas" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Daļēji teksti" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Pilni teksti" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 #, fuzzy msgid "Relational key" msgstr "Relāciju shēma" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Disable foreign key checks" msgid "Display column for relations" msgstr "Nepārbaudīt ārējās atslēgas" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Pārlūkprogrammas transformācija" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Ieraksts tika dzēsts" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Nogalināt" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Var būt aptuvens skaits. Skatīt [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -3884,50 +3862,51 @@ msgstr "Var būt aptuvens skaits. Skatīt [doc@faq3-11]FAQ 3.11[/doc]" msgid "Your SQL query has been executed successfully." msgstr "Jūsu SQL vaicājums tika veiksmīgi izpildīts" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Parādu rindas" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "kopā" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "Vaicājums ilga %01.4f s" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Ar iezīmēto:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3935,27 +3914,27 @@ msgstr "Ar iezīmēto:" msgid "Check all" msgstr "Iezīmēt visu" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Izdrukas versija" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Rādīt PDF shēmu" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 #, fuzzy #| msgid "Link not found" msgid "Link not found!" @@ -4056,19 +4035,19 @@ msgstr "Nav definēti indeksi!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Indeksi" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -4077,24 +4056,24 @@ msgid "Action" msgstr "Darbība" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Atslēgas nosaukums" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Unikālais" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Kardinalitāte" @@ -4102,8 +4081,8 @@ msgstr "Kardinalitāte" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -4113,8 +4092,8 @@ msgid "Collation" msgstr "Izkārtojumi" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -4131,15 +4110,15 @@ msgstr "Primārā atslēga tika izdzēsta." msgid "Index %s has been dropped." msgstr "Indekss %s tika izdzēsts." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Likvidēt" @@ -4176,12 +4155,13 @@ msgstr "" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4189,7 +4169,7 @@ msgstr "Tabula" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4198,8 +4178,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4207,41 +4187,41 @@ msgid "Search" msgstr "Meklēt" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Pievienot" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilēģijas" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Darbības" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4252,16 +4232,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Vaicājums pēc parauga" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4269,22 +4249,22 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Pievienot/Dzēst laukus (kolonnas)" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Datubāzes" @@ -4295,12 +4275,12 @@ msgid "User accounts" msgstr "Lietotājs" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Binārais log-fails" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 #, fuzzy @@ -4308,21 +4288,21 @@ msgid "Replication" msgstr "Relācijas" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Mainīgie" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Rakstzīmju kodējumi" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4650,7 +4630,7 @@ msgstr "Nevar pārsaukt indeksu par PRIMARY!" msgid "No index parts defined!" msgstr "Nav definēto indeksa daļu!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5077,38 +5057,38 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "web servera augšupielādes direktorija" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Direktoija, kuru norādijāt augšupielādei, nav pieejama." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Iztukšot" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Drukāt" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 #, fuzzy #| msgid "User" msgid "Users" @@ -5289,8 +5269,8 @@ msgid "Add new column" msgstr "Pievienot %s lauku(s)" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5356,19 +5336,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "Jums ir jāuzliek %s %s vai jaunāks." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -6204,7 +6184,7 @@ msgid "Remember file name template" msgstr "Faila nosaukuma šablons" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Pievienot AUTO_INCREMENT vērtību" @@ -6247,7 +6227,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "" @@ -7924,7 +7904,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 #, fuzzy msgid "Retain query box" msgstr "SQL vaicājums" @@ -8213,108 +8193,34 @@ msgstr "" msgid "OpenDocument Text" msgstr "Dokumentācija" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Tabula %s tika iztukšota." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format msgid "View %s has been dropped." msgstr "Lauks %s tika izdzēsts" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "Tabula %s tika izdzēsta" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "nazināma" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "Nav izvēlēta kolonna." - -#: libraries/controllers/TableStructureController.php:484 -#, 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.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, fuzzy, php-format -msgid "Table %1$s has been altered successfully." -msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -#, fuzzy -#| msgid "Query type" -msgid "Query error" -msgstr "Vaicājuma tips" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Labot" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Indekss" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Pilni teksti" - -#: libraries/controllers/TableStructureController.php:1201 -#, fuzzy -msgid "Distinct values" -msgstr "Pārlūkot ārējās vērtības" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8330,6 +8236,14 @@ msgstr "" msgid "No data to display" msgstr "Dati netika atrasti" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, fuzzy, php-format +msgid "Table %1$s has been altered successfully." +msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti." + #: libraries/controllers/table/TableRelationController.php:212 #, fuzzy #| msgid "Thread %s was successfully killed." @@ -8341,25 +8255,91 @@ msgstr "Process %s tika veiksmīgi nogalināts." msgid "Internal relations were successfully updated." msgstr "Iekšējās relācijas" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Search" msgid "Table search" msgstr "Meklēt" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Search" msgid "Zoom search" msgstr "Meklēt" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "Hide search criteria" msgid "Find and replace" msgstr "Slēpt meklēšanas kritērijus" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "Nav izvēlēta kolonna." + +#: libraries/controllers/table/TableStructureController.php:485 +#, 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/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +#, fuzzy +#| msgid "Query type" +msgid "Query error" +msgstr "Vaicājuma tips" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Labot" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Indekss" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Pilni teksti" + +#: libraries/controllers/table/TableStructureController.php:1209 +#, fuzzy +msgid "Distinct values" +msgstr "Pārlūkot ārējās vērtības" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8369,7 +8349,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Netika labots" @@ -8444,7 +8424,7 @@ msgstr "Izveidot" msgid "Create database:" msgstr "Izveidot jaunu datubāzi" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Nav privilēģiju" @@ -9179,70 +9159,70 @@ msgid "Dump has been saved to file %s." msgstr "Damps tika saglabāts failā %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL atgrieza tukšo rezultātu (0 rindas)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Nav datubāzu" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Nav datubāzu" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Tikai struktūra" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" @@ -9266,72 +9246,72 @@ msgstr "Funkcija" msgid "Binary" msgstr "Binārais" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "Sava garuma dēļ,
šis lauks var būt nerediģējams " -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Binārais - netiek labots" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Vai" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "web servera augšupielādes direktorija" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Pievienot" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Ievietot kā jaunu rindu" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Atgriezties atpakaļ iepriekšējā lapā" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Ievietot vēl vienu rindu" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Atgriezties šajā lapā" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9341,7 +9321,7 @@ msgstr "" "Lietojiet TAB taustiņu, lai pārvietotos no vērtības līdz vērtībai, vai CTRL" "+bultiņas, lai pārvietotos jebkurā vietā" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9353,11 +9333,11 @@ msgstr "" msgid "Value" msgstr "Vērtība" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9375,45 +9355,45 @@ msgstr "Nav" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix:" msgstr "Aizvietot tabulas datus ar datiem no faila" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix:" msgstr "Aizvietot tabulas datus ar datiem no faila" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Pk" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Add new field" msgid "Add table prefix:" msgstr "Pievienot jaunu lauku" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 #, fuzzy #| msgid "Add new field" msgid "Add prefix" msgstr "Pievienot jaunu lauku" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -9640,8 +9620,8 @@ msgstr "Procesi" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Rādīt" @@ -9682,10 +9662,9 @@ msgstr[1] "" msgstr[2] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "Alter table order by" -msgid "Filter databases by name or regex" -msgstr "Mainīt datu kārtošanas laukus" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -9694,12 +9673,6 @@ msgstr "Mainīt datu kārtošanas laukus" msgid "Clear fast filter" msgstr "Saglabāt kā failu" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "Alter table order by" -msgid "Filter by name or regex" -msgstr "Mainīt datu kārtošanas laukus" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -10103,7 +10076,7 @@ msgstr "Pārsaukt datubāzi par" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10114,7 +10087,7 @@ msgstr "Jums nav pietiekoši tiesību, lai atrastos šeit tagad!" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -10137,18 +10110,18 @@ msgstr "Pārsaukt datubāzi par" msgid "Drop the database (DROP)" msgstr "Nav datubāzu" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Tikai struktūra" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Struktūra un dati" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Tikai dati" @@ -10162,7 +10135,7 @@ msgstr "Kopēt datubāzi uz" msgid "CREATE DATABASE before copying" msgstr "" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Pievienot ierobežojumus" @@ -10202,61 +10175,61 @@ msgstr "" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Kopēt tabulu uz (datubāze.tabula)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Pārslēgties uz nokopēto tabulu" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Tabulas apkalpošana" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Analizēt tabulu" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Pārbaudīt tabulu" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Pārbaudīt tabulu" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Defragmentēt tabulu" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "Tabula %s tika atsvaidzināta." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "Atsvaidzināt tabulu (FLUSH)" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Optimizēt tabulu" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Restaurēt tabulu" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 #, fuzzy @@ -10264,107 +10237,107 @@ msgstr "Restaurēt tabulu" msgid "Delete data or table" msgstr "Dati tabulai" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 #, fuzzy msgid "Delete the table (DROP)" msgstr "Nav datubāzu" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 #, fuzzy msgid "Check" msgstr "Čehu" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 #, fuzzy msgid "Repair" msgstr "Restaurēt tabulu" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "Aizvērt" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 #, fuzzy msgid "Partition maintenance" msgstr "Tabulas apkalpošana" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Pārbaudīt referenciālo integritāti:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Nevar pārvietot tabulu uz viņu pašu!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Nevar nokopēt tabulu uz viņu pašu!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabula %s tika pārvietota uz %s." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabula %s tika pārkopēta uz %s." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabula %s tika pārvietota uz %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabula %s tika pārkopēta uz %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Tabulas nosaukums nav norādīts!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10553,7 +10526,7 @@ msgstr "Datubāzu eksporta opcijas" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Dati tabulai" @@ -10580,14 +10553,14 @@ msgstr "Apraksts" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Tabulas struktūra tabulai" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 #, fuzzy msgid "Structure for view" @@ -10595,7 +10568,7 @@ msgstr "Tikai struktūra" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10713,7 +10686,7 @@ msgid "Database:" msgstr "Datubāze" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10828,7 +10801,7 @@ msgid "Data creation options" msgstr "Transformācijas opcijas" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -10897,8 +10870,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10906,91 +10879,91 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Static data" msgid "Metadata" msgstr "Statiski dati" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Izveidošana:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Pēdējo reizi atjaunots:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Pēdējā pārbaude:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "lietošanā" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Ierobežojumi izmestām tabulām" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Ierobežojumi tabulai" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Ierobežojumi izmestām tabulām" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "Tabulā(s):" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Pievienot AUTO_INCREMENT vērtību" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Pievienot AUTO_INCREMENT vērtību" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "MIME TIPI TABULAI" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "RELĀCIJAS TABULAI" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Tikai struktūra" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11246,9 +11219,9 @@ msgstr "Relāciju shēma" msgid "Table of contents" msgstr "Satura rādītājs" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Ekstras" @@ -11469,60 +11442,60 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been added." msgstr "Labojumi tika saglabāti" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Nevar nolasīt failu" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy msgid "Internal relation has been added." msgstr "Iekšējās relācijas" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be added!" msgstr "Nevar nolasīt failu" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been removed." msgstr "Labojumi tika saglabāti" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Nevar nolasīt failu" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be removed!" msgstr "Nevar nolasīt failu" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy msgid "Internal relation has been removed." msgstr "Iekšējās relācijas" @@ -11578,110 +11551,110 @@ msgid "Please see the documentation on how to update your column_info table. " msgstr "" "Lūdzu skatieties dokumentāciju par to, kā atjaunot 'column_comments' tabulu." -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Saglabātie SQL vaicājumi" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL vēsture" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "The server is not responding" msgid "Persistent favorite tables" msgstr "Serveris neatbild" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Modifications have been saved" msgid "Configurable menus" msgstr "Labojumi tika saglabāti" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Rename table to" msgid "Remembering Designer Settings" msgstr "Pārsaukt tabulu uz" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "Nepareizs eksporta veids" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "Bez apraksta" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11863,8 +11836,8 @@ msgstr "Lietotājvārds" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Lietotājvārds" @@ -11872,7 +11845,7 @@ msgstr "Lietotājvārds" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Parole" @@ -12562,7 +12535,7 @@ msgstr[1] "%s datubāzes tika veiksmīgi dzēstas." msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 #, fuzzy msgid "Version" msgstr "Persiešu" @@ -12571,100 +12544,96 @@ msgstr "Persiešu" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Izslēgts" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Nav privilēģiju." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Iekļauj visas privilēģijas, izņemot GRANT." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Ļauj lasīt datus." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Ļauj ievietot un mainīt datus." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Ļauj mainīt datus." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Ļauj dzēst datus." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Ļauj veidot jaunas datubāzes un tabulas." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Ļauj dzēst datubāzes un tabulas." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Ļauj prlādēt servera iestādījumus un iztukšot servera kešu." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Ļauj apstādināt serveri." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "Ļauj importēt/eksportēt datus no/uz failiem." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "Nedarbojas šajā MySQL versijā." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Ļauj veidot un dzēst indeksus." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Ļauj mainīt esošo tabulu struktūru." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Dod pieeju pilnam datubāzu sarakstam." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12675,22 +12644,22 @@ msgstr "" "citu lietotāju procesu nogalināšana." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Ļauj veidot pagaidu tabulas." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Ļauj bloķēt tabulas tekošajai darbībai." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Nepieciešams replikāciju kopijām." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Dod lietotājam tiesības jautāt, kur ir replikācijas oriģināli / kopijas." @@ -12698,49 +12667,49 @@ msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 #, fuzzy msgid "Allows creating new views." msgstr "Ļauj veidot jaunas tabulas." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 #, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Allows to set up events for the event scheduler." msgstr "Ļauj bloķēt tabulas tekošajai darbībai." #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 #, fuzzy msgid "Allows creating and dropping triggers." msgstr "Ļauj veidot un dzēst indeksus." #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 #, fuzzy msgid "Allows creating stored routines." msgstr "Ļauj veidot jaunas tabulas." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Ļauj veidot un dzēst indeksus." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -12754,8 +12723,8 @@ msgstr "Nav" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12799,13 +12768,13 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Piezīme: Šo opciju uzstādīšana uz 0 (nulli) atceļ ierobežojumus." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Ierobežo vaicājumu skaitu, ko lietotājs var mosūtīt uz serveri stundas laikā." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12814,22 +12783,22 @@ msgstr "" "lietotājs var izpildīt stundas laikā." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Ierobežo jauno konekciju skaitu, ko lietotājs var atvērt stundas laikā." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Ierobežo jauno konekciju skaitu, ko lietotājs var atvērt stundas laikā." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Add new field" @@ -12837,7 +12806,7 @@ msgid "Routine" msgstr "Pievienot jaunu lauku" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12856,14 +12825,14 @@ msgstr "Ļauj veidot jaunas tabulas." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Tabulu specifiskās privilēģijas" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -12875,7 +12844,7 @@ msgid "Administration" msgstr "Administrācija" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Globālās privilēģijas" @@ -12886,15 +12855,15 @@ msgid "Global" msgstr "globāls" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Datubāžu specifiskās privilēģijas" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Ļauj veidot jaunas tabulas." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Ļauj dzēst tabulas." @@ -12917,7 +12886,7 @@ msgid "Native MySQL Authentication" msgstr "Dokumentācija" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Piekļuves informācija" @@ -12942,8 +12911,8 @@ msgstr "Lietotājvārds" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Log name" msgid "Host name" @@ -12965,124 +12934,124 @@ msgstr "Dokumentācija" msgid "Password Hashing Method" msgstr "Paroles jaukšana" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "Lietotāja %s parole tika veiksmīgi mainīta." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Jūs atņēmāt privilēgijas lietotājam %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Pievienot lietotāju" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database export options" msgid "Database for user account" msgstr "Datubāzu eksporta opcijas" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, fuzzy, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Pārbaudīt privilēģijas uz datubāzi \"%s\"." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Lietotāji, kam ir pieja datubāzei \"%s\"" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 #, fuzzy msgid "User has been added." msgstr "Lauks %s tika izdzēsts" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Piešķirt" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Lietotāji netika atrasti." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Jebkurš" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "globāls" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "datubāzei specifisks" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "aizstājējzīme" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "datubāzei specifisks" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Mainīt privilēģijas" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Atsaukt" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… paturēt veco lietotāju." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… dzēst veco lietotāju no lietotāju tabulas." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… atņemt vecajam lietotājam visas aktīvās privilēģijas, un pēc tam dzēst " "viņu." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -13090,121 +13059,121 @@ msgstr "" "… dzēst veco lietotāju no lietotāju tabulas, un pēc tam pārlādēt " "privilēģijas." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Mainīt piekļuves informāciju / Klonēt lietotāju" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Izveidot jaunu lietotāju ar tādām pašām privilēģijām un …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Kolonnu specifiskās privilēģijas" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Dzēst izvēlētos lietotājus" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Atņemt visas aktīvās privilēģijas lietotājiem, un pēc tam dzēst tos." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "Dzēst datubāzes, kurām ir tādi paši vārdi, kā lietotājiem." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Pārlādējam privilēģijas" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Jūs modificējāt privilēģijas objektam %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "Dzēšam %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Privilēģijas tika veiksmīgi pārlādētas." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "Lietotājs %s jau eksistē!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilēģijas" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Lietotājs" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Mainīt privilēģijas" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "User" msgid "User account" msgstr "Lietotājs" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Lietotāju pārskats" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13217,7 +13186,7 @@ msgstr "" "lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams " "%spārlādēt privilēģijas%s pirms Jūs turpināt." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13236,11 +13205,11 @@ msgstr "" "lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams " "%spārlādēt privilēģijas%s pirms Jūs turpināt." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "Izvēlētais lietotājs nav atrasts privilēģiju tabulā." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Jūs pievienojāt jaunu lietotāju." @@ -13481,33 +13450,33 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 #, fuzzy msgid "Refresh rate" msgstr "Atjaunot" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Pievienot/Dzēst laukus (kolonnas)" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -13574,7 +13543,7 @@ msgid "Statements" msgstr "Parametrs" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -13605,35 +13574,35 @@ msgstr "Rādīt tabulas" msgid "Related links:" msgstr "Relācijas" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Ierobežo jauno konekciju skaitu, ko lietotājs var atvērt stundas laikā." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13641,78 +13610,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13720,7 +13689,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13728,42 +13697,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13771,33 +13740,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13806,243 +13775,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Tabulas kodējums:" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14050,99 +14019,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14150,18 +14119,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14169,12 +14138,12 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "Vaicājuma tips" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -14183,76 +14152,76 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 #, fuzzy #| msgid "User" msgid "User groups" msgstr "Lietotājs" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "Servera versija" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Databases" msgid "Database level tabs" msgstr "Datubāzes" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table comments" msgid "Table level tabs" msgstr "Komentārs tabulai" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy msgid "View users" msgstr "Jebkurš lietotājs" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "Pievienot lietotāju" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Nav privilēģiju." -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "Kolonnu nosaukumi" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Servera versija" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Databases" msgid "Database-level tabs" msgstr "Datubāzes" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14316,21 +14285,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14393,139 +14358,139 @@ msgstr "Tabula %s tika izdzēsta" msgid "Variable name was expected." msgstr "Faila nosaukuma šablons" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Tabulas sākumā" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Ieraksts tika dzēsts" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 #, fuzzy msgid "Detailed profile" msgstr "Tikai dati" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Cits" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy msgid "State" msgstr "Statuss" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Kopējais laiks:" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Laiks" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Aizvērt" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Laiks" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Saglabāt šo SQL vaicājumu" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Label" msgid "Label:" msgstr "Nosaukums" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Dot ikvienam lietotājam pieeju šai grāmatzīmei" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created!" msgstr "Grāmatzīme %s izveidota" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problēmas ar indeksiem tabulā `%s`" @@ -14556,29 +14521,29 @@ msgstr "" msgid "Bind parameters" msgstr "Nepareizi parametri!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 #, fuzzy #| msgid "Bookmark this SQL query" msgid "Bookmark this SQL query:" msgstr "Saglabāt šo SQL vaicājumu" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Rādīt šo vaicājumu šeit atkal" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Tikai apskatīt" @@ -14623,105 +14588,105 @@ msgstr "" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Izveidots" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Atjaunots" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy msgid "Delete version" msgstr "Servera versija" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Struktūras apskats" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "aktīvs" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "neaktīvs" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Ļauj ievietot un mainīt datus." -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Nav datubāzu" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 #, fuzzy msgid "Date" msgstr "Dati" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 #, fuzzy msgid "Username" msgstr "Lietotājvārds:" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -14729,78 +14694,78 @@ msgctxt "None for default" msgid "None" msgstr "Nav" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Servera versija" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 #, fuzzy msgid "Untracked tables" msgstr "Tabulas, kas netiek izsekotas" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Pārbaudīt tabulu" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Izsekotās tabulas" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Pēdējā versija" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "Izsekošanas datu dzēšana" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Versijas" @@ -14810,13 +14775,13 @@ msgstr "Versijas" msgid "Manage your settings" msgstr "Galvenās relāciju īpašības" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." msgstr "Labojumi tika saglabāti" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14917,7 +14882,7 @@ msgstr "Nav datubāzu" msgid "View dump (schema) of databases" msgstr "Apskatīt datubāzu dampu (shēmu)" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14944,7 +14909,7 @@ msgstr "" "phpMyAdmin nevarēja nogalināt procesu %s. Iespējams, ka tas jau agrāk tika " "izbeigts." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -15889,50 +15854,56 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Import files" +msgid "Chart title:" +msgstr "Importēt failus" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 #, fuzzy msgid "Series:" msgstr "SQL vaicājums" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Vērtība" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Y Vērtība" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside table(s):" msgid "Series column:" msgstr "Tabulā(s):" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Values for column %s" msgid "Value Column:" msgstr "Tabulas %s vērtības" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -15998,54 +15969,55 @@ msgstr "Komentāri" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 -msgid "Internal relations" -msgstr "Iekšējās relācijas" - -#: templates/table/relation/common_form.phtml:11 -#, fuzzy -#| msgid "Internal relations" -msgid "Internal relation" -msgstr "Iekšējās relācijas" - -#: templates/table/relation/common_form.phtml:14 -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "" - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 #, fuzzy #| msgid "Foreign key check:" msgid "Foreign key constraints" msgstr "Svešo atslēgu pārbaude:" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 msgid "Actions" msgstr "Darbība" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 #, fuzzy #| msgid "Constraints for table" msgid "Constraint properties" msgstr "Ierobežojumi tabulai" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Pievienot ierobežojumus" -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +msgid "Internal relations" +msgstr "Iekšējās relācijas" + +#: templates/table/relation/common_form.phtml:80 +#, fuzzy +#| msgid "Internal relations" +msgid "Internal relation" +msgstr "Iekšējās relācijas" + +#: templates/table/relation/common_form.phtml:83 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "" + +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -16203,7 +16175,7 @@ msgid "at beginning of table" msgstr "Tabulas sākumā" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16248,7 +16220,7 @@ msgstr "Pozīcija" msgid "Edit partitioning" msgstr "Pievienot jaunu lauku" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -17500,6 +17472,37 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "Tabulas" + +#, fuzzy +#~ msgid "views" +#~ msgstr "Lauki" + +#, fuzzy +#~ msgid "procedures" +#~ msgstr "Procesi" + +#, fuzzy +#~ msgid "events" +#~ msgstr "Nosūtīts" + +#, fuzzy +#~ msgid "functions" +#~ msgstr "Funkcija" + +#, fuzzy +#~| msgid "Alter table order by" +#~ msgid "Filter databases by name or regex" +#~ msgstr "Mainīt datu kārtošanas laukus" + +#, fuzzy +#~| msgid "Alter table order by" +#~ msgid "Filter by name or regex" +#~ msgstr "Mainīt datu kārtošanas laukus" + #, fuzzy #~| msgid "Change" #~ msgid "Taking you to %s." diff --git a/po/mk.po b/po/mk.po index c470000075..d1dd56f894 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:23+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Macedonian Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Атрибути" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Примарниот клуч %s е додаден." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 #, fuzzy #| msgid "Change" msgid "Taking you to next step…" msgstr "Промени" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 #, fuzzy @@ -2122,551 +2134,515 @@ msgstr "" msgid "End of step" msgstr "на крајот од табелата" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 #, fuzzy #| msgid "None" msgid "Done" msgstr "нема" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Не е избрана ни една база на податоци." -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Додади привилегии на следната табела" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Не е избрана ни една база на податоци." -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Сочувај" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy msgid "Hide search criteria" msgstr "SQL упит" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy msgid "Show search criteria" msgstr "SQL упит" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Пребарување" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Имиња на колони" -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Имиња на колони" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy msgid "Hide find and replace criteria" msgstr "SQL упит" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy msgid "Show find and replace criteria" msgstr "SQL упит" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Додади/избриши колона" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Големина на покажувачите на податоци" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Игнорирај" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Копирај" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "" -#: js/messages.php:508 +#: js/messages.php:509 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Линиите се завршуваат со" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Add a new User" msgid "Inner ring" msgstr "Додади нов корисник" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Линиите се завршуваат со" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Број на страници:" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 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:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 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:539 +#: js/messages.php:540 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "избери се" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Изберете страница која менувате" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 #, fuzzy #| msgid "Relational schema" msgid "Export relational schema" msgstr "Релациона шема" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Измените се сочувани" -#: js/messages.php:550 +#: js/messages.php:551 #, fuzzy, php-format #| msgid "Number of rows per page" msgid "Add an option for column \"%s\"." msgstr "Број на записи на страница" -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Испрати" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Имиња на колони" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "прикажи ги сите" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Оргинална позиција" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Прекинато" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 #, fuzzy msgid "Import status" msgstr "Увоз на податотека" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Избери табели" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 #, fuzzy msgid "Go to link:" msgstr "Базата на податоци не постои" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Имиња на колони" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Генерирање на лозинка" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Генерирај" -#: js/messages.php:620 +#: js/messages.php:621 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Пон" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "прикажи ги сите" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "Додади ново поле" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Прикажи мрежа" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 #, fuzzy msgid "Link with main panel" msgstr "Опции за извоз на бази на податоци" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 #, fuzzy msgid "Unlink from main panel" msgstr "Опции за извоз на бази на податоци" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 #, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "Табели" - -#: js/messages.php:633 -#, fuzzy -#| msgid "View" -msgid "views" -msgstr "Поглед" - -#: js/messages.php:634 -#, fuzzy -msgid "procedures" -msgstr "Листа на процеси" - -#: js/messages.php:635 -#, fuzzy -msgid "events" -msgstr "Пратено" - -#: js/messages.php:636 -#, fuzzy -msgid "functions" -msgstr "Функција" - -#: js/messages.php:640 -#, 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:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2674,135 +2650,135 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr "" -#: js/messages.php:649 +#: js/messages.php:641 #, fuzzy msgid "up to date" msgstr "Базата на податоци не постои" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 #, fuzzy msgid "Create view" msgstr "Верзија на серверот" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy msgid "Send error report" msgstr "ID на серверот" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy msgid "Submit error report" msgstr "ID на серверот" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Општи особини на релациите" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy msgid "Show report details" msgstr "Прикажи табели" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Игнорирај" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Прикажи го повторно овој упит" -#: js/messages.php:701 +#: js/messages.php:693 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Дали навистина сакате да " -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL упит" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Коментар на табелата" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy msgid "Hide arguments" msgstr "SQL упит" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Претходна" -#: js/messages.php:748 +#: js/messages.php:740 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2810,96 +2786,96 @@ msgid "Next" msgstr "Следен" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Вкупно" -#: js/messages.php:755 +#: js/messages.php:747 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Бинарен" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:749 #, fuzzy #| msgid "Mar" msgid "March" msgstr "мар" -#: js/messages.php:758 +#: js/messages.php:750 #, fuzzy #| msgid "Apr" msgid "April" msgstr "апр" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "мај" -#: js/messages.php:760 +#: js/messages.php:752 #, fuzzy #| msgid "Jun" msgid "June" msgstr "јун" -#: js/messages.php:761 +#: js/messages.php:753 #, fuzzy #| msgid "Jul" msgid "July" msgstr "јул" -#: js/messages.php:762 +#: js/messages.php:754 #, fuzzy #| msgid "Aug" msgid "August" msgstr "авг" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:756 #, fuzzy #| msgid "Oct" msgid "October" msgstr "окт" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "јан" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "феб" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "мар" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2907,78 +2883,78 @@ msgid "May" msgstr "мај" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "јун" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "јул" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "сеп" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "нов" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "дек" -#: js/messages.php:801 +#: js/messages.php:793 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Нед" -#: js/messages.php:802 +#: js/messages.php:794 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пон" -#: js/messages.php:803 +#: js/messages.php:795 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Вто" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:798 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пет" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2986,157 +2962,157 @@ msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Вто" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Сре" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Чет" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Пет" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Саб" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Нед" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пон" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Вто" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Сре" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Чет" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пет" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Саб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "нема" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:864 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "се користи" -#: js/messages.php:873 +#: js/messages.php:865 #, fuzzy #| msgid "per second" msgid "Second" msgstr "во секунда" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Користи текст поле" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Please select a database" msgid "Please enter a valid date" msgstr "Изберете база на податоци" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "" @@ -3144,43 +3120,43 @@ msgstr "" msgid "Please enter the same value again" msgstr "" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:901 +#: js/messages.php:928 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please enter a valid date or time" msgstr "Изберете страница која менувате" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Грешка" @@ -3267,11 +3243,12 @@ msgstr "во упитот" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3319,7 +3296,7 @@ msgstr "" msgid "Explain" msgstr "Објасни SQL" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "" @@ -3360,8 +3337,8 @@ msgid "History" msgstr "SQL историја" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3542,7 +3519,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Премини на копираната табела" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -3550,26 +3527,26 @@ msgid "" "configured)." msgstr "(или приклучокот со локалниот MySQL сервер не е исправно подесен)" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Серверот не одговара" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3579,8 +3556,8 @@ msgstr "" msgid "Ascending" msgstr "Растечки редослед" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3753,8 +3730,8 @@ msgstr[0] "%s погодоци во табелата %s" msgstr[1] "%s погодоци во табелата %s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3805,29 +3782,29 @@ msgstr "ништо" msgid "Inside column:" msgstr "во табела(и):" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 #, fuzzy msgid "Save edited data" msgstr "Основен директориум на податоците" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "Додади/избриши колона" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 #, fuzzy msgid "Filter rows" msgstr "Полиња" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Search in database" msgid "Search this table" msgstr "Пребарување низ базата на податоци" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 #, fuzzy #| msgid "Begin" @@ -3835,7 +3812,7 @@ msgctxt "First page" msgid "Begin" msgstr "Почеток" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 #, fuzzy @@ -3844,7 +3821,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Претходна" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 #, fuzzy @@ -3853,7 +3830,7 @@ msgctxt "Next page" msgid "Next" msgstr "Следен" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 #, fuzzy #| msgid "End" @@ -3861,78 +3838,78 @@ msgctxt "Last page" msgid "End" msgstr "Крај" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Се" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of rows per page" msgid "Number of rows:" msgstr "Број на записи на страница" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Подредување по клуч" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Дел на текстот" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Полн текст" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 #, fuzzy msgid "Relational key" msgstr "Релациона шема" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Disable foreign key checks" msgid "Display column for relations" msgstr "Исклучи проверка на надворешни клучеви" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Транформации на веб прелистувачот" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Записот е избришан" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Прекини" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." @@ -3940,9 +3917,9 @@ msgstr "" "Бројот на записи може да биде приближен. За подетални информации види " "[doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -3950,50 +3927,51 @@ msgstr "" msgid "Your SQL query has been executed successfully." msgstr "Вашиот SQL упит успешно е извршен" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Приказ на записи од" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "вкупно" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "време на извршување на упитот %01.4f секунди" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Обележаното:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -4001,27 +3979,27 @@ msgstr "Обележаното:" msgid "Check all" msgstr "обележи ги сите" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Преглед за печатење" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Прикажи PDF шема" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 #, fuzzy #| msgid "Link not found" msgid "Link not found!" @@ -4125,19 +4103,19 @@ msgstr "Клучот не е дефиниран!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Клучеви" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -4146,24 +4124,24 @@ msgid "Action" msgstr "Акција" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Име на клуч" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Единствен" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Кардиналност" @@ -4171,8 +4149,8 @@ msgstr "Кардиналност" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -4182,8 +4160,8 @@ msgid "Collation" msgstr "Подредување" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -4200,15 +4178,15 @@ msgstr "Примарниот клуч е избришан." msgid "Index %s has been dropped." msgstr "Клучот %s е избиршан." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Бриши" @@ -4245,12 +4223,13 @@ msgstr "Поглед" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4258,7 +4237,7 @@ msgstr "Табела" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4267,8 +4246,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4276,41 +4255,41 @@ msgid "Search" msgstr "Пребарување" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Нов запис" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Привилегии" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Операции" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4321,16 +4300,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Упит по пример" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Рутини" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4338,22 +4317,22 @@ msgstr "Рутини" msgid "Events" msgstr "" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Додади/избриши колона" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "База на податоци" @@ -4364,12 +4343,12 @@ msgid "User accounts" msgstr "Корисник" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Бинарен дневник" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 #, fuzzy @@ -4377,21 +4356,21 @@ msgid "Replication" msgstr "Релации" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Променливи" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Кодни страници" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Складишта" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4720,7 +4699,7 @@ msgstr "Не можам да го променам клучот во PRIMARY (п msgid "No index parts defined!" msgstr "Делови од клучот не се дефинирани!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5147,38 +5126,38 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "директориум за праќање на веб серверот " -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Директориумот кој го избравте за праќање не е достапен." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Испразни" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Печати" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 #, fuzzy #| msgid "User" msgid "Users" @@ -5359,8 +5338,8 @@ msgid "Add new column" msgstr "Додади %s полиња" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5427,19 +5406,19 @@ msgid "You should upgrade to %s %s or later." msgstr "" "Би требало да го надоградите вашиот %s сервер на верзија %s или понова." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -6274,7 +6253,7 @@ msgid "Remember file name template" msgstr "Шаблон на име на податотека" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Додади AUTO_INCREMENT вредност" @@ -6317,7 +6296,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "" @@ -8007,7 +7986,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 #, fuzzy msgid "Retain query box" msgstr "SQL упит" @@ -8296,110 +8275,35 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Документација" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Табелата %s е испразнета." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "Прегледот %s е избришан" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "Табелата %s е избришана" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "непознат" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" - -#: libraries/controllers/TableStructureController.php:250 -#, fuzzy -#| msgid "No rows selected" -msgid "No column selected." -msgstr "Нема селектирани записи" - -#: libraries/controllers/TableStructureController.php:484 -#, fuzzy -#| msgid "The selected users have been deleted successfully." -msgid "The columns have been moved successfully." -msgstr "Изабраните корисници успешно се избришани." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, fuzzy, php-format -msgid "Table %1$s has been altered successfully." -msgstr "Изабраните корисници успешно се избришани." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -#, fuzzy -#| msgid "Query type" -msgid "Query error" -msgstr "Вид на упит" - -#: libraries/controllers/TableStructureController.php:967 -#, fuzzy, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "Изабраните корисници успешно се избришани." - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Промени" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Клуч" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Текст клуч" - -#: libraries/controllers/TableStructureController.php:1201 -#, fuzzy -msgid "Distinct values" -msgstr "Прегледни ги надворешните вредности" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8415,6 +8319,14 @@ msgstr "" msgid "No data to display" msgstr "Базата на податоци не постои" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, fuzzy, php-format +msgid "Table %1$s has been altered successfully." +msgstr "Изабраните корисници успешно се избришани." + #: libraries/controllers/table/TableRelationController.php:212 #, fuzzy #| msgid "Thread %s was successfully killed." @@ -8426,24 +8338,91 @@ msgstr "Процесот %s е успешно прекинат." msgid "Internal relations were successfully updated." msgstr "Внатрешни релации" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Search" msgid "Table search" msgstr "Пребарување" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Search" msgid "Zoom search" msgstr "Пребарување" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy msgid "Find and replace" msgstr "SQL упит" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" + +#: libraries/controllers/table/TableStructureController.php:251 +#, fuzzy +#| msgid "No rows selected" +msgid "No column selected." +msgstr "Нема селектирани записи" + +#: libraries/controllers/table/TableStructureController.php:485 +#, fuzzy +#| msgid "The selected users have been deleted successfully." +msgid "The columns have been moved successfully." +msgstr "Изабраните корисници успешно се избришани." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +#, fuzzy +#| msgid "Query type" +msgid "Query error" +msgstr "Вид на упит" + +#: libraries/controllers/table/TableStructureController.php:975 +#, fuzzy, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "Изабраните корисници успешно се избришани." + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Промени" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Клуч" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Текст клуч" + +#: libraries/controllers/table/TableStructureController.php:1209 +#, fuzzy +msgid "Distinct values" +msgstr "Прегледни ги надворешните вредности" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8453,7 +8432,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Нема измени" @@ -8526,7 +8505,7 @@ msgstr "Креирај" msgid "Create database:" msgstr "Креирај нова база на податоци" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Нема привилегии" @@ -9281,70 +9260,70 @@ msgid "Dump has been saved to file %s." msgstr "Содржината на базата на податоци е сочувана во податотеката %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL врати празен резултат (нула записи)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Базата на податоци не постои" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Базата на податоци не постои" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Само структура" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" @@ -9368,7 +9347,7 @@ msgstr "Функција" msgid "Binary" msgstr "Бинарен" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." @@ -9376,66 +9355,66 @@ msgstr "" "Поради големина на полето
можеби нема да може да ја менувате неговата " "содржина" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Бинарен - не менувај" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "или" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "директориум за праќање на веб серверот" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Нов запис" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Внеси како нов запис" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Назад на претходната страница" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Додади уште еден нов запис" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Врати се на оваа страница" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Ажурирање на следниот запис" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9445,7 +9424,7 @@ msgstr "" "Користете го TAB тастерот за движење од поле во поле, или CTRL+стрелка за " "слободно движење" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9457,11 +9436,11 @@ msgstr "" msgid "Value" msgstr "Вредност" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9479,45 +9458,45 @@ msgstr "нема" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table prefix:" msgstr "Замени го префиксот на табелата" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Copy table with prefix" msgid "Copy table with prefix:" msgstr "Копирај табела со префикс" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Пет" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Add new field" msgid "Add table prefix:" msgstr "Додади ново поле" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 #, fuzzy #| msgid "Add new field" msgid "Add prefix" msgstr "Додади ново поле" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -9746,8 +9725,8 @@ msgstr "Листа на процеси" msgid "Views:" msgstr "Поглед" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Прикажи" @@ -9787,10 +9766,9 @@ msgstr[0] "" msgstr[1] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "Alter table order by" -msgid "Filter databases by name or regex" -msgstr "Промени го редоследот во табелата" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -9799,12 +9777,6 @@ msgstr "Промени го редоследот во табелата" msgid "Clear fast filter" msgstr "Сочувај како податотека" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "Alter table order by" -msgid "Filter by name or regex" -msgstr "Промени го редоследот во табелата" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -10208,7 +10180,7 @@ msgstr "Преименувај ја базата на податоци во" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10219,7 +10191,7 @@ msgstr "Немате право на пристап овде!" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -10240,18 +10212,18 @@ msgstr "Избриши ја базата на податоци" msgid "Drop the database (DROP)" msgstr "Базата на податоци не постои" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Само структура" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Структура и податоци" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Само податоци" @@ -10265,7 +10237,7 @@ msgstr "Копирај ја базата на податоци во" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE пред копирање" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Додади ограничувања" @@ -10305,63 +10277,63 @@ msgstr "Вид на складиште" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Копирај ја табелата во (база.табела)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Премини на копираната табела" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Можете да извршите" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Анализа на табелата" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Проверка на табелата" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Проверка на табелата" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Дефрагментирај ја табелата" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "Табелата %s е освежена." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Освежување на табелата (\"FLUSH\")" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Оптимизација на табелата" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Поправка на табелата" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 #, fuzzy @@ -10369,106 +10341,106 @@ msgstr "Поправка на табелата" msgid "Delete data or table" msgstr "Приказ на податоци од табелата" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 #, fuzzy msgid "Delete the table (DROP)" msgstr "Базата на податоци не постои" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 #, fuzzy msgid "Check" msgstr "Чешки" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 #, fuzzy msgid "Repair" msgstr "Поправка на табелата" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy msgid "Coalesce" msgstr "Нема табела" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 #, fuzzy msgid "Partition maintenance" msgstr "Можете да извршите:" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Провери го референцијалниот интегритет:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Не може да ја преместам табелата во самата себе!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Не можам да ја копирам табелата во самата себе!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Табелата %s е преместена во %s." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Табелата %s е копирана во %s." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "Табелата %s е преместена во %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "Табелата %s е копирана во %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Името на табелата е празно!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10658,7 +10630,7 @@ msgstr "Опции за извоз на бази на податоци" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Приказ на податоци од табелата" @@ -10685,14 +10657,14 @@ msgstr "Опис" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Структура на табелата" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 #, fuzzy msgid "Structure for view" @@ -10700,7 +10672,7 @@ msgstr "Само структура" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10818,7 +10790,7 @@ msgid "Database:" msgstr "База на податоци" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10933,7 +10905,7 @@ msgid "Data creation options" msgstr "Опции на трансформацијата" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -11002,8 +10974,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11011,97 +10983,97 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Export type" msgid "Metadata" msgstr "Тип на извоз" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 #, fuzzy #| msgid "Creation" msgid "Creation:" msgstr "Направено" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 #, fuzzy #| msgid "Last update" msgid "Last update:" msgstr "Последна измена" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 #, fuzzy #| msgid "Last check" msgid "Last check:" msgstr "Последна проверка" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "се користи" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Ограничувања за извезените табели" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Ограничувања за табелите" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Ограничувања за извезените табели" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "во табела(и):" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Додади AUTO_INCREMENT вредност" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Додади AUTO_INCREMENT вредност" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "MIME ТИПОВИ ЗА ТАБЕЛА" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "РЕЛАЦИИ НА ТАБЕЛИТЕ" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Само структура" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11356,9 +11328,9 @@ msgstr "Релациона шема" msgid "Table of contents" msgstr "Содржина" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Дополнително" @@ -11595,60 +11567,60 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been added." msgstr "Измените се сочувани" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Податотеката не е можно да се прочита" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy msgid "Internal relation has been added." msgstr "Внатрешни релации" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be added!" msgstr "Податотеката не е можно да се прочита" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been removed." msgstr "Измените се сочувани" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Податотеката не е можно да се прочита" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be removed!" msgstr "Податотеката не е можно да се прочита" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy msgid "Internal relation has been removed." msgstr "Внатрешни релации" @@ -11705,109 +11677,109 @@ msgstr "" "Ве молиме погледнете во документацијата за тоа како се ажурира табелата " "Column_comments." -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Запамтен SQL упит" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL историја" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "The server is not responding" msgid "Persistent favorite tables" msgstr "Серверот не одговара" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Modifications have been saved" msgid "Configurable menus" msgstr "Измените се сочувани" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Rename table to" msgid "Remembering Designer Settings" msgstr "Промени го името на табелата во " -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy msgid "Saving export templates" msgstr "Тип на извоз" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "нема опис" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11989,8 +11961,8 @@ msgstr "Назив на корисник" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Назив на корисник" @@ -11998,7 +11970,7 @@ msgstr "Назив на корисник" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Лозинка" @@ -12691,7 +12663,7 @@ msgstr[1] "%s базата на податоци успешно е избриш msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 #, fuzzy msgid "Version" msgstr "Персиски" @@ -12700,102 +12672,98 @@ msgstr "Персиски" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Оневозможено" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Нема привилегии." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Ги вклучува сите привилегии освен GRANT." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Дозволува читање на податоци." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Дозволува вметнување и замена на података." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Дозволува измена на податоци." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Дозволува бришење на податоци." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Дозволува креирање на нови бази на податоци и табели." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Дозволува бришење на бази на податоци и табели." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Дозволува повтоно вчитување на подесувањата на серверот и празнење на кешот " "на серверот." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Дозволува гасење на серверот." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "Дозволува увоз на податоци и нивен извоз во податотеки." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "Нема ефект во оваа верзији на MySQL." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Дозволува креирање и бришење на клучева." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Дозволува промена на структурата на постоечките табели." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Дава пристап на комплетната листа на базите на податоци." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12806,68 +12774,68 @@ msgstr "" "променливи или прекин на процеси наостанатите корисници." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Дозволува креирање на привремени табели." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Дозволува заклучување на табели на тековните процеси." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Потребно заради помошните сервери за репликација." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "Дава права на кориснику да праша каде се главните/помошни сервери." #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Дозволува креирање на нови погледи." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 #, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Allows to set up events for the event scheduler." msgstr "Дозволува заклучување на табели на тековните процеси." #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 #, fuzzy msgid "Allows creating and dropping triggers." msgstr "Дозволува креирање и бришење на клучева." #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Дозволува извршување на SHOW CREATE VIEW упити." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Дозволува креирање на stored рутини." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Дозволува промена и бришење на stored рутини." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "Дозволува креирање, бришење и преименување на корсиничките имиња." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Дозволува извршување на stored рутини." @@ -12881,8 +12849,8 @@ msgstr "нема" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12928,14 +12896,14 @@ msgstr "" "ограничувањата." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Го ограничува бројот на упити кои корисникот може да ги постави на серверот " "за еден час." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12944,14 +12912,14 @@ msgstr "" "податоци кои корисникот може да ги изврши за еден час." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Го ограничува бројот на нови конекции кои корисникот може да ги отвори за " "еден час." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "" @@ -12959,9 +12927,9 @@ msgstr "" "еден час." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12969,7 +12937,7 @@ msgid "Routine" msgstr "Рутини" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12990,14 +12958,14 @@ msgstr "Дозволува извршување на stored рутини." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Привилегии поврзани со табелата" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -13010,7 +12978,7 @@ msgid "Administration" msgstr "Администрација" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Глобални привилегии" @@ -13021,15 +12989,15 @@ msgid "Global" msgstr "глобално" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Привилегии во врска со базата на податоци" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Дозволува креирање на нови табела." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Дозволува бришење на табели." @@ -13052,7 +13020,7 @@ msgid "Native MySQL Authentication" msgstr "Документација" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Податоци за најавувањето" @@ -13077,8 +13045,8 @@ msgstr "Назив на корисник" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Log name" msgid "Host name" @@ -13100,125 +13068,125 @@ msgstr "Документација" msgid "Password Hashing Method" msgstr "Хеширање на лозинката" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "Лозинката за %s успешно е променета." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Ги забранивте привилегиите за %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Било кој корисник" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database export options" msgid "Database for user account" msgstr "Опции за извоз на бази на податоци" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, fuzzy, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Провери привилегии за базата на податоци \"%s\"." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Корисници кои имаат пристап \"%s\"" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Прегледот %s е избришан" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Овозможи" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Корисникот не е пронајден." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Било кој" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "глобално" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "Специфично за базата на податоци" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "џокер" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Специфично за базата на податоци" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Промена на привилегии" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Забрани" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "Ажурирање на следниот запис" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… сочувај го стариот." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… избриши ги старите од табелата на корисници." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… прво одземи ги сите привилегии на корисниците а потоа избриши ги." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -13226,122 +13194,122 @@ msgstr "" "… избриши го стариот корисник од табелата на корисници а потоа повторно " "вчитај ги привилегиите." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Промени ги информациите за најавувањето / Копирај го корисникот" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Направи нов корисник со исти привилегии и …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Привилегии врзани за колоните" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Избриши ги селектираните корисници" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Одземи ги сите привилегии на активните корисници а потоа избриши ги." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" "Избриши ги базите на податоци кои се именувани исто како и корисниците." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Повторно ги вчитувам привилегиите" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Изабраните корисници успешно се избришани." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Ги ажуриравте привилегиите за %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "Бришам %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Привилегиите се успешно вчитани." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "Корисник %s веќе постои!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Привилегии" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Корисник" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Промена на привилегии" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "User" msgid "User account" msgstr "Корисник" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Преглед на корисници" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13355,7 +13323,7 @@ msgstr "" "измени. Во тој случај %sповторно вчитајте ги привилегиите%s пред да " "продолжите со работа." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13375,11 +13343,11 @@ msgstr "" "измени. Во тој случај %sповторно вчитајте ги привилегиите%s пред да " "продолжите со работа." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "Изабраниот корисник не е пронајден во табелата на привилегии." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Додадовте нов корисник." @@ -13622,33 +13590,33 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 #, fuzzy msgid "Refresh rate" msgstr "Освежи" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Додади/избриши колона" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -13715,7 +13683,7 @@ msgid "Statements" msgstr "Име" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -13746,36 +13714,36 @@ msgstr "Прикажи табели" msgid "Related links:" msgstr "Релации" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Го ограничува бројот на нови конекции кои корисникот може да ги отвори за " "еден час." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13783,78 +13751,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13862,7 +13830,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13870,42 +13838,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13913,33 +13881,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13948,243 +13916,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Кодна страна на податотеката:" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14192,99 +14160,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14292,18 +14260,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14311,12 +14279,12 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "Вид на упит" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -14325,77 +14293,77 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 #, fuzzy #| msgid "User" msgid "User groups" msgstr "Корисник" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "Верзија на серверот" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Databases" msgid "Database level tabs" msgstr "База на податоци" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table comments" msgid "Table level tabs" msgstr "Коментар на табелата" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy #| msgid "View" msgid "View users" msgstr "Поглед" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Any user" msgid "Add user group" msgstr "Било кој корисник" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Нема привилегии." -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "Имиња на колони" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Верзија на серверот" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Databases" msgid "Database-level tabs" msgstr "База на податоци" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14459,21 +14427,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14536,134 +14500,134 @@ msgstr "Табелата %s е избришана" msgid "Variable name was expected." msgstr "Шаблон на име на податотека" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "на почетокот од табелата" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Записот е избришан" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "Податотеки со податоци" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy msgid "State" msgstr "Статус" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Вкупно" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Време" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Време" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Запамти SQL упит" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Label" msgid "Label:" msgstr "Назив" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "дади дозвола на секој корисник да пристапува на овој упит" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем при индексирање на табелата `%s`" @@ -14694,29 +14658,29 @@ msgstr "" msgid "Bind parameters" msgstr "Додади ново поле" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 #, fuzzy #| msgid "Bookmark this SQL query" msgid "Bookmark this SQL query:" msgstr "Запамти SQL упит" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Прикажи го повторно овој упит" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Види само" @@ -14762,106 +14726,106 @@ msgstr "Избришете го податоците за тракирање о msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Креирано" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Ажурирано" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy msgid "Delete version" msgstr "Верзија на серверот" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 #, fuzzy msgid "Structure snapshot" msgstr "Само структура" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Дозволува вметнување и замена на података." -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Базата на податоци не постои" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 #, fuzzy msgid "Date" msgstr "Податоци" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 #, fuzzy msgid "Username" msgstr "Корисничко име:" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -14869,78 +14833,78 @@ msgctxt "None for default" msgid "None" msgstr "нема" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Верзија на серверот" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 #, fuzzy msgid "Track table" msgstr "Проверка на табелата" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Последна Верзија" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking" msgstr "Дозволува вметнување и замена на података." -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 #, fuzzy msgid "Versions" msgstr "Персиски" @@ -14951,13 +14915,13 @@ msgstr "Персиски" msgid "Manage your settings" msgstr "Општи особини на релациите" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." msgstr "Измените се сочувани" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -15058,7 +15022,7 @@ msgstr "Базата на податоци не постои" msgid "View dump (schema) of databases" msgstr "Прикажи содржина (шема) на базите" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -15084,7 +15048,7 @@ msgid "" msgstr "" "phpMyAdmin не можеше да го прекине процесот %s. Веројатно веќе е затворен." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -16031,52 +15995,58 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Import files" +msgid "Chart title:" +msgstr "Увоз на податотека" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 #, fuzzy msgid "Series:" msgstr "SQL упит" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Вредност" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Вредност" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside table(s):" msgid "Series column:" msgstr "во табела(и):" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Number of rows per page" msgid "Value Column:" msgstr "Број на записи на страница" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -16140,54 +16110,55 @@ msgstr "Коментари" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 -msgid "Internal relations" -msgstr "Внатрешни релации" - -#: templates/table/relation/common_form.phtml:11 -#, fuzzy -#| msgid "Internal relations" -msgid "Internal relation" -msgstr "Внатрешни релации" - -#: templates/table/relation/common_form.phtml:14 -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "" - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key constraints" msgstr "Исклучи проверка на надворешни клучеви" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 msgid "Actions" msgstr "Акција" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 #, fuzzy #| msgid "Constraints for table" msgid "Constraint properties" msgstr "Ограничувања за табелите" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Додади ограничувања" -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +msgid "Internal relations" +msgstr "Внатрешни релации" + +#: templates/table/relation/common_form.phtml:80 +#, fuzzy +#| msgid "Internal relations" +msgid "Internal relation" +msgstr "Внатрешни релации" + +#: templates/table/relation/common_form.phtml:83 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "" + +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -16345,7 +16316,7 @@ msgid "at beginning of table" msgstr "на почетокот од табелата" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16390,7 +16361,7 @@ msgstr "Позиција" msgid "Edit partitioning" msgstr "Додади ново поле" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -17671,6 +17642,38 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "Табели" + +#, fuzzy +#~| msgid "View" +#~ msgid "views" +#~ msgstr "Поглед" + +#, fuzzy +#~ msgid "procedures" +#~ msgstr "Листа на процеси" + +#, fuzzy +#~ msgid "events" +#~ msgstr "Пратено" + +#, fuzzy +#~ msgid "functions" +#~ msgstr "Функција" + +#, fuzzy +#~| msgid "Alter table order by" +#~ msgid "Filter databases by name or regex" +#~ msgstr "Промени го редоследот во табелата" + +#, fuzzy +#~| msgid "Alter table order by" +#~ msgid "Filter by name or regex" +#~ msgstr "Промени го редоследот во табелата" + #, fuzzy #~| msgid "Change" #~ msgid "Taking you to %s." diff --git a/po/ml.po b/po/ml.po index a949bbd333..318473ae9c 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:05+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Malayalam Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Column" msgid "Continue" msgstr "നിര" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Column" msgid "Column maximum:" msgstr "നിര" -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Column" msgid "Column minimum:" msgstr "നിര" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 msgid "Page name" msgstr "" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:550 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:551 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:552 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "എല്ലാം കാണിക്കൂ" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "എല്ലാം തിരഞ്ഞെടുക്കുക" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "എല്ലാം കാണിക്കൂ" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Show all" msgid "Show hidden navigation tree items." msgstr "എല്ലാം കാണിക്കൂ" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -#, fuzzy -#| msgid "Table" -msgid "tables" -msgstr "പട്ടിക" - -#: js/messages.php:633 -msgid "views" -msgstr "" - -#: js/messages.php:634 -msgid "procedures" -msgstr "" - -#: js/messages.php:635 -msgid "events" -msgstr "" - -#: js/messages.php:636 -msgid "functions" -msgstr "" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2384,402 +2363,402 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr "" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Show all" msgid "Show report details" msgstr "എല്ലാം കാണിക്കൂ" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "പട്ടിക അഭിപ്രയങ്ങൾ" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Select All" msgid "Please enter a valid date" msgstr "എല്ലാം തിരഞ്ഞെടുക്കുക" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "" @@ -2787,41 +2766,41 @@ msgstr "" msgid "Please enter the same value again" msgstr "" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "" @@ -2906,11 +2885,12 @@ msgstr "" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -2952,7 +2932,7 @@ msgstr "" msgid "Explain" msgstr "" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "" @@ -2986,8 +2966,8 @@ msgid "History" msgstr "" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3152,30 +3132,30 @@ msgstr "" msgid "Switch to dark theme" msgstr "" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3185,8 +3165,8 @@ msgstr "" msgid "Ascending" msgstr "ആരോഹണം" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3345,8 +3325,8 @@ msgstr[0] "" msgstr[1] "" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3390,121 +3370,121 @@ msgstr "ഒന്നും തിരഞ്ഞെടുക്കാതിരി msgid "Inside column:" msgstr "" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 #, fuzzy #| msgid "Sort" msgid "Filter rows" msgstr "തരംതിരിക്കുക" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Use this value" msgid "Search this table" msgstr "ഈ വില ഉപയോഗിക്കൂ" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Add/Delete columns" msgid "Display column for relations" msgstr "നിരകൾ ചേർക്കുക/മായക്കുക" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "Database %1$s has been created." msgid "The row has been deleted." msgstr "വിവരശേഖരം(ങ്ങൾ) %1$s സൃഷ്ടിച്ചിരിക്കുന്നു." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -3512,49 +3492,50 @@ msgstr "" msgid "Your SQL query has been executed successfully." msgstr "%s എന്ന വിവരശേഖരം ഉപേക്ഷിച്ചിരിക്കുന്നു." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, fuzzy, php-format #| msgid "%s table" #| msgid_plural "%s tables" msgid "%d total" msgstr "%s പട്ടിക" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3562,25 +3543,25 @@ msgstr "" msgid "Check all" msgstr "പട്ടികകൾ ഉപയോഗിക്കുക" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 #, fuzzy #| msgid "Links to" msgid "Link not found!" @@ -3674,19 +3655,19 @@ msgstr "" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3695,24 +3676,24 @@ msgid "Action" msgstr "" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "കീനാമം" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "" @@ -3720,8 +3701,8 @@ msgstr "" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3731,8 +3712,8 @@ msgid "Collation" msgstr "നിബന്ധന" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3748,15 +3729,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "" @@ -3793,12 +3774,13 @@ msgstr "" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3806,7 +3788,7 @@ msgstr "പട്ടിക" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3815,8 +3797,8 @@ msgid "SQL" msgstr "" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3824,41 +3806,41 @@ msgid "Search" msgstr "തിരയൂ" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3869,16 +3851,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3886,22 +3868,22 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "Add/Delete columns" msgid "Central columns" msgstr "നിരകൾ ചേർക്കുക/മായക്കുക" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "" @@ -3910,33 +3892,33 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4236,7 +4218,7 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4647,37 +4629,37 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "അച്ചടിക്കുക" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "" @@ -4844,8 +4826,8 @@ msgid "Add new column" msgstr "നിരകൾ ചേർക്കുക/മായക്കുക" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -4904,19 +4886,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -5698,7 +5680,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -5737,7 +5719,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "%s ചേർക്കുക" @@ -7321,7 +7303,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "" @@ -7593,107 +7575,35 @@ msgstr "" msgid "OpenDocument Text" msgstr "" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "View %s has been dropped." msgstr "%s എന്ന വിവരശേഖരം ഉപേക്ഷിച്ചിരിക്കുന്നു." -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "Table %s has been dropped." msgstr "%s എന്ന വിവരശേഖരം ഉപേക്ഷിച്ചിരിക്കുന്നു." -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "" - -#: libraries/controllers/TableStructureController.php:484 -#, fuzzy -#| msgid "Database %s has been dropped." -msgid "The columns have been moved successfully." -msgstr "%s എന്ന വിവരശേഖരം ഉപേക്ഷിച്ചിരിക്കുന്നു." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "" - -#: libraries/controllers/TableStructureController.php:967 -#, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "" - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1201 -#, fuzzy -#| msgid "Use this value" -msgid "Distinct values" -msgstr "ഈ വില ഉപയോഗിക്കൂ" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -7707,6 +7617,14 @@ msgstr "" msgid "No data to display" msgstr "" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "" + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "" @@ -7717,21 +7635,85 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr "വിവരശേഖരം(ങ്ങൾ) %1$s സൃഷ്ടിച്ചിരിക്കുന്നു." -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Database comment" msgid "Table search" msgstr "വിവരശേഖര അഭിപ്രായം: " -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:485 +#, fuzzy +#| msgid "Database %s has been dropped." +msgid "The columns have been moved successfully." +msgstr "%s എന്ന വിവരശേഖരം ഉപേക്ഷിച്ചിരിക്കുന്നു." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:975 +#, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1209 +#, fuzzy +#| msgid "Use this value" +msgid "Distinct values" +msgstr "ഈ വില ഉപയോഗിക്കൂ" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -7741,7 +7723,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7808,7 +7790,7 @@ msgstr "" msgid "Create database:" msgstr "വിവരശേഖരം നീക്കുക" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "" @@ -8488,70 +8470,70 @@ msgid "Dump has been saved to file %s." msgstr "" #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, fuzzy, php-format #| msgid "Copy database to" msgid "Go to database: %s" msgstr "വിവരശേഖരം പകർത്തുക" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "" @@ -8574,71 +8556,71 @@ msgstr "" msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "അല്ലെനങ്കിൽ" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -8650,11 +8632,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -8670,37 +8652,37 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Copy database to" msgid "Copy table with prefix:" msgstr "വിവരശേഖരം പകർത്തുക" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "" @@ -8918,8 +8900,8 @@ msgstr "" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "പ്രദർശിപ്പിക്കുക" @@ -8961,22 +8943,15 @@ msgstr[0] "" msgstr[1] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "The database name is empty!" -msgid "Filter databases by name or regex" -msgstr "വിവരശേഖരത്തിനു പേര് നൽകിയിട്ടില്ല!" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "The database name is empty!" -msgid "Filter by name or regex" -msgstr "വിവരശേഖരത്തിനു പേര് നൽകിയിട്ടില്ല!" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -9369,7 +9344,7 @@ msgstr "വിവരശേഖരത്തിന്റ്റ പേര് മാ #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9378,7 +9353,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "" @@ -9396,18 +9371,18 @@ msgstr "വിവരശേഖരം നീക്കുക" msgid "Drop the database (DROP)" msgstr "വിവരശേഖരം ഉപേക്ഷിക്കുക (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "ഘടന മാത്രം" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "ഘടനയും വിവരവും" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "വിവരം മാത്രം" @@ -9421,7 +9396,7 @@ msgstr "വിവരശേഖരം പകർത്തുക" msgid "CREATE DATABASE before copying" msgstr "" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "" @@ -9461,159 +9436,159 @@ msgstr "" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Use Tables" msgid "Checksum table" msgstr "പട്ടികകൾ ഉപയോഗിക്കുക" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "" @@ -9778,7 +9753,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -9802,21 +9777,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -9910,7 +9885,7 @@ msgid "Database:" msgstr "വിവരശേഖര അഭിപ്രായം: " #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "" @@ -10007,7 +9982,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -10076,8 +10051,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10085,87 +10060,87 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 msgid "Metadata" msgstr "" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 #, fuzzy #| msgid "Creation" msgid "Creation:" msgstr "സൃഷ്‌ടി" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 #, fuzzy #| msgid "Last update" msgid "Last update:" msgstr "അവസാനം നവീകരിച്ചത്" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 #, fuzzy #| msgid "Last check" msgid "Last check:" msgstr "അന്തിമ പരിശോധന" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "ഉപയോഗത്തിൽ" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "" @@ -10407,9 +10382,9 @@ msgstr "" msgid "Table of contents" msgstr "" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "" @@ -10573,55 +10548,55 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "Database %1$s has been created." msgid "Internal relation has been added." msgstr "വിവരശേഖരം(ങ്ങൾ) %1$s സൃഷ്ടിച്ചിരിക്കുന്നു." -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "Database %1$s has been created." msgid "Error: Internal relation could not be added!" msgstr "വിവരശേഖരം(ങ്ങൾ) %1$s സൃഷ്ടിച്ചിരിക്കുന്നു." -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "Database %1$s has been created." msgid "FOREIGN KEY relation has been removed." msgstr "വിവരശേഖരം(ങ്ങൾ) %1$s സൃഷ്ടിച്ചിരിക്കുന്നു." -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "Database %1$s has been created." msgid "Error: Internal relation could not be removed!" msgstr "വിവരശേഖരം(ങ്ങൾ) %1$s സൃഷ്ടിച്ചിരിക്കുന്നു." -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Database %1$s has been created." msgid "Internal relation has been removed." @@ -10668,104 +10643,104 @@ msgstr "" msgid "Please see the documentation on how to update your column_info table. " msgstr "" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "Show all" msgid "Persistent favorite tables" msgstr "എല്ലാം കാണിക്കൂ" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 msgid "Saving export templates" msgstr "" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -10937,8 +10912,8 @@ msgstr "" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "" @@ -10946,7 +10921,7 @@ msgstr "" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "" @@ -11561,7 +11536,7 @@ msgstr[1] "%s എന്ന വിവരശേഖരം ഉപേക്ഷിച msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "" @@ -11569,98 +11544,94 @@ msgstr "" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "" #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "" #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "" #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -11668,65 +11639,65 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "" #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "" #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -11738,8 +11709,8 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -11779,37 +11750,37 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -11824,14 +11795,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11841,7 +11812,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "" @@ -11850,15 +11821,15 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "" @@ -11875,7 +11846,7 @@ msgid "Native MySQL Authentication" msgstr "" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "" @@ -11898,8 +11869,8 @@ msgstr "" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 msgid "Host name" msgstr "" @@ -11915,222 +11886,222 @@ msgstr "" msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add/Delete columns" msgid "Add user account" msgstr "നിരകൾ ചേർക്കുക/മായക്കുക" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database comment" msgid "Database for user account" msgstr "വിവരശേഖര അഭിപ്രായം: " -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove database" msgid "Remove selected user accounts" msgstr "വിവരശേഖരം നീക്കുക" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12139,7 +12110,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12148,11 +12119,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "" @@ -12376,30 +12347,30 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -12453,7 +12424,7 @@ msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -12478,33 +12449,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12512,78 +12483,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12591,7 +12562,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12599,42 +12570,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12642,33 +12613,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12677,242 +12648,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12920,99 +12891,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13020,18 +12991,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13039,11 +13010,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -13052,69 +13023,69 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Table comments" msgid "Server level tabs" msgstr "പട്ടിക അഭിപ്രയങ്ങൾ" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Database comment" msgid "Database level tabs" msgstr "വിവരശേഖര അഭിപ്രായം: " -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table comments" msgid "Table level tabs" msgstr "പട്ടിക അഭിപ്രയങ്ങൾ" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy #| msgid "in use" msgid "View users" msgstr "ഉപയോഗത്തിൽ" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Table comments" msgid "Server-level tabs" msgstr "പട്ടിക അഭിപ്രയങ്ങൾ" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Database comment" msgid "Database-level tabs" msgstr "വിവരശേഖര അഭിപ്രായം: " -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -13178,21 +13149,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "Remove database" msgid "An alias was expected." @@ -13254,121 +13221,121 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "Database %1$s has been created." msgid "At least one column definition was expected." msgstr "വിവരശേഖരം(ങ്ങൾ) %1$s സൃഷ്ടിച്ചിരിക്കുന്നു." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -13396,27 +13363,27 @@ msgstr "" msgid "Bind parameters" msgstr "" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "" @@ -13460,174 +13427,174 @@ msgstr "" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Database comment" msgid "Delete version" msgstr "വിവരശേഖര അഭിപ്രായം: " -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "" @@ -13635,11 +13602,11 @@ msgstr "" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -13738,7 +13705,7 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -13763,7 +13730,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -14587,47 +14554,51 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +msgid "Chart title:" +msgstr "" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Add/Delete columns" msgid "Series column:" msgstr "നിരകൾ ചേർക്കുക/മായക്കുക" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Table comments" msgid "Value Column:" msgstr "പട്ടിക അഭിപ്രയങ്ങൾ" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "" @@ -14682,50 +14653,51 @@ msgstr "അഭിപ്രായങ്ങൾ" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 -#, fuzzy -#| msgid "Database %1$s has been created." -msgid "Internal relations" -msgstr "വിവരശേഖരം(ങ്ങൾ) %1$s സൃഷ്ടിച്ചിരിക്കുന്നു." - -#: templates/table/relation/common_form.phtml:11 -msgid "Internal relation" -msgstr "" - -#: templates/table/relation/common_form.phtml:14 -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "" - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 msgid "Foreign key constraints" msgstr "" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 msgid "Actions" msgstr "" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 msgid "Constraint properties" msgstr "" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 #, fuzzy #| msgid "Add/Delete columns" msgid "+ Add constraint" msgstr "നിരകൾ ചേർക്കുക/മായക്കുക" -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +#, fuzzy +#| msgid "Database %1$s has been created." +msgid "Internal relations" +msgstr "വിവരശേഖരം(ങ്ങൾ) %1$s സൃഷ്ടിച്ചിരിക്കുന്നു." + +#: templates/table/relation/common_form.phtml:80 +msgid "Internal relation" +msgstr "" + +#: templates/table/relation/common_form.phtml:83 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "" + +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "" @@ -14856,7 +14828,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 msgid "Partitions" msgstr "" @@ -14895,7 +14867,7 @@ msgstr "വിവരണം" msgid "Edit partitioning" msgstr "വിവരണം" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "" @@ -16064,6 +16036,21 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Table" +#~ msgid "tables" +#~ msgstr "പട്ടിക" + +#, fuzzy +#~| msgid "The database name is empty!" +#~ msgid "Filter databases by name or regex" +#~ msgstr "വിവരശേഖരത്തിനു പേര് നൽകിയിട്ടില്ല!" + +#, fuzzy +#~| msgid "The database name is empty!" +#~ msgid "Filter by name or regex" +#~ msgstr "വിവരശേഖരത്തിനു പേര് നൽകിയിട്ടില്ല!" + #~ msgid "Select All" #~ msgstr "എല്ലാം തിരഞ്ഞെടുക്കുക" diff --git a/po/mn.po b/po/mn.po index 0170077947..207e6f512b 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:25+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Mongolian Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Атрибутууд" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "%s-д үндсэн түлхүүр нэмэгдлээ" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Хөөлтын илтгэл" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 #, fuzzy @@ -2143,566 +2155,527 @@ msgstr "" msgid "End of step" msgstr "Хүснэгтийн төгсгөлд" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 #, fuzzy #| msgid "None" msgid "Done" msgstr "Байхгүй" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "ӨС сонгогдоогүй." -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Дараах хүснэгтэд онцгой эрх нэмэх" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "ӨС сонгогдоогүй." -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Хадгалах" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy #| msgid "in query" msgid "Hide search criteria" msgstr "асуултад" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy #| msgid "Showing SQL query" msgid "Show search criteria" msgstr "SQL асуудал харуулах" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Хайх" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Баганын нэрс" -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Баганын нэрс" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "in query" msgid "Hide find and replace criteria" msgstr "асуултад" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Showing SQL query" msgid "Show find and replace criteria" msgstr "SQL асуудал харуулах" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Багана нэмэх/устгах" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Өгөгдөл заагчийн хэмжээ" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Үл тоох" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Хуулах" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Цэг" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Шугам" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Олон өнцөгт" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Геометр" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Дотоод тойрог" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Outer Ring" msgid "Outer ring" msgstr "Гадаад тойрог" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Хамаарагдсан түлхүүр сонгох" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Гадаад түлхүүр сонгох" -#: js/messages.php:529 +#: js/messages.php:530 #, 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:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Хуудасны дугаар:" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 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:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 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:539 +#: js/messages.php:540 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "Бүгдийг сонгох" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Засах Хуудсаа сонго" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid page name" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 #, fuzzy #| msgid "Relational schema" msgid "Export relational schema" msgstr "Хамааралтай схем" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Өөрчлөлт хадгалагдав" -#: js/messages.php:550 +#: js/messages.php:551 #, fuzzy, php-format #| msgid "Value for the column \"%s\"" msgid "Add an option for column \"%s\"." msgstr "\"%s\" баганын утга" -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Илгээ" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Баганын нэрс" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Бүгдийг харах" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Жинхэнэ байрлал" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Болих" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Таслагдсан" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 #, fuzzy #| msgid "Import files" msgid "Import status" msgstr "Файл оруулах" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Хүснэгтүүд сонго" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 #, fuzzy #| msgid "No tables" msgid "Go to link:" msgstr "Хүснэгт алга" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Баганын нэрс" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Нууц үг бий болгох" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Бий болгох" -#: js/messages.php:620 +#: js/messages.php:621 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Да" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Бүгдийг харах" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "Шинэ талбар нэмэх" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Тор харуулах" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 #, fuzzy #| msgid "Use text field" msgid "Link with main panel" msgstr "Бичвэр талбар хэрэглэх" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 #, fuzzy #| msgid "Use text field" msgid "Unlink from main panel" msgstr "Бичвэр талбар хэрэглэх" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 #, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "Хүснэгт" - -#: js/messages.php:633 -#, fuzzy -#| msgid "View" -msgid "views" -msgstr "Харц" - -#: js/messages.php:634 -#, fuzzy -#| msgid "Procedures" -msgid "procedures" -msgstr "Процедурүүд" - -#: js/messages.php:635 -#, fuzzy -#| msgid "Event" -msgid "events" -msgstr "Үзэгдэл" - -#: js/messages.php:636 -#, fuzzy -#| msgid "Functions" -msgid "functions" -msgstr "Функцүүд" - -#: js/messages.php:640 -#, 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:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2710,138 +2683,138 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr "" -#: js/messages.php:649 +#: js/messages.php:641 #, fuzzy #| msgid "No databases" msgid "up to date" msgstr "ӨС байхгүй" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "Үүсгэх" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Ерөнхий хамаатай онцлог" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Нээлттэй хүснэгтүүдийг харуулах" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Үл тоох" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Уг асуултыг энд дахин харуулах" -#: js/messages.php:701 +#: js/messages.php:693 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Та үнэхээр " -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, fuzzy, php-format #| msgid "Execute bookmarked query" msgid "%s queries executed %s times in %s seconds." msgstr "Тэмдэглэгдсэн асуулт ажиллуулах" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Хүснэгтийн тайлбар" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy #| msgid "in query" msgid "Hide arguments" msgstr "асуултад" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Өмнөх" -#: js/messages.php:748 +#: js/messages.php:740 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2849,96 +2822,96 @@ msgid "Next" msgstr "Цааш" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Нийт" -#: js/messages.php:755 +#: js/messages.php:747 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Хоёртын " -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:749 #, fuzzy #| msgid "Mar" msgid "March" msgstr "3-р" -#: js/messages.php:758 +#: js/messages.php:750 #, fuzzy #| msgid "Apr" msgid "April" msgstr "4-р" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "5-р" -#: js/messages.php:760 +#: js/messages.php:752 #, fuzzy #| msgid "Jun" msgid "June" msgstr "6-р" -#: js/messages.php:761 +#: js/messages.php:753 #, fuzzy #| msgid "Jul" msgid "July" msgstr "7-р" -#: js/messages.php:762 +#: js/messages.php:754 #, fuzzy #| msgid "Aug" msgid "August" msgstr "8-р" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:756 #, fuzzy #| msgid "Oct" msgid "October" msgstr "10р" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "1-р" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "2-р" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "3-р" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "4-р" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2946,78 +2919,78 @@ msgid "May" msgstr "5-р" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "6-р" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "7-р" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "8-р" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "9-р" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "10р" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "11р" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "12р" -#: js/messages.php:801 +#: js/messages.php:793 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ня" -#: js/messages.php:802 +#: js/messages.php:794 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Да" -#: js/messages.php:803 +#: js/messages.php:795 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Мя" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:798 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Ба" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3025,167 +2998,167 @@ msgid "Sun" msgstr "Ня" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Да" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Мя" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Лх" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Пү" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Ба" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Бя" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ня" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Да" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Мя" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Лх" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Пү" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Ба" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Бя" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Байхгүй" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:864 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "хэрэглэгдэж байна" -#: js/messages.php:873 +#: js/messages.php:865 #, fuzzy #| msgid "per second" msgid "Second" msgstr "секундэд" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Бичвэр талбар хэрэглэх" -#: js/messages.php:886 +#: js/messages.php:878 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid email address" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:887 +#: js/messages.php:879 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid URL" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:889 +#: js/messages.php:883 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date ( ISO )" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:890 +#: js/messages.php:885 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:891 +#: js/messages.php:888 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid credit card number" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:892 +#: js/messages.php:890 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" @@ -3197,53 +3170,53 @@ msgstr "%d нь мөрийн буруу дугаар байна." msgid "Please enter the same value again" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter at least {0} characters" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value between {0} and {1}" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:898 +#: js/messages.php:917 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value less than or equal to {0}" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:899 +#: js/messages.php:922 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value greater than or equal to {0}" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:901 +#: js/messages.php:928 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date or time" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:902 +#: js/messages.php:933 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid HEX input" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Алдаа" @@ -3331,11 +3304,12 @@ msgstr "асуултад" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3383,7 +3357,7 @@ msgstr "" msgid "Explain" msgstr "SQL тайлбар" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "" @@ -3425,8 +3399,8 @@ msgid "History" msgstr "SQL түүх" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3611,7 +3585,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Хуулагдсан хүснэгт рүү шилжих" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 #, fuzzy #| msgid " the local MySQL server's socket is not correctly configured)" msgid "" @@ -3619,26 +3593,26 @@ msgid "" "configured)." msgstr "(эсвэл дотоод MySQL сервэрийн socket нь зөв тохируулагдаагүй)" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Сервэрээс хариу алга" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3648,8 +3622,8 @@ msgstr "" msgid "Ascending" msgstr "Өсөхөөр" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3822,8 +3796,8 @@ msgstr[0] "%s олдоц(ууд) хүснэгт %s-д" msgstr[1] "%s олдоц(ууд) хүснэгт %s-д" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3874,29 +3848,29 @@ msgstr "Бүх сонгосныг болих" msgid "Inside column:" msgstr "Хүснэгт(үүд) дотор:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "Багана нэмэх/устгах" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 #, fuzzy #| msgid "Files" msgid "Filter rows" msgstr "Файлууд" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Search in database" msgid "Search this table" msgstr "Өгөгдлийн санд хайх" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 #, fuzzy #| msgid "Begin" @@ -3904,7 +3878,7 @@ msgctxt "First page" msgid "Begin" msgstr "Эхлэл" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 #, fuzzy @@ -3913,7 +3887,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Өмнөх" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 #, fuzzy @@ -3922,7 +3896,7 @@ msgctxt "Next page" msgid "Next" msgstr "Цааш" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 #, fuzzy #| msgid "End" @@ -3930,83 +3904,83 @@ msgctxt "Last page" msgid "End" msgstr "Төгс" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Бүх" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of fields" msgid "Number of rows:" msgstr "Талбаруудын тоо" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Түлхүүрээр эрэмбэлэх" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Бичвэрийн зарим хэсэг" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Бүтэн бичвэр" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Disable foreign key checks" msgid "Display column for relations" msgstr "Гадаад түлхүүр шалгалтыг хаах" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Хөтчийн өөрчлөл" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Мөр устгагдсан" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Алах" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -4014,50 +3988,51 @@ msgstr "" msgid "Your SQL query has been executed successfully." msgstr "Таны SQL-асуулт амжилттай ажиллав" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Мөрүүдийг харуулж байна" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "Нийт" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "Асуулт нь %01.4f сек авлаа" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Сонгогдсонтой:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -4065,27 +4040,27 @@ msgstr "Сонгогдсонтой:" msgid "Check all" msgstr "Бүгдийг чагтлах" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Хэвлэхээр харах" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Асуудлын үр дүнгийн үйлдэл" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF-схем харуулах" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 #, fuzzy #| msgid "Link not found" msgid "Link not found!" @@ -4187,19 +4162,19 @@ msgstr "Индекс тодорхойлогдоогүй!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Индексүүд" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -4208,24 +4183,24 @@ msgid "Action" msgstr "Үйлдэл" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Түлхүүрийн нэр" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Үл давтагдах" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Ерөнхий" @@ -4233,8 +4208,8 @@ msgstr "Ерөнхий" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -4244,8 +4219,8 @@ msgid "Collation" msgstr "Жишилт" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -4261,15 +4236,15 @@ msgstr "Үндсэн түлхүүр устгагдлаа." msgid "Index %s has been dropped." msgstr "Индекс %s нь устгагдсан." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Устгах" @@ -4306,12 +4281,13 @@ msgstr "Харц" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4319,7 +4295,7 @@ msgstr "Хүснэгт" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4328,8 +4304,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4337,41 +4313,41 @@ msgid "Search" msgstr "Хайх" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Оруулах" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Онцгой эрхүүд" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Үйлдлүүд" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4382,16 +4358,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "Өгөгдлийн сан хоосон санагдаж байна!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Асуулт (Query)" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4399,22 +4375,22 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Дизайнч" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Багана нэмэх/устгах" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Өгөгдлийн сангууд" @@ -4425,33 +4401,33 @@ msgid "User accounts" msgstr "Хэрэглэгч" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Хоёртын log" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Олшруулалт" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Утгууд" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Кодлолууд" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Хөдөлгүүрүүд" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4783,7 +4759,7 @@ msgstr "Индексийг PRIMARY болгож чадсангүй!" msgid "No index parts defined!" msgstr "Тодорхойлогдсон индексийн хэсэггүй!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, fuzzy, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Гадаад түлхүүр үүсгэхэд алдаа гарлаа %1$s (өгөгдлийн төрлөө шалга)" @@ -5212,38 +5188,38 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "web-сервэр түлхэх хавтас" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Таны сонгосон хавтас \"upload\" хийгдэхгүй байна." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Хоосон" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Хэвлэх" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 #, fuzzy #| msgid "User" msgid "Users" @@ -5426,8 +5402,8 @@ msgid "Add new column" msgstr "%s талбар(ууд) нэмэх" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5496,19 +5472,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "Та хувилбар %s -г %s -ээр сайжруулах хэрэгтэй эсвэл дараа." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -6339,7 +6315,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT утга нэмэх" @@ -6382,7 +6358,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Нэмэх %s" @@ -8074,7 +8050,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 #, fuzzy #| msgid "in query" msgid "Retain query box" @@ -8364,112 +8340,35 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Баримт" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Хүснэгт %s нь хоослогдлоо." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "Харц %s нь устгагдсан" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "Хүснэгт %s нь устгагдлаа" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "үлмэдэх" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" - -#: libraries/controllers/TableStructureController.php:250 -#, fuzzy -#| msgid "No rows selected" -msgid "No column selected." -msgstr "Сонгогдсон мөргүй" - -#: libraries/controllers/TableStructureController.php:484 -#, fuzzy -#| msgid "The selected users have been deleted successfully." -msgid "The columns have been moved successfully." -msgstr "Сонгогдсон хэрэглэгч устгагдлаа." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -#, fuzzy -#| msgid "Query type" -msgid "Query error" -msgstr "Асуултын төрөл" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Солих" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Индекс" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Бүтэнбичвэр" - -#: libraries/controllers/TableStructureController.php:1201 -#, fuzzy -#| msgid "Browse distinct values" -msgid "Distinct values" -msgstr "Онцгой утгуудыг харах" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8485,6 +8384,14 @@ msgstr "" msgid "No data to display" msgstr "ӨС байхгүй" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "" + #: libraries/controllers/table/TableRelationController.php:212 #, fuzzy #| msgid "Thread %s was successfully killed." @@ -8497,25 +8404,94 @@ msgstr "Thread %s нь устгагдав." msgid "Internal relations were successfully updated." msgstr "Дотоод холбоо нэмэгдэв" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Search" msgid "Table search" msgstr "Хайх" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Search" msgid "Zoom search" msgstr "Хайх" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "in query" msgid "Find and replace" msgstr "асуултад" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" + +#: libraries/controllers/table/TableStructureController.php:251 +#, fuzzy +#| msgid "No rows selected" +msgid "No column selected." +msgstr "Сонгогдсон мөргүй" + +#: libraries/controllers/table/TableStructureController.php:485 +#, fuzzy +#| msgid "The selected users have been deleted successfully." +msgid "The columns have been moved successfully." +msgstr "Сонгогдсон хэрэглэгч устгагдлаа." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +#, fuzzy +#| msgid "Query type" +msgid "Query error" +msgstr "Асуултын төрөл" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Солих" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Индекс" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Бүтэнбичвэр" + +#: libraries/controllers/table/TableStructureController.php:1209 +#, fuzzy +#| msgid "Browse distinct values" +msgid "Distinct values" +msgstr "Онцгой утгуудыг харах" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8525,7 +8501,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Солигдохгүй" @@ -8600,7 +8576,7 @@ msgstr "Үүсгэх" msgid "Create database:" msgstr "Шинэ ӨС үүсгэх" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Онцгой эрхгүй" @@ -9369,72 +9345,72 @@ msgid "Dump has been saved to file %s." msgstr "Асгалт %s файлд хадгалагдсан." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL хоосон үр дүн буцаалаа (тэг мөрүүд г.м.)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, fuzzy, php-format #| msgid "No databases" msgid "Go to database: %s" msgstr "ӨС байхгүй" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, fuzzy, php-format #| msgid "No tables" msgid "Go to table: %s" msgstr "Хүснэгт алга" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Зөвхөн бүтэц" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" @@ -9458,72 +9434,72 @@ msgstr "Функц" msgid "Binary" msgstr "Хоёртын" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 #, fuzzy #| msgid "ause of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "Яагаад гэвэл урт нь их,
энэ талбар засагдахгүй " -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Хоёртын өгөгдөл - засагдахгүй" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Эсвэл" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "web-сервэр түлхэх хавтас" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Оруулах" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "ба тэгээд" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Шинэ мөр оруулаад" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Буцах" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Өөр шинэ мөр оруулах" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Энэ хуудас руу буцах" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Дараагийн мөрийг засах" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9533,7 +9509,7 @@ msgstr "" "TAB товчийг хэрэглэн утгаас утгын хооронд шилжинэ, эсвэл CTRL+сумууд-аар " "зөөгдөнө" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9545,11 +9521,11 @@ msgstr "" msgid "Value" msgstr "Утга" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "SQL асуудал харуулах" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9567,45 +9543,45 @@ msgstr "Байхгүй" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix:" msgstr "Хүснэгтийн өгөгдлийг орлуулах файл" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix:" msgstr "Хүснэгтийн өгөгдлийг орлуулах файл" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Ба" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Add new field" msgid "Add table prefix:" msgstr "Шинэ талбар нэмэх" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 #, fuzzy #| msgid "Add new field" msgid "Add prefix" msgstr "Шинэ талбар нэмэх" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -9837,8 +9813,8 @@ msgstr "Процедурүүд" msgid "Views:" msgstr "Харц" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Харах" @@ -9880,10 +9856,9 @@ msgstr[0] "" msgstr[1] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "table name" -msgid "Filter databases by name or regex" -msgstr "хүснэгтийн нэр" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -9892,12 +9867,6 @@ msgstr "хүснэгтийн нэр" msgid "Clear fast filter" msgstr "Илгээх" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "table name" -msgid "Filter by name or regex" -msgstr "хүснэгтийн нэр" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -10303,7 +10272,7 @@ msgstr "Өгөгдлийн санг д.нэрлэх нь" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10314,7 +10283,7 @@ msgstr "Танд хангалттай эрх байхгүй!" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -10338,18 +10307,18 @@ msgstr "Өгөгдлийн санг д.нэрлэх нь" msgid "Drop the database (DROP)" msgstr "Өгөгдлийн сан хуулах нь" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Зөвхөн бүтэц" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Бүтэц ба өгөгдөл" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Зөвхөн өгөгдөл" @@ -10363,7 +10332,7 @@ msgstr "Өгөгдлийн сан хуулах нь" msgid "CREATE DATABASE before copying" msgstr "хуулахын өмнө CREATE DATABASE" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Тогтмол нэмэх" @@ -10403,63 +10372,63 @@ msgstr "Агуулах хөдөлгүүр" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Хүснэгт хуулах(өгөгдлийн сан.хүснэгт)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Хуулагдсан хүснэгт рүү шилжих" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Хүснэгтийн ашиглалт" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Хүснэгтийг задлах" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Хүснэгт шалгах" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Хүснэгт шалгах" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Хүснэгт янзлах" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "Хүснэгт %s нь flushed боллоо." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Flush the table (\"FLUSH\")" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Хүснэгтийг зүгшрүүлэх" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Хүснэгт засах" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 #, fuzzy @@ -10467,103 +10436,103 @@ msgstr "Хүснэгт засах" msgid "Delete data or table" msgstr "Хүснэгтийн өгөгдлийг устгах" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 #, fuzzy #| msgid "Copy database to" msgid "Delete the table (DROP)" msgstr "Өгөгдлийн сан хуулах нь" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Үнэн зөв өгөгдлийг шалгах:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Адил нэр байсан тул хүснэгтийг зөөсөнгүй!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Адил нэртэй хүснэгт рүү хуулж чадсангүй!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Хүснэгт %s нь %s руу зөөгдөв." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "%s хүснэгт %s руу хуулагдлаа." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "Хүснэгт %s нь %s руу зөөгдөв." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "%s хүснэгт %s руу хуулагдлаа." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Хүснэгтийн нэр хоосон байна!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10752,7 +10721,7 @@ msgstr "ӨС гаргах сонголтууд" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Хүснэгтийн өгөгдлийг устгах" @@ -10778,21 +10747,21 @@ msgstr "Тайлбар" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Хүснэгтийн бүтэц" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Харах бүтэц" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10910,7 +10879,7 @@ msgid "Database:" msgstr "ӨС" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11028,7 +10997,7 @@ msgid "Data creation options" msgstr "Өөрчлөлийн сонголтууд" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -11097,8 +11066,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11106,98 +11075,98 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Export type" msgid "Metadata" msgstr "Гаргах төрөл" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 #, fuzzy #| msgid "Creation" msgid "Creation:" msgstr "Үүсгэлт" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 #, fuzzy #| msgid "Last update" msgid "Last update:" msgstr "Сүүлийн шинэчлэл" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 #, fuzzy #| msgid "Last check" msgid "Last check:" msgstr "Сүүлийн шалгалт" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "хэрэглэгдэж байна" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Асгарсан хүснэгтийг хүчлэх" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Асгарсан хүснэгтийг хүчлэх" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "Хүснэгт(үүд) дотор:" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT утга нэмэх" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT утга нэмэх" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "Хүснэгтийн MIME-төрлүүд" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "Хүснэгтийн хамаарал" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Харах бүтэц" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11455,9 +11424,9 @@ msgstr "Хамааралтай схем" msgid "Table of contents" msgstr "Агуулгын хүснэгт" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Нэмэлт" @@ -11679,61 +11648,61 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been added." msgstr "Өөрчлөлт хадгалагдав" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Файлыг унших боломжгүй байна" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "Дотоод холбоо нэмэгдэв" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be added!" msgstr "Файлыг унших боломжгүй байна" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been removed." msgstr "Өөрчлөлт хадгалагдав" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Файлыг унших боломжгүй байна" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be removed!" msgstr "Файлыг унших боломжгүй байна" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11790,110 +11759,110 @@ msgid "Please see the documentation on how to update your column_info table. " msgstr "" "Column_comments Хүснэгтийн хэрхэн шинэчлэх талаар баримтжууллаас харна уу." -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Тэмдэглэгдсэн SQL-асуулт" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL түүх" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "The server is not responding" msgid "Persistent favorite tables" msgstr "Сервэрээс хариу алга" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Modifications have been saved" msgid "Configurable menus" msgstr "Өөрчлөлт хадгалагдав" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Rename table to" msgid "Remembering Designer Settings" msgstr "Хүснэгтийг да.нэрлэх" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "Буруу экспортын төрөл" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "тайлбаргүй" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -12073,8 +12042,8 @@ msgstr "Хэрэглэгчийн нэр" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Хэрэглэгчийн нэр" @@ -12082,7 +12051,7 @@ msgstr "Хэрэглэгчийн нэр" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Нууц үг" @@ -12793,7 +12762,7 @@ msgstr[1] "%s ӨС амжилттай устгагдлаа." msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "" @@ -12801,100 +12770,96 @@ msgstr "" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Хаагдсан" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Онцгой эрхгүй." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "" #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Өгөгдөл уншихыг зөвшөөрөх." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Өгөгдөл нэмэх, солихыг зөвшөөрөх." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Өгөгдөл солихыг зөвшөөрөх." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Өгөгдөл устгахыг зөвшөөрөх." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Шинэ өгөгдлийн сан, хүснэгт үүсгэхийг зөвшөөрөх." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "ӨС, хүснэгт устгахыг зөвшөөрөх." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Сервэрийн тохиргоог дахин дуудахыг зөвшөөрөх." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Сервэрийг унтраахыг зөвшөөрөх." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "Өгөгдөл оруулах, файл руу гаргахыг зөвшөөрөх." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "MySQL-ын энэ хувилбарт үйлчлэлгүй." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Индекс үүсгэх, устгахыг зөвшөөрөх." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Байгаа хүснэгтийн бүтцийг өөрчлөхийг зөвшөөрөх." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Өгөгдлийн сангийн бүрэн жагсаалт руу хандахыг өгөх." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12904,41 +12869,41 @@ msgstr "" "процессыг үгүй хийх эсвэл глобал утгыг өөрчлөх шаардлагатай болно." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Завсрын хүснэгт үүсгэхийг зөвшөөрөх." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Тухайн процесст хүснэгт түгжихийг зөвшөөрөх." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "Gives the right to the user to ask where the slaves / masters are." #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Шинэ харц үүсгэхийг зөвшөөрөх." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 #, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Allows to set up events for the event scheduler." msgstr "Тухайн процесст хүснэгт түгжихийг зөвшөөрөх." #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 #, fuzzy #| msgid "Allows creating and dropping indexes." msgid "Allows creating and dropping triggers." @@ -12946,27 +12911,27 @@ msgstr "Индекс үүсгэх, устгахыг зөвшөөрөх." #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "SHOW CREATE VIEW асуултыг хийхийг зөвшөөрөх." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Хадгалагдсан заншил үүсгэхийг зөвшөөрөх." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Хадгалагдсан заншил устгах, өөрчлөхийг зөвшөөрөх." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "Хэрэглэгчийн эрхийг үүсгэх, устгах, да.нэрлэхийг зөвшөөрөх." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Хадгалагдсан заншлыг ажиллуулахыг зөвшөөрөх." @@ -12980,8 +12945,8 @@ msgstr "Байхгүй" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -13025,12 +12990,12 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Тэмдэглэл: Тохируулгын сонголтыг 0 (тэг) болговол хязгаарыг хасна." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Цаг тутамд хэрэглэгчийн асуулт (query) илгээхийг хязгаарлах." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -13039,19 +13004,19 @@ msgstr "" "хязгаарлах." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "Цаг тутамд шинээр холбогдох хэрэглэгчийн тоог хязгаарлах." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "Хэрэглэгчдэд байх зэрэг холболтын хязгаарлах тоо." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Add new field" @@ -13059,7 +13024,7 @@ msgid "Routine" msgstr "Шинэ талбар нэмэх" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -13080,14 +13045,14 @@ msgstr "Хадгалагдсан заншлыг ажиллуулахыг зөв #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Хүснэгтийн тусгай онцгой эрхүүд" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -13099,7 +13064,7 @@ msgid "Administration" msgstr "Зохион байгуулалт" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Глобал онцгой эрх" @@ -13110,15 +13075,15 @@ msgid "Global" msgstr "global" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Онцгой эрх, өгөгдлийн сангийн эрх" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Шинэ хүснэгт үүсгэхийг зөвшөөрөх." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Хүснэгт устгахыг зөвшөөрөх." @@ -13141,7 +13106,7 @@ msgid "Native MySQL Authentication" msgstr "Баримт" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Нэвтрэх мэдээлэл" @@ -13166,8 +13131,8 @@ msgstr "Хэрэглэгчийн нэр" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Log name" msgid "Host name" @@ -13189,125 +13154,125 @@ msgstr "Баримт" msgid "Password Hashing Method" msgstr "Нууц үг хувиргах" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "%s-ы нууц үг солигдлоо." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Онцгой эрх %s -ыг хүчингүй болголоо." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Дурын хэрэглэгч" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Хэрэглэгчийн өгөгдлийн сан" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Хэрэглэгчдийн хандсан нь \"%s\"" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Харц %s нь устгагдсан" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Хандив" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Хэрэглэгч олдсонгүй." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Дурын" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "Өгөгдлийн сангийн эрх" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "загвар" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Өгөгдлийн сангийн эрх" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Онцгой эрхүүдийг засах" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Хүчингүй" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "Дараагийн мөрийг засах" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… хуучныг үлдээх." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… хэрэглэгчийн хүснэгтүүдээс устгах." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… хуучнаас бүх онцгой эрхийг хүчингүй болгоод дараа нь устга." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -13315,123 +13280,123 @@ msgstr "" "… хэрэглэгчийн хүснэгтүүдээс нэгийг устгаад дараа нь онцгой эрхийг дахин " "дууд." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Нэвтрэх мэдээллийг солих/ Хэрэглэгч хуулах" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Адил онцгой эрхтэй хэрэглэгч үүсгэх ба …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Онцгой эрх, баганын эрх" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Сонгогдсон хэрэглэгчдийг хасах" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Устгахын төгсгөлд нь хэрэглэгчдээс идэвхтэй бүх онцгой эрхийг хүчингүй " "болгох." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "Хэрэглэгчтэй адил нэртэй өгөгдлийн санг устгах." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "Устгахаар хэрэглэгч сонгогдсонгүй!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Онцгой эрхийг дахин дуудаж байна" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Сонгогдсон хэрэглэгч устгагдлаа." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, fuzzy, php-format msgid "You have updated the privileges for %s." msgstr "Онцгой эрх шинэчлэгдлээ" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "%s-г устгаж байна" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Онцгой эрхүүд дахин дуудагдлаа." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "Хэрэглэгч %s оршин байна!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Онцгой эрхүүд" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Хэрэглэгч" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Онцгой эрхүүдийг засах" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "User" msgid "User account" msgstr "Хэрэглэгч" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "User overview" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13444,7 +13409,7 @@ msgstr "" "агуулга нь сервэрт хэрэглэгдэж буйгаас өөр байна. Энэ тохиолдолд %sдахин " "дуудаж%s үргэлжлүүлнэ үү." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13463,11 +13428,11 @@ msgstr "" "агуулга нь сервэрт хэрэглэгдэж буйгаас өөр байна. Энэ тохиолдолд %sдахин " "дуудаж%s үргэлжлүүлнэ үү." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "Сонгогдсон хэрэглэгч онцгой эрхийн хүснэгтэд алга байна." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Шинэ хэрэглэгч нэмэгдлээ." @@ -13714,33 +13679,33 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 #, fuzzy msgid "Refresh rate" msgstr "Да.дуудах" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Багана нэмэх/устгах" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -13807,7 +13772,7 @@ msgid "Statements" msgstr "Баримтжуулал" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -13840,19 +13805,19 @@ msgstr "Нээлттэй хүснэгтүүдийг харуулах" msgid "Related links:" msgstr "Хамаарал" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 #, fuzzy #| msgid "its the number of simultaneous connections the user may have." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Хэрэглэгчдэд байх зэрэг холболтын хязгаарлах тоо." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13862,16 +13827,16 @@ msgstr "" "хэрэглэгдэх завсрын файлын утгаас хэтэрсэн хоёртын тэмдэглэлийн нөөцлөлд " "хэрэглэгдэх хэлэлцээрийн тоо." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "Завсрын хоёртын тэмдэглэлийн нөөцөлөлт хэрэглэгдэх хэлэлцээрийн тоо." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13883,11 +13848,11 @@ msgstr "" "оронд санах ойд суурилсан завсрын хүснэгтийн tmp хүснэгтийн хэмжээн утгыг " "нэмэгдүүлэхийг хүсэж байж болно." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "Хичнээн завсрын файл mysqld-д үүсгэгдэв." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13895,7 +13860,7 @@ msgstr "" "Сервэрийн ажиллуулсан хэлэлцээрийн үед автоматаар үүссэн санах ойн " "хүснэгтүүдийн тоо." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13903,7 +13868,7 @@ msgstr "" "Ижил алдаа өгөх (түлхүүр давхардсан байж болзошгүй) бүрт ДАВТАЛТТАЙ ОРУУЛАЛТ-" "аар бичигдсэн мөрүүдийн тоо." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13911,23 +13876,23 @@ msgstr "" "Хэрэглэгдэж буй ДАВТАЛТТАЙ ОРУУЛАЛТ-ын thread баригчийн тоо. Ялгаатай " "хүснэгт бүр ДАВТАЛТТАЙ ОРУУЛАЛТ-д өөрийн thread-ийг хэрэглэнэ." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "ДАВТАЛТТАЙ ОРУУЛАЛТ-аар бичигдсэн мөрийн тоо." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "ЦЭВЭРЛЭХ хэлэлцээрийн ажилласан тоо." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "дотоод COMMIT хэлэлцээриийн тоо." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "Хүснэгтээс мөр устгасан тоо." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13937,7 +13902,7 @@ msgstr "" "NDB Кластер хадгалуурын хөдөлгүүрийг асууж чадна. Үүнийг ололт гэж нэрлэнэ. " "Ололтын баригч нь ололт хийгдсэн хүснэгтийн хичнээн удааг илэрхийлэх тоо юм." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13947,7 +13912,7 @@ msgstr "" "бүтэн индекс шалгалтыг энэ сервэр хийснийг илтгэнэ; Жишээлбэл, SELECT col1 " "FROM foo, энд col1 индекслэгдсэн байна." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -13955,7 +13920,7 @@ msgstr "" "Түлхүүрт суурилсан мөр унших хүсэлтийн тоо. Хэрэв энэ нь өндөр бол, таны " "асуудлууд болон хүснэгтүүд зөв индекслэгдсэнийг илтгэнэ." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13965,7 +13930,7 @@ msgstr "" "та мужийн нөхцөлтэйгээр баганын индекс шаардах эсвэл индекс шалгалтыг хийхэд " "нэмэгдэж байдаг." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13973,7 +13938,7 @@ msgstr "" "Түлхүүрийн дараалал дахь өмнөх мөрийг унших хүсэлтийн тоо. Энэ унших арга нь " "голчлон ORDER BY … DESC-д хэрэглэгддэг." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13985,7 +13950,7 @@ msgstr "" "Та магадгүй хүснэгтийг бүрэн шалгахыг MySQL-ээс цөөнгүй хүссэн эсвэл нэгдэлд " "түлхүүрийг зөв ашиглаагүй байх." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13997,35 +13962,35 @@ msgstr "" "ерөнхийдөө, таны хүснэгтүүд зөв индекслэгдээгүй эсвэл индексүүд чинь " "асуудалд зөв бичигдээгүйг илтгэнэ." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "Дотоод ROLLBACK хэлэлцээрийн тоо." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "Хүснэгт дэх мөрийг шинэчлэх хүсэлтийн тоо." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "Хүснэгтэд мөр оруулах хүсэлтийн тоо." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "Өгөгдөл агуулж буй (бохир, цэвэр) хуудсын тоо." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "Одоогоор бохир байгаа хуудсын тоо." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Цэвэрлэх хүсэлт дэх буфферийн хуудсын тоо." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "Чөлөөтэй байгаа хуудсуудын тоо." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -14035,7 +14000,7 @@ msgstr "" "одоогоор унших, бичих эсвэл цэвэрлэгдэж чадаагүй, мөн бусад шалгааны улмаас " "хасагдсан." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -14047,11 +14012,11 @@ msgstr "" "InndoDB буфферийн нөөцийн нийт хуудас - Innodb_буфферийн нөөцийн чөлөөт " "хуудас - Innodb_буфферийн нөөцийн хуудсын өгөгдөл зэргээс бодогддог." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "Хуудас дахь буфферийн нөөцийн хэмжээ." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -14059,7 +14024,7 @@ msgstr "" "InnoDB үүсгэсэн \"санамсаргүй\" өмнөх уншилтын тоо. Замбараагүй " "эрэмбэлэгдсэн хүснэгтийн нилээд хувийг шалгасан асуудлыг илэрхийлнэ." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -14067,11 +14032,11 @@ msgstr "" "InnoDB үүсгэсэн дараалсан өмнөх уншилтын тоо. Хүснэгтийн дараалсан бүтэн " "шалгалтыг InnoDB хийснийг илэрхийлнэ." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "InndoDB-ийн хийсэн логик уншилтын хүсэлтийн тоо." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -14079,7 +14044,7 @@ msgstr "" "InnoDB буфферийн нөөцөөс нийцэмжгүй ба ганц хуудас уншилт хийсэн логик " "уншилтын тоо." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -14088,244 +14053,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB буфферийн нөөц рүү бичигдэж дууссан тоо." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "fsync() үйлдлийн ойрхон хийгдсэн тоо." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "fsync() үйлдлийн хүлээгдэж буй тухайн тоо." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "Уншихаар хүлээгдэж буй тухайн тоо." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "Бичихээр хүлээгдэж буй тухайн тоо." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "Өгөгдөл ойрхон уншсан дүн, байтаар." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "Өгөгдөл уншилтийн нийт тоо." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "Өгөгдөл бичилтийн нийт тоо." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "Өгөгдөл ойрхон бичсэн дүн, байтаар." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "Тэмдэглэл бичих хүсэлтийн тоо." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "Тэмдэглэлийн файлын физик бичилтийн тоо." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "Тэмдэглэлийн файл руу бичих хүлээлт." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Оруулсан файлын тогтнол" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14333,99 +14298,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "Эрэмбэлэгдсэн мөрийн тоо." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14433,18 +14398,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14452,13 +14417,13 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Түлхүүрийн нөөцлөл" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -14467,77 +14432,77 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 #, fuzzy #| msgid "User" msgid "User groups" msgstr "Хэрэглэгч" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "Сервэрийн хувилбар" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Database for user" msgid "Database level tabs" msgstr "Хэрэглэгчийн өгөгдлийн сан" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table removal" msgid "Table level tabs" msgstr "Хүснэгтийн нэр" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy #| msgid "View" msgid "View users" msgstr "Харц" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Any user" msgid "Add user group" msgstr "Дурын хэрэглэгч" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Онцгой эрхгүй." -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "Баганын нэрс" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Сервэрийн хувилбар" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Database for user" msgid "Database-level tabs" msgstr "Хэрэглэгчийн өгөгдлийн сан" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table removal" msgid "Table-level tabs" @@ -14601,21 +14566,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14678,137 +14639,137 @@ msgstr "Хүснэгт %s нь устгагдлаа" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Хүснэгтийн эхэнд" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Мөр устгагдсан" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "Өгөгдлийн файлууд" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy #| msgid "Sat" msgid "State" msgstr "Бя" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Нийт" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Цаг" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Цаг" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Энэ SQL-асуулт-ыг тэмдэглэх" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Label" msgid "Label:" msgstr "Хаяг" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Энэ тэмдэглэгээг бүх хэрэглэгчид хандахыг зөвшөөрөх" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created!" msgstr "Тэмдэглэл %s нь үүсгэгдлээ" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "PHP кодоор харуулах" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Хүснэгт `%s`-ийн индекс асуудалтай" @@ -14839,29 +14800,29 @@ msgstr "" msgid "Bind parameters" msgstr "Буруу параметрүүд!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 #, fuzzy #| msgid "Bookmark this SQL query" msgid "Bookmark this SQL query:" msgstr "Энэ SQL-асуулт-ыг тэмдэглэх" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Өмнөх адил нэртэй тэмдэглэлийг солих" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Зааглагч" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Уг асуултыг энд дахин харуулах" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Зөвхөн харах" @@ -14907,104 +14868,104 @@ msgstr "" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Үүссэн" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Шинэчлэгдсэн" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Delete relation" msgid "Delete version" msgstr "Холбоог устгах" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Хөөлтын илтгэл" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Бүтцийн тойм" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "идэвхитэй" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "идэвхигүй" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Өгөгдөл нэмэх, солихыг зөвшөөрөх." -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "ӨС байхгүй" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -15012,78 +14973,78 @@ msgctxt "None for default" msgid "None" msgstr "Байхгүй" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format #| msgid "General relation features" msgid "Version %1$s of %2$s was deleted." msgstr "Ерөнхий хамаатай онцлог" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Хөөгөөгүй хүснэгтүүд" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Хүснэгтийг хөөх" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Хөөсөн хүснэгтүүд" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Сүүлийн хувилбар" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking" msgstr "Өгөгдөл нэмэх, солихыг зөвшөөрөх." -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Хувилбарууд" @@ -15093,13 +15054,13 @@ msgstr "Хувилбарууд" msgid "Manage your settings" msgstr "Ерөнхий хамаатай онцлог" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." msgstr "Өөрчлөлт хадгалагдав" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -15204,7 +15165,7 @@ msgstr "ӨС байхгүй" msgid "View dump (schema) of databases" msgstr "ӨС-ийн схем харах" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -15230,7 +15191,7 @@ msgid "" msgstr "" "phpMyAdmin нь thread %s-ийг хааж чадсангүй. Энэ аль хэдийн хаагдсан байна." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -16176,51 +16137,57 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Report title" +msgid "Chart title:" +msgstr "Тайлангийн гарчиг" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Утга" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Утга" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside table(s):" msgid "Series column:" msgstr "Хүснэгт(үүд) дотор:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Number of fields" msgid "Value Column:" msgstr "Талбаруудын тоо" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -16286,56 +16253,57 @@ msgstr "Тайлбар" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 -msgid "Internal relations" -msgstr "Дотоод хамаарал" - -#: templates/table/relation/common_form.phtml:11 -#, fuzzy -#| msgid "Internal relations" -msgid "Internal relation" -msgstr "Дотоод хамаарал" - -#: templates/table/relation/common_form.phtml:14 -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "" - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key constraints" msgstr "Гадаад түлхүүр шалгалтыг хаах" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 #, fuzzy #| msgid "Action" msgid "Actions" msgstr "Үйлдэл" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Constraint properties" msgstr "Асгарсан хүснэгтийг хүчлэх" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Тогтмол нэмэх" -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +msgid "Internal relations" +msgstr "Дотоод хамаарал" + +#: templates/table/relation/common_form.phtml:80 +#, fuzzy +#| msgid "Internal relations" +msgid "Internal relation" +msgstr "Дотоод хамаарал" + +#: templates/table/relation/common_form.phtml:83 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "" + +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -16493,7 +16461,7 @@ msgid "at beginning of table" msgstr "Хүснэгтийн эхэнд" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16538,7 +16506,7 @@ msgstr "Байрлал" msgid "Edit partitioning" msgstr "Шинэ талбар нэмэх" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -17859,6 +17827,41 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "ХИ. давхацсан холболтууд" +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "Хүснэгт" + +#, fuzzy +#~| msgid "View" +#~ msgid "views" +#~ msgstr "Харц" + +#, fuzzy +#~| msgid "Procedures" +#~ msgid "procedures" +#~ msgstr "Процедурүүд" + +#, fuzzy +#~| msgid "Event" +#~ msgid "events" +#~ msgstr "Үзэгдэл" + +#, fuzzy +#~| msgid "Functions" +#~ msgid "functions" +#~ msgstr "Функцүүд" + +#, fuzzy +#~| msgid "table name" +#~ msgid "Filter databases by name or regex" +#~ msgstr "хүснэгтийн нэр" + +#, fuzzy +#~| msgid "table name" +#~ msgid "Filter by name or regex" +#~ msgstr "хүснэгтийн нэр" + #, fuzzy #~| msgid "Tracking report" #~ msgid "Taking you to %s." diff --git a/po/ms.po b/po/ms.po index 4231c2b348..a318e72d6d 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:06+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Malay Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Atribut" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Kekunci utama telah ditambah pada %s" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Laporan penjejak" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 #, fuzzy @@ -2072,279 +2084,279 @@ msgstr "" msgid "End of step" msgstr "Pada Akhir Jadual" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 #, fuzzy #| msgid "None" msgid "Done" msgstr "Tiada" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 #, fuzzy #| msgid "Create table on database %s" msgid "Create the following table" msgstr "Cipta jadual baru pada pangkalan data %s" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Simpan" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy msgid "Hide search criteria" msgstr "kueri-SQL" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy msgid "Show search criteria" msgstr "kueri-SQL" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Cari" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Nama Kolum" -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Nama Kolum" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy msgid "Hide find and replace criteria" msgstr "kueri-SQL" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy msgid "Show find and replace criteria" msgstr "kueri-SQL" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Tambah/Padam Kolum Medan" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Table of contents" msgid "Data point content" msgstr "Kandungan" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Abai" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Titik" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Rentetan talian" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Poligon" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometri" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Lingkaran Dalaman" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Outer Ring" msgid "Outer ring" msgstr "Lingkaran Luar" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Muka Surat:" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 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:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgctxt "PDF" @@ -2352,266 +2364,231 @@ msgstr "Sila pilih pangkalan data" msgid "Open page" msgstr "Penggunaan" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "Sila pilih pangkalan data" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Sila Pilih Laman untuk diubah" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Sunting atau eksport skema hubungan" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Pengubahsuaian telah disimpan" -#: js/messages.php:550 +#: js/messages.php:551 #, fuzzy, php-format #| msgid "Value for the column \"%s\"" msgid "Add an option for column \"%s\"." msgstr "Nilai pada kolum \"%s\"" -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Hantar" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Nama Kolum" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Papar semua" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Linestring" msgid "Original length" msgstr "Rentetan talian" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "DiBatalkan" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 #, fuzzy msgid "Import status" msgstr "Eksport" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Pilih Jadual" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 #, fuzzy msgid "Go to link:" msgstr "Tiada pangkalan data" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Nama Kolum" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Ubah Katalaluan" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 #, fuzzy msgid "Generate" msgstr "Dijana oleh" -#: js/messages.php:620 +#: js/messages.php:621 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Isn" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Papar semua" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "Indeks" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Papar grid" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 #, fuzzy #| msgid "Indexes" msgid "Link with main panel" msgstr "Indeks" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 #, fuzzy #| msgid "Indexes" msgid "Unlink from main panel" msgstr "Indeks" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -#, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "Jadual-jadual" - -#: js/messages.php:633 -#, fuzzy -msgid "views" -msgstr "Medan" - -#: js/messages.php:634 -#, fuzzy -msgid "procedures" -msgstr "Proses-proses" - -#: js/messages.php:635 -#, fuzzy -msgid "events" -msgstr "Hantar" - -#: js/messages.php:636 -#, fuzzy -msgid "functions" -msgstr "Fungsi" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2619,135 +2596,135 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr "" -#: js/messages.php:649 +#: js/messages.php:641 #, fuzzy msgid "up to date" msgstr "Tiada pangkalan data" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 #, fuzzy msgid "Create view" msgstr "Versi Pelayan" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy msgid "Send error report" msgstr "Pilihan Pelayan" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy msgid "Submit error report" msgstr "Pilihan Pelayan" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Ciri-ciri hubungan am" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy msgid "Show report details" msgstr "Papar jadual" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Abai" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Papar kueri ini di sini lagi" -#: js/messages.php:701 +#: js/messages.php:693 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Adakah anda ingin " -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Komen jadual" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy msgid "Hide arguments" msgstr "kueri-SQL" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Terdahulu" -#: js/messages.php:748 +#: js/messages.php:740 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2755,96 +2732,96 @@ msgid "Next" msgstr "Berikut" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Jumlah" -#: js/messages.php:755 +#: js/messages.php:747 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binari" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:749 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mac" -#: js/messages.php:758 +#: js/messages.php:750 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Mei" -#: js/messages.php:760 +#: js/messages.php:752 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:761 +#: js/messages.php:753 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:762 +#: js/messages.php:754 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Ogos" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:756 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Mac" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2852,78 +2829,78 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Ogos" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Sept" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Dis" -#: js/messages.php:801 +#: js/messages.php:793 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Aha" -#: js/messages.php:802 +#: js/messages.php:794 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Isn" -#: js/messages.php:803 +#: js/messages.php:795 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Sel" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:798 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Jum" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2931,157 +2908,157 @@ msgid "Sun" msgstr "Aha" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Isn" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Sel" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Rab" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Kha" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Aha" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Isn" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Sel" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Rab" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Kha" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Jum" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sab" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Tiada" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:864 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "sedang digunakan" -#: js/messages.php:873 +#: js/messages.php:865 #, fuzzy #| msgid "Records" msgid "Second" msgstr "Rekod" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Add new field" msgid "Please fix this field" msgstr "Tambah medan baru" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Please select a database" msgid "Please enter a valid date" msgstr "Sila pilih pangkalan data" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "" @@ -3089,43 +3066,43 @@ msgstr "" msgid "Please enter the same value again" msgstr "" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:901 +#: js/messages.php:928 #, 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:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Ralat" @@ -3212,11 +3189,12 @@ msgstr "pada kueri" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3263,7 +3241,7 @@ msgstr "" msgid "Explain" msgstr "Terangkan Kod SQL" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "" @@ -3303,8 +3281,8 @@ msgid "History" msgstr "Melangkau Pengesahan SQL" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3480,30 +3458,30 @@ msgstr "" msgid "Switch to dark theme" msgstr "Tukar kepada pengkalan data yang di salin" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3513,8 +3491,8 @@ msgstr "" msgid "Ascending" msgstr "Menaik" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3681,8 +3659,8 @@ msgstr[0] "%s padanan di dalam jadual %s" msgstr[1] "%s padanan di dalam jadual %s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3726,28 +3704,28 @@ msgstr "Nyahpilih Semua" msgid "Inside column:" msgstr "Di dalam kolum:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "Tambah/Padam Kolum Medan" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 #, fuzzy msgid "Filter rows" msgstr "Medan" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Search in database" msgid "Search this table" msgstr "Cari di pangkalan data" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 #, fuzzy #| msgid "Begin" @@ -3755,7 +3733,7 @@ msgctxt "First page" msgid "Begin" msgstr "Mula" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 #, fuzzy @@ -3764,7 +3742,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Terdahulu" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 #, fuzzy @@ -3773,7 +3751,7 @@ msgctxt "Next page" msgid "Next" msgstr "Berikut" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 #, fuzzy #| msgid "End" @@ -3781,83 +3759,83 @@ msgctxt "Last page" msgid "End" msgstr "Tamat" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Semua" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of rows per page" msgid "Number of rows:" msgstr "Bilangan baris per halaman" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Sebahagian Teks" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Teks Penuh" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 #, fuzzy msgid "Relational key" msgstr "Skema Hubungan" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display column for relations" msgstr "Memaparkan Komen Kolum" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 #, fuzzy msgid "Hide browser transformation" msgstr "Informasi MasaJana" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Baris telah dipadam" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Bunuh" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -3865,49 +3843,50 @@ msgstr "" msgid "Your SQL query has been executed successfully." msgstr "Kueri-SQL anda telah dilaksanakan dengan jaya" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Papar baris" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "jumlah" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Dengan pilihan:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3915,27 +3894,27 @@ msgstr "Dengan pilihan:" msgid "Check all" msgstr "Tanda Semua" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Paparan Cetak" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Papar Skema PDF" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 #, fuzzy #| msgid "Link not found" msgid "Link not found!" @@ -4034,19 +4013,19 @@ msgstr "Tiada indeks ditafrifkan!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Indeks" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -4055,24 +4034,24 @@ msgid "Action" msgstr "Aksi" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Nama Kekunci" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Unik" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Kardinaliti" @@ -4080,8 +4059,8 @@ msgstr "Kardinaliti" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -4091,8 +4070,8 @@ msgid "Collation" msgstr "Pengumpulan" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -4109,15 +4088,15 @@ msgstr "Kekunci utama telah digugurkan." msgid "Index %s has been dropped." msgstr "Indeks %s telah digugurkan." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Gugur" @@ -4154,12 +4133,13 @@ msgstr "" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4167,7 +4147,7 @@ msgstr "Jadual" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4176,8 +4156,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4185,41 +4165,41 @@ msgid "Search" msgstr "Cari" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Selit" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilej" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Operasi" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4230,16 +4210,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Kueri" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4247,22 +4227,22 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Tambah/Padam Kolum Medan" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "pangkalan data" @@ -4273,34 +4253,34 @@ msgid "User accounts" msgstr "Pengguna" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 #, fuzzy msgid "Binary log" msgstr "Binari" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikasi" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Pemboleh-pembolehubah" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4618,7 +4598,7 @@ msgstr "Tidak boleh menukar indekx ke PRIMARY!" msgid "No index parts defined!" msgstr "Tiada bahagian indeks ditakrifkan!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5042,38 +5022,38 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "direktori muatnaik pelayan-web" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Direktori muatnaik yang telah ditetapkan tidak dapat dicapai." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Kosong" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Cetak" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 #, fuzzy #| msgid "User" msgid "Users" @@ -5249,8 +5229,8 @@ msgid "Add new column" msgstr "Tambah medan baru" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5315,19 +5295,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -6152,7 +6132,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Tambahkan nilai AUTO_INCREMENT" @@ -6196,7 +6176,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Tambah %s" @@ -7857,7 +7837,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 #, fuzzy msgid "Retain query box" msgstr "kueri-SQL" @@ -8145,109 +8125,35 @@ msgstr "" msgid "OpenDocument Text" msgstr "Dokumentasi" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Jadual %s telah dikosongkan." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "Medan %s telah digugurkan" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "Jadual %s telah digugurkan" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "tidak diketahui" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "" - -#: libraries/controllers/TableStructureController.php:484 -#, fuzzy -#| msgid "Database %s has been dropped." -msgid "The columns have been moved successfully." -msgstr "angkalan data %s telah digugurkan." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -#, fuzzy -#| msgid "Query type" -msgid "Query error" -msgstr "Jenis Kueri" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Ubah" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Indeks" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Tekspenuh" - -#: libraries/controllers/TableStructureController.php:1201 -#, fuzzy -#| msgid "Session value" -msgid "Distinct values" -msgstr "Nilai Sessi" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8263,6 +8169,14 @@ msgstr "" msgid "No data to display" msgstr "Tiada pangkalan data" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "" + #: libraries/controllers/table/TableRelationController.php:212 #, fuzzy #| msgid "Thread %s was successfully killed." @@ -8274,24 +8188,90 @@ msgstr "Bebenang %s telah berjaya dimatikan." msgid "Internal relations were successfully updated." msgstr "Ciri-ciri hubungan am" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Search" msgid "Table search" msgstr "Cari" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Search" msgid "Zoom search" msgstr "Cari" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy msgid "Find and replace" msgstr "kueri-SQL" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:485 +#, fuzzy +#| msgid "Database %s has been dropped." +msgid "The columns have been moved successfully." +msgstr "angkalan data %s telah digugurkan." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +#, fuzzy +#| msgid "Query type" +msgid "Query error" +msgstr "Jenis Kueri" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Ubah" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Indeks" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Tekspenuh" + +#: libraries/controllers/table/TableStructureController.php:1209 +#, fuzzy +#| msgid "Session value" +msgid "Distinct values" +msgstr "Nilai Sessi" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8301,7 +8281,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Tiada perubahan" @@ -8374,7 +8354,7 @@ msgstr "Cipta" msgid "Create database:" msgstr "Cipta pangkalan data baru" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Tiada Privilej" @@ -9106,70 +9086,70 @@ msgid "Dump has been saved to file %s." msgstr "Longgokan telah disimpan ke fail %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL memulangkan set hasil kosong (i.e. sifar baris)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Tiada pangkalan data" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Tiada pangkalan data" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Struktur sahaja" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" @@ -9193,78 +9173,78 @@ msgstr "Fungsi" msgid "Binary" msgstr "Binari" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "Kerana kepanjangannya,
medan ini tidak boleh diedit " -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Binari - jgn diubah" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Atau" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "direktori muatnaik pelayan-web" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Selit" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Selitkan baris baru" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Kembali ke muka sebelumnya" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Tambah baris yang baru" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 #, fuzzy msgid "Go back to this page" msgstr "Kembali ke muka sebelumnya" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9276,11 +9256,11 @@ msgstr "" msgid "Value" msgstr "Nilai" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9298,43 +9278,43 @@ msgstr "Tiada" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix:" msgstr "Ganti data jadual dengan fail" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix:" msgstr "Ganti data jadual dengan fail" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Jum" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Replace table data with file" msgid "Add table prefix:" msgstr "Ganti data jadual dengan fail" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -9562,8 +9542,8 @@ msgstr "Proses-proses" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Papar" @@ -9604,10 +9584,9 @@ msgid_plural "%s results found" msgstr[0] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "Alter table order by" -msgid "Filter databases by name or regex" -msgstr "Alter table order by" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -9616,12 +9595,6 @@ msgstr "Alter table order by" msgid "Clear fast filter" msgstr "Simpan sebagai fail" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "Alter table order by" -msgid "Filter by name or regex" -msgstr "Alter table order by" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -10019,7 +9992,7 @@ msgstr "Tukar nama pangkalan data ke" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10030,7 +10003,7 @@ msgstr "Anda tidak mempunyai hak mencukupi untuk berada disini sekarang!" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -10050,18 +10023,18 @@ msgstr "Membuang pangkalan data" msgid "Drop the database (DROP)" msgstr "Menggugurkan pangkalan data" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Struktur sahaja" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Struktur dan data" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Data sahaja" @@ -10075,7 +10048,7 @@ msgstr "Salin pangkalan data ke" msgid "CREATE DATABASE before copying" msgstr "Bina pangkalan data sebelum menyalin" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Tambahkan kekangan" @@ -10115,63 +10088,63 @@ msgstr "" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Salin jadual ke (pangkalandata.jadual)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Penyenggaraan Jadual" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Periksa Jadual" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Periksa Jadual" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "Jadual %s telah dibuangkan." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Buang jadual (\"FLUSH\")" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Optimakan jadual" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Baiki jadual" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 #, fuzzy @@ -10179,105 +10152,105 @@ msgstr "Baiki jadual" msgid "Delete data or table" msgstr "Melonggok data bagi jadual" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 #, fuzzy msgid "Delete the table (DROP)" msgstr "Tiada pangkalan data" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 #, fuzzy msgid "Repair" msgstr "Baiki jadual" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy msgid "Coalesce" msgstr "Tiada Jadual" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 #, fuzzy msgid "Partition maintenance" msgstr "Penyenggaraan Jadual" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Semak integriti rujukan:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Jadual %s telah dipindahkan ke %s." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Jadual %s telah disalin ke %s." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "Jadual %s telah dipindahkan ke %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "Jadual %s telah disalin ke %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Nama jadual adalah kosong!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "" @@ -10455,7 +10428,7 @@ msgstr "Statistik pangkalan data" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Melonggok data bagi jadual" @@ -10482,14 +10455,14 @@ msgstr "Keterangan" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Struktur jadual bagi jadual" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 #, fuzzy msgid "Structure for view" @@ -10497,7 +10470,7 @@ msgstr "Struktur sahaja" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10609,7 +10582,7 @@ msgid "Database:" msgstr "Pangkalan Data" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10720,7 +10693,7 @@ msgid "Data creation options" msgstr "Statistik pangkalan data" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -10789,8 +10762,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10798,97 +10771,97 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Export" msgid "Metadata" msgstr "Eksport" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 #, fuzzy #| msgid "Creation" msgid "Creation:" msgstr "Mewujudkan" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 #, fuzzy #| msgid "Last update" msgid "Last update:" msgstr "Kemaskini terakhir" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 #, fuzzy #| msgid "Last check" msgid "Last check:" msgstr "Semakan Terakhir" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "sedang digunakan" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for dumped tables" msgstr "Di dalam jadual:" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Di dalam jadual:" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Tambahkan nilai AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Tambahkan nilai AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Struktur sahaja" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "" @@ -11137,9 +11110,9 @@ msgstr "Skema Hubungan" msgid "Table of contents" msgstr "Kandungan" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Ekstra" @@ -11303,60 +11276,60 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been added." msgstr "Pengubahsuaian telah disimpan" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Fail tidak boleh dibaca" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy msgid "Internal relation has been added." msgstr "Ciri-ciri hubungan am" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be added!" msgstr "Fail tidak boleh dibaca" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been removed." msgstr "Pengubahsuaian telah disimpan" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Fail tidak boleh dibaca" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be removed!" msgstr "Fail tidak boleh dibaca" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy msgid "Internal relation has been removed." msgstr "Ciri-ciri hubungan am" @@ -11408,109 +11381,109 @@ msgstr "" msgid "Please see the documentation on how to update your column_info table. " msgstr "" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Tandabuku kueri-SQL" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy msgid "Persistent favorite tables" msgstr "Jenis Kueri" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Modifications have been saved" msgid "Configurable menus" msgstr "Pengubahsuaian telah disimpan" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Rename table to" msgid "Remembering Designer Settings" msgstr "Tukarnama jadual ke" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "Jenis eksport tidak sah" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "tiada keterangan" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11692,8 +11665,8 @@ msgstr "Kata Pengenalan" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Kata Pengenalan" @@ -11701,7 +11674,7 @@ msgstr "Kata Pengenalan" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Katalaluan" @@ -12376,7 +12349,7 @@ msgstr[1] "angkalan data %s telah digugurkan." msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 #, fuzzy msgid "Version" msgstr "Versi PHP" @@ -12385,101 +12358,97 @@ msgstr "Versi PHP" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Tidak Membenarkan" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 #, fuzzy msgid "No privileges." msgstr "Tiada Privilej" -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "" #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "" #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "" #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12487,65 +12456,65 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "" #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "" #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -12559,8 +12528,8 @@ msgstr "Tiada" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12604,39 +12573,39 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy msgid "Routine" msgstr "Tambah medan baru" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12651,14 +12620,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -12670,7 +12639,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 #, fuzzy msgid "Global privileges" msgstr "Tiada Privilej" @@ -12682,15 +12651,15 @@ msgid "Global" msgstr "Nilai Global" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "" @@ -12713,7 +12682,7 @@ msgid "Native MySQL Authentication" msgstr "Dokumentasi" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 #, fuzzy msgid "Login Information" msgstr "Informasi MasaJana" @@ -12739,8 +12708,8 @@ msgstr "Kata Pengenalan" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Column names" msgid "Host name" @@ -12762,233 +12731,233 @@ msgstr "Dokumentasi" msgid "Password Hashing Method" msgstr "Katalaluan:" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Anda telah menarikbalik privilej Keistimewaan untuk %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Sebarang pengguna" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy msgid "Database for user account" msgstr "Statistik pangkalan data" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 #, fuzzy msgid "User has been added." msgstr "Medan %s telah digugurkan" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 #, fuzzy msgid "Grant" msgstr "Cetak" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Tiada pengguna dijumpai." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Sebarang" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Ubah Privilej" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "TarikBalik" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy msgid "Routine-specific privileges" msgstr "Tiada Privilej" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "With selected:" msgid "Remove selected user accounts" msgstr "Dengan pilihan:" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Anda telah mengemaskini privilej bagi %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilej" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Pengguna" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Ubah Privilej" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "User" msgid "User account" msgstr "Pengguna" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12997,7 +12966,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -13006,11 +12975,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Anda telah menambah pengguna baru." @@ -13250,33 +13219,33 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 #, fuzzy msgid "Refresh rate" msgstr "Dijana oleh" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Tambah/Padam Kolum Medan" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -13337,7 +13306,7 @@ msgid "Statements" msgstr "Penyataan" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -13367,34 +13336,34 @@ msgstr "Papar jadual" msgid "Related links:" msgstr "Operasi" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Limits the number of new connections the user may open per hour." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13402,78 +13371,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13481,7 +13450,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13489,42 +13458,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13532,33 +13501,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13567,243 +13536,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Fail bagi set Aksara:" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13811,99 +13780,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13911,18 +13880,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13930,12 +13899,12 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "Jenis Kueri" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -13944,75 +13913,75 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 #, fuzzy #| msgid "User" msgid "User groups" msgstr "Pengguna" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "Versi Pelayan" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Databases" msgid "Database level tabs" msgstr "pangkalan data" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table comments" msgid "Table level tabs" msgstr "Komen jadual" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy msgid "View users" msgstr "Sebarang pengguna" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Any user" msgid "Add user group" msgstr "Sebarang pengguna" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy msgid "User group menu assignments" msgstr "Tiada Privilej" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "Nama Kolum" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Versi Pelayan" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Databases" msgid "Database-level tabs" msgstr "pangkalan data" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14076,21 +14045,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "With selected:" msgid "An alias was expected." @@ -14152,133 +14117,133 @@ msgstr "Jadual %s telah digugurkan" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Pada Awalan Jadual" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Baris telah dipadam" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 #, fuzzy msgid "Detailed profile" msgstr "Data sahaja" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy msgid "State" msgstr "Status" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Jumlah" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Masa" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Masa" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "andabuku kueri-SQL ini" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Label" msgid "Label:" msgstr "Label" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -14309,29 +14274,29 @@ msgstr "" msgid "Bind parameters" msgstr "Parameter tidak sesuai!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 #, fuzzy #| msgid "Bookmark this SQL query" msgid "Bookmark this SQL query:" msgstr "andabuku kueri-SQL ini" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Papar kueri ini di sini lagi" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Paparan sahaja" @@ -14376,103 +14341,103 @@ msgstr "" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Dibina" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "dikemaskini" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy msgid "Delete version" msgstr "Versi Pelayan" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Laporan penjejak" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Paparan struktur" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "aktif" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "tidak aktif" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Tiada pangkalan data" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 #, fuzzy msgid "Date" msgstr "Data" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 #, fuzzy msgid "Username" msgstr "Namapengguna:" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -14480,79 +14445,79 @@ msgctxt "None for default" msgid "None" msgstr "Tiada" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Versi Pelayan" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 #, fuzzy msgid "Untracked tables" msgstr "Jadual terlacak" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Kesan jadual" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 #, fuzzy msgid "Tracked tables" msgstr "Jadual dikesan" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Versi terakhir" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Delete" msgid "Delete tracking" msgstr "Padam" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Versi" @@ -14562,13 +14527,13 @@ msgstr "Versi" msgid "Manage your settings" msgstr "Ciri-ciri hubungan am" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." msgstr "Pengubahsuaian telah disimpan" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14668,7 +14633,7 @@ msgstr "Tiada pangkalan data" msgid "View dump (schema) of databases" msgstr "Lihat longgokan (skema) pangkalan data" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14694,7 +14659,7 @@ msgid "" msgstr "" "phpMyAdmin tidak dapat mematikan bebenang %s. Ianya mungkin telah ditutup." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -15607,52 +15572,57 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +msgid "Chart title:" +msgstr "Tiada Jadual" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 #, fuzzy msgid "Series:" msgstr "kueri-SQL" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Nilai" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Nilai" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside column:" msgid "Series column:" msgstr "Di dalam kolum:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Number of rows per page" msgid "Value Column:" msgstr "Bilangan baris per halaman" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -15716,56 +15686,57 @@ msgstr "Komen" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 -#, fuzzy -msgid "Internal relations" -msgstr "Ciri-ciri hubungan am" - -#: templates/table/relation/common_form.phtml:11 -#, fuzzy -msgid "Internal relation" -msgstr "Ciri-ciri hubungan am" - -#: templates/table/relation/common_form.phtml:14 -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "" - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 #, fuzzy #| msgid "Add constraints" msgid "Foreign key constraints" msgstr "Tambahkan kekangan" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 #, fuzzy #| msgid "Action" msgid "Actions" msgstr "Aksi" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 #, fuzzy #| msgid "Column names" msgid "Constraint properties" msgstr "Nama Kolum" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Tambahkan kekangan" -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +#, fuzzy +msgid "Internal relations" +msgstr "Ciri-ciri hubungan am" + +#: templates/table/relation/common_form.phtml:80 +#, fuzzy +msgid "Internal relation" +msgstr "Ciri-ciri hubungan am" + +#: templates/table/relation/common_form.phtml:83 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "" + +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -15918,7 +15889,7 @@ msgid "at beginning of table" msgstr "Pada Awalan Jadual" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy msgid "Partitions" msgstr "Operasi" @@ -15961,7 +15932,7 @@ msgstr "Operasi" msgid "Edit partitioning" msgstr "Paparan Cetak" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -17197,6 +17168,37 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "Jadual-jadual" + +#, fuzzy +#~ msgid "views" +#~ msgstr "Medan" + +#, fuzzy +#~ msgid "procedures" +#~ msgstr "Proses-proses" + +#, fuzzy +#~ msgid "events" +#~ msgstr "Hantar" + +#, fuzzy +#~ msgid "functions" +#~ msgstr "Fungsi" + +#, fuzzy +#~| msgid "Alter table order by" +#~ msgid "Filter databases by name or regex" +#~ msgstr "Alter table order by" + +#, fuzzy +#~| msgid "Alter table order by" +#~ msgid "Filter by name or regex" +#~ msgstr "Alter table order by" + #, fuzzy #~| msgid "Tracking report" #~ msgid "Taking you to %s." diff --git a/po/nb.po b/po/nb.po index 7a775b16d7..0bf0d1263f 100644 --- a/po/nb.po +++ b/po/nb.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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-11-11 21:15+0000\n" "Last-Translator: nils kristian tomren \n" -"Language-Team: Norwegian Bokmål " -"\n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.5-dev\n" -#: changelog.php:37 license.php:30 +#: changelog.php:37 license.php:33 #, php-format msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " @@ -37,7 +37,7 @@ msgstr "Klikk for å sortere." msgid "Showing rows %1$s - %2$s." msgstr "Viser radene %1$s - %2$s." -#: db_create.php:61 +#: db_create.php:62 #, php-format msgid "Database %1$s has been created." msgstr "Databasen %1$s er opprettet." @@ -46,13 +46,13 @@ msgstr "Databasen %1$s er opprettet." msgid "Database comment" msgstr "Databasekommentar" -#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:601 +#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:599 #: templates/columns_definitions/column_definitions_form.phtml:84 msgid "Table comments:" msgstr "Tabellkommentarer:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1568 +#: libraries/insert_edit.lib.php:1575 #: libraries/navigation/nodes/NodeColumn.php:34 #: libraries/plugins/export/ExportHtmlword.php:288 #: libraries/plugins/export/ExportHtmlword.php:384 @@ -62,13 +62,14 @@ msgstr "Tabellkommentarer:" #: libraries/plugins/export/ExportTexytext.php:282 #: libraries/plugins/export/ExportTexytext.php:373 #: libraries/plugins/export/PMA_ExportPdf.php:472 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:882 libraries/tracking.lib.php:978 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 +#: libraries/tracking.lib.php:892 libraries/tracking.lib.php:990 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:10 -#: templates/table/relation/common_form.phtml:43 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:27 +#: templates/table/relation/common_form.phtml:79 #: templates/table/relation/foreign_key_row.phtml:176 #: templates/table/relation/foreign_key_row.phtml:188 #: templates/table/relation/internal_relational_row.phtml:73 @@ -88,14 +89,14 @@ msgstr "Kolonne" #: libraries/plugins/export/ExportTexytext.php:283 #: libraries/plugins/export/ExportTexytext.php:374 #: libraries/plugins/export/PMA_ExportPdf.php:474 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 #: libraries/rte/rte_list.lib.php:78 libraries/rte/rte_list.lib.php:106 #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2606 libraries/tracking.lib.php:883 -#: libraries/tracking.lib.php:975 +#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -105,7 +106,7 @@ msgstr "Type" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:709 -#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1577 +#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1584 #: libraries/plugins/export/ExportHtmlword.php:294 #: libraries/plugins/export/ExportHtmlword.php:390 #: libraries/plugins/export/ExportLatex.php:517 @@ -114,9 +115,9 @@ msgstr "Type" #: libraries/plugins/export/ExportTexytext.php:284 #: libraries/plugins/export/ExportTexytext.php:375 #: libraries/plugins/export/PMA_ExportPdf.php:476 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 -#: libraries/tracking.lib.php:885 libraries/tracking.lib.php:981 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/tracking.lib.php:895 libraries/tracking.lib.php:993 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 @@ -133,9 +134,9 @@ msgstr "Null" #: libraries/plugins/export/ExportTexytext.php:285 #: libraries/plugins/export/ExportTexytext.php:376 #: libraries/plugins/export/PMA_ExportPdf.php:478 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 -#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:886 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:896 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 @@ -147,8 +148,8 @@ msgstr "Standard" #: libraries/plugins/export/ExportOdt.php:488 #: libraries/plugins/export/ExportTexytext.php:378 #: libraries/plugins/export/PMA_ExportPdf.php:487 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:640 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:663 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 msgid "Links to" msgstr "Lenker til" @@ -159,37 +160,38 @@ msgstr "Lenker til" #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:381 #: libraries/plugins/export/PMA_ExportPdf.php:494 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:651 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:664 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:649 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 #: templates/columns_definitions/table_fields_definitions.phtml:65 msgid "Comments" msgstr "Kommentarer" -#: db_datadict.php:155 libraries/controllers/TableStructureController.php:1189 -#: libraries/controllers/TableStructureController.php:1194 -#: libraries/tracking.lib.php:925 +#: db_datadict.php:155 +#: libraries/controllers/table/TableStructureController.php:1197 +#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:79 +#: templates/table/structure/display_structure.phtml:80 msgid "Primary" msgstr "Primær" -#: db_datadict.php:165 js/messages.php:370 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:371 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 -#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:403 -#: libraries/mult_submits.lib.php:417 +#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:408 +#: libraries/mult_submits.lib.php:422 #: libraries/plugins/export/ExportHtmlword.php:654 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:710 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2971 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3620 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1013 libraries/tracking.lib.php:1018 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2973 +#: libraries/server_privileges.lib.php:2993 +#: libraries/server_privileges.lib.php:3631 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -198,32 +200,32 @@ msgstr "Primær" msgid "No" msgstr "Nei" -#: db_datadict.php:165 js/messages.php:515 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:516 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 #: libraries/config/FormDisplay.tpl.php:280 -#: libraries/controllers/TableStructureController.php:770 -#: libraries/controllers/TableStructureController.php:1440 -#: libraries/controllers/TableStructureController.php:1449 -#: libraries/controllers/TableStructureController.php:1454 -#: libraries/controllers/TableStructureController.php:1459 -#: libraries/controllers/TableStructureController.php:1464 -#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:199 -#: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 -#: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 +#: libraries/controllers/table/TableStructureController.php:771 +#: libraries/controllers/table/TableStructureController.php:1448 +#: libraries/controllers/table/TableStructureController.php:1457 +#: libraries/controllers/table/TableStructureController.php:1462 +#: libraries/controllers/table/TableStructureController.php:1467 +#: libraries/controllers/table/TableStructureController.php:1472 +#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:200 +#: libraries/mult_submits.lib.php:344 libraries/mult_submits.lib.php:377 +#: libraries/mult_submits.lib.php:406 libraries/mult_submits.lib.php:420 #: libraries/plugins/export/ExportHtmlword.php:655 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:788 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:711 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2968 -#: libraries/server_privileges.lib.php:2989 -#: libraries/server_privileges.lib.php:3617 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1011 libraries/tracking.lib.php:1016 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2970 +#: libraries/server_privileges.lib.php:2991 +#: libraries/server_privileges.lib.php:3628 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -236,8 +238,8 @@ msgstr "Ja" msgid "View dump (schema) of database" msgstr "Vis dump (skjema) av database" -#: db_export.php:51 db_tracking.php:102 export.php:382 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:176 +#: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 +#: libraries/controllers/DatabaseStructureController.php:157 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "Databasen har ingen tabeller." @@ -254,7 +256,7 @@ msgstr "Tabeller" #: db_export.php:66 libraries/Menu.php:320 libraries/Menu.php:427 #: libraries/Util.php:3407 libraries/Util.php:3417 libraries/Util.php:3423 -#: libraries/Util.php:3702 libraries/Util.php:4339 libraries/Util.php:4356 +#: libraries/Util.php:3703 libraries/Util.php:4340 libraries/Util.php:4357 #: libraries/central_columns.lib.php:729 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:320 @@ -262,10 +264,10 @@ msgstr "Tabeller" #: libraries/config/user_preferences.forms.php:218 #: libraries/config/user_preferences.forms.php:259 #: libraries/config/user_preferences.forms.php:285 -#: libraries/import.lib.php:1299 libraries/navigation/nodes/NodeColumn.php:44 +#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:44 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 -#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:877 +#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:887 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -285,7 +287,6 @@ msgstr "Data" #: db_export.php:70 libraries/DbSearch.php:441 #: libraries/display_export.lib.php:46 libraries/replication_gui.lib.php:381 -#| msgid "Select All" msgid "Select all" msgstr "Marker alle" @@ -309,11 +310,11 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "phpMyAdmin konfigurasjonslager har blitt deaktivert. %sSe hvorfor%s." -#: db_qbe.php:135 +#: db_qbe.php:136 msgid "You have to choose at least one column to display!" msgstr "Du må velge minst en kolonne for visning!" -#: db_qbe.php:152 +#: db_qbe.php:154 #, php-format msgid "Switch to %svisual builder%s" msgstr "Bytt til %svisuell bygger%s" @@ -341,7 +342,7 @@ msgstr "" msgid "No tables selected." msgstr "Ingen tabeller er valgt." -#: db_tracking.php:146 +#: db_tracking.php:149 msgid "Database Log" msgstr "Databaselogg" @@ -376,7 +377,7 @@ msgstr "Det kan være lurt å oppdatere siden." msgid "Bad type!" msgstr "Feil type!" -#: export.php:276 +#: export.php:278 msgid "Bad parameters!" msgstr "Feil parametere!" @@ -384,98 +385,98 @@ msgstr "Feil parametere!" msgid "Invalid export type" msgstr "Ugyldig eksport-type" -#: gis_data_editor.php:119 +#: gis_data_editor.php:117 #, php-format msgid "Value for the column \"%s\"" msgstr "Verdien for kolonnen \"%s\"" -#: gis_data_editor.php:147 +#: gis_data_editor.php:145 #: templates/table/gis_visualization/gis_visualization.phtml:37 msgid "Use OpenStreetMaps as Base Layer" msgstr "Bruk OpenStreetMaps som baselag" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:169 +#: gis_data_editor.php:167 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:192 +#: gis_data_editor.php:190 #, php-format msgid "Geometry %d:" msgstr "Geometri %d:" -#: gis_data_editor.php:214 +#: gis_data_editor.php:212 msgid "Point:" msgstr "Punkt:" -#: gis_data_editor.php:215 gis_data_editor.php:242 gis_data_editor.php:298 -#: gis_data_editor.php:371 js/messages.php:504 +#: gis_data_editor.php:213 gis_data_editor.php:240 gis_data_editor.php:296 +#: gis_data_editor.php:369 js/messages.php:505 msgid "X" msgstr "X" -#: gis_data_editor.php:218 gis_data_editor.php:246 gis_data_editor.php:302 -#: gis_data_editor.php:377 js/messages.php:505 +#: gis_data_editor.php:216 gis_data_editor.php:244 gis_data_editor.php:300 +#: gis_data_editor.php:375 js/messages.php:506 msgid "Y" msgstr "Y" -#: gis_data_editor.php:240 gis_data_editor.php:296 gis_data_editor.php:369 -#: js/messages.php:507 +#: gis_data_editor.php:238 gis_data_editor.php:294 gis_data_editor.php:367 +#: js/messages.php:508 #, php-format msgid "Point %d" msgstr "Punkt %d" -#: gis_data_editor.php:253 gis_data_editor.php:309 gis_data_editor.php:387 -#: js/messages.php:513 +#: gis_data_editor.php:251 gis_data_editor.php:307 gis_data_editor.php:385 +#: js/messages.php:514 msgid "Add a point" msgstr "Legg til punkt" -#: gis_data_editor.php:270 +#: gis_data_editor.php:268 #, php-format msgid "Linestring %d:" msgstr "Linjestreng %d:" -#: gis_data_editor.php:273 gis_data_editor.php:350 +#: gis_data_editor.php:271 gis_data_editor.php:348 msgid "Outer ring:" msgstr "Ytre ring:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:273 gis_data_editor.php:350 #, php-format msgid "Inner ring %d:" msgstr "Indre ring %d:" -#: gis_data_editor.php:312 +#: gis_data_editor.php:310 msgid "Add a linestring" msgstr "Legg til linjestreng" -#: gis_data_editor.php:313 gis_data_editor.php:392 js/messages.php:514 +#: gis_data_editor.php:311 gis_data_editor.php:390 js/messages.php:515 msgid "Add an inner ring" msgstr "Legg til en indre ring" -#: gis_data_editor.php:334 +#: gis_data_editor.php:332 #, php-format msgid "Polygon %d:" msgstr "Polygon %d:" -#: gis_data_editor.php:398 +#: gis_data_editor.php:396 msgid "Add a polygon" msgstr "Legg til et polygon" -#: gis_data_editor.php:404 +#: gis_data_editor.php:402 msgid "Add geometry" msgstr "Legg til geometri" -#: gis_data_editor.php:410 js/messages.php:345 libraries/DbSearch.php:462 -#: libraries/DisplayResults.php:1783 libraries/browse_foreigners.lib.php:142 +#: gis_data_editor.php:408 js/messages.php:346 libraries/DbSearch.php:462 +#: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:151 #: libraries/display_export.lib.php:404 libraries/display_export.lib.php:410 -#: libraries/display_import.lib.php:403 libraries/index.lib.php:42 -#: libraries/insert_edit.lib.php:1547 libraries/insert_edit.lib.php:1584 +#: libraries/display_import.lib.php:403 libraries/index.lib.php:45 +#: libraries/insert_edit.lib.php:1554 libraries/insert_edit.lib.php:1591 #: libraries/normalization.lib.php:168 libraries/normalization.lib.php:825 #: libraries/operations.lib.php:47 libraries/operations.lib.php:114 #: libraries/operations.lib.php:266 libraries/operations.lib.php:309 #: libraries/operations.lib.php:806 libraries/operations.lib.php:877 -#: libraries/operations.lib.php:926 libraries/operations.lib.php:1336 -#: libraries/operations.lib.php:1653 +#: libraries/operations.lib.php:926 libraries/operations.lib.php:1339 +#: libraries/operations.lib.php:1656 #: libraries/plugins/auth/AuthenticationCookie.php:239 #: libraries/replication_gui.lib.php:124 libraries/replication_gui.lib.php:163 #: libraries/replication_gui.lib.php:328 libraries/replication_gui.lib.php:465 @@ -484,12 +485,12 @@ msgstr "Legg til geometri" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2343 -#: libraries/server_privileges.lib.php:3114 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_user_groups.lib.php:285 -#: libraries/sql_query_form.lib.php:369 libraries/sql_query_form.lib.php:429 -#: libraries/tracking.lib.php:536 libraries/tracking.lib.php:656 +#: libraries/server_privileges.lib.php:2345 +#: libraries/server_privileges.lib.php:3116 +#: libraries/server_privileges.lib.php:3735 +#: libraries/server_user_groups.lib.php:290 +#: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 +#: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 #: prefs_manage.php:280 prefs_manage.php:358 #: templates/columns_definitions/column_definitions_form.phtml:64 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 @@ -502,11 +503,11 @@ msgstr "Legg til geometri" msgid "Go" msgstr "Gjør" -#: gis_data_editor.php:413 +#: gis_data_editor.php:411 msgid "Output" msgstr "Utdata" -#: gis_data_editor.php:416 +#: gis_data_editor.php:414 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -518,7 +519,7 @@ msgstr "" msgid "Succeeded" msgstr "Vellykket" -#: import.php:59 js/messages.php:588 +#: import.php:59 js/messages.php:589 msgid "Failed" msgstr "Feilet" @@ -580,7 +581,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "Kan ikke starte importerings-tilleggene, kontroller din installasjon!" -#: import.php:669 libraries/sql.lib.php:744 libraries/sql.lib.php:1468 +#: import.php:669 libraries/sql.lib.php:754 libraries/sql.lib.php:1485 #, php-format msgid "Bookmark %s has been created." msgstr "Bokmerke %s har blitt opprettet." @@ -612,7 +613,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "Kan ikke laste importprogresjon." -#: import_status.php:111 js/messages.php:444 libraries/Util.php:797 +#: import_status.php:111 js/messages.php:445 libraries/Util.php:797 #: libraries/export.lib.php:523 #: libraries/plugins/schema/ExportRelationSchema.php:301 user_password.php:268 msgid "Back" @@ -634,11 +635,10 @@ msgstr "" "på %s." #: index.php:161 -#| msgid "General Settings" msgid "General settings" msgstr "Generelle innstillinger" -#: index.php:191 js/messages.php:617 +#: index.php:191 js/messages.php:618 #: libraries/display_change_password.lib.php:54 #: libraries/display_change_password.lib.php:57 user_password.php:262 msgid "Change password" @@ -740,7 +740,11 @@ msgstr "Brukerstøtte" msgid "List of changes" msgstr "Endringsliste" -#: index.php:453 +#: index.php:438 libraries/server_plugins.lib.php:83 +msgid "License" +msgstr "" + +#: index.php:460 msgid "" "You are connected as 'root' with no password, which corresponds to the " "default MySQL privileged account. Your MySQL server is running with this " @@ -752,7 +756,7 @@ msgstr "" "standardoppsett, og er dermed sårbar for angrep. Du bør fikse dette " "sikkerhetshullet ved å sette passord for brukeren 'root'." -#: index.php:470 +#: index.php:477 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -761,7 +765,7 @@ msgstr "" "Du har slått på mbstring.func_overload i din PHP konfigurasjon. Dette er " "ikke kompatibelt med phpMyAdmin og kan medføre at data ødelegges!" -#: index.php:485 +#: index.php:492 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -771,7 +775,7 @@ msgstr "" "mangetegns tegnsett. Uten mbstring-tillegget kan ikke phpMyAdmin splitte " "strenger korrekt, dette kan medføre uønskede resultater." -#: index.php:502 +#: index.php:509 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than " @@ -783,7 +787,7 @@ msgstr "" "cookie gyldighet konfigurert i phpMyAdmin. På grunn av dette så kan " "innlogging utløpe raskere enn det som er satt i phpMyAdmin." -#: index.php:521 +#: index.php:528 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -792,12 +796,12 @@ msgstr "" "phpMyAdmin. Innloggingen din vil dermed utløpe raskere enn det som er satt i " "phpMyAdmin." -#: index.php:537 +#: index.php:544 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Konfigurasjonsfilen trenger nå et hemmelig passordfrase (blowfish_secret)." -#: index.php:550 +#: index.php:557 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. It is strongly recommended to remove it " @@ -809,7 +813,7 @@ msgstr "" "phpMyAdmin har blitt konfigurert. Ellers kan uautoriserte personer få tak i " "konfigurasjonen din og endre serveren." -#: index.php:566 +#: index.php:573 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -818,14 +822,14 @@ msgstr "" "Lagring av phpMyAdmin-oppsett er ikke konfigurert riktig i innstillingene, " "og noen tilleggsfunksjoner er deaktivert. %sFinn ut hvorfor%s. " -#: index.php:573 +#: index.php:580 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "Alternativt kan du gå til 'Operasjoner'-fanen for en database og sette det " "opp der." -#: index.php:619 +#: index.php:626 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -834,7 +838,7 @@ msgstr "" "Din PHP MySQL bibliotekfilversjon %s er forskjellig fra din MySQL " "tjenerversjon %s. Dette kan forårsake uforutsett oppførsel." -#: index.php:647 +#: index.php:654 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -856,7 +860,7 @@ msgstr "Bekreft" msgid "Do you really want to execute \"%s\"?" msgstr "Vil du virkelig utføre \"%s\"?" -#: js/messages.php:45 libraries/mult_submits.lib.php:397 +#: js/messages.php:45 libraries/mult_submits.lib.php:402 msgid "You are about to DESTROY a complete database!" msgstr "Du er i ferd med å SLETTE en komplett database!" @@ -996,7 +1000,7 @@ msgid "Save & close" msgstr "Lagre & Lukk" #: js/messages.php:109 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1551 prefs_manage.php:364 +#: libraries/insert_edit.lib.php:1558 prefs_manage.php:364 #: prefs_manage.php:375 msgid "Reset" msgstr "Tilbakestill" @@ -1060,10 +1064,10 @@ msgstr "Vennligst velg kolonne(r) for indexen." msgid "You have to add at least one column." msgstr "Du må sette inn minst en kolonne." -#: js/messages.php:129 libraries/insert_edit.lib.php:1549 +#: js/messages.php:129 libraries/insert_edit.lib.php:1556 #: templates/columns_definitions/column_definitions_form.phtml:159 #: templates/table/index_form.phtml:237 -#: templates/table/relation/common_form.phtml:108 +#: templates/table/relation/common_form.phtml:127 msgid "Preview SQL" msgstr "Forhåndsvis SQL" @@ -1108,8 +1112,8 @@ msgstr "Passordene er ikke like!" msgid "Removing Selected Users" msgstr "Fjern valgte brukere" -#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:461 -#: libraries/tracking.lib.php:831 +#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:471 +#: libraries/tracking.lib.php:841 msgid "Close" msgstr "Lukk" @@ -1137,7 +1141,7 @@ msgstr "Raden er slettet." #. l10n: Other, small valued, queries #: js/messages.php:155 libraries/ServerStatusData.php:130 -#: libraries/server_status_queries.lib.php:148 +#: libraries/server_status_queries.lib.php:150 msgid "Other" msgstr "Annet" @@ -1315,7 +1319,7 @@ msgstr "Spørringer" msgid "Traffic" msgstr "Trafikk" -#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4330 +#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4331 #: libraries/server_status_monitor.lib.php:258 msgid "Settings" msgstr "Innstillinger" @@ -1328,9 +1332,9 @@ msgstr "Legg graf til grid" msgid "Please add at least one variable to the series!" msgstr "Legg minst én variabel til serien!" -#: js/messages.php:216 libraries/DisplayResults.php:1477 +#: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1446,7 +1450,7 @@ msgstr "Endre innstillinger" msgid "Current settings" msgstr "Nåværende innstillinger" -#: js/messages.php:253 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:253 #, fuzzy #| msgid "Report title" msgid "Chart title" @@ -1535,21 +1539,21 @@ msgstr "Analyserer…" msgid "Explain output" msgstr "Forklar utdata" -#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4326 +#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4327 #: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:396 #: libraries/rte/rte_list.lib.php:104 -#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:282 -#: libraries/tracking.lib.php:1623 +#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:284 +#: libraries/tracking.lib.php:1639 msgid "Status" msgstr "Status" -#: js/messages.php:289 js/messages.php:870 +#: js/messages.php:289 js/messages.php:862 #: libraries/plugins/export/ExportHtmlword.php:484 #: libraries/plugins/export/ExportOdt.php:600 #: libraries/plugins/export/ExportTexytext.php:445 #: libraries/plugins/export/PMA_ExportPdf.php:314 #: libraries/rte/rte_list.lib.php:93 -#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:239 +#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:243 msgid "Time" msgstr "Tid" @@ -1637,10 +1641,10 @@ msgstr "" "standardkonfigurasjon…" #: js/messages.php:322 libraries/Menu.php:355 libraries/Menu.php:457 -#: libraries/Menu.php:578 libraries/Util.php:4329 libraries/Util.php:4344 -#: libraries/Util.php:4361 libraries/config/messages.inc.php:260 +#: libraries/Menu.php:578 libraries/Util.php:4330 libraries/Util.php:4345 +#: libraries/Util.php:4362 libraries/config/messages.inc.php:260 #: libraries/display_import.lib.php:108 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:241 +#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:241 #: setup/frames/menu.inc.php:26 msgid "Import" msgstr "Importer" @@ -1699,7 +1703,13 @@ msgstr "Test" msgid "Formatting SQL…" msgstr "Formaterer SQL…" -#: js/messages.php:346 libraries/server_variables.lib.php:159 +#: js/messages.php:343 +#, fuzzy +#| msgid "Bad parameters!" +msgid "No parameters found!" +msgstr "Feil parametere!" + +#: js/messages.php:347 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 @@ -1710,71 +1720,71 @@ msgstr "Formaterer SQL…" msgid "Cancel" msgstr "Avbryt" -#: js/messages.php:349 libraries/Header.php:457 +#: js/messages.php:350 libraries/Header.php:457 msgid "Page-related settings" msgstr "Side-relaterte innstillinger" -#: js/messages.php:350 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:351 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:353 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:354 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:124 msgid "Loading…" msgstr "Laster…" -#: js/messages.php:354 +#: js/messages.php:355 #, fuzzy #| msgid "Request Aborted!!" msgid "Request aborted!!" msgstr "Forespørsel avbrutt!!" -#: js/messages.php:355 +#: js/messages.php:356 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "Prosessforespørsel" -#: js/messages.php:356 +#: js/messages.php:357 #, fuzzy #| msgid "Request Failed!!" msgid "Request failed!!" msgstr "Forespørsel avbrutt!!" -#: js/messages.php:357 +#: js/messages.php:358 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "Feil i prosesseringsforespørsel" -#: js/messages.php:358 +#: js/messages.php:359 #, php-format msgid "Error code: %s" msgstr "Feilkode: %s" -#: js/messages.php:359 +#: js/messages.php:360 #, php-format msgid "Error text: %s" msgstr "Feilmelding: %s" -#: js/messages.php:360 libraries/db_common.inc.php:73 +#: js/messages.php:361 libraries/db_common.inc.php:73 #: libraries/db_table_exists.lib.php:33 libraries/server_databases.lib.php:462 msgid "No databases selected." msgstr "Ingen databaser er valgt." -#: js/messages.php:361 +#: js/messages.php:362 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "Dropper kolonne" -#: js/messages.php:362 +#: js/messages.php:363 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "Legg til primærnøkkel" -#: js/messages.php:363 +#: js/messages.php:364 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1784,172 +1794,172 @@ msgstr "Legg til primærnøkkel" msgid "OK" msgstr "OK" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Click to dismiss this notification" msgstr "Klikk for å overse dette varselet" -#: js/messages.php:367 +#: js/messages.php:368 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "Endrer databasenes navn" -#: js/messages.php:368 +#: js/messages.php:369 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "Kopierer database" -#: js/messages.php:369 +#: js/messages.php:370 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "Endrer tegnsett" -#: js/messages.php:373 libraries/Util.php:3289 +#: js/messages.php:374 libraries/Util.php:3289 msgid "Enable foreign key checks" msgstr "Slå på kontroll av fremmednøkler" -#: js/messages.php:376 +#: js/messages.php:377 msgid "Failed to get real row count." msgstr "Klarte ikke hente ekte antall rader." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Searching" msgstr "Søker" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide search results" msgstr "Skjul søkeresultater" -#: js/messages.php:381 +#: js/messages.php:382 msgid "Show search results" msgstr "Vis søkeresultater" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Browsing" msgstr "Leser" -#: js/messages.php:383 +#: js/messages.php:384 msgid "Deleting" msgstr "Sletter" -#: js/messages.php:387 +#: js/messages.php:388 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:388 libraries/DisplayResults.php:4832 -#: libraries/DisplayResults.php:5091 libraries/Menu.php:347 -#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3709 -#: libraries/Util.php:3710 libraries/Util.php:4328 libraries/Util.php:4343 -#: libraries/Util.php:4360 libraries/config/messages.inc.php:254 +#: js/messages.php:389 libraries/DisplayResults.php:4850 +#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 +#: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 +#: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2448 -#: libraries/server_privileges.lib.php:2527 -#: libraries/server_privileges.lib.php:2873 -#: libraries/server_privileges.lib.php:3532 -#: libraries/server_status_monitor.lib.php:321 prefs_manage.php:306 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2875 +#: libraries/server_privileges.lib.php:3543 +#: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 msgid "Export" msgstr "Eksporter" -#: js/messages.php:391 libraries/rte/rte_routines.lib.php:742 +#: js/messages.php:392 libraries/rte/rte_routines.lib.php:742 msgid "ENUM/SET editor" msgstr "ENUM/SET-editor" -#: js/messages.php:392 +#: js/messages.php:393 #, php-format msgid "Values for column %s" msgstr "Verdier for kolonne %s" -#: js/messages.php:393 +#: js/messages.php:394 msgid "Values for a new column" msgstr "Verdier for ny kolonne" -#: js/messages.php:394 +#: js/messages.php:395 msgid "Enter each value in a separate field." msgstr "Skriv hver verdi i et eget felt." -#: js/messages.php:395 +#: js/messages.php:396 #, php-format msgid "Add %d value(s)" msgstr "Legg til %d verdi(er)" -#: js/messages.php:399 +#: js/messages.php:400 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:403 +#: js/messages.php:404 msgid "Hide query box" msgstr "Skjul spørringsboks" -#: js/messages.php:404 +#: js/messages.php:405 msgid "Show query box" msgstr "Vis spørringsboks" -#: js/messages.php:405 libraries/Console.php:88 libraries/Console.php:217 -#: libraries/DisplayResults.php:3457 libraries/DisplayResults.php:4816 +#: js/messages.php:406 libraries/Console.php:88 libraries/Console.php:217 +#: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4834 #: libraries/Index.php:721 libraries/Util.php:727 libraries/Util.php:1238 -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:119 +#: libraries/server_user_groups.lib.php:121 #: libraries/server_variables.lib.php:242 #: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 msgid "Edit" msgstr "Rediger" -#: js/messages.php:406 libraries/Console.php:89 libraries/DbSearch.php:360 -#: libraries/DisplayResults.php:3526 libraries/DisplayResults.php:4800 +#: js/messages.php:407 libraries/Console.php:89 libraries/DbSearch.php:360 +#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4818 #: libraries/central_columns.lib.php:854 #: libraries/central_columns.lib.php:1200 libraries/display_export.lib.php:227 -#: libraries/server_user_groups.lib.php:129 -#: libraries/sql_query_form.lib.php:416 libraries/tracking.lib.php:480 +#: libraries/server_user_groups.lib.php:131 +#: libraries/sql_query_form.lib.php:417 libraries/tracking.lib.php:490 #: setup/frames/index.inc.php:187 setup/frames/index.inc.php:295 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Slett" -#: js/messages.php:407 libraries/DisplayResults.php:915 -#: libraries/DisplayResults.php:923 +#: js/messages.php:408 libraries/DisplayResults.php:919 +#: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d er ikke et gyldig radnummer." -#: js/messages.php:408 -#: libraries/controllers/table/TableSearchController.php:435 -#: libraries/controllers/table/TableSearchController.php:920 -#: libraries/sql.lib.php:193 tbl_change.php:159 +#: js/messages.php:409 +#: libraries/controllers/table/TableSearchController.php:432 +#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "Se de eksterne verdiene" -#: js/messages.php:409 +#: js/messages.php:410 msgid "No auto-saved query" msgstr "Ingen autolagret spørring" -#: js/messages.php:410 +#: js/messages.php:411 #, php-format msgid "Variable %d:" msgstr "Variabel %d:" -#: js/messages.php:413 libraries/normalization.lib.php:889 +#: js/messages.php:414 libraries/normalization.lib.php:889 msgid "Pick" msgstr "Velg" -#: js/messages.php:414 +#: js/messages.php:415 msgid "Column selector" msgstr "Kolonnevelger" -#: js/messages.php:415 +#: js/messages.php:416 msgid "Search this list" msgstr "Søk i denne listen" -#: js/messages.php:417 +#: js/messages.php:418 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1958,15 +1968,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:420 +#: js/messages.php:421 msgid "See more" msgstr "Se mer" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Are you sure?" msgstr "Er du sikker?" -#: js/messages.php:423 +#: js/messages.php:424 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1974,51 +1984,51 @@ msgstr "" "Denne handlingen kan endre definisjonen av enkelte kolonner.
Er du " "sikker på at du vil fortsette?" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "Fortsett" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "Legg til primærnøkkel" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "Primærnøkkel lagt til." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "Tar deg videre til neste trinn…" -#: js/messages.php:433 +#: js/messages.php:434 #, 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:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "Slutten på dette trinnet" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "Andre trinn for normaliseringen (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Utført" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "Bekreft delvise avhengigheter" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "Valgte delvise avhengigheter er følgende:" -#: js/messages.php:440 +#: js/messages.php:441 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2026,19 +2036,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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "Ingen delvise avhengigheter er valgt!" -#: js/messages.php:446 +#: js/messages.php:447 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:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "Skjul listen over delvise avhengigheter" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2046,172 +2056,172 @@ msgstr "" "Slapp av! Dette kan ta noen sekunder, basert på datamengden og antall " "kolonner i tabellen." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "Trinn" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "Følgende handlinger vil bli utført:" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "SLETT kolonnene %s fra tabellen %s" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "Lag følgende tabell" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "Tredje trinn av normaliseringen (3NF)" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "Bekreft transitive avhengigheter" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "Følgende er valgte avhengigheter:" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "Ingen avhengigheter er valgt!" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Lagre" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Skjul søkekriterier" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Vis søkekriterier" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "Områdesøk" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "Kolonne maksimum:" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "Kolonne minimum:" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "Minimumsverdi:" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "Maksimumsverdi:" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "Skjul kriterier for søk- og erstatt" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "Vis kriteriene for søk og erstatt" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "Hvert punkt representerer en datarad." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "Ved å ha musen over punktet vises dets etikett." -#: js/messages.php:486 +#: js/messages.php:487 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:488 +#: js/messages.php:489 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:490 +#: js/messages.php:491 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:492 +#: js/messages.php:493 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:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "Velg to kolonner" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "Velg to forskjellige kolonner" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "Datapunktinnhold" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Kopier" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Punkt" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Linjestreng" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Polygon" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometri" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Indre ring" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Ytre ring:" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "Vil du kopiere krypteringsnøkkel?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "Krypteringsnøkkel" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2219,24 +2229,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:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Velg referert nøkkel" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Velg fremmednøkkel" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "Velg primærnøkkelen eller en unik nøkkel!" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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:532 +#: js/messages.php:533 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?" @@ -2244,77 +2254,77 @@ msgstr "" "Du har ikke lagret endringene i utseendet. De vil forsvinne om du ikke " "lagrer dem. Ønsker du å fortsette?" -#: js/messages.php:535 +#: js/messages.php:536 msgid "Page name" msgstr "Sidenummer" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Lagre side" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Åpne siden" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "Slett side" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Ikke navngitt" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "Vennligst velg en side for å fortsette" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "Vennligst tast inn et gyldig side navn" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "Ønsker du å lagre endringene i den gjeldende siden?" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "Slettet side" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "Eksporter relasjonsskjema" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Endringene er lagret" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "Legg til valg for kolonne \"%s\"." -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "%d objekt(er) opprettet." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Send" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "Trykk Escape for å avbryte endring." -#: js/messages.php:557 +#: js/messages.php:558 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?" @@ -2322,15 +2332,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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "Dra for å endre rekkefølgen." -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "Klikk for å sortere resultatene etter denne kolonnen." -#: js/messages.php:563 +#: js/messages.php:564 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 " @@ -2340,26 +2350,26 @@ msgstr "" "mellom STIGENDE/ SYNKENDE
- Ctrl + klikk eller Alt + klikk (Mac: Shift " "+ Option + Klikk). For å fjerne kolonnen fra BESTILLT AV-leddet" -#: js/messages.php:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "Klikk for å markere/fjern markering." -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "Dobbelklikk for å kopiere kolonnenavn." -#: js/messages.php:570 +#: js/messages.php:571 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:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Vis alle" -#: js/messages.php:574 +#: js/messages.php:575 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." @@ -2368,11 +2378,11 @@ msgstr "" "valgene Endring, avkrysningsruten, redigere, kopiere og slette koblinger " "virker kanskje ikke etter lagring." -#: js/messages.php:578 +#: js/messages.php:579 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:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2380,125 +2390,96 @@ msgstr "" "Ønsker du virkelig å se alle radene? For et stort bord kan dette krasje " "nettleseren." -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "Opprinnelig lengde" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "avbryt" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Avbrutt" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "Vellykket" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "Import status" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Legg filene her" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "Velg database først" -#: js/messages.php:598 +#: js/messages.php:599 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:603 +#: js/messages.php:604 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:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "Gå til link:" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "Kopier kolonnenavn." -#: js/messages.php:612 +#: js/messages.php:613 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:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Generer passord" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Generer" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "Mer" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Vis panel" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Skjul panel" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "Vis skjulte elementer i navigasjonstreet." -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "Lenke med hovedpanelet" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "Fjern lenke fra hovedpanelet" -#: js/messages.php:629 -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:631 -#, 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:632 -msgid "tables" -msgstr "tabeller" - -#: js/messages.php:633 -msgid "views" -msgstr "visning" - -#: js/messages.php:634 -msgid "procedures" -msgstr "prosedyrer" - -#: js/messages.php:635 -msgid "events" -msgstr "hendelse" - -#: js/messages.php:636 -msgid "functions" -msgstr "funksjoner" - -#: js/messages.php:640 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:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2508,57 +2489,57 @@ msgstr "" "versjon er %s, utgitt den %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", siste tilgjengelige versjon:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "er oppdatert" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "Opprett view" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Tjenerport" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Send feilrapport" -#: js/messages.php:657 +#: js/messages.php:649 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:659 +#: js/messages.php:651 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Endre Rapportinnstillinger" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Vis Rapportdetaljer" -#: js/messages.php:663 +#: js/messages.php:655 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:667 +#: js/messages.php:659 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2567,62 +2548,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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "Noen feil har blitt oppdaget på serveren!" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "Vennligst se nederst i dette vinduet." -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "Ignorer alle" -#: js/messages.php:689 +#: js/messages.php:681 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:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "Utfør denne spørring igjen?" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "Vil du virkelig slette dette bokmerket?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Tabellkommentarer" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Skjul søkeresultater" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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 " @@ -2632,291 +2613,291 @@ 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "Forrige" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "Neste" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "I dag" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "Januar" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "Februar" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "Mars" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "April" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Mai" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "Juni" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "Juli" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "August" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "September" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "Oktober" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "November" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "Desember" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Des" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "Søndag" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "Mandag" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "Tirsdag" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "Onsdag" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "Torsdag" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "Fredag" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "Lørdag" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "Søn" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Man" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Tir" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Ons" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Tor" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Fre" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Lør" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "Søndag" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "Man" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "Tir" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "Ons" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "Tor" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "Fre" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "Lør" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "Uke" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "kalender-måned-år" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "ingen" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Time" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Minutt" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Sekund" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "Vennligst ordne dette feltet" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "Vennligst tast inn en gyldig e-post adresse" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "Vennligst tast inn en gyldig URL" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "Vennligst tast inn en gyldig dato" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "Vennligst tast inn en gyldig dato ( ISO )" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "Vennligst tast inn et gyldig tall" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "Vennligst tast inn et gyldig kreditkort nummer" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "Vennligst oppgi kun tall" @@ -2924,49 +2905,49 @@ msgstr "Vennligst oppgi kun tall" msgid "Please enter the same value again" msgstr "Vennligst tast inn den samme verdien igjen" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "Vennligst tast inn minst {0} tegn" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "Vennligst tast inn en verdi mellom {0} og {1}" -#: js/messages.php:898 +#: js/messages.php:917 #, 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:899 +#: js/messages.php:922 #, 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:901 +#: js/messages.php:928 #, 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:902 +#: js/messages.php:933 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "Vennligst tast inn et gyldig tall!" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Feil" @@ -3053,11 +3034,12 @@ msgstr "Spør igjen" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3099,7 +3081,7 @@ msgstr "Gjennom gjeldende sesjon" msgid "Explain" msgstr "Forklar" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Profilering" @@ -3133,8 +3115,8 @@ msgid "History" msgstr "Historikk" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3302,7 +3284,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Bytt til kopiert tabell" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3310,25 +3292,25 @@ msgstr "" "Tjeneren svarer ikke (eller den lokale MySQL tjenerens sokkel er ikke " "korrekt konfigurert)." -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "Tjeneren svarer ikke." -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "Vennligst sjekk privilegiene på mappen som inneholder databasen." -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Detaljer…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Tilkoblingen for kontrollbrukeren som definert i din konfigurasjon feilet." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3338,8 +3320,8 @@ msgstr "" msgid "Ascending" msgstr "Stigende" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3484,8 +3466,8 @@ msgstr[0] "%1$s treff i %2$s" msgstr[1] "%1$s treff i %2$s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3529,161 +3511,162 @@ msgstr "Avmarker alle" msgid "Inside column:" msgstr "I kolonne:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "Lagre redigerte data" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "Tilbakestill kolonnerekkefølge" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "Filter rader" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "Søk i denne tabellen" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "Start" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "Forrige" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "Neste" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "Siste" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Alle" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Antall rader:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Sorter etter nøkkel" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "Delvise tekster" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "Hele tekster" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Relasjonsnøkkel" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Disable foreign key checks" msgid "Display column for relations" msgstr "Slå av kontroll av fremmednøkler" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "Vis binært innhold" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "Vis BLOB innhold" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "Skjul nettlesertransformasjon" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "Velkjent Tekst" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "Velkjent Binær" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "Raden er slettet." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Avslutt" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Kan være unøyaktig. Se [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "Kommandoen/spørringen er utført." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "Denne visningen har minst dette antall rader. Sjekk %sdocumentation%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "Viser radene %1s - %2s" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d total, %2$d i spørring" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "%d totalt" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "Spørring tok %01.4f sekunder." -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Med avkrysset:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3691,25 +3674,25 @@ msgstr "Med avkrysset:" msgid "Check all" msgstr "Merk alle" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Utskriftsvennlig forhåndsvisning" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Spørringsresultatshandlinger" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Vis diagram" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "Visualiser GIS data" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "Link ikke funnet!" @@ -3809,19 +3792,19 @@ msgstr "Ingen indeks definert!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Indekser" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3830,24 +3813,24 @@ msgid "Action" msgstr "Handling" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Nøkkel" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Unik" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Pakket" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Kardinalitet" @@ -3855,8 +3838,8 @@ msgstr "Kardinalitet" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3866,8 +3849,8 @@ msgid "Collation" msgstr "Sammenligning" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3883,15 +3866,15 @@ msgstr "Primærnøkkelen har blitt slettet." msgid "Index %s has been dropped." msgstr "Indeksen %s har blitt slettet." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Slett" @@ -3930,12 +3913,13 @@ msgstr "Vis" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3943,7 +3927,7 @@ msgstr "Tabell" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3952,8 +3936,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3961,41 +3945,41 @@ msgid "Search" msgstr "Søk" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Sett inn" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilegier" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Operasjoner" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Overvåkning" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4006,16 +3990,16 @@ msgstr "Triggere" msgid "Database seems to be empty!" msgstr "Databasen ser ut til å være tom!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Spørring ved eksempel (Query by Example)" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rutiner" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4023,20 +4007,20 @@ msgstr "Rutiner" msgid "Events" msgstr "Hendelser" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Designer" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "Senter kolonner" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Databaser" @@ -4047,33 +4031,33 @@ msgid "User accounts" msgstr "Brukere" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Binærlogg" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikering" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Variabler" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Tegnsett" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Motorer" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "Programtillegg" @@ -4370,7 +4354,7 @@ msgstr "Kan ikke endre indeks til PRIMARY!" msgid "No index parts defined!" msgstr "Ingen indeksdeler definert!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4850,37 +4834,37 @@ msgstr "Funksjonaliteten %s er påvirket av en kjent feil, se %s" msgid "Click to toggle" msgstr "Klikk for å endre" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Bla gjennom datamaskinen:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Merk fra opplastingskatalogen på vevtjeneren %s:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Katalogen du anga for opplasting kan ikke nåes." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "Det er ingen filer å laste opp!" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Tøm" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "Utfør" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Skriv ut" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "Brukere" @@ -5046,8 +5030,8 @@ msgid "Add new column" msgstr "Legg til ny kolonne" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5110,19 +5094,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "Du burde oppgradere til %s %s eller nyere." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "mulig sikkerhetshull" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "numerisk nøkkel oppdaget" @@ -6098,7 +6082,7 @@ msgid "Remember file name template" msgstr "Husk filnavnmal" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Legg til AUTO_INCREMENT verdi" @@ -6139,7 +6123,7 @@ msgstr "Mangler phpMyAdmin konfigurasjonslagertabeller" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Legg til %s" @@ -8171,7 +8155,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 #, fuzzy #| msgid "Hide query box" msgid "Retain query box" @@ -8508,112 +8492,35 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Open Document tekst" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "Favotittlisten er full!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Tabellen %s har blitt tømt." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "Visningen %s har blitt slettet" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "Tabellen %s har blitt slettet" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "Favotittlisten er full!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "ukjent" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" - -#: libraries/controllers/TableStructureController.php:250 -#, fuzzy -#| msgid "No rows selected" -msgid "No column selected." -msgstr "Ingen rader valgt" - -#: libraries/controllers/TableStructureController.php:484 -#, 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.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "Tabellen %1$s har blitt endret." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -#, fuzzy -#| msgid "Gather errors" -msgid "Query error" -msgstr "Samle feilmeldinger" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Endre" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Indeks" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Fulltekst" - -#: libraries/controllers/TableStructureController.php:1201 -#, fuzzy -#| msgid "Browse distinct values" -msgid "Distinct values" -msgstr "Se gjennom distinkte verdier" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8629,6 +8536,14 @@ msgstr "" msgid "No data to display" msgstr "Ingen data funnet" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "Tabellen %1$s har blitt endret." + #: libraries/controllers/table/TableRelationController.php:212 #, fuzzy #| msgid "Thread %s was successfully killed." @@ -8641,19 +8556,88 @@ msgstr "Tråd %s ble avsluttet med suksess." msgid "Internal relations were successfully updated." msgstr "Intern relasjon lagt til" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "Tabellsøk" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "Utvidet søk" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Finn og erstatt" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" + +#: libraries/controllers/table/TableStructureController.php:251 +#, fuzzy +#| msgid "No rows selected" +msgid "No column selected." +msgstr "Ingen rader valgt" + +#: libraries/controllers/table/TableStructureController.php:485 +#, 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/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +#, fuzzy +#| msgid "Gather errors" +msgid "Query error" +msgstr "Samle feilmeldinger" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Endre" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Indeks" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Fulltekst" + +#: libraries/controllers/table/TableStructureController.php:1209 +#, fuzzy +#| msgid "Browse distinct values" +msgid "Distinct values" +msgstr "Se gjennom distinkte verdier" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8663,7 +8647,7 @@ msgstr "%s tillegget mangler. Kontroller din PHP konfigurasjon." msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Ingen endring" @@ -8736,7 +8720,7 @@ msgstr "Opprett" msgid "Create database:" msgstr "Opprett ny database" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Ingen privilegier" @@ -9517,28 +9501,28 @@ msgid "Dump has been saved to file %s." msgstr "Dump har blitt lagret til filen %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerte ett tomt resultat (m.a.o. ingen rader)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Følgende strukturer har enten blitt opprettet eller endret. Her kan du:" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 #, fuzzy #| msgid "View a structure`s contents by clicking on its name" msgid "View a structure's contents by clicking on its name." msgstr "Vis en strukturs innhold ved å klikke på dens navn" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -9548,53 +9532,53 @@ msgstr "" "Endre noen av dens innstillinger ved å klikke på den tilhørende " "\"Innstillinger\" link" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link." msgstr "Endre dens struktur ved å følge \"Struktur\" linken" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "Gå til database" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Mangler data for %s" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "Gå til tabell" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Kun struktur" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" msgstr "Gå til visning" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "Lag en indeks på %s kolonner" @@ -9617,7 +9601,7 @@ msgstr "Funksjon" msgid "Binary" msgstr "Binær" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 #, fuzzy #| msgid "Because of its length,
this column might not be editable" msgid "Because of its length,
this column might not be editable." @@ -9625,65 +9609,65 @@ msgstr "" "På grunn av sin lengde,
så vil muligens denne kolonnen ikke være " "redigerbar" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Binær - må ikke redigeres" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Eller" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "webtjener opplastingskatalog" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "Rediger/Sett inn" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Restarte innsettinga med %s rader" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "og så" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Sett inn som ny rad" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "Sett inn som ny rad og ignorer feil" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "Viser SQL spørring" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Returner" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Sett inn en ny post" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Tilbake til denne siden" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Rediger neste rad" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9693,7 +9677,7 @@ msgstr "" "Bruk TAB tasten for å flytte fra verdi til verdi, eller CTRL+piltastene for " "å bevege deg hvor som helst" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9705,11 +9689,11 @@ msgstr "" msgid "Value" msgstr "Verdi" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "Viser SQL spørring" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "Insatt rad id: %1$d" @@ -9725,45 +9709,45 @@ msgstr "Ingen" msgid "Convert to Kana" msgstr "Konverter til Kana" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table prefix:" msgstr "Erstatt tabellprefiks" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Copy table with prefix" msgid "Copy table with prefix:" msgstr "Kopier tabell med prefiks" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 #, fuzzy #| msgid "Fr" msgid "From" msgstr "Fre" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Apply index(s)" msgid "Add table prefix:" msgstr "Utfør indeks(er)" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 #, fuzzy #| msgid "Apply index(s)" msgid "Add prefix" msgstr "Utfør indeks(er)" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -9995,8 +9979,8 @@ msgstr "Prosedyrer" msgid "Views:" msgstr "Visning" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Vis" @@ -10038,22 +10022,15 @@ msgstr[0] "" msgstr[1] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "Alter table order by" -msgid "Filter databases by name or regex" -msgstr "Endre tabellrekkefølge ved" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 msgid "Clear fast filter" msgstr "Fjern hurtigfilter" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "Alter table order by" -msgid "Filter by name or regex" -msgstr "Endre tabellrekkefølge ved" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -10458,7 +10435,7 @@ msgstr "Endre databasens navn til" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10469,7 +10446,7 @@ msgstr "Du har ikke nok rettigheter til å være her nå!" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -10489,18 +10466,18 @@ msgstr "Fjern database" msgid "Drop the database (DROP)" msgstr "Drop databasen (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Kun struktur" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Struktur og data" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Bare data" @@ -10514,7 +10491,7 @@ msgstr "Kopier databasen til" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE før kopiering" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Legg til begrensninger" @@ -10554,61 +10531,61 @@ msgstr "Lagringsmotor" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Kopier tabell til (database.tabell)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Bytt til kopiert tabell" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Tabellvedlikehold" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Analyser tabell" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Kontroller tabell" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Kontroller tabell" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Defragmenter tabell" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "Tabelen %s har blitt oppfrisket." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "Oppfrisk tabellen (\"FLUSH\")" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Optimiser tabell" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Reparer tabell" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 #, fuzzy @@ -10616,105 +10593,105 @@ msgstr "Reparer tabell" msgid "Delete data or table" msgstr "Slett overvåkningsdata for denne tabellen" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 #, fuzzy #| msgid "Go to database" msgid "Delete the table (DROP)" msgstr "Gå til database" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Analyser" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Kontroller" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Optimaliser" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Gjenoppbygg" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Reparer" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "Lukk" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "Partisjonsvedlikehold" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "Partisjon %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "Fjern partisjonering" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Sjekk referanseintegritet:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Kan ikke flytte tabellen til samme navn!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Kan ikke kopiere tabellen til samme navn!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabellen %s har blitt flyttet til %s." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabellen %s er kopiert til %s." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabellen %s har blitt flyttet til %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabellen %s er kopiert til %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Tabellnavnet er tomt!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10902,7 +10879,7 @@ msgstr "Databasevisningsinnstillinger" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Dataark for tabell" @@ -10928,21 +10905,21 @@ msgstr "Beskrivelse" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Tabellstruktur for tabell" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Visningsstruktur" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Erstatningsstruktur for visning" @@ -11052,7 +11029,7 @@ msgid "Database:" msgstr "Database" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11172,7 +11149,7 @@ msgid "Data creation options" msgstr "Transformasjonsvalg" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -11241,8 +11218,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11250,93 +11227,93 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Missing data for %s" msgid "Metadata" msgstr "Mangler data for %s" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Metadata for %s" msgstr "Mangler data for %s" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Opprettet:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Sist oppdatert:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Sist sjekket:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "i bruk" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Begrensninger for dumpede tabeller" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Begrensninger for tabell" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Begrensninger for dumpede tabeller" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "I tabellene:" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "Ikke bruk AUTO_INCREMENT for nullverdier" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Legg til AUTO_INCREMENT verdi" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPER FOR TABELLEN" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "RELASJONER FOR TABELLEN" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Visningsstruktur" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11597,9 +11574,9 @@ msgstr "Relasjonsskjema" msgid "Table of contents" msgstr "Innholdsfortegnelse" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Ekstra" @@ -11829,63 +11806,63 @@ msgstr "Formaterer tekst som en SQL spørring med syntaksutheving." msgid "Formats text as XML with syntax highlighting." msgstr "Formaterer tekst som en SQL spørring med syntaksutheving." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Feil: relasjoner eksisterer allerede." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "FOREIGN KEY relasjon lagt til" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Feil: Relasjon ikke opprettet." -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Relational features are disabled!" msgstr "Feil: Relasjon ikke opprettet." -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "Intern relasjon lagt til" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "Feil: Relasjon ikke opprettet." -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "FOREIGN KEY relasjon lagt til" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Feil: Relasjon ikke opprettet." -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "Feil: Relasjon ikke opprettet." -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11942,71 +11919,71 @@ msgid "Please see the documentation on how to update your column_info table. " msgstr "" "Les i dokumentasjonen hvordan du oppdaterer din Column_comments tabell." -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Lagret SQL-spørring" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL-historie" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 #, fuzzy #| msgid "Persistent connections" msgid "Persistent recently used tables" msgstr "Vedvarende forbindelser" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "Persistent connections" msgid "Persistent favorite tables" msgstr "Vedvarende forbindelser" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Configuration: %s" msgid "Configurable menus" msgstr "Konfigurasjon: %s" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 #, fuzzy #| msgid "Reload navigation frame" msgid "Hide/show navigation items" msgstr "Endre navigasjonsrammen" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Remember table's sorting" msgid "Remembering Designer Settings" msgstr "Husk tabellens sortering" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "Ugyldig eksport-type" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "Raske steg for å sette opp avansert funksjonalitet:" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, fuzzy, php-format #| msgid "" #| "Create the needed tables with the examples/create_tables.sql." @@ -12014,11 +11991,11 @@ msgid "Create the needed tables with the %screate_tables.sql." msgstr "" "Opprett nødvendige tabeller med examples/create_tables.sql." -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "Opprett en pma bruker og gi tilgang til disse tabellene." -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -12026,23 +12003,23 @@ msgstr "" "Slå på avansert funksjonalitet i konfigurasjonsfilen (config.inc.php), f.eks. med eksempel fra config.sample.inc.php." -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Re-logginn til phpMyAdmin for å laste den oppdaterte konfigurasjonsfila." -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "ingen beskrivelse" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -12050,14 +12027,14 @@ msgid "" "configuration storage there." msgstr "Mangler phpMyAdmin konfigurasjonslagertabeller" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Mangler phpMyAdmin konfigurasjonslagertabeller" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -12266,8 +12243,8 @@ msgstr "Brukernavn" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Brukernavn" @@ -12275,7 +12252,7 @@ msgstr "Brukernavn" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Passord" @@ -13015,7 +12992,7 @@ msgstr[1] "%s databasene har blitt slettet." msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Versjon" @@ -13023,103 +13000,99 @@ msgstr "Versjon" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Avslått" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Ingen privilegier." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Inkluder alle privilegier unntatt GRANT." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Tillater lesing av data." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Tillater å legge til og erstatte data." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Tillater endring av data." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Tillater sletting av data." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Tillater oppretting av nye databaser og tabeller." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Tillater sletting av databaser og tabeller." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Tillater oppfrisking av tjenerinnstillinger og oppfrisking av mellomlager." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Tillater avslutting av tjener." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 #, fuzzy #| msgid "Allows viewing processes of all users" msgid "Allows viewing processes of all users." msgstr "Tillater visning av prosessene til alle brukere" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "Tillater import og eksport av data til og fra filer." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "har ingen effekt i denne versjonen av MySQL." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Tillater oppretting og sletting av indekser." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Tillater endring av struktur på eksisterende tabeller." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Gir adgang til komplett liste over databaser." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -13130,22 +13103,22 @@ msgstr "" "avslutting av andre brukeres tråder." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Tillater oppretting av midlertidige tabeller." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Tillater låsing av tabeller for den kjørende tråden." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Trenges av replikasjonsslavene." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Gir tillatelse til brukeren til å spørre hvor replikasjonsslaver eller -" @@ -13154,19 +13127,19 @@ msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Tillater oppretting av nye visninger." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "Tillater å sette opp hendelser for hendelseskalenderen" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 #, fuzzy #| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." @@ -13174,27 +13147,27 @@ msgstr "Tillater opprettelse og sletting av triggere" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Tillater utføring av SHOW CREATE VIEW spørringer." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Tillater oppreting av lagrede rutiner." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Tillater endring og sletting av lagrede rutiner." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "Tillater oppretting, sletting og navneendring av brukerkontoer." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Tillater utføring av lagrede rutiner." @@ -13206,8 +13179,8 @@ msgstr "Ingen" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -13251,12 +13224,12 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Merk: Ved å sette disse til 0 (null) fjernes begrensningen." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Begrenser antall spørringer brukeren kan sende til tjeneren per time." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -13265,19 +13238,19 @@ msgstr "" "kan utføre per time." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "Begrenser antall nye tilkoblinger brukeren kan åpne per time." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "Begrens antall samtidige tilkoblinger brukeren kan ha." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -13285,7 +13258,7 @@ msgid "Routine" msgstr "Rutiner" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -13306,14 +13279,14 @@ msgstr "Tillater utføring av lagrede rutiner." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Tabell-spesifikke privilegier" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -13325,7 +13298,7 @@ msgid "Administration" msgstr "Administrasjon" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Globale privilegier" @@ -13336,15 +13309,15 @@ msgid "Global" msgstr "global" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Databasespesifikke privilegier" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Tillater oppretting av nye tabeller." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Tillater sletting av tabeller." @@ -13367,7 +13340,7 @@ msgid "Native MySQL Authentication" msgstr "Autentisering informasjonskapsler" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Innlogingsinformasjon" @@ -13392,8 +13365,8 @@ msgstr "Brukernavn" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Log name" msgid "Host name" @@ -13415,245 +13388,245 @@ msgstr "Godkjenning" msgid "Password Hashing Method" msgstr "Passordnøkling" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "Passordet til %s er endret." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Du har fjernet privilegiene til %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Legg til bruker" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Brukerdatabase" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "Opprett database med samme navn og gi alle rettigheter." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Gi alle rettigheter på jokertegnavn (username\\_%)." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Gi alle privilegier for databasen \"%s\"." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Brukere som har adgang til \"%s\"" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Visningen %s har blitt slettet" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Rettighet" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "Ingen bruker(e) funnet." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Alle" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "databasespesifikk" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "jokertegn" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "databasespesifikk" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Rediger privilegier" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Tilbakekall" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Rediger tjener" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… behold den gamle." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… slett den gamle fra brukertabellene." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… tilbakekall alle aktive privilegier fra den gamle og slett den etterpå." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… slett den gamle fra brukertabellene og deretter oppfrisk privilegiene." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Endre innloggingsinformasjon / kopiere bruker" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Opprett ny bruker med de samme privilegier og …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Kolonne-spesifikke privilegier" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Fjern valgte brukere" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Tilbakekall alle aktive privilegier fra brukerne og slett dem etterpå." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "Slett databasene som har det samme navnet som brukerne." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "Ingen brukere merket for sletting!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Oppfrisker privilegiene" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "De valgte brukerne har blitt slettet." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Du har oppdatert privilegiene til %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "Sletter %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Oppfriskingen av privilegiene lyktes." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "Brukeren %s finnes fra før!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilegier" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Bruker" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Rediger privilegier" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "Users" msgid "User account" msgstr "Brukere" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Brukeroversikt" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13666,7 +13639,7 @@ msgstr "" "privilegiene tjeneren bruker hvis det er utført manuelle endringer på den. I " "så fall bør du %soppfriske privilegiene%s før du fortsetter." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13685,11 +13658,11 @@ msgstr "" "privilegiene tjeneren bruker hvis det er utført manuelle endringer på den. I " "så fall bør du %soppfriske privilegiene%s før du fortsetter." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "Den valgte brukeren ble ikke funnet i privilegietabellen." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Du har lagt til en ny bruker." @@ -13946,37 +13919,37 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 #, fuzzy #| msgid "Enable highlighting" msgid "Enable charts dragging" msgstr "Aktiver utheving" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 #, fuzzy msgid "Refresh rate" msgstr "Oppdater" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 #, fuzzy #| msgid "CHAR textarea columns" msgid "Chart columns" msgstr "CHAR textarea kolonner" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "Feilbehandling:" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" @@ -14048,7 +14021,7 @@ msgid "Statements" msgstr "Oversikt" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -14081,19 +14054,19 @@ msgstr "Vis åpne tabeller" msgid "Related links:" msgstr "Relasjoner" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Kunne ikke koble til MySQL tjener" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -14103,17 +14076,17 @@ msgstr "" "som overskred verdien av binlog_size og brukte en midlertidig fil for å " "lagre spørringer fra transaksjonen." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Antall transaksjoner som brukte den midlertidige binærloggmellomlageret." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -14125,11 +14098,11 @@ msgstr "" "bør du vurdere å øke tmp_table_size verdien slik at midlertidige tabeller " "blir lagret i minnet og ikke på harddisken." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "Antall midlertidige filer mysqld har opprettet." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -14137,7 +14110,7 @@ msgstr "" "Antall midlertidige tabeller i minnet automatisk opprettet av tjeneren under " "utføriing av spørringer." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -14145,7 +14118,7 @@ msgstr "" "Antall rader skrevet med INSERT DELAYED hvor en eller annen form for feil " "oppstod (mest sannsynlig duplisert nøkkel)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -14153,23 +14126,23 @@ msgstr "" "Antall INSERT DELAYED håndterertråder i bruk. Hver eneste tabell hvor det " "blir brukt INSERT DELAYE får sin egen tråd." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "Antall INSERT DELAYED rader skrevet." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "Antall utførte FLUSH uttrykk." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "Antall interne COMMIT uttrykk." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "Antall ganger en rad ble slettet fra en tabell." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -14179,7 +14152,7 @@ msgstr "" "tabell med et gitt navn. Dette blir kalt oppdaging (discovery). " "Handler_discover indikerer antall ganger tabeller har blitt oppdaget." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -14189,7 +14162,7 @@ msgstr "" "er høyt tyder det på at tjeneren utfører en god del fullindekssøk; for " "eksempel, SELECT col1 FROM foo, da forutsatt at col1 er indeksert." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -14198,7 +14171,7 @@ msgstr "" "er høyt gir dette en god indikasjon på at dine spørringer og tabeller er " "riktig indeksert." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -14209,7 +14182,7 @@ msgstr "" "har sansynligvis mange spørringer som krever at MySQL leser hele tabeller " "eller du har joins som ikke bruker nøkler korrekt." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -14217,7 +14190,7 @@ msgstr "" "Antall forespørsler for å lese den forrige raden i nøkkelrekkefølge. Denne " "lesemetoden er hovedsakelig brukt for å optimalisere ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -14229,7 +14202,7 @@ msgstr "" "har mest sansynlig mange spørringer som krever at MySQL leser hele tabeller " "eller du har joins som som ikke bruker nøkler korrekt." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -14241,37 +14214,37 @@ msgstr "" "tabeller ikke er rett indeksert eller at dine spørringer ikke er skrevet for " "å utnytte de indeksene du har." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "Antall interne ROLLBACK kommandoer." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "Antall forespørsler for å oppdatere en rad i en tabell." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "Antall forespørsler for å sette inn en rad i en tabell." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "Antall sider som inneholder data (endret eller uendret)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "Antall sider for tiden endret." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Antall midlertidige mellomlagersider som det har vært " "oppfriskningsforespørsler på." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "Antall tomme sider." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -14280,7 +14253,7 @@ msgstr "" "Antallet låste sider i InnoDBs mellomlager. Dette er sider som er under " "lesing eller skriving eller ikke kan tømmes eller fjernes av en annen grunn." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -14292,11 +14265,11 @@ msgstr "" "kan også regnes ut som Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "Total størrelse på midlertidig mellomlager i sider." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -14304,7 +14277,7 @@ msgstr "" "Antall \"tilfeldige\" \"read-aheads\" InnoDB startet. Dette skjer når en " "spørring skanner en stor andel av en tabell men i en tilfeldig rekkefølge." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -14312,11 +14285,11 @@ msgstr "" "Antall sekvensielle \"read-aheads\" InnoDB startet. Denne skjer når InnoDB " "utfører en sekvensiell full tabellskanning." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "Antall logiske leseforespørsler InnoDB har utført." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -14324,7 +14297,7 @@ msgstr "" "Antall logiske lesninger som InnoDN ikke kunne tilfredsstille fra " "mellomlageret og måtte utføre en enkelsidelesnining." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -14338,55 +14311,55 @@ msgstr "" "telleren viser antall slike ventinger. Hvis mellomlagerstørrelsen er godt " "innstilt så vil denne verdien være liten." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "Antall skrivinger til InnoDBs midlertidig mellomlager." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "Antall fsync() operasjoner så langt." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "Antall ventende fsync() operasjoner." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "Antall ventende lesinger." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "Antall ventende skrivinger." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "Mengden data lest så langt, i bytes." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "Antall utførte lesninger." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "Antall utførte skrivinger." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "Mengden data skrevet så langt, i bytes." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Antallet dobbeltskrivinger som har blitt utført og antall sider som har " "blitt skrevet på grunn av dette." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" "Antallet dobbeltskrivinger som har blitt utført og antall sider som har " "blitt skrevet på grunn av dette." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -14394,35 +14367,35 @@ msgstr "" "Antall ganger ventinger vi hadde fordi loggmellomlageret var for lite og vi " "måtte vente for at det skulle bli tømt før vi kunne fortsette." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "Antall loggskrivingsforespørsler." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "Antall fysiske skrivinger til loggfila." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "Antall fsync-skrivinger utført på loggfila." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "Antall ventende loggfil-fsyncs." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "Ventende loggfilskrivinger." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "Antall bytes skrevet til loggfila." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "Antall sider opprettet." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -14430,51 +14403,51 @@ msgstr "" "Den innkompilerte InnoDB sidestørrelsen (standard 16KB). Mange verdier måles " "i sider; sidestørrelsen gjør at det er lett å konvertere dem til bytes." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "Antall sidelesninger." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "Antall sideskrivinger." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "Antall ventende radlåsinger." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Gjennomsnittlig tid for å oppnå radlåsing, i millisekunder." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Total tid brukt for å få radlåsinger, i millisekunder." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maksimum tid brukt for å oppnå en radlåsing, i millisekunder." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "Antall ganger en radlås måtte ventes på." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "Antall rader slettet fra InnoDB tabeller." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "Antall rader satt inn i InnoDB tabeller." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "Antall rader lest fra InnoDB tabeller." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "Antall rader oppdatert i InnoDB tabeller." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -14483,7 +14456,7 @@ msgstr "" "ennå har blitt skrevet til harddisken. Dette var tidligere kjent som " "Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -14491,7 +14464,7 @@ msgstr "" "Antall ubrukte blokker i nøkkelmellomlageret. Du kan bruke denne verdien til " "å bestemme hvor mye av nøkkelmellomlageret som er i bruk." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -14500,17 +14473,17 @@ msgstr "" "Antall brukte blokker i nøkkelmellomlageret. Denne verdien er et høyvannsmål " "som viser maksimum antall blokker som har vært brukt på en gang." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Importfilformat" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "Antall forespørsler for å lese en nøkkelblokk fra mellomlageret." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -14520,26 +14493,26 @@ msgstr "" "stor er nok din key_buffer_size verdi for liten. Mellomlagertreffraten kan " "kalkuleres med Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "Antall forespørsler for å skrive en nøkkelblokk til mellomlageret." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "Antall fysiske skrivinger av en nøkkelblokk til disk." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -14550,17 +14523,17 @@ msgstr "" "forskjellige spørringsplaner for den samme spørringen. Standardverdien på 0 " "betyr at ingen spørring har blitt kompilert ennå." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Antall rader som venter på å bli skrevet i INSERT DELAYED køer." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -14568,38 +14541,38 @@ msgstr "" "Antall tabeller som har blitt åpnet. Hvis denne er stor er nok din " "tabellmellomlagerverdi for liten." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "Antall åpne filer." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "Antall åpne dataflyter (hovedsaklig brukt til logging)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "Antall åpne tabeller." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "Mengden ledig minne i spørringsmellomlager." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "Antall mellomlagertreff." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "Antall spørringer lagt til i mellomlageret." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14612,7 +14585,7 @@ msgstr "" "og sist brukt (least recently used (LRU)) strategi for å finne hvilke " "spørringer som skal fjernes fra mellomlageret." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -14620,19 +14593,19 @@ msgstr "" "Antallet ikkelagrede spørringer (kan ikke lagres, eller ikke lagret p.g.a. " "query_cache_type innstillingen)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "Antall spørringer registrert i mellomlageret." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "Totale antall blokker i spørringsmellomlageret." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "Failsafe replikasjonsstatus (ikke implementert ennå)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -14640,11 +14613,11 @@ msgstr "" "Antall joins som ikke bruker indekser. Hvis denne verdien ikke er 0 bør du " "nøye sjekke indeksene til dine tabeller." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "Antall joins som trenger en rekkefølgesøk i en referansetabell." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -14652,7 +14625,7 @@ msgstr "" "Antall joins uten nøkler som kontrollerer for nøkkelbruk etter hver rad " "(Hvis denne ikke er 0 bør du nøye kontrollere dine tabellindekser.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -14660,15 +14633,15 @@ msgstr "" "Antall joins som brukte rekkefølger på den første tabellen. (Det er normalt " "ikke kritisk selv om denne verdien er stor.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "Antall joins som utførte en full skann av den første tabellen." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Antall midlertidige tabeller for tiden åpnet av slave SQL tråden." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -14676,12 +14649,12 @@ msgstr "" "Det totale antall ganger (siden oppstart) replikasjonsslave-SQL-tråden har " "gjentatt transaksjoner." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Denne er ON hvis denne tjeneren er en slave som er koblet til en master." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -14689,12 +14662,12 @@ msgstr "" "Antall tråder som har brukt mer enn slow_launch_time sekunder under " "opprettelse." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Antall spørringer som har brukt mer enn long_query_time sekunder." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -14704,24 +14677,24 @@ msgstr "" "denne verdien er stor bør du vurdere å øke verdien av sort_buffer_size " "systemvariabelen." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "Antall sorteringer som ble utført med rekkefølger." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "Antall sorterte rader." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" "Antall sorteringer som har vært utført ved hjelp av skanning av tabellen." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "Antall ganger en tabellåsing ble utført umiddelbart." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14733,7 +14706,7 @@ msgstr "" "først optimalisere dine spørringer, og deretter enten splitte din tabell " "eller tabeller eller bruke replikasjon." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -14743,11 +14716,11 @@ msgstr "" "Threads_created/Connections. Hvis denne verdien er rød bør du øke din " "thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "Antall åpne tilkoblinger." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14758,13 +14731,13 @@ msgstr "" "stor bør du vurdere å øke thread_cache_size størrelsen. (Normalt vil dette " "ikke gi noen merkbar forbedring hvis du har en god trådimplementering.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Overvåkning er ikke aktiv." -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "Antall tråder som ikke sover." @@ -14773,77 +14746,77 @@ msgstr "Antall tråder som ikke sover." msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 #, fuzzy #| msgid "Users" msgid "User groups" msgstr "Brukere" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "Tjenerversjon" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Database server" msgid "Database level tabs" msgstr "Databaseserver" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table comments" msgid "Table level tabs" msgstr "Tabellkommentarer" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy #| msgid "Views" msgid "View users" msgstr "Visning" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "Legg til bruker" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Ingen privilegier." -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Column names: " msgid "Group name:" msgstr "Kolonnenavn: " -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Tjenerversjon" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "Databaseserver" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14909,21 +14882,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14994,131 +14963,131 @@ msgstr "Tabellen %1$s har blitt opprettet." msgid "Variable name was expected." msgstr "Tabellnavnmal" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Ved begynnelsen av tabellen" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 #, fuzzy #| msgid "Unexpected characters on line %s." msgid "Unexpected token." msgstr "Uventede karakterer på linje %s." -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 #, fuzzy #| msgid "The number of tables that are open." msgid "The name of the entity was expected." msgstr "Antall åpne tabeller." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Raden er slettet." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Datafil vekststørrelse" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Annet" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy #| msgid "Startup" msgid "State" msgstr "Oppstart" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Total tid:" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Tid" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Lukk" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Tid" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Lagre denne SQL-spørringen" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Label" msgid "Label:" msgstr "Navn" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "La alle brukere ha adgang til dette bokmerket" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created!" msgstr "Bokmerke %s opprettet" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "Viser som PHP kode" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -15131,7 +15100,7 @@ msgstr "" "valgene Endring, avkrysningsruten, redigere, kopiere og slette koblinger " "virker kanskje ikke etter lagring." -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -15144,7 +15113,7 @@ msgstr "" "valgene Endring, avkrysningsruten, redigere, kopiere og slette koblinger " "virker kanskje ikke etter lagring." -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemer med indeksene i tabellen `%s`" @@ -15175,29 +15144,29 @@ msgstr "" msgid "Bind parameters" msgstr "Feil parametere!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 #, fuzzy #| msgid "Bookmark this SQL query" msgid "Bookmark this SQL query:" msgstr "Lagre denne SQL-spørringen" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Erstatt eksisterende bokmerke med samme navn" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Skilletegn" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Vis denne spørring her igjen" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Bare se" @@ -15245,123 +15214,123 @@ msgstr "Deaktiver overvåkning av %s.%s" msgid "Deactivate now" msgstr "Deaktiver nå" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Opprettet" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Oppdatert" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "Opprett versjon" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Overvåkningsrapport" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Struktur-øyeblikksbilde" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "aktiv" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "inaktiv" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "Overvåkingsspørringer" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Slett overvåkningsdata for denne tabellen" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Ingen databaser" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, fuzzy, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Vis %s med datoer fra %s til %s fra bruker %s %s" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "SQL dump (filnedlasting)" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "SQL dump" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "Dette valget vil erstatte din tabell og dataene den inneholder." -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "SQL utførelse" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "Eksporter som %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "Datamanipulasjonsuttrykk" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "Datadefinisjonsuttrykk" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Dato" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Brukernavn" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Versjon %s øyeblikksbilde (SQL kode)" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Ingen" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 #, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" msgstr "Spor disse datadefinisjonsspørringene:" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 #, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "Spor disse datamanipulasjonsspørringene:" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -15369,65 +15338,65 @@ msgstr "" "Du kan utføre dumpen ved å opprette og bruke en midlertidig database. " "Kontroller at du har privilegiene til å gjøre så." -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "Kommenter ut disse to linjene hvis du ikke trenger dem." -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL spørringer eksportert. Venligst kopier dumpen eller utfør den." -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "Overvåkningsrapport for tabell `%s`" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Overvåkning av %s.%s er aktivert." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Overvåkning av %s.%s er aktivert." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Version %1$s of %2$s was deleted." msgstr "Opprett versjon %s av %s.%s" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versjon %s er opprettet, overvåking av %s.%s er aktivert." -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Ikke overvåkede tabeller" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Overvåk tabell" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Overvåkede tabeller" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Siste versjon" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "Fjern overvåkning" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Utgaver" @@ -15435,13 +15404,13 @@ msgstr "Utgaver" msgid "Manage your settings" msgstr "Endre dine innstillinger" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." msgstr "Endringene er lagret" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -15550,7 +15519,7 @@ msgstr "Ingen databaser" msgid "View dump (schema) of databases" msgstr "Vis dumpet skjema av databaser" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -15576,7 +15545,7 @@ msgid "" msgstr "" "phpMyAdmin kunne ikke avslutte tråd %s. Den er sansynligvis alt avsluttet." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -16531,51 +16500,57 @@ msgstr "" msgid "Stacked" msgstr "Pakket" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Report title" +msgid "Chart title:" +msgstr "Rapporttittel" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 #, fuzzy #| msgid "SQL queries" msgid "Series:" msgstr "SQL spørringer" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Verdi" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Y-verdier" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside column:" msgid "Series column:" msgstr "I kolonne:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Values for column %s" msgid "Value Column:" msgstr "Verdier for kolonne %s" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -16647,15 +16622,49 @@ msgstr "Kommentar" msgid "Drag to reorder" msgstr "Dra for å omplassere" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +#, fuzzy +#| msgid "Foreign key constraint" +msgid "Foreign key constraints" +msgstr "Fremmednøkkelbegrensning" + +#: templates/table/relation/common_form.phtml:9 +#, fuzzy +#| msgid "Action" +msgid "Actions" +msgstr "Handling" + +#: templates/table/relation/common_form.phtml:10 +#, fuzzy +#| msgid "Constraints for table" +msgid "Constraint properties" +msgstr "Begrensninger for tabell" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "Fremmednøkkelbegrensning" + +#: templates/table/relation/common_form.phtml:60 +#, fuzzy +#| msgid "Add constraints" +msgid "+ Add constraint" +msgstr "Legg til begrensninger" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "Interne relasjoner" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "Interne relasjoner" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -16663,40 +16672,7 @@ msgstr "" "En intern relasjon er ikke nødvendig når en tilsvarende FOREIGN KEY relasjon " "eksisterer." -#: templates/table/relation/common_form.phtml:37 -#, fuzzy -#| msgid "Foreign key constraint" -msgid "Foreign key constraints" -msgstr "Fremmednøkkelbegrensning" - -#: templates/table/relation/common_form.phtml:40 -#, fuzzy -#| msgid "Action" -msgid "Actions" -msgstr "Handling" - -#: templates/table/relation/common_form.phtml:41 -#, fuzzy -#| msgid "Constraints for table" -msgid "Constraint properties" -msgstr "Begrensninger for tabell" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "Fremmednøkkelbegrensning" - -#: templates/table/relation/common_form.phtml:83 -#, fuzzy -#| msgid "Add constraints" -msgid "+ Add constraint" -msgstr "Legg til begrensninger" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16839,7 +16815,7 @@ msgid "at beginning of table" msgstr "Ved begynnelsen av tabellen" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16888,7 +16864,7 @@ msgstr "partisjonert" msgid "Edit partitioning" msgstr "Fjern partisjonering" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -18228,6 +18204,38 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert er satt til 0" +#~ 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" + +#~ 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" + +#~ msgid "tables" +#~ msgstr "tabeller" + +#~ msgid "views" +#~ msgstr "visning" + +#~ msgid "procedures" +#~ msgstr "prosedyrer" + +#~ msgid "events" +#~ msgstr "hendelse" + +#~ msgid "functions" +#~ msgstr "funksjoner" + +#, fuzzy +#~| msgid "Alter table order by" +#~ msgid "Filter databases by name or regex" +#~ msgstr "Endre tabellrekkefølge ved" + +#, fuzzy +#~| msgid "Alter table order by" +#~ msgid "Filter by name or regex" +#~ msgstr "Endre tabellrekkefølge ved" + #, fuzzy #~| msgid "Tracking report" #~ msgid "Taking you to %s." diff --git a/po/ne.po b/po/ne.po index 1b17278451..d0a2b41906 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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Nepali Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 msgid "Page name" msgstr "" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:550 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:551 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:552 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Table comments:" msgid "Show panel" msgstr "टेबलको टिप्पणीहरु:" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -#, fuzzy -#| msgid "Table" -msgid "tables" -msgstr "टेबल" - -#: js/messages.php:633 -msgid "views" -msgstr "" - -#: js/messages.php:634 -msgid "procedures" -msgstr "" - -#: js/messages.php:635 -msgid "events" -msgstr "" - -#: js/messages.php:636 -#, fuzzy -#| msgid "Action" -msgid "functions" -msgstr "कार्य" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2360,398 +2339,398 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr "" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "" -#: js/messages.php:660 +#: js/messages.php:652 msgid "Show report details" msgstr "" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments:" msgid "Show arguments" msgstr "टेबलको टिप्पणीहरु:" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "" @@ -2759,41 +2738,41 @@ msgstr "" msgid "Please enter the same value again" msgstr "" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "" @@ -2878,11 +2857,12 @@ msgstr "" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -2924,7 +2904,7 @@ msgstr "" msgid "Explain" msgstr "" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "" @@ -2958,8 +2938,8 @@ msgid "History" msgstr "" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3106,30 +3086,30 @@ msgstr "" msgid "Switch to dark theme" msgstr "" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3139,8 +3119,8 @@ msgstr "" msgid "Ascending" msgstr "" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3283,8 +3263,8 @@ msgstr[0] "" msgstr[1] "" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3328,184 +3308,185 @@ msgstr "सबै परित्याग गर्नुहोस" msgid "Inside column:" msgstr "" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 msgid "Display column for relations" msgstr "" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy msgid "Check all" msgstr "ट्रैक तालिका" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "" @@ -3597,19 +3578,19 @@ msgstr "" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3618,24 +3599,24 @@ msgid "Action" msgstr "कार्य" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "" @@ -3643,8 +3624,8 @@ msgstr "" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3654,8 +3635,8 @@ msgid "Collation" msgstr "" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3671,15 +3652,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "हटाउ" @@ -3716,12 +3697,13 @@ msgstr "" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3729,7 +3711,7 @@ msgstr "टेबल" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3738,8 +3720,8 @@ msgid "SQL" msgstr "" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3747,41 +3729,41 @@ msgid "Search" msgstr "" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3792,16 +3774,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3809,20 +3791,20 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "" @@ -3831,33 +3813,33 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4148,7 +4130,7 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4561,37 +4543,37 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "" @@ -4750,8 +4732,8 @@ msgid "Add new column" msgstr "" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -4810,19 +4792,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -5594,7 +5576,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -5633,7 +5615,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "" @@ -7180,7 +7162,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "" @@ -7452,101 +7434,33 @@ msgstr "" msgid "OpenDocument Text" msgstr "" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "" - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "" - -#: libraries/controllers/TableStructureController.php:967 -#, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "" - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -7560,6 +7474,14 @@ msgstr "" msgid "No data to display" msgstr "" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "" + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "" @@ -7568,19 +7490,79 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr "" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:975 +#, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -7590,7 +7572,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7655,7 +7637,7 @@ msgstr "" msgid "Create database:" msgstr "" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "" @@ -8321,69 +8303,69 @@ msgid "Dump has been saved to file %s." msgstr "" #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "" @@ -8406,71 +8388,71 @@ msgstr "" msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -8482,11 +8464,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -8502,35 +8484,35 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "" @@ -8748,8 +8730,8 @@ msgstr "" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "देखाउनुहोस्" @@ -8787,7 +8769,8 @@ msgstr[0] "" msgstr[1] "" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" msgstr "" #: libraries/navigation/NavigationTree.php:1371 @@ -8795,10 +8778,6 @@ msgstr "" msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -9171,7 +9150,7 @@ msgstr "" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9180,7 +9159,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "" @@ -9198,18 +9177,18 @@ msgstr "" msgid "Drop the database (DROP)" msgstr "" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "" @@ -9221,7 +9200,7 @@ msgstr "" msgid "CREATE DATABASE before copying" msgstr "" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "" @@ -9261,158 +9240,158 @@ msgstr "" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy msgid "Checksum table" msgstr "ट्रैक तालिका" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "" @@ -9577,7 +9556,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -9601,21 +9580,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -9705,7 +9684,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "" @@ -9797,7 +9776,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -9866,8 +9845,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9875,81 +9854,81 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 msgid "Metadata" msgstr "" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "निर्माण:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "पछिल्लो विवरण:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "पछिल्लो जाँच:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "प्रयोगमा" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "" @@ -10178,9 +10157,9 @@ msgstr "" msgid "Table of contents" msgstr "" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "" @@ -10344,47 +10323,47 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 msgid "Error: Internal relation could not be added!" msgstr "" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 msgid "FOREIGN KEY relation has been removed." msgstr "" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 msgid "Error: Internal relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "" @@ -10429,104 +10408,104 @@ msgstr "" msgid "Please see the documentation on how to update your column_info table. " msgstr "" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 msgid "Persistent favorite tables" msgstr "" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "निर्यात प्रकार अवैध भयो" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -10698,8 +10677,8 @@ msgstr "" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "" @@ -10707,7 +10686,7 @@ msgstr "" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "" @@ -11321,7 +11300,7 @@ msgstr[1] "" msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "" @@ -11329,98 +11308,94 @@ msgstr "" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "" #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "" #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "" #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -11428,65 +11403,65 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "" #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "" #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -11498,8 +11473,8 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -11539,37 +11514,37 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -11584,14 +11559,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11601,7 +11576,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "" @@ -11610,15 +11585,15 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "" @@ -11635,7 +11610,7 @@ msgid "Native MySQL Authentication" msgstr "" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "" @@ -11658,8 +11633,8 @@ msgstr "" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 msgid "Host name" msgstr "" @@ -11675,218 +11650,218 @@ msgstr "" msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database comment" msgid "Database for user account" msgstr "टिप्पणी:" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 msgid "Remove selected user accounts" msgstr "" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11895,7 +11870,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11904,11 +11879,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "" @@ -12130,30 +12105,30 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -12209,7 +12184,7 @@ msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -12234,33 +12209,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12268,78 +12243,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12347,7 +12322,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12355,42 +12330,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12398,33 +12373,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12433,242 +12408,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12676,99 +12651,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12776,18 +12751,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12795,11 +12770,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -12808,57 +12783,57 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "" @@ -12918,21 +12893,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 msgid "An alias was expected." msgstr "" @@ -12988,119 +12959,119 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 msgid "At least one column definition was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -13130,27 +13101,27 @@ msgstr "" msgid "Bind parameters" msgstr "मापदण्डहरु मिलेन!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "" @@ -13195,180 +13166,180 @@ msgstr "" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "निर्माण गरियो/गरिएको छ" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "सुधार गरियो" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Last version" msgid "Delete version" msgstr "पछिल्लो संस्करण" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 #, fuzzy msgid "Tracking report" msgstr "Tracking रिपोर्ट" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 #, fuzzy msgid "Structure snapshot" msgstr "संरचना स्न्यापसट" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "सक्रिय" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "सक्रिय छैन" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 #, fuzzy msgid "Untracked tables" msgstr "Untracked तालिकाहरू हेर्नुहोस्" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 #, fuzzy msgid "Track table" msgstr "ट्रैक तालिका" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "पछ्याईएका तालिकाहरू हेर्नुहोस्" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "पछिल्लो संस्करण" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking" msgstr "यो तालिकाको लागि ट्रैकिंग डेटा मेट्नुहोस्" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "संस्करण" @@ -13376,11 +13347,11 @@ msgstr "संस्करण" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -13479,7 +13450,7 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -13504,7 +13475,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -14292,45 +14263,49 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +msgid "Chart title:" +msgstr "" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Column" msgid "Value Column:" msgstr "स्तम्भ" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "" @@ -14383,46 +14358,47 @@ msgstr "" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +msgid "Foreign key constraints" +msgstr "" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "" + +#: templates/table/relation/common_form.phtml:10 +msgid "Constraint properties" +msgstr "" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "" + +#: templates/table/relation/common_form.phtml:60 +msgid "+ Add constraint" +msgstr "" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:37 -msgid "Foreign key constraints" -msgstr "" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "" - -#: templates/table/relation/common_form.phtml:41 -msgid "Constraint properties" -msgstr "" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "" - -#: templates/table/relation/common_form.phtml:83 -msgid "+ Add constraint" -msgstr "" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "" @@ -14548,7 +14524,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 msgid "Partitions" msgstr "" @@ -14583,7 +14559,7 @@ msgstr "निर्माण:" msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "" @@ -15741,6 +15717,16 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Table" +#~ msgid "tables" +#~ msgstr "टेबल" + +#, fuzzy +#~| msgid "Action" +#~ msgid "functions" +#~ msgstr "कार्य" + #~ msgid "Select All" #~ msgstr "सबै चयन गर्नुहोस" diff --git a/po/nl.po b/po/nl.po index 8da0f1941f..640408a746 100644 --- a/po/nl.po +++ b/po/nl.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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-11-12 10:42+0000\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Dutch " -"\n" +"Language-Team: Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.5-dev\n" -#: changelog.php:37 license.php:30 +#: changelog.php:37 license.php:33 #, php-format msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " @@ -37,7 +37,7 @@ msgstr "Klik om te sorteren." msgid "Showing rows %1$s - %2$s." msgstr "Weergeven van regels %1$s - %2$s." -#: db_create.php:61 +#: db_create.php:62 #, php-format msgid "Database %1$s has been created." msgstr "Database %1$s is aangemaakt." @@ -46,13 +46,13 @@ msgstr "Database %1$s is aangemaakt." msgid "Database comment" msgstr "Database commentaar" -#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:601 +#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:599 #: templates/columns_definitions/column_definitions_form.phtml:84 msgid "Table comments:" msgstr "Tabelopmerkingen:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1568 +#: libraries/insert_edit.lib.php:1575 #: libraries/navigation/nodes/NodeColumn.php:34 #: libraries/plugins/export/ExportHtmlword.php:288 #: libraries/plugins/export/ExportHtmlword.php:384 @@ -62,13 +62,14 @@ msgstr "Tabelopmerkingen:" #: libraries/plugins/export/ExportTexytext.php:282 #: libraries/plugins/export/ExportTexytext.php:373 #: libraries/plugins/export/PMA_ExportPdf.php:472 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:882 libraries/tracking.lib.php:978 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 +#: libraries/tracking.lib.php:892 libraries/tracking.lib.php:990 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:10 -#: templates/table/relation/common_form.phtml:43 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:27 +#: templates/table/relation/common_form.phtml:79 #: templates/table/relation/foreign_key_row.phtml:176 #: templates/table/relation/foreign_key_row.phtml:188 #: templates/table/relation/internal_relational_row.phtml:73 @@ -88,14 +89,14 @@ msgstr "Kolom" #: libraries/plugins/export/ExportTexytext.php:283 #: libraries/plugins/export/ExportTexytext.php:374 #: libraries/plugins/export/PMA_ExportPdf.php:474 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 #: libraries/rte/rte_list.lib.php:78 libraries/rte/rte_list.lib.php:106 #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2606 libraries/tracking.lib.php:883 -#: libraries/tracking.lib.php:975 +#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -105,7 +106,7 @@ msgstr "Type" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:709 -#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1577 +#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1584 #: libraries/plugins/export/ExportHtmlword.php:294 #: libraries/plugins/export/ExportHtmlword.php:390 #: libraries/plugins/export/ExportLatex.php:517 @@ -114,9 +115,9 @@ msgstr "Type" #: libraries/plugins/export/ExportTexytext.php:284 #: libraries/plugins/export/ExportTexytext.php:375 #: libraries/plugins/export/PMA_ExportPdf.php:476 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 -#: libraries/tracking.lib.php:885 libraries/tracking.lib.php:981 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/tracking.lib.php:895 libraries/tracking.lib.php:993 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 @@ -133,9 +134,9 @@ msgstr "Leeg" #: libraries/plugins/export/ExportTexytext.php:285 #: libraries/plugins/export/ExportTexytext.php:376 #: libraries/plugins/export/PMA_ExportPdf.php:478 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 -#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:886 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:896 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 @@ -147,8 +148,8 @@ msgstr "Standaardwaarde" #: libraries/plugins/export/ExportOdt.php:488 #: libraries/plugins/export/ExportTexytext.php:378 #: libraries/plugins/export/PMA_ExportPdf.php:487 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:640 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:663 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 msgid "Links to" msgstr "Verwijst naar" @@ -159,37 +160,38 @@ msgstr "Verwijst naar" #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:381 #: libraries/plugins/export/PMA_ExportPdf.php:494 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:651 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:664 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:649 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 #: templates/columns_definitions/table_fields_definitions.phtml:65 msgid "Comments" msgstr "Opmerkingen" -#: db_datadict.php:155 libraries/controllers/TableStructureController.php:1189 -#: libraries/controllers/TableStructureController.php:1194 -#: libraries/tracking.lib.php:925 +#: db_datadict.php:155 +#: libraries/controllers/table/TableStructureController.php:1197 +#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:79 +#: templates/table/structure/display_structure.phtml:80 msgid "Primary" msgstr "Primaire sleutel" -#: db_datadict.php:165 js/messages.php:370 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:371 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 -#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:403 -#: libraries/mult_submits.lib.php:417 +#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:408 +#: libraries/mult_submits.lib.php:422 #: libraries/plugins/export/ExportHtmlword.php:654 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:710 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2971 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3620 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1013 libraries/tracking.lib.php:1018 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2973 +#: libraries/server_privileges.lib.php:2993 +#: libraries/server_privileges.lib.php:3631 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -198,32 +200,32 @@ msgstr "Primaire sleutel" msgid "No" msgstr "Nee" -#: db_datadict.php:165 js/messages.php:515 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:516 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 #: libraries/config/FormDisplay.tpl.php:280 -#: libraries/controllers/TableStructureController.php:770 -#: libraries/controllers/TableStructureController.php:1440 -#: libraries/controllers/TableStructureController.php:1449 -#: libraries/controllers/TableStructureController.php:1454 -#: libraries/controllers/TableStructureController.php:1459 -#: libraries/controllers/TableStructureController.php:1464 -#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:199 -#: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 -#: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 +#: libraries/controllers/table/TableStructureController.php:771 +#: libraries/controllers/table/TableStructureController.php:1448 +#: libraries/controllers/table/TableStructureController.php:1457 +#: libraries/controllers/table/TableStructureController.php:1462 +#: libraries/controllers/table/TableStructureController.php:1467 +#: libraries/controllers/table/TableStructureController.php:1472 +#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:200 +#: libraries/mult_submits.lib.php:344 libraries/mult_submits.lib.php:377 +#: libraries/mult_submits.lib.php:406 libraries/mult_submits.lib.php:420 #: libraries/plugins/export/ExportHtmlword.php:655 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:788 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:711 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2968 -#: libraries/server_privileges.lib.php:2989 -#: libraries/server_privileges.lib.php:3617 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1011 libraries/tracking.lib.php:1016 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2970 +#: libraries/server_privileges.lib.php:2991 +#: libraries/server_privileges.lib.php:3628 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -236,8 +238,8 @@ msgstr "Ja" msgid "View dump (schema) of database" msgstr "Bekijk export (schema) van database" -#: db_export.php:51 db_tracking.php:102 export.php:382 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:176 +#: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 +#: libraries/controllers/DatabaseStructureController.php:157 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "Geen tabellen gevonden in de database." @@ -254,7 +256,7 @@ msgstr "Tabellen" #: db_export.php:66 libraries/Menu.php:320 libraries/Menu.php:427 #: libraries/Util.php:3407 libraries/Util.php:3417 libraries/Util.php:3423 -#: libraries/Util.php:3702 libraries/Util.php:4339 libraries/Util.php:4356 +#: libraries/Util.php:3703 libraries/Util.php:4340 libraries/Util.php:4357 #: libraries/central_columns.lib.php:729 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:320 @@ -262,10 +264,10 @@ msgstr "Tabellen" #: libraries/config/user_preferences.forms.php:218 #: libraries/config/user_preferences.forms.php:259 #: libraries/config/user_preferences.forms.php:285 -#: libraries/import.lib.php:1299 libraries/navigation/nodes/NodeColumn.php:44 +#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:44 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 -#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:877 +#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:887 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -309,11 +311,11 @@ msgid "" msgstr "" "De configuratie-opslag van phpMyAdmin is uitgeschakeld. %sOntdek waarom%s." -#: db_qbe.php:135 +#: db_qbe.php:136 msgid "You have to choose at least one column to display!" msgstr "Er moet ten minste één weer te geven kolom worden gekozen!" -#: db_qbe.php:152 +#: db_qbe.php:154 #, php-format msgid "Switch to %svisual builder%s" msgstr "Overschakelen naar %svisuele builder%s" @@ -341,7 +343,7 @@ msgstr "" msgid "No tables selected." msgstr "Er zijn geen tabellen geselecteerd." -#: db_tracking.php:146 +#: db_tracking.php:149 msgid "Database Log" msgstr "Database-log" @@ -377,7 +379,7 @@ msgstr "Misschien wilt u de pagina vernieuwen." msgid "Bad type!" msgstr "Verkeerd type!" -#: export.php:276 +#: export.php:278 msgid "Bad parameters!" msgstr "Verkeerde parameters!" @@ -385,100 +387,100 @@ msgstr "Verkeerde parameters!" msgid "Invalid export type" msgstr "Ongeldig exporttype" -#: gis_data_editor.php:119 +#: gis_data_editor.php:117 #, php-format msgid "Value for the column \"%s\"" msgstr "Waarde voor kolom \"%s\"" -#: gis_data_editor.php:147 +#: gis_data_editor.php:145 #: templates/table/gis_visualization/gis_visualization.phtml:37 msgid "Use OpenStreetMaps as Base Layer" msgstr "Gebruik OpenStreetMaps als basislayer" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:169 +#: gis_data_editor.php:167 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:192 +#: gis_data_editor.php:190 #, php-format msgid "Geometry %d:" msgstr "Geometrie %d:" -#: gis_data_editor.php:214 +#: gis_data_editor.php:212 msgid "Point:" msgstr "Punt:" -#: gis_data_editor.php:215 gis_data_editor.php:242 gis_data_editor.php:298 -#: gis_data_editor.php:371 js/messages.php:504 +#: gis_data_editor.php:213 gis_data_editor.php:240 gis_data_editor.php:296 +#: gis_data_editor.php:369 js/messages.php:505 msgid "X" msgstr "X" -#: gis_data_editor.php:218 gis_data_editor.php:246 gis_data_editor.php:302 -#: gis_data_editor.php:377 js/messages.php:505 +#: gis_data_editor.php:216 gis_data_editor.php:244 gis_data_editor.php:300 +#: gis_data_editor.php:375 js/messages.php:506 msgid "Y" msgstr "Y" -#: gis_data_editor.php:240 gis_data_editor.php:296 gis_data_editor.php:369 -#: js/messages.php:507 +#: gis_data_editor.php:238 gis_data_editor.php:294 gis_data_editor.php:367 +#: js/messages.php:508 #, php-format msgid "Point %d" msgstr "Punt %d" -#: gis_data_editor.php:253 gis_data_editor.php:309 gis_data_editor.php:387 -#: js/messages.php:513 +#: gis_data_editor.php:251 gis_data_editor.php:307 gis_data_editor.php:385 +#: js/messages.php:514 msgid "Add a point" msgstr "Een punt toevoegen" -#: gis_data_editor.php:270 +#: gis_data_editor.php:268 #, php-format msgid "Linestring %d:" msgstr "Regel-string %d:" # https://nl.wikipedia.org/wiki/Aangeschreven_cirkel -#: gis_data_editor.php:273 gis_data_editor.php:350 +#: gis_data_editor.php:271 gis_data_editor.php:348 msgid "Outer ring:" msgstr "Buitenste ring:" # https://nl.wikipedia.org/wiki/Ingeschreven_cirkel -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:273 gis_data_editor.php:350 #, php-format msgid "Inner ring %d:" msgstr "Binnenste ring %d:" -#: gis_data_editor.php:312 +#: gis_data_editor.php:310 msgid "Add a linestring" msgstr "Een regel-string toevoegen" -#: gis_data_editor.php:313 gis_data_editor.php:392 js/messages.php:514 +#: gis_data_editor.php:311 gis_data_editor.php:390 js/messages.php:515 msgid "Add an inner ring" msgstr "Een binnenring toevoegen" -#: gis_data_editor.php:334 +#: gis_data_editor.php:332 #, php-format msgid "Polygon %d:" msgstr "Veelhoek %d:" -#: gis_data_editor.php:398 +#: gis_data_editor.php:396 msgid "Add a polygon" msgstr "Een veelhoek toevoegen" -#: gis_data_editor.php:404 +#: gis_data_editor.php:402 msgid "Add geometry" msgstr "Geometrie toevoegen" -#: gis_data_editor.php:410 js/messages.php:345 libraries/DbSearch.php:462 -#: libraries/DisplayResults.php:1783 libraries/browse_foreigners.lib.php:142 +#: gis_data_editor.php:408 js/messages.php:346 libraries/DbSearch.php:462 +#: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:151 #: libraries/display_export.lib.php:404 libraries/display_export.lib.php:410 -#: libraries/display_import.lib.php:403 libraries/index.lib.php:42 -#: libraries/insert_edit.lib.php:1547 libraries/insert_edit.lib.php:1584 +#: libraries/display_import.lib.php:403 libraries/index.lib.php:45 +#: libraries/insert_edit.lib.php:1554 libraries/insert_edit.lib.php:1591 #: libraries/normalization.lib.php:168 libraries/normalization.lib.php:825 #: libraries/operations.lib.php:47 libraries/operations.lib.php:114 #: libraries/operations.lib.php:266 libraries/operations.lib.php:309 #: libraries/operations.lib.php:806 libraries/operations.lib.php:877 -#: libraries/operations.lib.php:926 libraries/operations.lib.php:1336 -#: libraries/operations.lib.php:1653 +#: libraries/operations.lib.php:926 libraries/operations.lib.php:1339 +#: libraries/operations.lib.php:1656 #: libraries/plugins/auth/AuthenticationCookie.php:239 #: libraries/replication_gui.lib.php:124 libraries/replication_gui.lib.php:163 #: libraries/replication_gui.lib.php:328 libraries/replication_gui.lib.php:465 @@ -487,12 +489,12 @@ msgstr "Geometrie toevoegen" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2343 -#: libraries/server_privileges.lib.php:3114 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_user_groups.lib.php:285 -#: libraries/sql_query_form.lib.php:369 libraries/sql_query_form.lib.php:429 -#: libraries/tracking.lib.php:536 libraries/tracking.lib.php:656 +#: libraries/server_privileges.lib.php:2345 +#: libraries/server_privileges.lib.php:3116 +#: libraries/server_privileges.lib.php:3735 +#: libraries/server_user_groups.lib.php:290 +#: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 +#: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 #: prefs_manage.php:280 prefs_manage.php:358 #: templates/columns_definitions/column_definitions_form.phtml:64 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 @@ -505,11 +507,11 @@ msgstr "Geometrie toevoegen" msgid "Go" msgstr "Starten" -#: gis_data_editor.php:413 +#: gis_data_editor.php:411 msgid "Output" msgstr "Uitvoer" -#: gis_data_editor.php:416 +#: gis_data_editor.php:414 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -521,7 +523,7 @@ msgstr "" msgid "Succeeded" msgstr "Geslaagd" -#: import.php:59 js/messages.php:588 +#: import.php:59 js/messages.php:589 msgid "Failed" msgstr "Mislukt" @@ -587,7 +589,7 @@ msgid "Could not load import plugins, please check your installation!" msgstr "" "De importeer-plugins konden niet worden geladen, controleer de installatie!" -#: import.php:669 libraries/sql.lib.php:744 libraries/sql.lib.php:1468 +#: import.php:669 libraries/sql.lib.php:754 libraries/sql.lib.php:1485 #, php-format msgid "Bookmark %s has been created." msgstr "Bladwijzer %s is aangemaakt." @@ -619,7 +621,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "Voortgang van de import kon niet worden ingelezen." -#: import_status.php:111 js/messages.php:444 libraries/Util.php:797 +#: import_status.php:111 js/messages.php:445 libraries/Util.php:797 #: libraries/export.lib.php:523 #: libraries/plugins/schema/ExportRelationSchema.php:301 user_password.php:268 msgid "Back" @@ -643,7 +645,7 @@ msgstr "" msgid "General settings" msgstr "Algemene instellingen" -#: index.php:191 js/messages.php:617 +#: index.php:191 js/messages.php:618 #: libraries/display_change_password.lib.php:54 #: libraries/display_change_password.lib.php:57 user_password.php:262 msgid "Change password" @@ -743,7 +745,11 @@ msgstr "Ondersteuning krijgen" msgid "List of changes" msgstr "Lijst met wijzigingen" -#: index.php:453 +#: index.php:438 libraries/server_plugins.lib.php:83 +msgid "License" +msgstr "Licentie" + +#: index.php:460 msgid "" "You are connected as 'root' with no password, which corresponds to the " "default MySQL privileged account. Your MySQL server is running with this " @@ -755,7 +761,7 @@ msgstr "" "is open voor ongewilde toegang. U moet dit beveiligingslek echt dichten door " "een wachtwoord in te stellen voor gebruiker 'root'." -#: index.php:470 +#: index.php:477 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -765,7 +771,7 @@ msgstr "" "optie is incompatibel met phpMyAdmin en kan ervoor zorgen dat sommige " "gegevens corrupt raken!" -#: index.php:485 +#: index.php:492 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -775,7 +781,7 @@ msgstr "" "karakterset te gebruiken. Zonder de uitbreiding mbstring kan phpMyAdmin " "strings niet correct splitsen, wat tot onverwachte resultaten kan leiden." -#: index.php:502 +#: index.php:509 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than " @@ -787,7 +793,7 @@ msgstr "" "ingestelde cookie validatie in phpMyAdmin. Hierdoor verloopt uw sessie " "eerder dan in phpMyAdmin is ingesteld." -#: index.php:521 +#: index.php:528 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -796,13 +802,13 @@ msgstr "" "dan die instelling in phpMyAdmin. Hierdoor verloopt uw sessie eerder dan in " "phpMyAdmin is ingesteld." -#: index.php:537 +#: index.php:544 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Het configuratiebestand heeft nu een geheime wachtwoordzin nodig " "(blowfish_secret)." -#: index.php:550 +#: index.php:557 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. It is strongly recommended to remove it " @@ -815,7 +821,7 @@ msgstr "" "aangetast worden omdat ongepriviligieerde personen uw configuratie kunnen " "downloaden." -#: index.php:566 +#: index.php:573 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -824,14 +830,14 @@ msgstr "" "De configuratie-opslag van phpMyAdmin is niet volledig ingesteld, sommige " "uitgebreide mogelijkheden zijn uitgeschakeld. %sOntdek waarom%s. " -#: index.php:573 +#: index.php:580 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "Of als alternatief ga naar de tab 'Handelingen' van een database en stel het " "daar in." -#: index.php:619 +#: index.php:626 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -840,7 +846,7 @@ msgstr "" "Uw MySQL-bibliotheekversie %s in PHP verschilt van uw MySQL-serverversie %s. " "Dit kan onvoorspelbaar gedrag veroorzaken." -#: index.php:647 +#: index.php:654 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -861,7 +867,7 @@ msgstr "Bevestig" msgid "Do you really want to execute \"%s\"?" msgstr "Weet u zeker dat u de query \"%s\" wil uitvoeren?" -#: js/messages.php:45 libraries/mult_submits.lib.php:397 +#: js/messages.php:45 libraries/mult_submits.lib.php:402 msgid "You are about to DESTROY a complete database!" msgstr "U staat op het punt een volledige database te VERWIJDEREN!" @@ -983,13 +989,6 @@ msgstr "" "Weet u zeker dat u deze vergelijking wil wijzigen en de data converteren?" #: js/messages.php:95 -#| msgid "" -#| "Through this operation, MySQL attempts to map the data values between " -#| "collations. If the character sets are incompatible, there may be data " -#| "loss and this lost data may NOT be recoverable simply by changing " -#| "back the column collation(s). To convert existing data, it is " -#| "suggested to use the column(s) editing feature (the \"Change\" Link) on " -#| "the table structure page. " msgid "" "Through this operation, MySQL attempts to map the data values between " "collations. If the character sets are incompatible, there may be data loss " @@ -1018,7 +1017,7 @@ msgid "Save & close" msgstr "Opslaan & sluiten" #: js/messages.php:109 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1551 prefs_manage.php:364 +#: libraries/insert_edit.lib.php:1558 prefs_manage.php:364 #: prefs_manage.php:375 msgid "Reset" msgstr "Herstellen" @@ -1076,10 +1075,10 @@ msgstr "Gelieve de kolom(men) voor de index te selecteren." msgid "You have to add at least one column." msgstr "U moet minstens één kolom toevoegen." -#: js/messages.php:129 libraries/insert_edit.lib.php:1549 +#: js/messages.php:129 libraries/insert_edit.lib.php:1556 #: templates/columns_definitions/column_definitions_form.phtml:159 #: templates/table/index_form.phtml:237 -#: templates/table/relation/common_form.phtml:108 +#: templates/table/relation/common_form.phtml:127 msgid "Preview SQL" msgstr "SQL voorbeeld" @@ -1122,8 +1121,8 @@ msgstr "De wachtwoorden zijn niet gelijk!" msgid "Removing Selected Users" msgstr "Geselecteerde gebruikers worden verwijderd" -#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:461 -#: libraries/tracking.lib.php:831 +#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:471 +#: libraries/tracking.lib.php:841 msgid "Close" msgstr "Sluiten" @@ -1145,7 +1144,7 @@ msgstr "Template werd verwijderd." #. l10n: Other, small valued, queries #: js/messages.php:155 libraries/ServerStatusData.php:130 -#: libraries/server_status_queries.lib.php:148 +#: libraries/server_status_queries.lib.php:150 msgid "Other" msgstr "Andere" @@ -1313,7 +1312,7 @@ msgstr "Questions" msgid "Traffic" msgstr "Verkeer" -#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4330 +#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4331 #: libraries/server_status_monitor.lib.php:258 msgid "Settings" msgstr "Instellingen" @@ -1326,9 +1325,9 @@ msgstr "Grafiek toevoegen aan raster" msgid "Please add at least one variable to the series!" msgstr "Voeg tenminste één variabele toe aan de reeks!" -#: js/messages.php:216 libraries/DisplayResults.php:1477 +#: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1444,7 +1443,7 @@ msgstr "Instellingen wijzigen" msgid "Current settings" msgstr "Huidige instellingen" -#: js/messages.php:253 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:253 msgid "Chart title" msgstr "Grafiektitel" @@ -1531,21 +1530,21 @@ msgstr "Gegevens worden geanalyseerd…" msgid "Explain output" msgstr "Verklaar resultaat" -#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4326 +#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4327 #: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:396 #: libraries/rte/rte_list.lib.php:104 -#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:282 -#: libraries/tracking.lib.php:1623 +#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:284 +#: libraries/tracking.lib.php:1639 msgid "Status" msgstr "Status" -#: js/messages.php:289 js/messages.php:870 +#: js/messages.php:289 js/messages.php:862 #: libraries/plugins/export/ExportHtmlword.php:484 #: libraries/plugins/export/ExportOdt.php:600 #: libraries/plugins/export/ExportTexytext.php:445 #: libraries/plugins/export/PMA_ExportPdf.php:314 #: libraries/rte/rte_list.lib.php:93 -#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:239 +#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:243 msgid "Time" msgstr "Tijd" @@ -1634,10 +1633,10 @@ msgstr "" "configuratie is mislukt. Standaard configuratie wordt gebruikt in de plaats…" #: js/messages.php:322 libraries/Menu.php:355 libraries/Menu.php:457 -#: libraries/Menu.php:578 libraries/Util.php:4329 libraries/Util.php:4344 -#: libraries/Util.php:4361 libraries/config/messages.inc.php:260 +#: libraries/Menu.php:578 libraries/Util.php:4330 libraries/Util.php:4345 +#: libraries/Util.php:4362 libraries/config/messages.inc.php:260 #: libraries/display_import.lib.php:108 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:241 +#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:241 #: setup/frames/menu.inc.php:26 msgid "Import" msgstr "Importeren" @@ -1694,7 +1693,13 @@ msgstr "Test" msgid "Formatting SQL…" msgstr "Aanmaken SQL…" -#: js/messages.php:346 libraries/server_variables.lib.php:159 +#: js/messages.php:343 +#, fuzzy +#| msgid "Bad parameters!" +msgid "No parameters found!" +msgstr "Verkeerde parameters!" + +#: js/messages.php:347 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 +1710,59 @@ msgstr "Aanmaken SQL…" msgid "Cancel" msgstr "Annuleren" -#: js/messages.php:349 libraries/Header.php:457 +#: js/messages.php:350 libraries/Header.php:457 msgid "Page-related settings" msgstr "Pagina gerelateerde instellingen" -#: js/messages.php:350 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:351 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Toepassen" -#: js/messages.php:353 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:354 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:124 msgid "Loading…" msgstr "Laden…" -#: js/messages.php:354 +#: js/messages.php:355 msgid "Request aborted!!" msgstr "Aanvraag afgebroken!" -#: js/messages.php:355 +#: js/messages.php:356 msgid "Processing request" msgstr "Bezig met verwerken" -#: js/messages.php:356 +#: js/messages.php:357 msgid "Request failed!!" msgstr "Aanvraag gefaald!!" -#: js/messages.php:357 +#: js/messages.php:358 msgid "Error in processing request" msgstr "Fout tijdens het uitvoeren van de opdracht" -#: js/messages.php:358 +#: js/messages.php:359 #, php-format msgid "Error code: %s" msgstr "Foutcode: %s" -#: js/messages.php:359 +#: js/messages.php:360 #, php-format msgid "Error text: %s" msgstr "Foutomschrijving: %s" -#: js/messages.php:360 libraries/db_common.inc.php:73 +#: js/messages.php:361 libraries/db_common.inc.php:73 #: libraries/db_table_exists.lib.php:33 libraries/server_databases.lib.php:462 msgid "No databases selected." msgstr "Er zijn geen databases geselecteerd." -#: js/messages.php:361 +#: js/messages.php:362 msgid "Dropping column" msgstr "Kolom laten vervallen" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Adding primary key" msgstr "Een primaire sleutel toevoegen" -#: js/messages.php:363 +#: js/messages.php:364 #: 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,167 +1772,167 @@ msgstr "Een primaire sleutel toevoegen" msgid "OK" msgstr "Correct" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Click to dismiss this notification" msgstr "Klik om deze melding te sluiten" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Renaming databases" msgstr "Database hernoemen" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Copying database" msgstr "Database kopiëren" -#: js/messages.php:369 +#: js/messages.php:370 msgid "Changing charset" msgstr "Karakterset aanpassen" -#: js/messages.php:373 libraries/Util.php:3289 +#: js/messages.php:374 libraries/Util.php:3289 msgid "Enable foreign key checks" msgstr "Controle op externe sleutelvelden inschakelen" -#: js/messages.php:376 +#: js/messages.php:377 msgid "Failed to get real row count." msgstr "Ophalen van exact aantal rijen mislukt." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Searching" msgstr "Zoeken" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide search results" msgstr "Zoekresultaten verbergen" -#: js/messages.php:381 +#: js/messages.php:382 msgid "Show search results" msgstr "Zoekresultaten tonen" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Browsing" msgstr "Verkennen" -#: js/messages.php:383 +#: js/messages.php:384 msgid "Deleting" msgstr "Verwijderen" -#: js/messages.php:387 +#: js/messages.php:388 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:388 libraries/DisplayResults.php:4832 -#: libraries/DisplayResults.php:5091 libraries/Menu.php:347 -#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3709 -#: libraries/Util.php:3710 libraries/Util.php:4328 libraries/Util.php:4343 -#: libraries/Util.php:4360 libraries/config/messages.inc.php:254 +#: js/messages.php:389 libraries/DisplayResults.php:4850 +#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 +#: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 +#: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2448 -#: libraries/server_privileges.lib.php:2527 -#: libraries/server_privileges.lib.php:2873 -#: libraries/server_privileges.lib.php:3532 -#: libraries/server_status_monitor.lib.php:321 prefs_manage.php:306 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2875 +#: libraries/server_privileges.lib.php:3543 +#: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 msgid "Export" msgstr "Exporteren" -#: js/messages.php:391 libraries/rte/rte_routines.lib.php:742 +#: js/messages.php:392 libraries/rte/rte_routines.lib.php:742 msgid "ENUM/SET editor" msgstr "ENUM/SET-editor" -#: js/messages.php:392 +#: js/messages.php:393 #, php-format msgid "Values for column %s" msgstr "Waarden voor kolom %s" -#: js/messages.php:393 +#: js/messages.php:394 msgid "Values for a new column" msgstr "Waarden voor een nieuwe kolom" -#: js/messages.php:394 +#: js/messages.php:395 msgid "Enter each value in a separate field." msgstr "Plaats elke waarde in een afzonderlijk veld." -#: js/messages.php:395 +#: js/messages.php:396 #, php-format msgid "Add %d value(s)" msgstr "%d nieuwe waarde(n) toevoegen" -#: js/messages.php:399 +#: js/messages.php:400 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:403 +#: js/messages.php:404 msgid "Hide query box" msgstr "SQL-queryveld verbergen" -#: js/messages.php:404 +#: js/messages.php:405 msgid "Show query box" msgstr "SQL-queryveld tonen" -#: js/messages.php:405 libraries/Console.php:88 libraries/Console.php:217 -#: libraries/DisplayResults.php:3457 libraries/DisplayResults.php:4816 +#: js/messages.php:406 libraries/Console.php:88 libraries/Console.php:217 +#: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4834 #: libraries/Index.php:721 libraries/Util.php:727 libraries/Util.php:1238 -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:119 +#: libraries/server_user_groups.lib.php:121 #: libraries/server_variables.lib.php:242 #: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 msgid "Edit" msgstr "Wijzigen" -#: js/messages.php:406 libraries/Console.php:89 libraries/DbSearch.php:360 -#: libraries/DisplayResults.php:3526 libraries/DisplayResults.php:4800 +#: js/messages.php:407 libraries/Console.php:89 libraries/DbSearch.php:360 +#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4818 #: libraries/central_columns.lib.php:854 #: libraries/central_columns.lib.php:1200 libraries/display_export.lib.php:227 -#: libraries/server_user_groups.lib.php:129 -#: libraries/sql_query_form.lib.php:416 libraries/tracking.lib.php:480 +#: libraries/server_user_groups.lib.php:131 +#: libraries/sql_query_form.lib.php:417 libraries/tracking.lib.php:490 #: setup/frames/index.inc.php:187 setup/frames/index.inc.php:295 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Verwijderen" -#: js/messages.php:407 libraries/DisplayResults.php:915 -#: libraries/DisplayResults.php:923 +#: js/messages.php:408 libraries/DisplayResults.php:919 +#: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d is geen geldig rijnummer." -#: js/messages.php:408 -#: libraries/controllers/table/TableSearchController.php:435 -#: libraries/controllers/table/TableSearchController.php:920 -#: libraries/sql.lib.php:193 tbl_change.php:159 +#: js/messages.php:409 +#: libraries/controllers/table/TableSearchController.php:432 +#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "Bekijk vreemde waarden" -#: js/messages.php:409 +#: js/messages.php:410 msgid "No auto-saved query" msgstr "Geen automatisch opgeslagen query" -#: js/messages.php:410 +#: js/messages.php:411 #, php-format msgid "Variable %d:" msgstr "Variabele %d:" -#: js/messages.php:413 libraries/normalization.lib.php:889 +#: js/messages.php:414 libraries/normalization.lib.php:889 msgid "Pick" msgstr "Kies" -#: js/messages.php:414 +#: js/messages.php:415 msgid "Column selector" msgstr "Kolomselectie" -#: js/messages.php:415 +#: js/messages.php:416 msgid "Search this list" msgstr "Zoek in deze lijst" -#: js/messages.php:417 +#: js/messages.php:418 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1937,15 +1942,15 @@ msgstr "" "centrale lijst voor database %s kolommen heeft die niet in de huidige tabel " "voorkomen." -#: js/messages.php:420 +#: js/messages.php:421 msgid "See more" msgstr "Meer" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Are you sure?" msgstr "Bent u zeker?" -#: js/messages.php:423 +#: js/messages.php:424 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1953,51 +1958,51 @@ msgstr "" "Deze actie wijzigt mogelijk de definitie van de kolommen.
Weet u zeker " "dat u wilt doorgaan?" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "Verder gaan" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "Een primaire sleutel toevoegen" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "Primaire sleutel toegevoegd." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "Naar de volgende stap…" -#: js/messages.php:433 +#: js/messages.php:434 #, 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:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "Einde van de stap" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "Tweede stap van normalisatie (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Klaar" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "Gedeeltelijke afhankelijkheden bevestigen" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "Dit zijn de geselecteerde gedeeltelijke afhankelijkheden:" -#: js/messages.php:440 +#: js/messages.php:441 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 "" "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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "Er zijn geen gedeeltelijke afhankelijkheden geselecteerd!" -#: js/messages.php:446 +#: js/messages.php:447 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:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "Verberg lijst met gedeeltelijke afhankelijkheden" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2027,171 +2032,171 @@ msgstr "" "Even geduld! Het kan enkele seconden duren, afhankelijk van de hoeveelheid " "gegevens en het aantal kolommen in de tabel." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "Stap" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "De volgende acties worden uitgevoerd:" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "Verwijder (DROP) kolommen %s uit tabel %s" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "Maak de volgende tabel aan" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "Derde stap van normalisatie (3NF)" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "Overgankelijke afhankelijkheden bevestigen" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "Dit zijn de geselecteerde afhankelijkheden:" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "Er zijn geen afhankelijkheden geselecteerd!" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Opslaan" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Zoekcriteria verbergen" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Zoekcriteria tonen" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "Zoeken op bereik" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "Kolommaximum:" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "Kolomminimum:" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "Minimumwaarde:" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "Maximumwaarde:" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "Zoek- en vervangcriteria verbergen" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "Zoek- en vervangcriteria tonen" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "Ieder punt stelt een gegevensrij voor." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "Beweeg over een punt om het label te tonen." -#: js/messages.php:486 +#: js/messages.php:487 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:488 +#: js/messages.php:489 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:490 +#: js/messages.php:491 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:492 +#: js/messages.php:493 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:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "Selecteer twee kolommen" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "Selecteer twee verschillende kolommen" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "Inhoud gegevenspunt" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Negeren" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Kopiëren" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Punt" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Lijnstuk definitie" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Polygoon" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometrie" # https://nl.wikipedia.org/wiki/Ingeschreven_cirkel -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "Binnenste ring" # https://nl.wikipedia.org/wiki/Aangeschreven_cirkel -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "Buitenste ring" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "Wilt u de encryptiesleutel kopiëren?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "Encryptiesleutel" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2199,24 +2204,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:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Selecteer de gerefereerde sleutel" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Selecteer vreemde sleutel" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "Selecteer de primaire sleutel of een unieke sleutel!" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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:532 +#: js/messages.php:533 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?" @@ -2224,77 +2229,77 @@ msgstr "" "U hebt de layoutwijzigingen niet opgeslagen. Deze zullen verloren gaan als u " "deze niet opslaat. Wilt u doorgaan?" -#: js/messages.php:535 +#: js/messages.php:536 msgid "Page name" msgstr "Paginanaam" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Pagina opslaan" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Pagina openen" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "Pagina verwijderen" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Naamloos" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "Gelieve een pagina te selecteren om verder te gaan" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "Gelieve een geldige paginanaam in te geven" -#: js/messages.php:544 +#: js/messages.php:545 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:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "Pagina werd succesvol verwijderd" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "Exporteer relationeel schema" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Wijzigingen werden opgeslagen" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "Een optie voor kolom \"%s\" toevoegen." -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "%d object(en) aangemaakt." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Verzenden" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "Druk op ESC om het bewerken te annuleren." -#: js/messages.php:557 +#: js/messages.php:558 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?" @@ -2302,15 +2307,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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "Sleep om te herschikken." -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "Klik om resultaten te sorteren op deze kolom." -#: js/messages.php:563 +#: js/messages.php:564 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 " @@ -2321,26 +2326,26 @@ msgstr "" "+ klik (Mac: Shift + Option + klik) om de kolom uit de ORDER BY (sorteren " "op)-component verwijderen" -#: js/messages.php:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "Klik om te markeren/demarkeren." -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "Dubbelklik om kolomnaam te kopiëren." -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Klik op het pijltje
om de zichtbaarheid van de kolom te wijzigen." -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Toon alles" -#: js/messages.php:574 +#: js/messages.php:575 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,12 +2354,12 @@ msgstr "" "checkboxen, Bewerken, Kopiëren en Verwijderen, werken mogelijk niet na " "opslaan." -#: js/messages.php:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Voer een geldige hexadecimale tekenreeks in. Geldige tekens zijn 0-9, A-F." -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2362,127 +2367,96 @@ msgstr "" "Wil je echt alle regels zien? Voor een grote tabel kan dit je browser doen " "crashen." -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "Oorspronkelijke lengte" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "annuleren" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Afgehaakte" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "Geslaagd" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "Importstatus" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Bestanden hier neerzetten" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "Selecteer eerst een database" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "U kan de meeste waarden bewerken
door er dubbel op te klikken." -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "U kan de meeste waarden bewerken
door erop te klikken." -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "Volg de link:" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "Kolomnaam kopiëren." -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Klik met de rechtmuistoets op de kolomnaam om deze naar het klembord te " "kopiëren." -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Wachtwoord genereren" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Genereren" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "Meer" -#: js/messages.php:623 +#: js/messages.php:624 msgid "Show panel" msgstr "Paneel tonen" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "Paneel verbergen" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "Verborgen navigatieboom onderdelen weergeven." -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "Verbinden met hoofdpaneel" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "Loskoppelen van hoofdpaneel" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" -"Om alle databases op de server te filteren, druk op Enter achter een zoekterm" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" -"Om alle %s in de database te filteren, druk op Enter achter een zoekterm" - #: js/messages.php:632 -msgid "tables" -msgstr "Tabellen" - -#: js/messages.php:633 -msgid "views" -msgstr "views" - -#: js/messages.php:634 -msgid "procedures" -msgstr "Procedures" - -#: js/messages.php:635 -msgid "events" -msgstr "gebeurtenis" - -#: js/messages.php:636 -msgid "functions" -msgstr "functies" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" "De opgevraagde pagina werd niet gevonden in de historiek, mogelijk is deze " "verlopen." -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2492,27 +2466,27 @@ msgstr "" "overwegen. De nieuwe versie is %s, uitgebracht op %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", meest recente versie:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "Recent bijgewerkt" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "VIEW aanmaken" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "Verzend foutmeldingsverslag" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "Verstuur foutmeldingsverslag" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2520,15 +2494,15 @@ msgstr "" "Er is een fatale JavaScript-fout opgetreden. Wil u een foutmeldingsverslag " "verzenden?" -#: js/messages.php:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "Rapport instellingen wijzigen" -#: js/messages.php:660 +#: js/messages.php:652 msgid "Show report details" msgstr "Toon rapport details" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2536,7 +2510,7 @@ msgstr "" "Uw uitvoer is onvolledig, als gevolg van een lage uitvoeringstijdbeperking " "op PHP niveau!" -#: js/messages.php:667 +#: js/messages.php:659 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2546,60 +2520,60 @@ msgstr "" "indiening, worden een aantal velden mogelijk genegeerd, als gevolg van PHP's " "max_input_vars configuratie." -#: js/messages.php:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "Er zijn enkele fouten opgetreden op de server!" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "Gelieve de onderkant van dit venster te bekijken." -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "Alles negeren" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "Volgens uw instellingen worden ze momenteel ingediend, gelieve even te " "wachten." -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "Deze query opnieuw uitvoeren?" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "Weet u zeker dat u deze bladwijzer wil verwijderen?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "Er is een fout opgetreden bij het ophalen van SQL debug informatie." -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s queries %s keer uitgevoerd in %s seconden." -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "%s argument(en) gepasseerd" -#: js/messages.php:707 +#: js/messages.php:699 msgid "Show arguments" msgstr "Toon argumenten" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "Argumenten verbergen" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "Gebruikte tijd:" -#: js/messages.php:711 +#: js/messages.php:703 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 " @@ -2610,291 +2584,291 @@ msgstr "" "probleem vaak veroorzaakt door het gebruik van de \"Incognito mode\" van de " "browser." -#: js/messages.php:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "Vorige" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "Volgende" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Vandaag" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "januari" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "februari" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "maart" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "april" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "mei" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "juni" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "juli" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "augustus" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "september" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "oktober" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "november" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "mrt" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "mei" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "dec" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "zondag" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "maandag" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "dinsdag" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "woensdag" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "donderdag" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "vrijdag" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "zaterdag" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "zo" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "ma" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "di" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "wo" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "do" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "vr" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "za" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "zo" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "ma" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "di" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "wo" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "do" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "vr" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "za" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "Week" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "geen" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Uur" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Minuut" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Seconde" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "Dit veld is verplicht" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "Repareer a.u.b. dit veld" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "A.u.b. een geldig e-mailadres invoeren" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "A.u.b. een geldige URL ingeven" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "A.u.b. een geldige datum in geven" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "A.u.b. een valide datum (ISO) in geven" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "Vul a.u.b. een geldig nummer in" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "Vul a.u.b, een geldig creditcardnummer in" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "Vul a.u.b. alleen cijfers in" @@ -2902,41 +2876,41 @@ msgstr "Vul a.u.b. alleen cijfers in" msgid "Please enter the same value again" msgstr "A,u,b, dezelfde waarde nogmaals in geven" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "Vul a.u,b, niet meer dan {0} tekens in" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "Vul a.u,b, minstens {0} tekens in" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "Vul a.u.b. een waarde tussen {0} en {1} tekens lang in" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "Vul a.u,b. een waarde tussen {0} en {1} in" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "Vul a.u.b. een waarde kleiner of gelijk aan {0} in" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "Vul a.u.b. een waarde groter of gelijk aan {0} in" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "Vul a.u.b. een geldige datum of tijd in" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "Vul a.u.b.een geldige waarde in HEX in" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Fout" @@ -3025,11 +2999,12 @@ msgstr "Query opnieuw uitvoeren" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3071,7 +3046,7 @@ msgstr "Tijdens de huidige sessie" msgid "Explain" msgstr "Verklaar" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Profiling" @@ -3105,8 +3080,8 @@ msgid "History" msgstr "Geschiedenis" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3253,33 +3228,33 @@ msgstr "" msgid "Switch to dark theme" msgstr "Wissel naar donker thema" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" "De server reageert niet (of de socket van de server is niet juist ingesteld)." -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "De server reageert niet." -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "Controleer de rechten op de map met de database." -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Details…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Verbinding voor de controlegebruiker zoals in de configuratie is opgegeven " "is mislukt." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3289,8 +3264,8 @@ msgstr "" msgid "Ascending" msgstr "Oplopend" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3433,8 +3408,8 @@ msgstr[0] "%1$s overeenkomst in %2$s" msgstr[1] "%1$s overeenkomsten in %2$s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3476,119 +3451,120 @@ msgstr "Alles deselecteren" msgid "Inside column:" msgstr "In de kolom:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "Sla aangepaste gegevens op" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "Kolomvolgorde herstellen" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "Filter rijen" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "Zoek in deze tabel" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "Begin" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "Vorige" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "Volgende" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "Einde" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Alle" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Aantal rijen:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Sorteren op sleutel" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "Gedeeltelijke teksten" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "Volledige teksten" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Relationele sleutel" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 msgid "Display column for relations" msgstr "Toon kolom voor relaties" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "Toon binaire inhoud" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "Toon BLOB-inhoud" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "Browsertransformaties verbergen" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "Goed bekende tekst" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "Goed gekende binaire waarde" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "De regel werd verwijderd." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "stop proces" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Bij benadering. Zie [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "Uw SQL-query is succesvol uitgevoerd." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3596,64 +3572,64 @@ msgid "" msgstr "" "Deze view heeft minimaal deze hoeveelheid aan rijen. Zie de %sdocumentatie%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "Weergave van records %1s - %2s" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d in totaal, %2$d in de query" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "%d totaal" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "Query duurde %01.4f seconden." -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Met geselecteerd:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 msgid "Check all" msgstr "Selecteer alles" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Afdrukken" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Handelingen voor queryresultaat" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Grafiek weergeven" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "GIS-gegevens visualiseren" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "Link niet gevonden!" @@ -3751,19 +3727,19 @@ msgstr "Geen index gedefinieerd!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Indexen" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3772,24 +3748,24 @@ msgid "Action" msgstr "Actie" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Sleutelnaam" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Unieke waarde" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Gecomprimeerd" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Kardinaliteit" @@ -3797,8 +3773,8 @@ msgstr "Kardinaliteit" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3808,8 +3784,8 @@ msgid "Collation" msgstr "Collatie" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3825,15 +3801,15 @@ msgstr "De primaire sleutel werd verwijderd." msgid "Index %s has been dropped." msgstr "Index %s is verwijderd." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Verwijderen" @@ -3874,12 +3850,13 @@ msgstr "View" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3887,7 +3864,7 @@ msgstr "Tabel" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3896,8 +3873,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3905,41 +3882,41 @@ msgid "Search" msgstr "Zoeken" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Invoegen" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Rechten" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Handelingen" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Traceren" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3950,16 +3927,16 @@ msgstr "Triggers" msgid "Database seems to be empty!" msgstr "Database lijkt leeg te zijn!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Query opbouwen" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Routines" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3967,20 +3944,20 @@ msgstr "Routines" msgid "Events" msgstr "Gebeurtenissen" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Ontwerper" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "Centrale kolommen" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Databases" @@ -3989,33 +3966,33 @@ msgid "User accounts" msgstr "Gebruikersaccounts" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Binaire log" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replicatie" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Variabelen" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Karaktersets" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Engines" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "Plug-ins" @@ -4313,7 +4290,7 @@ msgstr "Kan index niet naar PRIMARY hernoemen!" msgid "No index parts defined!" msgstr "Geen index-delen gedefinieerd!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4795,37 +4772,37 @@ msgstr "De %s functionaliteit heeft last van een bekend probleem, zie %s" msgid "Click to toggle" msgstr "Klik om te wisselen" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Blader op uw eigen pc:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Selecteer uit de webserver uploadmap %s:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "De map die u heeft ingesteld om te uploaden kan niet worden bereikt." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "Er zijn geen bestanden om te uploaden!" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Legen" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "Uitvoeren" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Afdrukken" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "Gebruikers" @@ -4988,8 +4965,8 @@ msgid "Add new column" msgstr "Nieuwe kolom toevoegen" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5057,19 +5034,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "U moet upgraden naar %s %s of hoger." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "Fout: token niet hetzelfde" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "poging om GLOBALS te overschrijven" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "mogelijk misbruik" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "numerieke toets gedetecteerd" @@ -5925,7 +5902,7 @@ msgid "Remember file name template" msgstr "Bestandsnaam-template herinneren" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Voeg AUTO_INCREMENT-waarde toe" @@ -5964,7 +5941,7 @@ msgstr "Exporteer gerelateerde metadata van de phpMyAdmin configuratie opslag" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Voeg %s toe" @@ -7696,7 +7673,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "Bepaalt of het queryveld op het scherm moet blijven na invoer." -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "Queryveld behouden" @@ -8004,101 +7981,33 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "OpenDocument Tekst" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "De lijst met favorieten is vol!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Tabel %s is leeggemaakt." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "View %s werd verwijderd." -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "Tabel %s werd verwijderd." -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "De lijst met favorieten is vol!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "onbekend" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "De naam '%s' is een gereserveerd MySQL sleutelwoord." -msgstr[1] "De namen '%s' zijn gereserveerde MySQL sleutelwoorden." - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "Geen kolom geselecteerd." - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "De geselecteerde kolommen zijn met succes verplaatst." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "Tabel %1$s is succesvol bijgewerkt." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "Fout in query" - -#: libraries/controllers/TableStructureController.php:967 -#, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "Tabel %1$s is succesvol bijgewerkt. Rechten zijn aangepast." - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Veranderen" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Index" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "Ruimtelijk" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Volledige tekst" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "Onderscheidbare waarden" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8113,6 +8022,14 @@ msgstr "" msgid "No data to display" msgstr "Geen gegevens om weer te geven" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "Tabel %1$s is succesvol bijgewerkt." + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "De weergavekolom is succesvol bijgewerkt." @@ -8121,19 +8038,79 @@ msgstr "De weergavekolom is succesvol bijgewerkt." msgid "Internal relations were successfully updated." msgstr "Interne relaties werden succesvol bijgewerkt." -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "Tabel zoeken" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "Zoeken door in te zoomen" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Zoek en vervang" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "De naam '%s' is een gereserveerd MySQL sleutelwoord." +msgstr[1] "De namen '%s' zijn gereserveerde MySQL sleutelwoorden." + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "Geen kolom geselecteerd." + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "De geselecteerde kolommen zijn met succes verplaatst." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "Fout in query" + +#: libraries/controllers/table/TableStructureController.php:975 +#, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "Tabel %1$s is succesvol bijgewerkt. Rechten zijn aangepast." + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Veranderen" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Index" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "Ruimtelijk" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Volledige tekst" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "Onderscheidbare waarden" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8143,7 +8120,7 @@ msgstr "De extensie %s ontbreekt. Controleer uw PHP-configuratie." msgid "possible deep recursion attack" msgstr "mogelijke diepe recursieaanval" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Geen verandering" @@ -8215,7 +8192,7 @@ msgstr "Aanmaken" msgid "Create database:" msgstr "Database aanmaken:" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Geen rechten" @@ -8957,65 +8934,65 @@ msgid "Dump has been saved to file %s." msgstr "Het exportbestand is bewaard als %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL gaf een lege resultatenset terug (0 rijen)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "[ROLLBACK is uitgevoerd]" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "De volgende structuren zijn aangemaakt of aangepast. Hier kunt u:" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "Bekijk de inhoud van een structuur door op de naam te klikken." -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "Een instelling wijzigen door op \"Opties\" te klikken." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "Klik op de \"Structuur\"-link om de structuur aan te passen." -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "Ga naar database: %s" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "Instellingen voor %s wijzigen" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "Ga naar tabel: %s" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "Structuur van %s" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "Ga naar view: %s" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" "Enkel UPDATE- en DELETE-query's die inwerken op 1 tabel kunnen gesimuleerd " "worden." -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9023,7 +9000,7 @@ msgstr "" "Alleen INSERT, UPDATE, DELETE en REPLACE SQL-query's die transactionele " "tabellen bevatten, kunnen teruggedraaid worden." -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "Een index aanmaken op kolommen %s " @@ -9046,74 +9023,74 @@ msgstr "Functie" msgid "Binary" msgstr "Binair" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "" "Vanwege z'n lengte,
kan deze kolom mogelijk niet gewijzigd worden." -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Binair - niet aanpassen" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Of" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "uploadmap op webserver:" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "Aanpassen/Invoegen" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "Herstart invoegen met %s rijen" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "en dan" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Toevoegen als nieuwe rij" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "Toevoegen als nieuwe rij en foutmeldingen negeren" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "Toon insert-query" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Terug" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Een nieuwe rij toevoegen" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Ga terug naar deze pagina" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Volgende rij bewerken" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" "Gebruik de TAB-toets om van waarde naar waarde te navigeren of CTRL+pijltjes " "om vrijuit te navigeren." -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9125,11 +9102,11 @@ msgstr "" msgid "Value" msgstr "Waarde" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "Toont SQL-query" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "Toegevoegd rijnummer: %1$d" @@ -9146,35 +9123,35 @@ msgstr "Geen" msgid "Convert to Kana" msgstr "Omzetten naar Kana" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Geslaagd!" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "Vervang tabelvoorvoegsel:" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "Kopieer tabel met voorvoegsel:" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "Van" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "Naar" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "Tabelvoorvoegsel toevoegen:" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "Voorvoegsel toevoegen" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "Weet u zeker dat u de volgende SQL-query wil uitvoeren?" @@ -9392,8 +9369,8 @@ msgstr "Procedures:" msgid "Views:" msgstr "Views:" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Toon" @@ -9435,18 +9412,15 @@ msgstr[0] "%s resultaat gevonden" msgstr[1] "%s resultaten gevonden" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" -msgstr "Databases filteren op naam of regex" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 msgid "Clear fast filter" msgstr "Snelle filter leegmaken" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "Filter op naam of regex" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "Alles samenvouwen" @@ -9872,7 +9846,7 @@ msgstr "Hernoem database naar" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9883,7 +9857,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Aanpassen rechten" @@ -9901,18 +9875,18 @@ msgstr "Verwijder database" msgid "Drop the database (DROP)" msgstr "Verwijder de database (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Alleen structuur" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Structuur en gegevens" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Alleen gegevens" @@ -9924,7 +9898,7 @@ msgstr "Kopieer database naar" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE vóór het kopiëren" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Voeg beperkingen toe" @@ -9964,157 +9938,157 @@ msgstr "Opslag-engine" msgid "Change all column collations" msgstr "Wijzig alle kolommen vergelijkingen" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Tabel kopiëren naar (database.tabel)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Wissel naar de gekopieerde tabel" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Tabelonderhoud" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Analyseer tabel" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Controleer tabel" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 msgid "Checksum table" msgstr "Checksum tabel" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Tabel defragmenteren" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "Tabel %s is leeggemaakt." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "De tabel leegmaken (FLUSH)" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Optimaliseer tabel" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Repareer tabel" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "Gegevens of tabel verwijderen" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "De tabel leegmaken (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "De tabel verwijderen (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Analyseren" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Controleren" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Optimaliseren" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Heropbouwen" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Repareren" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "Afbreken" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 msgid "Coalesce" msgstr "Samenvoegen" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "Partitie-onderhoud" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "Partitie %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "Partitionering verwijderen" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Controleer referentiële integriteit:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Kan de tabel niet naar dezelfde verplaatsen!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Kan de tabel niet naar dezelfde kopiëren!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabel %s is verplaatst naar %s. Rechten zijn aangepast." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabel %s is gekopieerd naar %s. Rechten zijn aangepast." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabel %s is verplaatst naar %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabel %s is gekopieerd naar %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "De tabelnaam is leeg!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "Dit formaat heeft geen opties" @@ -10289,7 +10263,7 @@ msgstr "Dataexport-opties" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Gegevens worden geëxporteerd voor tabel" @@ -10313,21 +10287,21 @@ msgstr "Definitie" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Tabelstructuur voor tabel" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Structuur voor de view" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Stand-in structuur voor view" @@ -10418,7 +10392,7 @@ msgid "Database:" msgstr "Database:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "Gegevens:" @@ -10520,7 +10494,7 @@ msgid "Data creation options" msgstr "Data-aanmaakopties" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "Tabel leegmaken voor invoegen" @@ -10604,8 +10578,8 @@ msgstr "Het lijkt erop dat uw databaseprocedures gebruikt;" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "alias uitvoer mogelijk niet betrouwbaar in alle gevallen." @@ -10613,81 +10587,81 @@ msgstr "alias uitvoer mogelijk niet betrouwbaar in alle gevallen." msgid "It appears your database uses functions;" msgstr "Het lijkt erop dat uw databasefuncties gebruikt;" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 msgid "Metadata" msgstr "Metadata" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "Metadata voor %s" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Aangemaakt:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Laatst bijgewerkt:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Laatst gecontroleerd:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "in gebruik" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "Het lijkt erop dat uw databaseviews gebruikt;" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Beperkingen voor geëxporteerde tabellen" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Beperkingen voor tabel" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "Indexen voor geëxporteerde tabellen" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "Indexen voor tabel" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT voor geëxporteerde tabellen" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT voor een tabel" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "MIME-TYPES VOOR TABEL" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "RELATIES VOOR TABEL" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "Het lijkt erop dat uw tabel triggers gebruikt;" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "Structuur voor view %s geëxporteerd als tabel" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "Fout bij het lezen van gegevens:" @@ -10932,9 +10906,9 @@ msgstr "Relationeel schema" msgid "Table of contents" msgstr "Inhoudsopgave" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Extra" @@ -11156,47 +11130,47 @@ msgstr "Maakt de tekst op in JSON met syntaxiskleuring." msgid "Formats text as XML with syntax highlighting." msgstr "Maakt de tekst op in XML met syntaxiskleuring." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Fout: relatie bestaat reeds." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "FOREIGN KEY-relatie werd toegevoegd." -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Fout: vreemde (FOREIGN KEY) relatie kon niet toegevoegd worden!" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "Fout: Ontbrekende index op kolom(men)." -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "Fout: relatiefuncties zijn uitgeschakeld!" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "Interne relatie werd toegevoegd." -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 msgid "Error: Internal relation could not be added!" msgstr "Fout: Interne relatie kon niet toegevoegd worden!" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 msgid "FOREIGN KEY relation has been removed." msgstr "vreemde (FOREIGN KEY) relatie werd verwijderd." -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Fout: vreemde (FOREIGN KEY) relatie kon niet verwijderd worden!" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 msgid "Error: Internal relation could not be removed!" msgstr "Fout: Interne relatie kon niet verwijderd worden!" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "Interne relatie werd verwijderd." @@ -11242,71 +11216,71 @@ msgid "Please see the documentation on how to update your column_info table. " msgstr "" "Raadpleeg de documentatie over hoe u de tabel column_info kunt bijwerkt. " -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Opgeslagen SQL-query" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL-geschiedenis" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "Persistente recent gebruikte tabellen" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 msgid "Persistent favorite tables" msgstr "Persistente veelgebruikte tabellen" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "Persistente interfacevoorkeuren voor tabellen" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "Gebruikersvoorkeuren" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "Configureerbare menu's" # Zowel "frame" als "window" vertalen naar "venster". -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "Navigatieonderdelen tonen/verbergen" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "Query-door-voorbeeld opzoekingen wordt opgeslagen" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "Beheer van centrale lijst van kolommen" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "Onthoud Ontwerper Instellingen" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 msgid "Saving export templates" msgstr "Opslaan export templates" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "Snelle stappen voor het instellen van geavanceerde functies:" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "Maak de benodigde tabellen aan met %screate_tables.sql." # hem/haar/het past beter maar het geslacht van de gebruiker is # onvoorspelbaar. -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "Maak een pma-gebruiker aan en verleen die toegang tot deze tabellen." -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -11315,17 +11289,17 @@ msgstr "" "inc.php) ingeschakeld worden, als voorbeeld kunt u gebruik maken van " "config.sample.inc.php." -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Meld opnieuw aan bij phpMyAdmin om het bijgewerkte configuratiebestand te " "laden." -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "Geen beschrijving aanwezig" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11335,7 +11309,7 @@ msgstr "" "aan te maken. Je kunt naar de 'Operations' tab gaan van enige database om " "phpMyAdmin configuratie opslag in te stellen." -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11344,14 +11318,14 @@ msgstr "" "%sCreate%s een database met de naam 'phpmyadmin' en stel daar de phpMyAdmin " "configuratie opslag in." -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" "%sMaak%s de configuratie-opslag van phpMyAdmin aan in de huidige database." -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "%sCreate%s ontbrekende phpMyAdmin configuratie opslag tabellen." @@ -11543,8 +11517,8 @@ msgstr "Gebruikersnaam:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Gebruikersnaam" @@ -11552,7 +11526,7 @@ msgstr "Gebruikersnaam" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Wachtwoord" @@ -12182,7 +12156,7 @@ msgstr[1] "%1$d databases werden succesvol verwijderd." msgid "Plugin" msgstr "Plug-in" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Versie" @@ -12190,74 +12164,70 @@ msgstr "Versie" msgid "Author" msgstr "Auteur" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "Licentie" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "uitgeschakeld" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Geen rechten." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Omvat alle rechten behalve GRANT." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Maakt het lezen van gegevens mogelijk." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Maakt het mogelijk om gegevens in te voegen en te vervangen." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Maakt het mogelijk gegevens aan te passen." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Maakt het mogelijk om gegevens te verwijderen." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Maakt het mogelijk om nieuwe databases en tabellen te maken." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Maakt het mogelijk om databases en tabellen te verwijderen." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Maakt het mogelijk om de serverinstellingen opnieuw op te vragen en de cache " "van de server leeg te maken." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Maakt het mogelijk om de server te stoppen." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "Maakt het mogelijk om processen van alle gebruikers te zien." #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" "Maakt het mogelijk om gegevens te importeren en te exporteren van en naar " @@ -12265,27 +12235,27 @@ msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "Heeft geen effect in deze MySQL-versie." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Maakt het mogelijk om indexen aan te maken en te verwijderen." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Maakt het mogelijk de structuur van bestaande tabellen aan te passen." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Geeft toegang tot de volledige lijst van databases." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12297,22 +12267,22 @@ msgstr "" "van andere gebruikers." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Maakt het mogelijk om tijdelijke tabellen te maken." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Maakt het mogelijk tabellen op slot te zetten voor de huidige thread." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Nodig om slaves te repliceren." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Geeft het recht aan de gebruiker om te vragen waar de slaves / masters zijn." @@ -12320,45 +12290,45 @@ msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Maakt het mogelijk om nieuwe views te maken." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "Maakt het mogelijk om gebeurtenissen in de planner te zetten." #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "Maakt het mogelijk om triggers aan te maken en te verwijderen." #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Maakt het mogelijk om SHOW CREATE VIEW uit te voeren." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Maakt het mogelijk om opgeslagen routines aan te maken." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "" "Maakt het mogelijk om opgeslagen routines te bewerken en te verwijderen." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Maakt het mogelijk om gebruikersaccounts te maken, hernoemen en verwijderen." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Maakt het mogelijk om opgeslagen routines uit te voeren." @@ -12370,8 +12340,8 @@ msgstr "Geen" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Gebruikersgroep" @@ -12417,12 +12387,12 @@ msgstr "" "Opmerking: het instellen van deze waarden op 0 (nul) verwijdert de limiet." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Beperkt het aantal query's dat een gebruiker mag versturen per uur." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12431,28 +12401,28 @@ msgstr "" "een gebruiker per uur mag uitvoeren." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Beperkt het aantal nieuwe verbindingen die een gebruiker per uur mag openen." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Beperkt het aantal gelijktijdige verbindingen dat de gebruiker open kan " "hebben." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Routine" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12469,14 +12439,14 @@ msgstr "Staat het toe deze routine uit te voeren." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Tabel-specifieke rechten" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -12487,7 +12457,7 @@ msgid "Administration" msgstr "Administratie" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Globale rechten" @@ -12496,15 +12466,15 @@ msgid "Global" msgstr "Globaal" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Database-specifieke rechten" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Maakt het mogelijk nieuwe tabellen te maken." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Maakt het mogelijk tabellen te verwijderen." @@ -12521,7 +12491,7 @@ msgid "Native MySQL Authentication" msgstr "MySQL authenticatie" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Aanmeldingsinformatie" @@ -12546,8 +12516,8 @@ msgstr "Server naam:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 msgid "Host name" msgstr "Server naam" @@ -12563,113 +12533,113 @@ msgstr "Authenticatie Plugin" msgid "Password Hashing Method" msgstr "Wachtwoord hashing methode" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "Het wachtwoord voor %s is succesvol veranderd." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "U heeft de rechten ingetrokken voor %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 msgid "Add user account" msgstr "Gebruikersaccount toevoegen" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 msgid "Database for user account" msgstr "Database voor gebruikersaccount" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "Een database aanmaken met dezelfde naam en alle rechten hierop geven." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Alle rechten geven op de wildcardnaam (gebruikersnaam\\_%)." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Alle rechten geven op database \"%s\"." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Gebruikers die toegang hebben tot \"%s\"" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "Gebruiker is toegevoegd." -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Toekennen" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "Niet genoeg rechten om gebruikers in te zien." # Enkelvoud. -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "Geen gebruiker gevonden." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Elke" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "globaal" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "database-specifiek" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "jokerteken" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "tabel-specifiek" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 msgid "Edit privileges" msgstr "Rechten bewerken" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Ongedaan maken" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "Gebruikersgroep bewerken" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… de oude behouden." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… de oude verwijderen van de gebruikerstabellen." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… alle actieve rechten van de oude intrekken en deze daarna verwijderen." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12677,90 +12647,90 @@ msgstr "" "… de oude verwijderen van de gebruikerstabellen en de rechten nadien " "vernieuwen." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "Aanmeldingsinformatie wijzigen / Gebruikersaccount kopiëren" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "Een nieuwe gebruikersaccount aanmaken met dezelfde rechten en …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Routine-specifieke rechten" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 msgid "Remove selected user accounts" msgstr "De geselecteerde gebruikersaccounts verwijderen" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Trek alle actieve rechten in van alle gebruikers en verwijder deze daarna." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "Verwijder de databases die dezelfde naam hebben als de gebruikers." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "Geen gebruikers geselecteerd om te verwijderen!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "De rechten werden opnieuw ingeladen" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "De geselecteerde gebruikers zijn met succes verwijderd." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "U heeft de rechten aangepast voor %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "Verwijderen van %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "De rechten werden succesvol opnieuw ingeladen." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "De gebruiker %s bestaat al!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "Rechten voor %s" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Gebruiker" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "Nieuw" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 msgid "Edit privileges:" msgstr "Rechten bewerken:" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "Gebruikersaccount" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12768,11 +12738,11 @@ msgstr "" "Opmerking: U probeert de rechten te wijzigen van de gebruikersnaam waarmee u " "op dit moment ingelogd bent." -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "Gebruikersaccount overzicht" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " @@ -12783,7 +12753,7 @@ msgstr "" "maken als het server deel van hun account een verbinding toestaat vanaf elke " "server (%)." -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12797,7 +12767,7 @@ msgstr "" "geval zijn dan moet men %sde rechtentabel vernieuwen%s voordat men verder " "gaat." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12811,11 +12781,11 @@ msgstr "" "dit het geval zijn dan moet de gebruikersrechten opnieuw geladen worden, " "maar op dit moment heeft u niet het RELOAD gebruikersrecht." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "De geselecteerde gebruiker werd niet aangetroffen in de rechtentabel." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "U heeft een nieuwe gebruiker toegevoegd." @@ -13079,24 +13049,24 @@ msgstr "Instructies/Setup" msgid "Done dragging (rearranging) charts" msgstr "Klaar met slepen (herschikken) van de grafieken" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "Grafieken verslepen ingeschakeld" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "Vernieuwingsfrequentie" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "Grafiekkolommen" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "Grafiekschikking" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -13105,7 +13075,7 @@ msgstr "" "browser. Eventueel kan u dit exporteren, als u een ingewikkelde configuratie " "heeft." -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "Standaardwaarde herstellen" @@ -13161,7 +13131,7 @@ msgid "Statements" msgstr "Opdrachten" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "#" @@ -13186,7 +13156,7 @@ msgstr "Toon niet-opgemaakte waarden" msgid "Related links:" msgstr "Gerelateerde links:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -13194,11 +13164,11 @@ msgstr "" "Het aantal verbindingen dat afgebroken werd omdat de client wegviel zonder " "de verbinding keurig af te sluiten." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Aantal gefaalde pogingen om te verbinden met de MySQL-server." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13209,18 +13179,18 @@ msgstr "" "hebben gemaakt van een tijdelijk bestand om opdrachten uit de transactie op " "te slaan." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Het aantal transactie dat gebruik maakte van de tijdelijke binaire logcache." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Het aantal verbindingspogingen (succesvol of niet) met de MySQL-server." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13232,11 +13202,11 @@ msgstr "" "groot is, is het aangewezen om tmp_table_size te vergroten om tijdelijke " "tabellen aan te maken in geheugen in plaats van op harde schijf." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "Het aantal tijdelijke bestanden dat door MySQL werd aangemaakt." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13244,7 +13214,7 @@ msgstr "" "Het aantal in het geheugen geplaatste tijdelijke tabellen dat automatisch " "door de server werd aangemaakt tijdens het uitvoeren van opdrachten." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13252,7 +13222,7 @@ msgstr "" "Het aantal met INSERT DELAYED opgeslagen rijen waarbij er een fout optrad " "(mogelijk een reeds bestaande sleutel)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13260,23 +13230,23 @@ msgstr "" "Het aantal INSERT DELAYED afhandelingsthreads in gebruik. Elke afzonderlijke " "tabel waarop INSERT DELAYED wordt toegepast krijgt een eigen thread." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "Het aantal met INSERT DELAYED opgeslagen rijen." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "Het aantal uitgevoerde FLUSH-opdrachten." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "Het aantal interne COMMIT-opdrachten." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "Het aantal keer dat een rij werd verwijderd uit een tabel." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13286,7 +13256,7 @@ msgstr "" "met een bepaalde naam. Dit wordt discovery genoemd. Handler_discover geeft " "aan hoeveel tabellen met discovery werden opgezocht." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13296,7 +13266,7 @@ msgstr "" "hoog geeft dit een indicatie dat de server veel scans doet op de volledige " "index; bijvoorbeeld SELECT kolom1 FROM foo, waarbij kolom1 is geïndexeerd." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -13305,7 +13275,7 @@ msgstr "" "hoog is dit een indicatie dat er goed gebruik wordt gemaakt van de aanwezige " "indexen." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13315,7 +13285,7 @@ msgstr "" "wordt verhoogd wanneer u een indexkolom raadpleegt met een bereikbeperking " "of bij het doen van een indexscan." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13323,7 +13293,7 @@ msgstr "" "Het aantal leesopdrachten voor de voorgaande rij in de sleutelvolgorde. Dit " "wordt hoofdzakelijk gebruikt voor het optimaliseren van ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13336,7 +13306,7 @@ msgstr "" "gehele tabel moet scannen of er worden joins toegepast die niet goed " "gebruikmaken van sleutels." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13348,35 +13318,35 @@ msgstr "" "betekent dit dat de gebruikte tabellen niet optimaal van indexen zijn " "voorzien of dat de toegepaste query's hier niet optimaal gebruik van maken." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "Het aantal interne ROLLBACK-opdrachten." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "Het aantal update-opdrachten voor een tabelrij." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "Het aantal opdrachten om een rij aan een tabel toe te voegen." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "Het aantal pagina's dat gegevens bevat (dirty en clean)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "Het aantal pagina's dat momenteel \"dirty\" is." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Het aantal bufferpool-pagina's dat is geschoond." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "Het aantal vrije pagina's." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13386,7 +13356,7 @@ msgstr "" "waarin momenteel wordt gelezen of geschreven, of die om een andere reden " "niet geschoond of verwijderd kunnen worden." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13398,11 +13368,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "Totale grootte van de bufferpool, in pagina's." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13411,7 +13381,7 @@ msgstr "" "gebeurt wanneer een query een groot deel van een tabel laat scannen, maar in " "willekeurige volgorde." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13419,11 +13389,11 @@ msgstr "" "Het aantal sequentiële read-aheads dat door InnoDB werd geïnitieerd. Dit " "gebeurt wanneer er een volledige tabelscan wordt uitgevoerd." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "Het aantal logische leesverzoeken dat door InnoDB werd uitgevoerd." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13431,7 +13401,7 @@ msgstr "" "Het aantal logische leesoperaties dat InnoDB niet kon doen vanuit de " "bufferpool maar waarvoor een extra pagina ingeladen moest worden." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13445,86 +13415,86 @@ msgstr "" "zijn geschoond. Deze teller houdt bij hoe vaak dit voorkomt. Indien de " "bufferpool-grootte goed is ingesteld hoort deze waarde laag te zijn." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "Het aantal schrijfoperaties uitgevoerd op de InnoDB-bufferpool." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "Het aantal fsync()-operaties." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "Het aantal momenteel openstaande fsync()-operaties." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "Het aantal momenteel openstaande leesoperaties." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "Het aantal momenteel openstaande schrijfoperaties." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "De hoeveelheid tot nu toe gelezen gegevens, in bytes." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "Het totale aantal operaties voor het lezen van gegevens." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "Het totale aantal operaties voor het schrijven van gegevens." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "De hoeveelheid tot nu toe geschreven gegevens, in bytes." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "Het aantal pagina's dat werd geschreven voor doublewrite-operaties." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "Het aantal uitgevoerde doublewrite-operaties." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" "Het aantal keer dat er gewacht moest worden vanwege een volle logbuffer." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "Het aantal verzoeken voor het schrijven in het logboek." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "Het aantal fysieke schrijfoperaties op het logbestand." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "Het aantal fsync()-schrijfoperaties uitgevoerd op het logbestand." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "Het aantal momenteel openstaande fsync-operaties op het logbestand." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "Het aantal momenteel openstaande schrijfoperaties op het logbestand." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "Het aantal bytes dat naar het logbestand werd geschreven." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "Het aantal pagina's dat werd aangemaakt." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -13533,54 +13503,54 @@ msgstr "" "Veel waarden worden geteld in pagina's. Een vaste paginagrootte maakt het " "eenvoudig deze om te zetten naar bytes." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "Het aantal gelezen pagina's." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "Het aantal geschreven pagina's." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "Het aantal gelockte rijen waar momenteel op wordt gewacht." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "De gemiddelde tijd nodig om een rij-lock te verkrijgen, in milliseconden." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "De totale tijd besteed aan het verkrijgen van rij-locks, in milliseconden." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "De maximale tijd nodig om een rij-lock te verkrijgen, in milliseconden." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "Het aantal keer dat er op een rij-lock moest worden gewacht." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "Het aantal rijen dat werd verwijderd uit InnoDB-tabellen." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "Het aantal rijen dat werd ingevoegd in InnoDB-tabellen." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "Het aantal rijen dat werd gelezen uit InnoDB-tabellen." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "Het aantal rijen dat werd bijgewerkt in InnoDB-tabellen." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13589,13 +13559,13 @@ msgstr "" "niet naar disk zijn geschreven. Dit stond voorheen bekend als " "Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "Het aantal ongebruikte blokken in het sleutelcache." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13604,15 +13574,15 @@ msgstr "" "Het aantal gebruikte blokken in het sleutelcache. Dit is de maximaal " "behaalde waarde sinds het starten van de server." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "Percentage van de gebruikte sleutelcache (berekende waarde)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "Het aantal leesopdrachten voor een sleutelblok uit het cache." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13622,7 +13592,7 @@ msgstr "" "key_reads groot is, is de waarde van key_buffer_size mogelijk te laag. De " "cache miss rate kan worden berekend met Key_reads / Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13630,22 +13600,22 @@ msgstr "" "Sleutelcachemissers berekend als percentage van fysieke leesoperaties in " "vergelijking met leesverzoeken (berekende waarde)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "Het aantal schrijfopdrachten voor een sleutelblok naar de cache." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "Het aantal fysieke schrijfopdrachten voor een sleutelblok naar disk." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Percentage van fysieke schrijfopdrachten vergeleken met schrijfverzoeken " "(berekende waarde)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13656,7 +13626,7 @@ msgstr "" "verschillende query plans voor dezelfde query. De standaardwaarde 0 betekent " "dat er nog geen query is gecompileerd." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13664,13 +13634,13 @@ msgstr "" "Het maximum aantal verbindingen dat gelijktijdig in gebruik was sinds de " "server gestart werd." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Het aantal rijen dat klaar staat om te worden geschreven in INSERT DELAYED-" "wachtrijen." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13678,21 +13648,21 @@ msgstr "" "Het aantal tabellen dat werd geopend. Indien hoog, is mogelijk de " "tabelcachewaarde te laag." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "Het totaal aantal geopende bestanden." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Het aantal open streams (hoofdzakelijk gebruikt voor het schrijven naar " "logboeken)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "Het totaal aantal open tabellen." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13702,19 +13672,19 @@ msgstr "" "wijzen op versnippering, wat opgelost kan worden door een FLUSH QUERY CACHE-" "statement uit te voeren." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "De hoeveelheid vrij geheugen voor het querycache." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "Het aantal cache-hits." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "Het aantal query's dat aan de cache werd toegevoegd." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13727,7 +13697,7 @@ msgstr "" "gebruikt (least recently used, LRU) strategie om te bepalen welke query's " "worden verwijderd." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13735,19 +13705,19 @@ msgstr "" "Het aantal niet-gecachte query's (niet cachebaar, dan wel niet gecached " "vanwege de instelling query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "Het aantal query's dat in de cache staat." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "Het totaal aantal blokken in de querycache." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "De status van failsafe-replicatie (nog niet geïmplementeerd)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -13755,13 +13725,13 @@ msgstr "" "Het aantal joins dat geen gebruik maakt van een index. Indien dit geen 0 is, " "is het aan te raden om het gebruik van indexen te controleren." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" "Het aantal joins dat een bereik beperking toepassen op een gerefereerde " "tabel." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -13770,7 +13740,7 @@ msgstr "" "van een sleutel. (Indien dit geen 0 is, is het aan te raden om het gebruik " "van indexen te controleren.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13778,17 +13748,17 @@ msgstr "" "Het aantal joins dat een bereik beperking gebruikt op de eerste tabel. (Dit " "hoeft geen groot probleem te zijn, zelfs niet bij grote tabellen.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "Het aantal joins dat een volledige scan van de eerste tabel uitvoerde." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Het aantal momenteel openstaande tijdelijke tabellen voor de slave-SQL-" "thread." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13796,13 +13766,13 @@ msgstr "" "Het totaal aantal transacties dat moest worden herhaald door de replicatie-" "slave-SQL-thread (sinds het opstarten van de server)." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Dit staat op 'ON' indien deze server als een replicatie-slave verbonden is " "met een masterserver." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -13810,14 +13780,14 @@ msgstr "" "Het aantal threads waarvoor het opstarten langer dan slow_launch_time " "seconden duurde." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Het aantal query's waarvan het uitvoeren langer dan long_query_time seconden " "duurde." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13827,24 +13797,24 @@ msgstr "" "uitvoeren. Indien deze waarde hoog is, is het een optie om de " "systeemvariabele sort_buffer_size te vergroten." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "Het aantal sorteringen dat werd uitgevoerd met een bereikbeperking." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "Het aantal gesorteerde rijen." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" "Het aantal sorteringen dat werd uitgevoerd door het scannen van de tabel." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "Het aantal keer dat een tabel-lock direct kon worden verkregen." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13856,7 +13826,7 @@ msgstr "" "problemen, kunt u het beste eerst uw query's optimaliseren. Daarna kunt u " "nog kijken naar het splitsen van tabellen en het gebruik van replicatie." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13866,11 +13836,11 @@ msgstr "" "met Threads_created/Connections. Indien deze waarde rood staat aangegeven is " "het aan te raden om thread_cache_size te vergroten." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "Het aantal momenteel openstaande verbindingen." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13882,11 +13852,11 @@ msgstr "" "verhogen. (Dit geeft echter in de meeste gevallen, bij gebruik van een goede " "thread-implementatie, geen noemenswaardige prestatieverbetering.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "Threadcache-trefprecentage (berekende waarde)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "Het aantal threads dat actief bezig is." @@ -13895,58 +13865,58 @@ msgstr "Het aantal threads dat actief bezig is." msgid "Users of '%s' user group" msgstr "Gebruikers in '%s' gebruikersgroep" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" "Er werden geen gebruikers gevonden die tot deze gebruikersgroep behoren." -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "Gebruikersgroepen" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "Tabs op serverniveau" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "Tabs op databaseniveau" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "Tabs op tabelniveau" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "View gebruikers" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "Gebruikersgroep toevoegen" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "Bewerk gebruikersgroep: '%s'" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "Gebruikersgroep menutoewijzingen" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "Groepsnaam:" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "Tabs op serverniveau" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "Tabs op databaseniveau" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "Tabs op tabelniveau" @@ -14006,21 +13976,17 @@ msgstr "Een sluitingshaakje werd verwacht." msgid "Unrecognized data type." msgstr "Onbekend gegevenstype." -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "Onverwacht sluitingshaakje." - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "Een alias was eerder al gevonden." -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "Onverwachte punt." -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 msgid "An alias was expected." msgstr "Een alias werd verwacht." @@ -14076,107 +14042,107 @@ msgstr "Eindquote %1$s werd verwacht." msgid "Variable name was expected." msgstr "Naam van variabele werd verwacht." -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 msgid "Unexpected beginning of statement." msgstr "Onverwacht begin van opdracht." -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "Opdracht type niet herkent." -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "Er is geen transactie gestart." -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "Onverwacht token." -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "Dit type van voorwaarde is eerder uitgevoerd." -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" "Een nieuwe opdracht werd gevonden, maar zonder scheidingsteken tussen deze " "en de vorige opdracht." -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "Sleutelwoord niet herkent." -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "De naam van de entiteit werd verwacht." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 msgid "At least one column definition was expected." msgstr "Er werd minimaal één kolomdefinitie verwacht." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "Een \"RETURNS\" sleutelwoord werd verwacht." -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "Gedetailleerd profiel" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "Volgorde" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "Toestand" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "Samenvatting per toestand" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "Totale tijd" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "% Tijd" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "Oproepen" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "Gemiddelde tijd" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Deze SQL-query opslaan" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "Label:" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Elke gebruiker toegang geven tot deze bladwijzer" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "Bladwijzer niet aangemaakt!" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Bladwijzer \"%s\" wordt gebruikt als standaard browsequery." -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "Getoond als PHP-code" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " @@ -14186,7 +14152,7 @@ msgstr "" "rasterbewerkingen, checkboxen, Bewerken, Kopiëren en Verwijderen, zijn niet " "beschikbaar. %s" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " @@ -14196,7 +14162,7 @@ msgstr "" "rasterbewerkingen, checkboxen, Bewerken, Kopiëren en Verwijderen, kunnen " "resulteren in onwenselijke acties. %s" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemen met de indexen van de tabel `%s`" @@ -14224,27 +14190,27 @@ msgstr "Neem automatisch opgeslagen query" msgid "Bind parameters" msgstr "Bind parameters" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "Deze SQL-query onthouden:" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Bladwijzer met dezelfde naam overschrijven" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Scheidingsteken" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Laat deze query hier zien" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "Draai terug wanneer gereed" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Alleen bekijken" @@ -14288,112 +14254,112 @@ msgstr "Tracking uitschakelen van %s" msgid "Deactivate now" msgstr "Nu uitschakelen" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Aangemaakt" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Bijgewerkt" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 msgid "Delete version" msgstr "Versie verwijderen" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Tracking-rapport" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Structuur-snapshot" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "ingeschakeld" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "niet actief" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "Tracking-statements" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "Verwijder tracking-gegevensrij uit verslag" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "Geen gegevens" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Laat %1$s zien met datums van %2$s tot %3$s door gebruiker %4$s %5$s" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "SQL-export (naar bestand)" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "SQL-export" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "Deze optie vervangt de tabel en alle gegevens van die tabel." -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "SQL-uitvoering" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "Exporteren als %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "Manipulatie-statement" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "Definitie-statement" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Datum" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Gebruikersnaam" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Versie %s snapshot (SQL-code)" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Geen" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "Tracking-gegevensdefinitie succesvol verwijderd" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "Tracking-gegevensmanipulatie succesvol verwijderd" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14401,64 +14367,64 @@ msgstr "" "U kunt de export gebruiken door deze in een tijdelijke database te " "importeren. Let er wel op dat u hier rechten voor nodig heeft." -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" "De onderstaande 2 regels kunt u in commentaar zetten indien ze niet nodig " "zijn." -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "SQL-statements geëxporteerd. Kopieer het exportbestand of voer deze uit." -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "Tracking-rapport voor tabel `%s`" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Tracking van %1$s is ingeschakeld op versie %2$s." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Tracking van %1$s is uitgeschakeld op versie %2$s." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Versie %1$s van %2$s werd verwijderd." -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versie %1$s is aangemaakt, tracking van %2$s is ingeschakeld." -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Tabellen zonder tracker" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Tabel tracken" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Tabellen met tracker" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Laatste versie" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "Verwijder tracking" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Versies" @@ -14466,11 +14432,11 @@ msgstr "Versies" msgid "Manage your settings" msgstr "Uw instellingen beheren" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "De configuratie werd opgeslagen." -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14577,7 +14543,7 @@ msgstr "Geen databases" msgid "View dump (schema) of databases" msgstr "Export (schema) van de databases bekijken" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14606,7 +14572,7 @@ msgstr "" "phpMyAdmin is er niet in geslaagd om de %s te sluiten. Waarschijnlijk is het " "al gesloten." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "Niet genoeg rechten om query statistieken in te zien." @@ -15429,43 +15395,49 @@ msgstr "Puntenwolk" msgid "Stacked" msgstr "Opgestapeld" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "Grafiektitel" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "X-as:" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "Series:" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "Label X-as:" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "X-waarden" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "Label van Y-as:" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Y-waarden" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "Namen van de series zitten in een kolom" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "Kolom met series:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 msgid "Value Column:" msgstr "Kolom met waarden:" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "Sla grafiek op als afbeelding" @@ -15520,15 +15492,43 @@ msgstr "Opmerking:" msgid "Drag to reorder" msgstr "Sleep om te herschikken" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +msgid "Foreign key constraints" +msgstr "Beperkingen voor vreemde sleutel" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "Acties" + +#: templates/table/relation/common_form.phtml:10 +msgid "Constraint properties" +msgstr "Beperkingseigenschappen" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" +"Alleen kolommen met een index zullen worden weergegeven. U kunt hieronder " +"een index definiëren." + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "Beperking voor vreemde sleutel" + +#: templates/table/relation/common_form.phtml:60 +msgid "+ Add constraint" +msgstr "+ Voeg beperking toe" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "Interne relaties" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "Interne relatie" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15536,34 +15536,7 @@ msgstr "" "Een interne relatie is niet noodzakelijk wanneer er reeds een FOREIGN KEY-" "relatie bestaat." -#: templates/table/relation/common_form.phtml:37 -msgid "Foreign key constraints" -msgstr "Beperkingen voor vreemde sleutel" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "Acties" - -#: templates/table/relation/common_form.phtml:41 -msgid "Constraint properties" -msgstr "Beperkingseigenschappen" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" -"Alleen kolommen met een index zullen worden weergegeven. U kunt hieronder " -"een index definiëren." - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "Beperking voor vreemde sleutel" - -#: templates/table/relation/common_form.phtml:83 -msgid "+ Add constraint" -msgstr "+ Voeg beperking toe" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "Kies weer te geven kolom:" @@ -15691,7 +15664,7 @@ msgid "at beginning of table" msgstr "bij begin van de tabel" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 msgid "Partitions" msgstr "Partities %s" @@ -15724,7 +15697,7 @@ msgstr "Partitietabel" msgid "Edit partitioning" msgstr "Partitionering bewerken" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "View bewerken" @@ -17136,6 +17109,39 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert is ingesteld op 0" +#~ msgid "To filter all databases on server, press Enter after a search term" +#~ msgstr "" +#~ "Om alle databases op de server te filteren, druk op Enter achter een " +#~ "zoekterm" + +#~ msgid "To filter all %s in database, press Enter after a search term" +#~ msgstr "" +#~ "Om alle %s in de database te filteren, druk op Enter achter een zoekterm" + +#~ msgid "tables" +#~ msgstr "Tabellen" + +#~ msgid "views" +#~ msgstr "views" + +#~ msgid "procedures" +#~ msgstr "Procedures" + +#~ msgid "events" +#~ msgstr "gebeurtenis" + +#~ msgid "functions" +#~ msgstr "functies" + +#~ msgid "Filter databases by name or regex" +#~ msgstr "Databases filteren op naam of regex" + +#~ msgid "Filter by name or regex" +#~ msgstr "Filter op naam of regex" + +#~ msgid "Unexpected closing bracket." +#~ msgstr "Onverwacht sluitingshaakje." + #~ msgid "Username and hostname didn't change." #~ msgstr "Gebruikersnaam en hostname werden niet gewijzigd." diff --git a/po/pa.po b/po/pa.po index e65cf5384b..718c7575cf 100644 --- a/po/pa.po +++ b/po/pa.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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2014-01-06 12:13+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Punjabi Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 msgid "Page name" msgstr "" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:550 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:551 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:552 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Show all" msgid "Show hidden navigation tree items." msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -msgid "tables" -msgstr "" - -#: js/messages.php:633 -msgid "views" -msgstr "" - -#: js/messages.php:634 -msgid "procedures" -msgstr "" - -#: js/messages.php:635 -msgid "events" -msgstr "" - -#: js/messages.php:636 -msgid "functions" -msgstr "" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2342,400 +2323,400 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr "" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Show all" msgid "Show report details" msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Show all" msgid "Show arguments" msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "ਜਨਵਰੀ" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "ਫ਼ਰਵਰੀ" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "ਮਾਰਚ" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "ਅਪ੍ਰੈਲ" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "ਮਈ" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "ਜੂਨ" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "ਜੁਲਾਈ" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "ਅਗਸਤ" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "ਸਤੰਬਰ" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "ਅਕਤੂਬਰ" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "ਨਵੰਬਰ" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "ਦਸੰਬਰ" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "ਜਨਵਰੀ" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "ਫ਼ਰਵਰੀ" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "ਮਾਰਚ" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "ਅਪ੍ਰੈਲ" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "ਮਈ" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "ਜੂਨ" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "ਜੁਲਾਈ" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "ਅਗਸਤ" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "ਸਤੰਬਰ" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "ਅਕਤੂਬਰ" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "ਨਵੰਬਰ" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "ਦਸੰਬਰ" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "ਐਤਵਾਰ" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "ਸੋਮਵਾਰ" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "ਮੰਗਲਵਾਰ" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "ਬੁਧਵਾਰ" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "ਵੀਰਵਾਰ" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "ਸ਼ੁੱਕਰਵਾਰ" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "ਸ਼ਨੀਵਾਰ" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "ਐਤ" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "ਸੋਮ" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "ਮੰਗਲ" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "ਬੁਧ" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "ਵੀਰ" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "ਸ਼ੁੱਕਰ" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "ਸ਼ਨੀ" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "ਐਤ" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "ਸੋਮ" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "ਮੰਗਲ" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "ਬੁਧ" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "ਵੀਰ" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "ਸ਼ੁੱਕਰ" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "ਸ਼ਨੀ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "" @@ -2743,41 +2724,41 @@ msgstr "" msgid "Please enter the same value again" msgstr "" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "" @@ -2862,11 +2843,12 @@ msgstr "" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -2908,7 +2890,7 @@ msgstr "" msgid "Explain" msgstr "" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "" @@ -2942,8 +2924,8 @@ msgid "History" msgstr "ਅਤੀਤ ਵੇਖੋ" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3090,30 +3072,30 @@ msgstr "" msgid "Switch to dark theme" msgstr "" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3123,8 +3105,8 @@ msgstr "" msgid "Ascending" msgstr "" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3271,8 +3253,8 @@ msgstr[0] "" msgstr[1] "" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3314,185 +3296,186 @@ msgstr "" msgid "Inside column:" msgstr "" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 msgid "Display column for relations" msgstr "" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "Database %1$s has been created." msgid "The row has been deleted." msgstr "%1$s ਡਾਟਾਬੇਸ ਬਣ ਚੁੱਕਾ ਹੈ." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 msgid "Check all" msgstr "" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "" @@ -3584,19 +3567,19 @@ msgstr "" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3605,24 +3588,24 @@ msgid "Action" msgstr "" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "" @@ -3630,8 +3613,8 @@ msgstr "" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3641,8 +3624,8 @@ msgid "Collation" msgstr "" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3658,15 +3641,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "" @@ -3703,12 +3686,13 @@ msgstr "" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3716,7 +3700,7 @@ msgstr "" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3725,8 +3709,8 @@ msgid "SQL" msgstr "" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3734,41 +3718,41 @@ msgid "Search" msgstr "ਲੱਭੋ" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3779,16 +3763,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3796,20 +3780,20 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "" @@ -3818,33 +3802,33 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4141,7 +4125,7 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4550,37 +4534,37 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "" @@ -4741,8 +4725,8 @@ msgid "Add new column" msgstr "" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -4801,19 +4785,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -5579,7 +5563,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -5618,7 +5602,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "" @@ -7182,7 +7166,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "" @@ -7454,103 +7438,35 @@ msgstr "" msgid "OpenDocument Text" msgstr "" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "View %s has been dropped." msgstr "%1$s ਡਾਟਾਬੇਸ ਬਣ ਚੁੱਕਾ ਹੈ." -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "Table %s has been dropped." msgstr "%1$s ਡਾਟਾਬੇਸ ਬਣ ਚੁੱਕਾ ਹੈ." -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "" - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "" - -#: libraries/controllers/TableStructureController.php:967 -#, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "" - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -7564,6 +7480,14 @@ msgstr "" msgid "No data to display" msgstr "" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "" + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "" @@ -7574,19 +7498,79 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr "%1$s ਡਾਟਾਬੇਸ ਬਣ ਚੁੱਕਾ ਹੈ." -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:975 +#, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -7596,7 +7580,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7661,7 +7645,7 @@ msgstr "" msgid "Create database:" msgstr "" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "" @@ -8323,69 +8307,69 @@ msgid "Dump has been saved to file %s." msgstr "" #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "" @@ -8408,71 +8392,71 @@ msgstr "" msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -8484,11 +8468,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -8504,35 +8488,35 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "" @@ -8750,8 +8734,8 @@ msgstr "" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "" @@ -8789,7 +8773,8 @@ msgstr[0] "" msgstr[1] "" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" msgstr "" #: libraries/navigation/NavigationTree.php:1371 @@ -8797,10 +8782,6 @@ msgstr "" msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -9175,7 +9156,7 @@ msgstr "" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9184,7 +9165,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "" @@ -9202,18 +9183,18 @@ msgstr "" msgid "Drop the database (DROP)" msgstr "" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "" @@ -9225,7 +9206,7 @@ msgstr "" msgid "CREATE DATABASE before copying" msgstr "" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "" @@ -9265,157 +9246,157 @@ msgstr "" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 msgid "Checksum table" msgstr "" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "" @@ -9580,7 +9561,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -9604,21 +9585,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -9708,7 +9689,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "" @@ -9800,7 +9781,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -9869,8 +9850,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9878,81 +9859,81 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 msgid "Metadata" msgstr "" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "" @@ -10181,9 +10162,9 @@ msgstr "" msgid "Table of contents" msgstr "" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "" @@ -10347,55 +10328,55 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "Database %1$s has been created." msgid "Internal relation has been added." msgstr "%1$s ਡਾਟਾਬੇਸ ਬਣ ਚੁੱਕਾ ਹੈ." -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "Database %1$s has been created." msgid "Error: Internal relation could not be added!" msgstr "%1$s ਡਾਟਾਬੇਸ ਬਣ ਚੁੱਕਾ ਹੈ." -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "Database %1$s has been created." msgid "FOREIGN KEY relation has been removed." msgstr "%1$s ਡਾਟਾਬੇਸ ਬਣ ਚੁੱਕਾ ਹੈ." -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "Database %1$s has been created." msgid "Error: Internal relation could not be removed!" msgstr "%1$s ਡਾਟਾਬੇਸ ਬਣ ਚੁੱਕਾ ਹੈ." -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Database %1$s has been created." msgid "Internal relation has been removed." @@ -10442,104 +10423,104 @@ msgstr "" msgid "Please see the documentation on how to update your column_info table. " msgstr "" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "Show all" msgid "Persistent favorite tables" msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 msgid "Saving export templates" msgstr "" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -10711,8 +10692,8 @@ msgstr "ਵਰਤੋਂਕਾਰ ਦਾ ਨਾਂ:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "ਵਰਤੋਂਕਾਰ ਦਾ ਨਾਂ" @@ -10720,7 +10701,7 @@ msgstr "ਵਰਤੋਂਕਾਰ ਦਾ ਨਾਂ" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "" @@ -11332,7 +11313,7 @@ msgstr[1] "" msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "" @@ -11340,98 +11321,94 @@ msgstr "" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "" #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "" #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "" #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -11439,65 +11416,65 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "" #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "" #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -11509,8 +11486,8 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -11550,37 +11527,37 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -11595,14 +11572,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11612,7 +11589,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "" @@ -11621,15 +11598,15 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "" @@ -11646,7 +11623,7 @@ msgid "Native MySQL Authentication" msgstr "" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "" @@ -11671,8 +11648,8 @@ msgstr "ਵਰਤੋਂਕਾਰ ਦਾ ਨਾਂ:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "User name" msgid "Host name" @@ -11690,216 +11667,216 @@ msgstr "" msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 msgid "Database for user account" msgstr "" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 msgid "Remove selected user accounts" msgstr "" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11908,7 +11885,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11917,11 +11894,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "" @@ -12143,30 +12120,30 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -12220,7 +12197,7 @@ msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "#" @@ -12245,33 +12222,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12279,78 +12256,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12358,7 +12335,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12366,42 +12343,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12409,33 +12386,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12444,242 +12421,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12687,99 +12664,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12787,18 +12764,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12806,11 +12783,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -12819,57 +12796,57 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "" @@ -12931,21 +12908,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "Database %1$s has been created." msgid "An alias was expected." @@ -13005,121 +12978,121 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "Database %1$s has been created." msgid "At least one column definition was expected." msgstr "%1$s ਡਾਟਾਬੇਸ ਬਣ ਚੁੱਕਾ ਹੈ." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -13147,27 +13120,27 @@ msgstr "" msgid "Bind parameters" msgstr "" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "" @@ -13211,172 +13184,172 @@ msgstr "" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 msgid "Delete version" msgstr "" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "ਵਰਤੋਂਕਾਰ ਦਾ ਨਾਂ" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "" @@ -13384,11 +13357,11 @@ msgstr "" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -13487,7 +13460,7 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -13512,7 +13485,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -14300,43 +14273,47 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +msgid "Chart title:" +msgstr "" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 msgid "Value Column:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "" @@ -14389,48 +14366,49 @@ msgstr "" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +msgid "Foreign key constraints" +msgstr "" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "" + +#: templates/table/relation/common_form.phtml:10 +msgid "Constraint properties" +msgstr "" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "" + +#: templates/table/relation/common_form.phtml:60 +msgid "+ Add constraint" +msgstr "" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 #, fuzzy #| msgid "Database %1$s has been created." msgid "Internal relations" msgstr "%1$s ਡਾਟਾਬੇਸ ਬਣ ਚੁੱਕਾ ਹੈ." -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:37 -msgid "Foreign key constraints" -msgstr "" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "" - -#: templates/table/relation/common_form.phtml:41 -msgid "Constraint properties" -msgstr "" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "" - -#: templates/table/relation/common_form.phtml:83 -msgid "+ Add constraint" -msgstr "" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "" @@ -14557,7 +14535,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 msgid "Partitions" msgstr "" @@ -14592,7 +14570,7 @@ msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "" diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index 220e577aec..f99b4243b0 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: changelog.php:37 license.php:30 +#: changelog.php:37 license.php:33 #, possible-php-format msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " @@ -38,7 +38,7 @@ msgstr "" msgid "Showing rows %1$s - %2$s." msgstr "" -#: db_create.php:61 +#: db_create.php:62 #, possible-php-format msgid "Database %1$s has been created." msgstr "" @@ -47,13 +47,13 @@ msgstr "" msgid "Database comment" msgstr "" -#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:601 +#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:599 #: templates/columns_definitions/column_definitions_form.phtml:84 msgid "Table comments:" msgstr "" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1568 +#: libraries/insert_edit.lib.php:1575 #: libraries/navigation/nodes/NodeColumn.php:34 #: libraries/plugins/export/ExportHtmlword.php:288 #: libraries/plugins/export/ExportHtmlword.php:384 @@ -63,13 +63,14 @@ msgstr "" #: libraries/plugins/export/ExportTexytext.php:282 #: libraries/plugins/export/ExportTexytext.php:373 #: libraries/plugins/export/PMA_ExportPdf.php:472 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:882 libraries/tracking.lib.php:978 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 +#: libraries/tracking.lib.php:892 libraries/tracking.lib.php:990 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:10 -#: templates/table/relation/common_form.phtml:43 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:27 +#: templates/table/relation/common_form.phtml:79 #: templates/table/relation/foreign_key_row.phtml:176 #: templates/table/relation/foreign_key_row.phtml:188 #: templates/table/relation/internal_relational_row.phtml:73 @@ -89,14 +90,14 @@ msgstr "" #: libraries/plugins/export/ExportTexytext.php:283 #: libraries/plugins/export/ExportTexytext.php:374 #: libraries/plugins/export/PMA_ExportPdf.php:474 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 #: libraries/rte/rte_list.lib.php:78 libraries/rte/rte_list.lib.php:106 #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2606 libraries/tracking.lib.php:883 -#: libraries/tracking.lib.php:975 +#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -106,7 +107,7 @@ msgstr "" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:709 -#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1577 +#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1584 #: libraries/plugins/export/ExportHtmlword.php:294 #: libraries/plugins/export/ExportHtmlword.php:390 #: libraries/plugins/export/ExportLatex.php:517 @@ -115,9 +116,9 @@ msgstr "" #: libraries/plugins/export/ExportTexytext.php:284 #: libraries/plugins/export/ExportTexytext.php:375 #: libraries/plugins/export/PMA_ExportPdf.php:476 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 -#: libraries/tracking.lib.php:885 libraries/tracking.lib.php:981 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/tracking.lib.php:895 libraries/tracking.lib.php:993 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 @@ -134,9 +135,9 @@ msgstr "" #: libraries/plugins/export/ExportTexytext.php:285 #: libraries/plugins/export/ExportTexytext.php:376 #: libraries/plugins/export/PMA_ExportPdf.php:478 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 -#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:886 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:896 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 @@ -148,8 +149,8 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:488 #: libraries/plugins/export/ExportTexytext.php:378 #: libraries/plugins/export/PMA_ExportPdf.php:487 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:640 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:663 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 msgid "Links to" msgstr "" @@ -160,37 +161,38 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:381 #: libraries/plugins/export/PMA_ExportPdf.php:494 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:651 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:664 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:649 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 #: templates/columns_definitions/table_fields_definitions.phtml:65 msgid "Comments" msgstr "" -#: db_datadict.php:155 libraries/controllers/TableStructureController.php:1189 -#: libraries/controllers/TableStructureController.php:1194 -#: libraries/tracking.lib.php:925 +#: db_datadict.php:155 +#: libraries/controllers/table/TableStructureController.php:1197 +#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:79 +#: templates/table/structure/display_structure.phtml:80 msgid "Primary" msgstr "" -#: db_datadict.php:165 js/messages.php:370 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:371 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 -#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:403 -#: libraries/mult_submits.lib.php:417 +#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:408 +#: libraries/mult_submits.lib.php:422 #: libraries/plugins/export/ExportHtmlword.php:654 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:710 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2971 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3620 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1013 libraries/tracking.lib.php:1018 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2973 +#: libraries/server_privileges.lib.php:2993 +#: libraries/server_privileges.lib.php:3631 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -199,32 +201,32 @@ msgstr "" msgid "No" msgstr "" -#: db_datadict.php:165 js/messages.php:515 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:516 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 #: libraries/config/FormDisplay.tpl.php:280 -#: libraries/controllers/TableStructureController.php:770 -#: libraries/controllers/TableStructureController.php:1440 -#: libraries/controllers/TableStructureController.php:1449 -#: libraries/controllers/TableStructureController.php:1454 -#: libraries/controllers/TableStructureController.php:1459 -#: libraries/controllers/TableStructureController.php:1464 -#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:199 -#: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 -#: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 +#: libraries/controllers/table/TableStructureController.php:771 +#: libraries/controllers/table/TableStructureController.php:1448 +#: libraries/controllers/table/TableStructureController.php:1457 +#: libraries/controllers/table/TableStructureController.php:1462 +#: libraries/controllers/table/TableStructureController.php:1467 +#: libraries/controllers/table/TableStructureController.php:1472 +#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:200 +#: libraries/mult_submits.lib.php:344 libraries/mult_submits.lib.php:377 +#: libraries/mult_submits.lib.php:406 libraries/mult_submits.lib.php:420 #: libraries/plugins/export/ExportHtmlword.php:655 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:788 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:711 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2968 -#: libraries/server_privileges.lib.php:2989 -#: libraries/server_privileges.lib.php:3617 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1011 libraries/tracking.lib.php:1016 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2970 +#: libraries/server_privileges.lib.php:2991 +#: libraries/server_privileges.lib.php:3628 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -237,8 +239,8 @@ msgstr "" msgid "View dump (schema) of database" msgstr "" -#: db_export.php:51 db_tracking.php:102 export.php:382 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:176 +#: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 +#: libraries/controllers/DatabaseStructureController.php:157 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "" @@ -255,7 +257,7 @@ msgstr "" #: db_export.php:66 libraries/Menu.php:320 libraries/Menu.php:427 #: libraries/Util.php:3407 libraries/Util.php:3417 libraries/Util.php:3423 -#: libraries/Util.php:3702 libraries/Util.php:4339 libraries/Util.php:4356 +#: libraries/Util.php:3703 libraries/Util.php:4340 libraries/Util.php:4357 #: libraries/central_columns.lib.php:729 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:320 @@ -263,10 +265,10 @@ msgstr "" #: libraries/config/user_preferences.forms.php:218 #: libraries/config/user_preferences.forms.php:259 #: libraries/config/user_preferences.forms.php:285 -#: libraries/import.lib.php:1299 libraries/navigation/nodes/NodeColumn.php:44 +#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:44 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 -#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:877 +#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:887 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -309,11 +311,11 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "" -#: db_qbe.php:135 +#: db_qbe.php:136 msgid "You have to choose at least one column to display!" msgstr "" -#: db_qbe.php:152 +#: db_qbe.php:154 #, possible-php-format msgid "Switch to %svisual builder%s" msgstr "" @@ -339,7 +341,7 @@ msgstr "" msgid "No tables selected." msgstr "" -#: db_tracking.php:146 +#: db_tracking.php:149 msgid "Database Log" msgstr "" @@ -371,7 +373,7 @@ msgstr "" msgid "Bad type!" msgstr "" -#: export.php:276 +#: export.php:278 msgid "Bad parameters!" msgstr "" @@ -379,98 +381,98 @@ msgstr "" msgid "Invalid export type" msgstr "" -#: gis_data_editor.php:119 +#: gis_data_editor.php:117 #, possible-php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:147 +#: gis_data_editor.php:145 #: templates/table/gis_visualization/gis_visualization.phtml:37 msgid "Use OpenStreetMaps as Base Layer" msgstr "" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:169 +#: gis_data_editor.php:167 msgid "SRID:" msgstr "" -#: gis_data_editor.php:192 +#: gis_data_editor.php:190 #, possible-php-format msgid "Geometry %d:" msgstr "" -#: gis_data_editor.php:214 +#: gis_data_editor.php:212 msgid "Point:" msgstr "" -#: gis_data_editor.php:215 gis_data_editor.php:242 gis_data_editor.php:298 -#: gis_data_editor.php:371 js/messages.php:504 +#: gis_data_editor.php:213 gis_data_editor.php:240 gis_data_editor.php:296 +#: gis_data_editor.php:369 js/messages.php:505 msgid "X" msgstr "" -#: gis_data_editor.php:218 gis_data_editor.php:246 gis_data_editor.php:302 -#: gis_data_editor.php:377 js/messages.php:505 +#: gis_data_editor.php:216 gis_data_editor.php:244 gis_data_editor.php:300 +#: gis_data_editor.php:375 js/messages.php:506 msgid "Y" msgstr "" -#: gis_data_editor.php:240 gis_data_editor.php:296 gis_data_editor.php:369 -#: js/messages.php:507 +#: gis_data_editor.php:238 gis_data_editor.php:294 gis_data_editor.php:367 +#: js/messages.php:508 #, possible-php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:253 gis_data_editor.php:309 gis_data_editor.php:387 -#: js/messages.php:513 +#: gis_data_editor.php:251 gis_data_editor.php:307 gis_data_editor.php:385 +#: js/messages.php:514 msgid "Add a point" msgstr "" -#: gis_data_editor.php:270 +#: gis_data_editor.php:268 #, possible-php-format msgid "Linestring %d:" msgstr "" -#: gis_data_editor.php:273 gis_data_editor.php:350 +#: gis_data_editor.php:271 gis_data_editor.php:348 msgid "Outer ring:" msgstr "" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:273 gis_data_editor.php:350 #, possible-php-format msgid "Inner ring %d:" msgstr "" -#: gis_data_editor.php:312 +#: gis_data_editor.php:310 msgid "Add a linestring" msgstr "" -#: gis_data_editor.php:313 gis_data_editor.php:392 js/messages.php:514 +#: gis_data_editor.php:311 gis_data_editor.php:390 js/messages.php:515 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:334 +#: gis_data_editor.php:332 #, possible-php-format msgid "Polygon %d:" msgstr "" -#: gis_data_editor.php:398 +#: gis_data_editor.php:396 msgid "Add a polygon" msgstr "" -#: gis_data_editor.php:404 +#: gis_data_editor.php:402 msgid "Add geometry" msgstr "" -#: gis_data_editor.php:410 js/messages.php:345 libraries/DbSearch.php:462 -#: libraries/DisplayResults.php:1783 libraries/browse_foreigners.lib.php:142 +#: gis_data_editor.php:408 js/messages.php:346 libraries/DbSearch.php:462 +#: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:151 #: libraries/display_export.lib.php:404 libraries/display_export.lib.php:410 -#: libraries/display_import.lib.php:403 libraries/index.lib.php:42 -#: libraries/insert_edit.lib.php:1547 libraries/insert_edit.lib.php:1584 +#: libraries/display_import.lib.php:403 libraries/index.lib.php:45 +#: libraries/insert_edit.lib.php:1554 libraries/insert_edit.lib.php:1591 #: libraries/normalization.lib.php:168 libraries/normalization.lib.php:825 #: libraries/operations.lib.php:47 libraries/operations.lib.php:114 #: libraries/operations.lib.php:266 libraries/operations.lib.php:309 #: libraries/operations.lib.php:806 libraries/operations.lib.php:877 -#: libraries/operations.lib.php:926 libraries/operations.lib.php:1336 -#: libraries/operations.lib.php:1653 +#: libraries/operations.lib.php:926 libraries/operations.lib.php:1339 +#: libraries/operations.lib.php:1656 #: libraries/plugins/auth/AuthenticationCookie.php:239 #: libraries/replication_gui.lib.php:124 libraries/replication_gui.lib.php:163 #: libraries/replication_gui.lib.php:328 libraries/replication_gui.lib.php:465 @@ -479,12 +481,12 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2343 -#: libraries/server_privileges.lib.php:3114 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_user_groups.lib.php:285 -#: libraries/sql_query_form.lib.php:369 libraries/sql_query_form.lib.php:429 -#: libraries/tracking.lib.php:536 libraries/tracking.lib.php:656 +#: libraries/server_privileges.lib.php:2345 +#: libraries/server_privileges.lib.php:3116 +#: libraries/server_privileges.lib.php:3735 +#: libraries/server_user_groups.lib.php:290 +#: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 +#: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 #: prefs_manage.php:280 prefs_manage.php:358 #: templates/columns_definitions/column_definitions_form.phtml:64 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 @@ -497,11 +499,11 @@ msgstr "" msgid "Go" msgstr "" -#: gis_data_editor.php:413 +#: gis_data_editor.php:411 msgid "Output" msgstr "" -#: gis_data_editor.php:416 +#: gis_data_editor.php:414 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -511,7 +513,7 @@ msgstr "" msgid "Succeeded" msgstr "" -#: import.php:59 js/messages.php:588 +#: import.php:59 js/messages.php:589 msgid "Failed" msgstr "" @@ -564,7 +566,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:669 libraries/sql.lib.php:744 libraries/sql.lib.php:1468 +#: import.php:669 libraries/sql.lib.php:754 libraries/sql.lib.php:1485 #, possible-php-format msgid "Bookmark %s has been created." msgstr "" @@ -591,7 +593,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "" -#: import_status.php:111 js/messages.php:444 libraries/Util.php:797 +#: import_status.php:111 js/messages.php:445 libraries/Util.php:797 #: libraries/export.lib.php:523 #: libraries/plugins/schema/ExportRelationSchema.php:301 user_password.php:268 msgid "Back" @@ -613,7 +615,7 @@ msgstr "" msgid "General settings" msgstr "" -#: index.php:191 js/messages.php:617 +#: index.php:191 js/messages.php:618 #: libraries/display_change_password.lib.php:54 #: libraries/display_change_password.lib.php:57 user_password.php:262 msgid "Change password" @@ -713,7 +715,11 @@ msgstr "" msgid "List of changes" msgstr "" -#: index.php:453 +#: index.php:438 libraries/server_plugins.lib.php:83 +msgid "License" +msgstr "" + +#: index.php:460 msgid "" "You are connected as 'root' with no password, which corresponds to the " "default MySQL privileged account. Your MySQL server is running with this " @@ -721,21 +727,21 @@ msgid "" "by setting a password for user 'root'." msgstr "" -#: index.php:470 +#: index.php:477 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: index.php:485 +#: index.php:492 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: index.php:502 +#: index.php:509 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than " @@ -743,17 +749,17 @@ msgid "" "expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:521 +#: index.php:528 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:537 +#: index.php:544 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: index.php:550 +#: index.php:557 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. It is strongly recommended to remove it " @@ -761,26 +767,26 @@ msgid "" "may be compromised by unauthorized people downloading your configuration." msgstr "" -#: index.php:566 +#: index.php:573 #, possible-php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. %sFind out why%s. " msgstr "" -#: index.php:573 +#: index.php:580 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" -#: index.php:619 +#: index.php:626 #, possible-php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: index.php:647 +#: index.php:654 #, possible-php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -800,7 +806,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:45 libraries/mult_submits.lib.php:397 +#: js/messages.php:45 libraries/mult_submits.lib.php:402 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -930,7 +936,7 @@ msgid "Save & close" msgstr "" #: js/messages.php:109 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1551 prefs_manage.php:364 +#: libraries/insert_edit.lib.php:1558 prefs_manage.php:364 #: prefs_manage.php:375 msgid "Reset" msgstr "" @@ -988,10 +994,10 @@ msgstr "" msgid "You have to add at least one column." msgstr "" -#: js/messages.php:129 libraries/insert_edit.lib.php:1549 +#: js/messages.php:129 libraries/insert_edit.lib.php:1556 #: templates/columns_definitions/column_definitions_form.phtml:159 #: templates/table/index_form.phtml:237 -#: templates/table/relation/common_form.phtml:108 +#: templates/table/relation/common_form.phtml:127 msgid "Preview SQL" msgstr "" @@ -1034,8 +1040,8 @@ msgstr "" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:461 -#: libraries/tracking.lib.php:831 +#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:471 +#: libraries/tracking.lib.php:841 msgid "Close" msgstr "" @@ -1057,7 +1063,7 @@ msgstr "" #. l10n: Other, small valued, queries #: js/messages.php:155 libraries/ServerStatusData.php:130 -#: libraries/server_status_queries.lib.php:148 +#: libraries/server_status_queries.lib.php:150 msgid "Other" msgstr "" @@ -1220,7 +1226,7 @@ msgstr "" msgid "Traffic" msgstr "" -#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4330 +#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4331 #: libraries/server_status_monitor.lib.php:258 msgid "Settings" msgstr "" @@ -1233,9 +1239,9 @@ msgstr "" msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:216 libraries/DisplayResults.php:1477 +#: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1344,7 +1350,7 @@ msgstr "" msgid "Current settings" msgstr "" -#: js/messages.php:253 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:253 msgid "Chart title" msgstr "" @@ -1424,21 +1430,21 @@ msgstr "" msgid "Explain output" msgstr "" -#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4326 +#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4327 #: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:396 #: libraries/rte/rte_list.lib.php:104 -#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:282 -#: libraries/tracking.lib.php:1623 +#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:284 +#: libraries/tracking.lib.php:1639 msgid "Status" msgstr "" -#: js/messages.php:289 js/messages.php:870 +#: js/messages.php:289 js/messages.php:862 #: libraries/plugins/export/ExportHtmlword.php:484 #: libraries/plugins/export/ExportOdt.php:600 #: libraries/plugins/export/ExportTexytext.php:445 #: libraries/plugins/export/PMA_ExportPdf.php:314 #: libraries/rte/rte_list.lib.php:93 -#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:239 +#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:243 msgid "Time" msgstr "" @@ -1518,10 +1524,10 @@ msgid "" msgstr "" #: js/messages.php:322 libraries/Menu.php:355 libraries/Menu.php:457 -#: libraries/Menu.php:578 libraries/Util.php:4329 libraries/Util.php:4344 -#: libraries/Util.php:4361 libraries/config/messages.inc.php:260 +#: libraries/Menu.php:578 libraries/Util.php:4330 libraries/Util.php:4345 +#: libraries/Util.php:4362 libraries/config/messages.inc.php:260 #: libraries/display_import.lib.php:108 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:241 +#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:241 #: setup/frames/menu.inc.php:26 msgid "Import" msgstr "" @@ -1578,7 +1584,11 @@ msgstr "" msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 libraries/server_variables.lib.php:159 +#: js/messages.php:343 +msgid "No parameters found!" +msgstr "" + +#: js/messages.php:347 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 +1599,59 @@ msgstr "" msgid "Cancel" msgstr "" -#: js/messages.php:349 libraries/Header.php:457 +#: js/messages.php:350 libraries/Header.php:457 msgid "Page-related settings" msgstr "" -#: js/messages.php:350 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:351 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:353 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:354 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:124 msgid "Loading…" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 msgid "Request aborted!!" msgstr "" -#: js/messages.php:355 +#: js/messages.php:356 msgid "Processing request" msgstr "" -#: js/messages.php:356 +#: js/messages.php:357 msgid "Request failed!!" msgstr "" -#: js/messages.php:357 -msgid "Error in processing request" -msgstr "" - #: js/messages.php:358 -#, possible-php-format -msgid "Error code: %s" +msgid "Error in processing request" msgstr "" #: js/messages.php:359 #, possible-php-format +msgid "Error code: %s" +msgstr "" + +#: js/messages.php:360 +#, possible-php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:360 libraries/db_common.inc.php:73 +#: js/messages.php:361 libraries/db_common.inc.php:73 #: libraries/db_table_exists.lib.php:33 libraries/server_databases.lib.php:462 msgid "No databases selected." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 msgid "Dropping column" msgstr "" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Adding primary key" msgstr "" -#: js/messages.php:363 +#: js/messages.php:364 #: 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,680 +1661,651 @@ msgstr "" msgid "OK" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Renaming databases" msgstr "" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Copying database" msgstr "" -#: js/messages.php:369 +#: js/messages.php:370 msgid "Changing charset" msgstr "" -#: js/messages.php:373 libraries/Util.php:3289 +#: js/messages.php:374 libraries/Util.php:3289 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Searching" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide search results" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "Show search results" msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Browsing" msgstr "" -#: js/messages.php:383 +#: js/messages.php:384 msgid "Deleting" msgstr "" -#: js/messages.php:387 +#: js/messages.php:388 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:388 libraries/DisplayResults.php:4832 -#: libraries/DisplayResults.php:5091 libraries/Menu.php:347 -#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3709 -#: libraries/Util.php:3710 libraries/Util.php:4328 libraries/Util.php:4343 -#: libraries/Util.php:4360 libraries/config/messages.inc.php:254 +#: js/messages.php:389 libraries/DisplayResults.php:4850 +#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 +#: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 +#: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2448 -#: libraries/server_privileges.lib.php:2527 -#: libraries/server_privileges.lib.php:2873 -#: libraries/server_privileges.lib.php:3532 -#: libraries/server_status_monitor.lib.php:321 prefs_manage.php:306 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2875 +#: libraries/server_privileges.lib.php:3543 +#: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 msgid "Export" msgstr "" -#: js/messages.php:391 libraries/rte/rte_routines.lib.php:742 +#: js/messages.php:392 libraries/rte/rte_routines.lib.php:742 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:392 +#: js/messages.php:393 #, possible-php-format msgid "Values for column %s" msgstr "" -#: js/messages.php:393 +#: js/messages.php:394 msgid "Values for a new column" msgstr "" -#: js/messages.php:394 +#: js/messages.php:395 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:395 +#: js/messages.php:396 #, possible-php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:399 +#: js/messages.php:400 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Hide query box" msgstr "" -#: js/messages.php:404 +#: js/messages.php:405 msgid "Show query box" msgstr "" -#: js/messages.php:405 libraries/Console.php:88 libraries/Console.php:217 -#: libraries/DisplayResults.php:3457 libraries/DisplayResults.php:4816 +#: js/messages.php:406 libraries/Console.php:88 libraries/Console.php:217 +#: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4834 #: libraries/Index.php:721 libraries/Util.php:727 libraries/Util.php:1238 -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:119 +#: libraries/server_user_groups.lib.php:121 #: libraries/server_variables.lib.php:242 #: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 msgid "Edit" msgstr "" -#: js/messages.php:406 libraries/Console.php:89 libraries/DbSearch.php:360 -#: libraries/DisplayResults.php:3526 libraries/DisplayResults.php:4800 +#: js/messages.php:407 libraries/Console.php:89 libraries/DbSearch.php:360 +#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4818 #: libraries/central_columns.lib.php:854 #: libraries/central_columns.lib.php:1200 libraries/display_export.lib.php:227 -#: libraries/server_user_groups.lib.php:129 -#: libraries/sql_query_form.lib.php:416 libraries/tracking.lib.php:480 +#: libraries/server_user_groups.lib.php:131 +#: libraries/sql_query_form.lib.php:417 libraries/tracking.lib.php:490 #: setup/frames/index.inc.php:187 setup/frames/index.inc.php:295 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "" -#: js/messages.php:407 libraries/DisplayResults.php:915 -#: libraries/DisplayResults.php:923 +#: js/messages.php:408 libraries/DisplayResults.php:919 +#: libraries/DisplayResults.php:927 #, possible-php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:408 -#: libraries/controllers/table/TableSearchController.php:435 -#: libraries/controllers/table/TableSearchController.php:920 -#: libraries/sql.lib.php:193 tbl_change.php:159 +#: js/messages.php:409 +#: libraries/controllers/table/TableSearchController.php:432 +#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "" -#: js/messages.php:409 +#: js/messages.php:410 msgid "No auto-saved query" msgstr "" -#: js/messages.php:410 +#: js/messages.php:411 #, possible-php-format msgid "Variable %d:" msgstr "" -#: js/messages.php:413 libraries/normalization.lib.php:889 +#: js/messages.php:414 libraries/normalization.lib.php:889 msgid "Pick" msgstr "" -#: js/messages.php:414 +#: js/messages.php:415 msgid "Column selector" msgstr "" -#: js/messages.php:415 +#: js/messages.php:416 msgid "Search this list" msgstr "" -#: js/messages.php:417 +#: js/messages.php:418 #, possible-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:420 +#: js/messages.php:421 msgid "See more" msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Are you sure?" msgstr "" -#: js/messages.php:423 +#: js/messages.php:424 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:433 +#: js/messages.php:434 #, possible-php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, possible-php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 msgid "Page name" msgstr "" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:550 -#, possible-php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:551 #, possible-php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:552 +#, possible-php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "" -#: js/messages.php:623 +#: js/messages.php:624 msgid "Show panel" msgstr "" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, possible-php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -msgid "tables" -msgstr "" - -#: js/messages.php:633 -msgid "views" -msgstr "" - -#: js/messages.php:634 -msgid "procedures" -msgstr "" - -#: js/messages.php:635 -msgid "events" -msgstr "" - -#: js/messages.php:636 -msgid "functions" -msgstr "" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, possible-php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2332,396 +2313,396 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr "" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "" -#: js/messages.php:660 +#: js/messages.php:652 msgid "Show report details" msgstr "" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, possible-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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, possible-php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:706 +#: js/messages.php:698 #, possible-php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 msgid "Show arguments" msgstr "" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "" @@ -2729,41 +2710,41 @@ msgstr "" msgid "Please enter the same value again" msgstr "" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "" @@ -2848,11 +2829,12 @@ msgstr "" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -2894,7 +2876,7 @@ msgstr "" msgid "Explain" msgstr "" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "" @@ -2928,8 +2910,8 @@ msgid "History" msgstr "" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3074,30 +3056,30 @@ msgstr "" msgid "Switch to dark theme" msgstr "" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3107,8 +3089,8 @@ msgstr "" msgid "Ascending" msgstr "" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3251,8 +3233,8 @@ msgstr[0] "" msgstr[1] "" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3294,183 +3276,184 @@ msgstr "" msgid "Inside column:" msgstr "" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 msgid "Display column for relations" msgstr "" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, possible-php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, possible-php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, possible-php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, possible-php-format msgid "%d total" msgstr "" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, possible-php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 msgid "Check all" msgstr "" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "" @@ -3562,19 +3545,19 @@ msgstr "" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3583,24 +3566,24 @@ msgid "Action" msgstr "" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "" @@ -3608,8 +3591,8 @@ msgstr "" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3619,8 +3602,8 @@ msgid "Collation" msgstr "" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3636,15 +3619,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "" @@ -3681,12 +3664,13 @@ msgstr "" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3694,7 +3678,7 @@ msgstr "" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3703,8 +3687,8 @@ msgid "SQL" msgstr "" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3712,41 +3696,41 @@ msgid "Search" msgstr "" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3757,16 +3741,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3774,20 +3758,20 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "" @@ -3796,33 +3780,33 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4113,7 +4097,7 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, possible-php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4522,37 +4506,37 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, possible-php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "" @@ -4711,8 +4695,8 @@ msgid "Add new column" msgstr "" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -4771,19 +4755,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -5549,7 +5533,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -5588,7 +5572,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, possible-php-format msgid "Add %s" msgstr "" @@ -7128,7 +7112,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "" @@ -7400,101 +7384,33 @@ msgstr "" msgid "OpenDocument Text" msgstr "" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, possible-php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, possible-php-format msgid "View %s has been dropped." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, possible-php-format msgid "Table %s has been dropped." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "" -#: libraries/controllers/TableStructureController.php:162 -#, possible-php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "" - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, possible-php-format -msgid "Table %1$s has been altered successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "" - -#: libraries/controllers/TableStructureController.php:967 -#, possible-php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "" - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -7508,6 +7424,14 @@ msgstr "" msgid "No data to display" msgstr "" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, possible-php-format +msgid "Table %1$s has been altered successfully." +msgstr "" + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "" @@ -7516,19 +7440,79 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr "" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "" +#: libraries/controllers/table/TableStructureController.php:163 +#, possible-php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:975 +#, possible-php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "" + #: libraries/core.lib.php:308 #, possible-php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -7538,7 +7522,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7603,7 +7587,7 @@ msgstr "" msgid "Create database:" msgstr "" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "" @@ -8265,69 +8249,69 @@ msgid "Dump has been saved to file %s." msgstr "" #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, possible-php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, possible-php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, possible-php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, possible-php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, possible-php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, possible-php-format msgid "Create an index on  %s columns" msgstr "" @@ -8350,71 +8334,71 @@ msgstr "" msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, possible-php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -8426,11 +8410,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, possible-php-format msgid "Inserted row id: %1$d" msgstr "" @@ -8446,35 +8430,35 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "" @@ -8692,8 +8676,8 @@ msgstr "" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "" @@ -8731,7 +8715,8 @@ msgstr[0] "" msgstr[1] "" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" msgstr "" #: libraries/navigation/NavigationTree.php:1371 @@ -8739,10 +8724,6 @@ msgstr "" msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -9115,7 +9096,7 @@ msgstr "" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9124,7 +9105,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "" @@ -9142,18 +9123,18 @@ msgstr "" msgid "Drop the database (DROP)" msgstr "" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "" @@ -9165,7 +9146,7 @@ msgstr "" msgid "CREATE DATABASE before copying" msgstr "" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "" @@ -9205,157 +9186,157 @@ msgstr "" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 msgid "Checksum table" msgstr "" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, possible-php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, possible-php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, possible-php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, possible-php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, possible-php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, possible-php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "" @@ -9520,7 +9501,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -9544,21 +9525,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -9648,7 +9629,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "" @@ -9740,7 +9721,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -9809,8 +9790,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9818,81 +9799,81 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 msgid "Metadata" msgstr "" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, possible-php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, possible-php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "" @@ -10121,9 +10102,9 @@ msgstr "" msgid "Table of contents" msgstr "" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "" @@ -10287,47 +10268,47 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 msgid "Error: Internal relation could not be added!" msgstr "" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 msgid "FOREIGN KEY relation has been removed." msgstr "" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 msgid "Error: Internal relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "" @@ -10372,102 +10353,102 @@ msgstr "" msgid "Please see the documentation on how to update your column_info table. " msgstr "" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 msgid "Persistent favorite tables" msgstr "" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 msgid "Saving export templates" msgstr "" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, possible-php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, possible-php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, possible-php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, possible-php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -10639,8 +10620,8 @@ msgstr "" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "" @@ -10648,7 +10629,7 @@ msgstr "" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "" @@ -11260,7 +11241,7 @@ msgstr[1] "" msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "" @@ -11268,98 +11249,94 @@ msgstr "" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "" #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "" #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "" #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -11367,65 +11344,65 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "" #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "" #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -11437,8 +11414,8 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -11478,37 +11455,37 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -11523,14 +11500,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11540,7 +11517,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "" @@ -11549,15 +11526,15 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "" @@ -11574,7 +11551,7 @@ msgid "Native MySQL Authentication" msgstr "" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "" @@ -11597,8 +11574,8 @@ msgstr "" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 msgid "Host name" msgstr "" @@ -11614,216 +11591,216 @@ msgstr "" msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, possible-php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, possible-php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 msgid "Database for user account" msgstr "" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, possible-php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, possible-php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 msgid "Remove selected user accounts" msgstr "" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, possible-php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, possible-php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, possible-php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, possible-php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, possible-php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11832,7 +11809,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11841,11 +11818,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "" @@ -12067,30 +12044,30 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -12144,7 +12121,7 @@ msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -12169,33 +12146,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12203,78 +12180,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12282,7 +12259,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12290,42 +12267,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12333,33 +12310,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12368,242 +12345,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12611,99 +12588,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12711,18 +12688,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12730,11 +12707,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -12743,57 +12720,57 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, possible-php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "" @@ -12853,21 +12830,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 msgid "An alias was expected." msgstr "" @@ -12923,119 +12896,119 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 msgid "At least one column definition was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, possible-php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, possible-php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, possible-php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, possible-php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -13063,27 +13036,27 @@ msgstr "" msgid "Bind parameters" msgstr "" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "" @@ -13127,172 +13100,172 @@ msgstr "" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 msgid "Delete version" msgstr "" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, possible-php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, possible-php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, possible-php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, possible-php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, possible-php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, possible-php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, possible-php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, possible-php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "" @@ -13300,11 +13273,11 @@ msgstr "" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, possible-php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -13403,7 +13376,7 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -13428,7 +13401,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -14208,43 +14181,47 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +msgid "Chart title:" +msgstr "" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 msgid "Value Column:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "" @@ -14297,46 +14274,47 @@ msgstr "" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +msgid "Foreign key constraints" +msgstr "" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "" + +#: templates/table/relation/common_form.phtml:10 +msgid "Constraint properties" +msgstr "" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "" + +#: templates/table/relation/common_form.phtml:60 +msgid "+ Add constraint" +msgstr "" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:37 -msgid "Foreign key constraints" -msgstr "" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "" - -#: templates/table/relation/common_form.phtml:41 -msgid "Constraint properties" -msgstr "" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "" - -#: templates/table/relation/common_form.phtml:83 -msgid "+ Add constraint" -msgstr "" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "" @@ -14462,7 +14440,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 msgid "Partitions" msgstr "" @@ -14495,7 +14473,7 @@ msgstr "" msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "" diff --git a/po/pl.po b/po/pl.po index dab33985ef..3295b0b670 100644 --- a/po/pl.po +++ b/po/pl.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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-11-02 22:16+0200\n" "Last-Translator: Kozioł Marcin \n" -"Language-Team: Polish " -"\n" +"Language-Team: Polish \n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -16,7 +16,7 @@ msgstr "" "|| n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 2.5-dev\n" -#: changelog.php:37 license.php:30 +#: changelog.php:37 license.php:33 #, php-format msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " @@ -38,7 +38,7 @@ msgstr "Kliknij, by posortować." msgid "Showing rows %1$s - %2$s." msgstr "Pokazano wiersze %1$s - %2$s." -#: db_create.php:61 +#: db_create.php:62 #, php-format msgid "Database %1$s has been created." msgstr "Baza danych %1$s została utworzona." @@ -47,13 +47,13 @@ msgstr "Baza danych %1$s została utworzona." msgid "Database comment" msgstr "Komentarz bazy danych" -#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:601 +#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:599 #: templates/columns_definitions/column_definitions_form.phtml:84 msgid "Table comments:" msgstr "Komentarze tabeli:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1568 +#: libraries/insert_edit.lib.php:1575 #: libraries/navigation/nodes/NodeColumn.php:34 #: libraries/plugins/export/ExportHtmlword.php:288 #: libraries/plugins/export/ExportHtmlword.php:384 @@ -63,13 +63,14 @@ msgstr "Komentarze tabeli:" #: libraries/plugins/export/ExportTexytext.php:282 #: libraries/plugins/export/ExportTexytext.php:373 #: libraries/plugins/export/PMA_ExportPdf.php:472 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:882 libraries/tracking.lib.php:978 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 +#: libraries/tracking.lib.php:892 libraries/tracking.lib.php:990 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:10 -#: templates/table/relation/common_form.phtml:43 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:27 +#: templates/table/relation/common_form.phtml:79 #: templates/table/relation/foreign_key_row.phtml:176 #: templates/table/relation/foreign_key_row.phtml:188 #: templates/table/relation/internal_relational_row.phtml:73 @@ -89,14 +90,14 @@ msgstr "Kolumna" #: libraries/plugins/export/ExportTexytext.php:283 #: libraries/plugins/export/ExportTexytext.php:374 #: libraries/plugins/export/PMA_ExportPdf.php:474 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 #: libraries/rte/rte_list.lib.php:78 libraries/rte/rte_list.lib.php:106 #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2606 libraries/tracking.lib.php:883 -#: libraries/tracking.lib.php:975 +#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -106,7 +107,7 @@ msgstr "Typ" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:709 -#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1577 +#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1584 #: libraries/plugins/export/ExportHtmlword.php:294 #: libraries/plugins/export/ExportHtmlword.php:390 #: libraries/plugins/export/ExportLatex.php:517 @@ -115,9 +116,9 @@ msgstr "Typ" #: libraries/plugins/export/ExportTexytext.php:284 #: libraries/plugins/export/ExportTexytext.php:375 #: libraries/plugins/export/PMA_ExportPdf.php:476 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 -#: libraries/tracking.lib.php:885 libraries/tracking.lib.php:981 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/tracking.lib.php:895 libraries/tracking.lib.php:993 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 @@ -134,9 +135,9 @@ msgstr "Null" #: libraries/plugins/export/ExportTexytext.php:285 #: libraries/plugins/export/ExportTexytext.php:376 #: libraries/plugins/export/PMA_ExportPdf.php:478 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 -#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:886 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:896 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 @@ -148,8 +149,8 @@ msgstr "Ustawienia domyślne" #: libraries/plugins/export/ExportOdt.php:488 #: libraries/plugins/export/ExportTexytext.php:378 #: libraries/plugins/export/PMA_ExportPdf.php:487 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:640 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:663 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 msgid "Links to" msgstr "Odsyłacze do" @@ -160,37 +161,38 @@ msgstr "Odsyłacze do" #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:381 #: libraries/plugins/export/PMA_ExportPdf.php:494 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:651 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:664 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:649 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 #: templates/columns_definitions/table_fields_definitions.phtml:65 msgid "Comments" msgstr "Komentarze" -#: db_datadict.php:155 libraries/controllers/TableStructureController.php:1189 -#: libraries/controllers/TableStructureController.php:1194 -#: libraries/tracking.lib.php:925 +#: db_datadict.php:155 +#: libraries/controllers/table/TableStructureController.php:1197 +#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:79 +#: templates/table/structure/display_structure.phtml:80 msgid "Primary" msgstr "Podstawowy" -#: db_datadict.php:165 js/messages.php:370 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:371 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 -#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:403 -#: libraries/mult_submits.lib.php:417 +#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:408 +#: libraries/mult_submits.lib.php:422 #: libraries/plugins/export/ExportHtmlword.php:654 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:710 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2971 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3620 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1013 libraries/tracking.lib.php:1018 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2973 +#: libraries/server_privileges.lib.php:2993 +#: libraries/server_privileges.lib.php:3631 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -199,32 +201,32 @@ msgstr "Podstawowy" msgid "No" msgstr "Nie" -#: db_datadict.php:165 js/messages.php:515 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:516 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 #: libraries/config/FormDisplay.tpl.php:280 -#: libraries/controllers/TableStructureController.php:770 -#: libraries/controllers/TableStructureController.php:1440 -#: libraries/controllers/TableStructureController.php:1449 -#: libraries/controllers/TableStructureController.php:1454 -#: libraries/controllers/TableStructureController.php:1459 -#: libraries/controllers/TableStructureController.php:1464 -#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:199 -#: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 -#: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 +#: libraries/controllers/table/TableStructureController.php:771 +#: libraries/controllers/table/TableStructureController.php:1448 +#: libraries/controllers/table/TableStructureController.php:1457 +#: libraries/controllers/table/TableStructureController.php:1462 +#: libraries/controllers/table/TableStructureController.php:1467 +#: libraries/controllers/table/TableStructureController.php:1472 +#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:200 +#: libraries/mult_submits.lib.php:344 libraries/mult_submits.lib.php:377 +#: libraries/mult_submits.lib.php:406 libraries/mult_submits.lib.php:420 #: libraries/plugins/export/ExportHtmlword.php:655 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:788 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:711 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2968 -#: libraries/server_privileges.lib.php:2989 -#: libraries/server_privileges.lib.php:3617 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1011 libraries/tracking.lib.php:1016 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2970 +#: libraries/server_privileges.lib.php:2991 +#: libraries/server_privileges.lib.php:3628 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -237,8 +239,8 @@ msgstr "Tak" msgid "View dump (schema) of database" msgstr "Zobacz zrzut (schemat) bazy danych" -#: db_export.php:51 db_tracking.php:102 export.php:382 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:176 +#: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 +#: libraries/controllers/DatabaseStructureController.php:157 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "Nie znaleziono żadnych tabel w bazie danych." @@ -255,7 +257,7 @@ msgstr "Tabele" #: db_export.php:66 libraries/Menu.php:320 libraries/Menu.php:427 #: libraries/Util.php:3407 libraries/Util.php:3417 libraries/Util.php:3423 -#: libraries/Util.php:3702 libraries/Util.php:4339 libraries/Util.php:4356 +#: libraries/Util.php:3703 libraries/Util.php:4340 libraries/Util.php:4357 #: libraries/central_columns.lib.php:729 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:320 @@ -263,10 +265,10 @@ msgstr "Tabele" #: libraries/config/user_preferences.forms.php:218 #: libraries/config/user_preferences.forms.php:259 #: libraries/config/user_preferences.forms.php:285 -#: libraries/import.lib.php:1299 libraries/navigation/nodes/NodeColumn.php:44 +#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:44 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 -#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:877 +#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:887 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -286,7 +288,6 @@ msgstr "Dane" #: db_export.php:70 libraries/DbSearch.php:441 #: libraries/display_export.lib.php:46 libraries/replication_gui.lib.php:381 -#| msgid "Select All" msgid "Select all" msgstr "Zaznacz wszystko" @@ -312,11 +313,11 @@ msgstr "" "Przechowywanie konfiguracji phpMyAdmin zostało wyłączone. Aby dowiedzieć się " "dlaczego, kliknij %stutaj%s." -#: db_qbe.php:135 +#: db_qbe.php:136 msgid "You have to choose at least one column to display!" msgstr "Musisz wybrać co najmniej jedną kolumnę do wyświetlenia!" -#: db_qbe.php:152 +#: db_qbe.php:154 #, php-format msgid "Switch to %svisual builder%s" msgstr "Przełącz do %svisual builder%s" @@ -343,7 +344,7 @@ msgstr "" msgid "No tables selected." msgstr "Nie wybrano tabeli." -#: db_tracking.php:146 +#: db_tracking.php:149 msgid "Database Log" msgstr "Dziennik bazy danych" @@ -381,7 +382,7 @@ msgstr "Możesz odświeżyć stronę." msgid "Bad type!" msgstr "Zły typ!" -#: export.php:276 +#: export.php:278 msgid "Bad parameters!" msgstr "Złe parametry!" @@ -389,98 +390,98 @@ msgstr "Złe parametry!" msgid "Invalid export type" msgstr "Niepoprawny typ eksportu" -#: gis_data_editor.php:119 +#: gis_data_editor.php:117 #, php-format msgid "Value for the column \"%s\"" msgstr "Wartość dla kolumny \"%s\"" -#: gis_data_editor.php:147 +#: gis_data_editor.php:145 #: templates/table/gis_visualization/gis_visualization.phtml:37 msgid "Use OpenStreetMaps as Base Layer" msgstr "Użyj OpenStreetMaps jako Podstawowej Warstwy" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:169 +#: gis_data_editor.php:167 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:192 +#: gis_data_editor.php:190 #, php-format msgid "Geometry %d:" msgstr "Geometria %d:" -#: gis_data_editor.php:214 +#: gis_data_editor.php:212 msgid "Point:" msgstr "Punkt:" -#: gis_data_editor.php:215 gis_data_editor.php:242 gis_data_editor.php:298 -#: gis_data_editor.php:371 js/messages.php:504 +#: gis_data_editor.php:213 gis_data_editor.php:240 gis_data_editor.php:296 +#: gis_data_editor.php:369 js/messages.php:505 msgid "X" msgstr "X" -#: gis_data_editor.php:218 gis_data_editor.php:246 gis_data_editor.php:302 -#: gis_data_editor.php:377 js/messages.php:505 +#: gis_data_editor.php:216 gis_data_editor.php:244 gis_data_editor.php:300 +#: gis_data_editor.php:375 js/messages.php:506 msgid "Y" msgstr "Y" -#: gis_data_editor.php:240 gis_data_editor.php:296 gis_data_editor.php:369 -#: js/messages.php:507 +#: gis_data_editor.php:238 gis_data_editor.php:294 gis_data_editor.php:367 +#: js/messages.php:508 #, php-format msgid "Point %d" msgstr "Punkt %d" -#: gis_data_editor.php:253 gis_data_editor.php:309 gis_data_editor.php:387 -#: js/messages.php:513 +#: gis_data_editor.php:251 gis_data_editor.php:307 gis_data_editor.php:385 +#: js/messages.php:514 msgid "Add a point" msgstr "Dodaj punkt" -#: gis_data_editor.php:270 +#: gis_data_editor.php:268 #, php-format msgid "Linestring %d:" msgstr "Linia łamana %d:" -#: gis_data_editor.php:273 gis_data_editor.php:350 +#: gis_data_editor.php:271 gis_data_editor.php:348 msgid "Outer ring:" msgstr "Pierścień zewnętrzny:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:273 gis_data_editor.php:350 #, php-format msgid "Inner ring %d:" msgstr "Pierścień wewnętrzny %d:" -#: gis_data_editor.php:312 +#: gis_data_editor.php:310 msgid "Add a linestring" msgstr "Dodaj linię łamaną" -#: gis_data_editor.php:313 gis_data_editor.php:392 js/messages.php:514 +#: gis_data_editor.php:311 gis_data_editor.php:390 js/messages.php:515 msgid "Add an inner ring" msgstr "Dodaj pierścień wewnętrzny" -#: gis_data_editor.php:334 +#: gis_data_editor.php:332 #, php-format msgid "Polygon %d:" msgstr "Wielokąt %d:" -#: gis_data_editor.php:398 +#: gis_data_editor.php:396 msgid "Add a polygon" msgstr "Dodaj wielokąt" -#: gis_data_editor.php:404 +#: gis_data_editor.php:402 msgid "Add geometry" msgstr "Dodaj geometrię" -#: gis_data_editor.php:410 js/messages.php:345 libraries/DbSearch.php:462 -#: libraries/DisplayResults.php:1783 libraries/browse_foreigners.lib.php:142 +#: gis_data_editor.php:408 js/messages.php:346 libraries/DbSearch.php:462 +#: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:151 #: libraries/display_export.lib.php:404 libraries/display_export.lib.php:410 -#: libraries/display_import.lib.php:403 libraries/index.lib.php:42 -#: libraries/insert_edit.lib.php:1547 libraries/insert_edit.lib.php:1584 +#: libraries/display_import.lib.php:403 libraries/index.lib.php:45 +#: libraries/insert_edit.lib.php:1554 libraries/insert_edit.lib.php:1591 #: libraries/normalization.lib.php:168 libraries/normalization.lib.php:825 #: libraries/operations.lib.php:47 libraries/operations.lib.php:114 #: libraries/operations.lib.php:266 libraries/operations.lib.php:309 #: libraries/operations.lib.php:806 libraries/operations.lib.php:877 -#: libraries/operations.lib.php:926 libraries/operations.lib.php:1336 -#: libraries/operations.lib.php:1653 +#: libraries/operations.lib.php:926 libraries/operations.lib.php:1339 +#: libraries/operations.lib.php:1656 #: libraries/plugins/auth/AuthenticationCookie.php:239 #: libraries/replication_gui.lib.php:124 libraries/replication_gui.lib.php:163 #: libraries/replication_gui.lib.php:328 libraries/replication_gui.lib.php:465 @@ -489,12 +490,12 @@ msgstr "Dodaj geometrię" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2343 -#: libraries/server_privileges.lib.php:3114 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_user_groups.lib.php:285 -#: libraries/sql_query_form.lib.php:369 libraries/sql_query_form.lib.php:429 -#: libraries/tracking.lib.php:536 libraries/tracking.lib.php:656 +#: libraries/server_privileges.lib.php:2345 +#: libraries/server_privileges.lib.php:3116 +#: libraries/server_privileges.lib.php:3735 +#: libraries/server_user_groups.lib.php:290 +#: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 +#: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 #: prefs_manage.php:280 prefs_manage.php:358 #: templates/columns_definitions/column_definitions_form.phtml:64 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 @@ -507,11 +508,11 @@ msgstr "Dodaj geometrię" msgid "Go" msgstr "Wykonaj" -#: gis_data_editor.php:413 +#: gis_data_editor.php:411 msgid "Output" msgstr "Wyjście" -#: gis_data_editor.php:416 +#: gis_data_editor.php:414 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -523,7 +524,7 @@ msgstr "" msgid "Succeeded" msgstr "Sukces" -#: import.php:59 js/messages.php:588 +#: import.php:59 js/messages.php:589 msgid "Failed" msgstr "Nieudane" @@ -585,7 +586,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "Nie udało się wczytać wtyczek importu. Proszę sprawdzić instalację!" -#: import.php:669 libraries/sql.lib.php:744 libraries/sql.lib.php:1468 +#: import.php:669 libraries/sql.lib.php:754 libraries/sql.lib.php:1485 #, php-format msgid "Bookmark %s has been created." msgstr "Zakładka %s została utworzona." @@ -617,7 +618,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "Nie można wczytać postępu importu." -#: import_status.php:111 js/messages.php:444 libraries/Util.php:797 +#: import_status.php:111 js/messages.php:445 libraries/Util.php:797 #: libraries/export.lib.php:523 #: libraries/plugins/schema/ExportRelationSchema.php:301 user_password.php:268 msgid "Back" @@ -639,11 +640,10 @@ msgstr "" "informacji na %s." #: index.php:161 -#| msgid "General Settings" msgid "General settings" msgstr "Ustawienia ogólne" -#: index.php:191 js/messages.php:617 +#: index.php:191 js/messages.php:618 #: libraries/display_change_password.lib.php:54 #: libraries/display_change_password.lib.php:57 user_password.php:262 msgid "Change password" @@ -654,7 +654,6 @@ msgid "Server connection collation" msgstr "Sortowanie połączenie z serwerem" #: index.php:230 -#| msgid "Appearance Settings" msgid "Appearance settings" msgstr "Ustawienia wyglądu" @@ -705,7 +704,6 @@ msgid "PHP extension:" msgstr "Rozszerzenie PHP:" #: index.php:351 -#| msgid "PHP Version:" msgid "PHP version:" msgstr "Wersja PHP:" @@ -745,7 +743,11 @@ msgstr "Pomoc techniczna" msgid "List of changes" msgstr "Lista zmian" -#: index.php:453 +#: index.php:438 libraries/server_plugins.lib.php:83 +msgid "License" +msgstr "Licencja" + +#: index.php:460 msgid "" "You are connected as 'root' with no password, which corresponds to the " "default MySQL privileged account. Your MySQL server is running with this " @@ -758,7 +760,7 @@ msgstr "" "naprawić tę lukę w zabezpieczeniach poprzez ustawienie hasła dla użytkownika " "'root'." -#: index.php:470 +#: index.php:477 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -768,7 +770,7 @@ msgstr "" "jest niezgodna z phpMyAdminem i może spowodować uszkodzenie niektórych " "danych!" -#: index.php:485 +#: index.php:492 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -779,7 +781,7 @@ msgstr "" "phpMyAdmin nie ma możliwości poprawnego rozbijania napisów, co może " "skutkować niespodziewanymi rezultatami." -#: index.php:502 +#: index.php:509 #, fuzzy #| msgid "" #| "Your PHP parameter [a@http://php.net/manual/en/session.configuration." @@ -797,7 +799,7 @@ msgstr "" "niż czas przechowywania ciasteczka skonfigurowany w phpMyAdmin. Z tego " "powodu sesja wygaśnie wcześniej niż jest to skonfigurowane w phpMyAdmin." -#: index.php:521 +#: index.php:528 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -806,12 +808,12 @@ msgstr "" "ciasteczek skonfigurowanego w phpMyAdmin, z tego powodu, swój login wygasa " "wcześniej niż skonfigurowane w phpMyAdmin." -#: index.php:537 +#: index.php:544 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Plik konfiguracyjny wymaga teraz tajnej frazy kodującej (blowfish_secret)." -#: index.php:550 +#: index.php:557 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. It is strongly recommended to remove it " @@ -824,7 +826,7 @@ msgstr "" "serwera jest zagrożone przez osoby nieupoważnione ściągające twoją " "konfigurację." -#: index.php:566 +#: index.php:573 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -833,14 +835,14 @@ msgstr "" "Przechowywania konfiguracji phpMyAdmin nie jest w pełni skonfigurowane, " "niektóre rozszerzone funkcje zostały wyłączone. %sDowiedz się dlaczego%s. " -#: index.php:573 +#: index.php:580 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "Możesz też przejść do karty 'Operacje' dowolnej bazy danych, by " "skonfigurować tą opcję tylko dla tej bazy." -#: index.php:619 +#: index.php:626 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -849,7 +851,7 @@ msgstr "" "PHP MySQL w wersji biblioteki %s różni się od serwera MySQL w wersji %s. " "Może to spowodować nieprzewidywalne zachowanie." -#: index.php:647 +#: index.php:654 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -871,7 +873,7 @@ msgstr "Potwierdź" msgid "Do you really want to execute \"%s\"?" msgstr "Czy na pewno chcesz wykonać \"%s\"?" -#: js/messages.php:45 libraries/mult_submits.lib.php:397 +#: js/messages.php:45 libraries/mult_submits.lib.php:402 msgid "You are about to DESTROY a complete database!" msgstr "Masz zamiar ZNISZCZYĆ całą bazę danych!" @@ -1022,12 +1024,11 @@ msgstr "" "dane?" #: js/messages.php:108 -#| msgid "Save & Close" msgid "Save & close" msgstr "Zapisz & zamknij" #: js/messages.php:109 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1551 prefs_manage.php:364 +#: libraries/insert_edit.lib.php:1558 prefs_manage.php:364 #: prefs_manage.php:375 msgid "Reset" msgstr "Resetuj" @@ -1059,7 +1060,6 @@ msgid "Add index" msgstr "Dodaj indeks" #: js/messages.php:118 -#| msgid "Edit Index" msgid "Edit index" msgstr "Edytuj indeks" @@ -1090,10 +1090,10 @@ msgstr "Wybierz kolumny dla indeksu." msgid "You have to add at least one column." msgstr "Musisz dodać co najmniej jedną kolumnę." -#: js/messages.php:129 libraries/insert_edit.lib.php:1549 +#: js/messages.php:129 libraries/insert_edit.lib.php:1556 #: templates/columns_definitions/column_definitions_form.phtml:159 #: templates/table/index_form.phtml:237 -#: templates/table/relation/common_form.phtml:108 +#: templates/table/relation/common_form.phtml:127 msgid "Preview SQL" msgstr "Podgląd SQL" @@ -1111,7 +1111,6 @@ msgstr "Zapytanie SQL:" #. l10n: Default label for the y-Axis of Charts #: js/messages.php:138 -#| msgid "Y Values" msgid "Y values" msgstr "Wartość Y" @@ -1137,13 +1136,12 @@ msgstr "Hasła nie są identyczne!" msgid "Removing Selected Users" msgstr "Usuwanie wybranych użytkowników" -#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:461 -#: libraries/tracking.lib.php:831 +#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:471 +#: libraries/tracking.lib.php:841 msgid "Close" msgstr "Zamknij" #: js/messages.php:149 -#| msgid "The number of pages created." msgid "Template was created." msgstr "Szablon został stworzony." @@ -1152,18 +1150,16 @@ msgid "Template was loaded." msgstr "Szablon został załadowany." #: js/messages.php:151 -#| msgid "The profile has been updated." msgid "Template was updated." msgstr "Szablon został zaktualizowany." #: js/messages.php:152 -#| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Szablon został usunięty." #. l10n: Other, small valued, queries #: js/messages.php:155 libraries/ServerStatusData.php:130 -#: libraries/server_status_queries.lib.php:148 +#: libraries/server_status_queries.lib.php:150 msgid "Other" msgstr "Inne" @@ -1210,7 +1206,6 @@ msgid "Query cache used" msgstr "Użyta pamięć podręczna zapytań" #: js/messages.php:177 -#| msgid "System CPU Usage" msgid "System CPU usage" msgstr "Systemowe wykorzystanie procesora" @@ -1339,7 +1334,7 @@ msgstr "Pytania" msgid "Traffic" msgstr "Ruch" -#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4330 +#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4331 #: libraries/server_status_monitor.lib.php:258 msgid "Settings" msgstr "Ustawienia" @@ -1352,9 +1347,9 @@ msgstr "Dodaj wykres do siatki" msgid "Please add at least one variable to the series!" msgstr "Dodaj co najmniej jedną zmienną do serii!" -#: js/messages.php:216 libraries/DisplayResults.php:1477 +#: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1470,7 +1465,7 @@ msgstr "Zmiana ustawień" msgid "Current settings" msgstr "Ustawienia bieżące" -#: js/messages.php:253 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:253 msgid "Chart title" msgstr "Tytuł wykresu" @@ -1558,21 +1553,21 @@ msgstr "Analizowanie…" msgid "Explain output" msgstr "Wyjaśnij wynik przetworzenia danych" -#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4326 +#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4327 #: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:396 #: libraries/rte/rte_list.lib.php:104 -#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:282 -#: libraries/tracking.lib.php:1623 +#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:284 +#: libraries/tracking.lib.php:1639 msgid "Status" msgstr "Status" -#: js/messages.php:289 js/messages.php:870 +#: js/messages.php:289 js/messages.php:862 #: libraries/plugins/export/ExportHtmlword.php:484 #: libraries/plugins/export/ExportOdt.php:600 #: libraries/plugins/export/ExportTexytext.php:445 #: libraries/plugins/export/PMA_ExportPdf.php:314 #: libraries/rte/rte_list.lib.php:93 -#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:239 +#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:243 msgid "Time" msgstr "Czas" @@ -1659,10 +1654,10 @@ msgstr "" "domyślnej konfiguracji…" #: js/messages.php:322 libraries/Menu.php:355 libraries/Menu.php:457 -#: libraries/Menu.php:578 libraries/Util.php:4329 libraries/Util.php:4344 -#: libraries/Util.php:4361 libraries/config/messages.inc.php:260 +#: libraries/Menu.php:578 libraries/Util.php:4330 libraries/Util.php:4345 +#: libraries/Util.php:4362 libraries/config/messages.inc.php:260 #: libraries/display_import.lib.php:108 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:241 +#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:241 #: setup/frames/menu.inc.php:26 msgid "Import" msgstr "Import" @@ -1721,7 +1716,13 @@ msgstr "Testuj" msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 libraries/server_variables.lib.php:159 +#: js/messages.php:343 +#, fuzzy +#| msgid "Bad parameters!" +msgid "No parameters found!" +msgstr "Złe parametry!" + +#: js/messages.php:347 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 @@ -1732,73 +1733,73 @@ msgstr "" msgid "Cancel" msgstr "Anuluj" -#: js/messages.php:349 libraries/Header.php:457 +#: js/messages.php:350 libraries/Header.php:457 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "Zmiana ustawień" -#: js/messages.php:350 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:351 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Zastosuj" -#: js/messages.php:353 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:354 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:124 msgid "Loading…" msgstr "Wczytywanie…" -#: js/messages.php:354 +#: js/messages.php:355 #, fuzzy #| msgid "Request Aborted!!" msgid "Request aborted!!" msgstr "Żądanie przerwane!" -#: js/messages.php:355 +#: js/messages.php:356 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "Przetwarzanie wywołania" -#: js/messages.php:356 +#: js/messages.php:357 #, fuzzy #| msgid "Request Aborted!!" msgid "Request failed!!" msgstr "Żądanie przerwane!" -#: js/messages.php:357 +#: js/messages.php:358 #, fuzzy #| msgid "Error in processing request:" msgid "Error in processing request" msgstr "Błąd na żądanie przetwarzania:" -#: js/messages.php:358 +#: js/messages.php:359 #, php-format msgid "Error code: %s" msgstr "Kod błędu: %s" -#: js/messages.php:359 +#: js/messages.php:360 #, php-format msgid "Error text: %s" msgstr "Błąd tekstu: %s" -#: js/messages.php:360 libraries/db_common.inc.php:73 +#: js/messages.php:361 libraries/db_common.inc.php:73 #: libraries/db_table_exists.lib.php:33 libraries/server_databases.lib.php:462 msgid "No databases selected." msgstr "Żadna baza danych nie został wybrana." -#: js/messages.php:361 +#: js/messages.php:362 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "Usuwanie kolumny" -#: js/messages.php:362 +#: js/messages.php:363 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "Dodaj klucz główny" -#: js/messages.php:363 +#: js/messages.php:364 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1808,458 +1809,458 @@ msgstr "Dodaj klucz główny" msgid "OK" msgstr "OK" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Click to dismiss this notification" msgstr "Kliknij, aby zamknąć to powiadomienie" -#: js/messages.php:367 +#: js/messages.php:368 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "Zmiana nazwy bazy danych" -#: js/messages.php:368 +#: js/messages.php:369 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "Kopiowanie bazy danych" -#: js/messages.php:369 +#: js/messages.php:370 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "Zmiana kodowania" -#: js/messages.php:373 libraries/Util.php:3289 +#: js/messages.php:374 libraries/Util.php:3289 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Wyłącz sprawdzanie kluczy zewnętrznych" -#: js/messages.php:376 +#: js/messages.php:377 msgid "Failed to get real row count." msgstr "Nie udało się pobrać prawdziwiej liczby wierszy." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Searching" msgstr "Wyszukiwanie" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide search results" msgstr "Ukryj okno wyników" -#: js/messages.php:381 +#: js/messages.php:382 msgid "Show search results" msgstr "Pokaż wyniki wyszukiwania" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Browsing" msgstr "Przeglądanie" -#: js/messages.php:383 +#: js/messages.php:384 msgid "Deleting" msgstr "Usuwanie" -#: js/messages.php:387 +#: js/messages.php:388 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Definicja przechowywania funkcji musi zawierać deklarację RETURN!" -#: js/messages.php:388 libraries/DisplayResults.php:4832 -#: libraries/DisplayResults.php:5091 libraries/Menu.php:347 -#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3709 -#: libraries/Util.php:3710 libraries/Util.php:4328 libraries/Util.php:4343 -#: libraries/Util.php:4360 libraries/config/messages.inc.php:254 +#: js/messages.php:389 libraries/DisplayResults.php:4850 +#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 +#: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 +#: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2448 -#: libraries/server_privileges.lib.php:2527 -#: libraries/server_privileges.lib.php:2873 -#: libraries/server_privileges.lib.php:3532 -#: libraries/server_status_monitor.lib.php:321 prefs_manage.php:306 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2875 +#: libraries/server_privileges.lib.php:3543 +#: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 msgid "Export" msgstr "Eksport" -#: js/messages.php:391 libraries/rte/rte_routines.lib.php:742 +#: js/messages.php:392 libraries/rte/rte_routines.lib.php:742 msgid "ENUM/SET editor" msgstr "Edytor ENUM/SET" -#: js/messages.php:392 +#: js/messages.php:393 #, php-format msgid "Values for column %s" msgstr "Wartości dla kolumny %s" -#: js/messages.php:393 +#: js/messages.php:394 msgid "Values for a new column" msgstr "Wartości dla nowej kolumny" -#: js/messages.php:394 +#: js/messages.php:395 msgid "Enter each value in a separate field." msgstr "Wprowadź każdą wartość do osobnego pola." -#: js/messages.php:395 +#: js/messages.php:396 #, php-format msgid "Add %d value(s)" msgstr "Dodaj %d wartość(i)" -#: js/messages.php:399 +#: js/messages.php:400 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "Uwaga: Jeśli plik zawiera wiele tabel, będzie połączony w jeden." -#: js/messages.php:403 +#: js/messages.php:404 msgid "Hide query box" msgstr "Ukryj okno zapytań" -#: js/messages.php:404 +#: js/messages.php:405 msgid "Show query box" msgstr "Pokaż okno zapytań" -#: js/messages.php:405 libraries/Console.php:88 libraries/Console.php:217 -#: libraries/DisplayResults.php:3457 libraries/DisplayResults.php:4816 +#: js/messages.php:406 libraries/Console.php:88 libraries/Console.php:217 +#: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4834 #: libraries/Index.php:721 libraries/Util.php:727 libraries/Util.php:1238 -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:119 +#: libraries/server_user_groups.lib.php:121 #: libraries/server_variables.lib.php:242 #: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 msgid "Edit" msgstr "Edytuj" -#: js/messages.php:406 libraries/Console.php:89 libraries/DbSearch.php:360 -#: libraries/DisplayResults.php:3526 libraries/DisplayResults.php:4800 +#: js/messages.php:407 libraries/Console.php:89 libraries/DbSearch.php:360 +#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4818 #: libraries/central_columns.lib.php:854 #: libraries/central_columns.lib.php:1200 libraries/display_export.lib.php:227 -#: libraries/server_user_groups.lib.php:129 -#: libraries/sql_query_form.lib.php:416 libraries/tracking.lib.php:480 +#: libraries/server_user_groups.lib.php:131 +#: libraries/sql_query_form.lib.php:417 libraries/tracking.lib.php:490 #: setup/frames/index.inc.php:187 setup/frames/index.inc.php:295 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Usuń" -#: js/messages.php:407 libraries/DisplayResults.php:915 -#: libraries/DisplayResults.php:923 +#: js/messages.php:408 libraries/DisplayResults.php:919 +#: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d nie jest prawidłowym numerem wiersza." -#: js/messages.php:408 -#: libraries/controllers/table/TableSearchController.php:435 -#: libraries/controllers/table/TableSearchController.php:920 -#: libraries/sql.lib.php:193 tbl_change.php:159 +#: js/messages.php:409 +#: libraries/controllers/table/TableSearchController.php:432 +#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "Przeglądaj zewnętrzne wartości" -#: js/messages.php:409 +#: js/messages.php:410 msgid "No auto-saved query" msgstr "" -#: js/messages.php:410 +#: js/messages.php:411 #, php-format msgid "Variable %d:" msgstr "Zmienna %d:" -#: js/messages.php:413 libraries/normalization.lib.php:889 +#: js/messages.php:414 libraries/normalization.lib.php:889 msgid "Pick" msgstr "Wybierz" -#: js/messages.php:414 +#: js/messages.php:415 msgid "Column selector" msgstr "Wybieranie kolumn" -#: js/messages.php:415 +#: js/messages.php:416 msgid "Search this list" msgstr "Szukaj w tej liście" -#: js/messages.php:417 +#: js/messages.php:418 #, 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:420 +#: js/messages.php:421 msgid "See more" msgstr "Zobacz więcej" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Are you sure?" msgstr "" -#: js/messages.php:423 +#: js/messages.php:424 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "Kontynuuj" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "Dodaj klucz główny" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "Klucz podstawowy dodany." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "Przenoszenie cię do następnego kroku…" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "Koniec kroku" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Zakończ" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "Żadne częściowe zależności nie zostały wybrane!" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 #, fuzzy #| msgid "Add privileges on the following table:" msgid "Create the following table" msgstr "Utwórz następującą tabelę" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "Nie wybrano żadnych zależności!" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Zapisz" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Ukryj okno zapytania SQL" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Pokaż kryteria wyszukiwania" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Table Search" msgid "Range search" msgstr "Wyszukanie z zakresem" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Column names: " msgid "Column maximum:" msgstr "Maximum kolumny:" -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Column names: " msgid "Column minimum:" msgstr "Nazwy kolumn: " -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "Minimalna wartość:" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "Maksymalna wartość:" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "Ukryj kryteria wyszukiwania i zamiany" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "Pokaż kryteria wyszukiwania i zamiany" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "Każdy punkt reprezentuje wiersz danych." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "Najechanie nad punkt pokaże jego etykietę." -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Aby powiększyć, wybierz część powierzchni z myszy." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "Kliknij Resetuj powiększenie, aby wrócić do pierwotnego stanu." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Kliknij punkt danych, aby wyświetlić lub ewentualnie zmodyfikować wiersze " "danych." -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Wykres może być zmieniany przez przeciągnięcie go wzdłuż prawego dolnego " "rogu." -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "Wybierz dwie kolumny" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "Wybierz dwie różne kolumny" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "Treść punktu danych" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignoruj" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Kopiuj" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Punkt" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Linia ciągu" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Wielokąt" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Pierścień wewnętrzny" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Pierścień zewnętrzny:" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "Czy chcesz skopiować klucz szyfrowania?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "Klucz szyfrowania" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Wybierz klucz odwołujący" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Wybierz klucz zewnętrzny" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "Wybierz klucz podstawowy lub unikalny klucz!" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Wybierz kolumny do wyświetlenia" -#: js/messages.php:532 +#: js/messages.php:533 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?" @@ -2267,79 +2268,79 @@ msgstr "" "Nie zapisano zmian w układzie. Zostaną utracone, jeśli ich nie zapiszesz. " "Czy chcesz kontynuować?" -#: js/messages.php:535 +#: js/messages.php:536 msgid "Page name" msgstr "Nazwa strony" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Zapisz stronę" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Save page" msgid "Save page as" msgstr "Zapisz stronę" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Otwórz stronę" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "Usuń stronę" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Bez nazwy" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "Proszę wybrać stronę, aby kontynuować" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "Proszę podać poprawną nazwę strony" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "Eksportuj schemat relacji" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Modyfikacja została zapisana" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "Dodaj opcję kolumny \"%s\"." -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "%d obiekt(y) utworzony." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Wyślij" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "Naciśnij ESC, aby anulować edycję." -#: js/messages.php:557 +#: js/messages.php:558 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?" @@ -2347,41 +2348,41 @@ msgstr "" "Po dokonaniu edycji pewnych danych, nie zostały one zapisane. Czy na pewno " "chcesz opuścić tę stronę przed zapisaniem danych?" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "Przeciągnij, aby uporządkować." -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "Kliknij, by zaznaczyć/odznaczyć." -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "Kliknij dwukrotnie, aby skopiować nazwę kolumny." -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Kliknij rozwijane strzałki,
aby przełączyć widoczność kolumn." -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Pokaż wszystko" -#: js/messages.php:574 +#: js/messages.php:575 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." @@ -2390,152 +2391,113 @@ msgstr "" "pól wyboru, edycji, kopiowania i usuwania łącza może nie działać po " "zapisaniu." -#: js/messages.php:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "Oryginalny ciąg" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "anuluj" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Przerwane" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "Sukces" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "Importuj status" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Tutaj upuść pliki" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "Najpierw wybierz bazę danych" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Można również edytować większość wartości
klikając dwukrotnie " "bezpośrednio na nich." -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Można również edytować większość wartości
klikając bezpośrednio na " "nich." -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "Idź do linku:" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "Skopiuj nazwę kolumny." -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Kliknij prawym przyciskiem myszy nazwę kolumny aby skopiować go do schowka." -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Wygeneruj hasło" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Generuj" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "Więcej" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Pokaż Panel" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Ukryj Panel" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "Pokaż ukryte elementy drzewa nawigacji." -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "Połącz z głównym panelem" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "Odłącz od głównego panelu" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -#, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "Tabele" - -#: js/messages.php:633 -#, fuzzy -#| msgid "Views" -msgid "views" -msgstr "Widoki" - -#: js/messages.php:634 -#, fuzzy -#| msgid "Procedures" -msgid "procedures" -msgstr "Procedury" - -#: js/messages.php:635 -#, fuzzy -#| msgid "event" -msgid "events" -msgstr "zdarzenie" - -#: js/messages.php:636 -#, fuzzy -#| msgid "Functions" -msgid "functions" -msgstr "Funkcje" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "Żądana strona nie została znaleziona w historii, może wygasła." -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2545,49 +2507,49 @@ msgstr "" "wersja to %s, wydana dnia %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", ostatnia stabilna wersja:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "aktualna" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "Utwórz widok" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy #| msgid "Send error reports" msgid "Send error report" msgstr "Wysyłanie raportów o błędzie" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Wyślij zgłoszenie błędu" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "Wystąpił błąd krytyczny JavaScript. Czy chcesz wysłać raport błędu?" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Zmiana ustawień raportów" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Pokaż szczegóły raportu" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2595,375 +2557,375 @@ msgstr "" "Twój eksport jest niekompletny, z powodu niskiej realizacji terminu na " "poziomie PHP!" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "Ignoruj wszystko" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "Czy wykonać to zapytanie ponownie?" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "Czy na pewno chcesz usunąć tę zakładkę?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, fuzzy, php-format #| msgid "Executed queries" msgid "%s queries executed %s times in %s seconds." msgstr "Zrealizowane zapytania" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Komentarze tabeli" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Ukryj okno wyników" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "Poprz." -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "Nast." #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Dziś" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "Styczeń" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "Luty" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "Marzec" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "Kwiecień" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Maj" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "Czerwiec" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "Lipiec" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "Sierpień" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "Wrzesień" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "Październik" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "Listopad" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "Grudzień" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Sty" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Lut" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Kwi" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Cze" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Sie" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Wrz" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Paź" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Gru" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "Niedziela" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "Poniedziałek" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "Wtorek" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "Środa" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "Czwartek" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "Piątek" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "Sobota" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "Nie" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Wto" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Śro" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Czw" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Pią" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Sob" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "Nie" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "Wto" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "Śro" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "Czw" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "Pią" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "Sob" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "Ty" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "kalendarz-miesiąc-rok" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "brak" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Godzina" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Minuta" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Sekunda" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Użyj pola tekstowego" -#: js/messages.php:886 +#: js/messages.php:878 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid email address" msgstr "Proszę podać poprawną nazwę strony" -#: js/messages.php:887 +#: js/messages.php:879 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "Proszę podać poprawny numer!" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date" msgstr "Proszę podać poprawną nazwę strony" -#: js/messages.php:889 +#: js/messages.php:883 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date ( ISO )" msgstr "Proszę podać poprawną nazwę strony" -#: js/messages.php:890 +#: js/messages.php:885 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "Proszę podać poprawny numer!" -#: js/messages.php:891 +#: js/messages.php:888 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "Proszę podać poprawny numer!" -#: js/messages.php:892 +#: js/messages.php:890 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" @@ -2975,55 +2937,55 @@ msgstr "Wprowadź prawidłową długość!" msgid "Please enter the same value again" msgstr "Proszę podać poprawną nazwę strony" -#: js/messages.php:894 +#: js/messages.php:897 #, fuzzy #| msgid "Please enter correct captcha!" msgid "Please enter no more than {0} characters" msgstr "Proszę podać poprawną captcha!" -#: js/messages.php:895 +#: js/messages.php:902 #, fuzzy #| msgid "Please enter correct captcha!" msgid "Please enter at least {0} characters" msgstr "Proszę podać poprawną captcha!" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a value between {0} and {1}" msgstr "Proszę podać poprawną nazwę strony" -#: js/messages.php:898 +#: js/messages.php:917 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" msgstr "Wprowadź prawidłową długość!" -#: js/messages.php:899 +#: js/messages.php:922 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a value greater than or equal to {0}" msgstr "Proszę podać poprawną nazwę strony" -#: js/messages.php:901 +#: js/messages.php:928 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date or time" msgstr "Proszę podać poprawną nazwę strony" -#: js/messages.php:902 +#: js/messages.php:933 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "Proszę podać poprawny numer!" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Błąd" @@ -3112,11 +3074,12 @@ msgstr "Wykonaj zapytanie ponownie" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3159,7 +3122,7 @@ msgstr "Podczas bieżącej sesji" msgid "Explain" msgstr "Wyjaśnij" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Profilowanie" @@ -3193,8 +3156,8 @@ msgid "History" msgstr "Historia" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3365,7 +3328,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Przełącz na przekopiowaną tabelę" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3373,26 +3336,26 @@ msgstr "" "Serwer nie odpowiada (lub gniazdo lokalnego serwera nie jest prawidłowo " "skonfigurowane)." -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "Serwer nie odpowiada." -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "Proszę sprawdzić uprawnienia katalogu zawierającej bazę danych." -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Szczegóły…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Połączenie dla użytkownika kontrolnego zdefiniowanego w pliku " "konfiguracyjnym nie powiodło się." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3402,8 +3365,8 @@ msgstr "" msgid "Ascending" msgstr "Rosnąco" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3550,8 +3513,8 @@ msgstr[1] "%1$s dopasowania w %2$s" msgstr[2] "%1$s dopasowań w %2$s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3595,121 +3558,122 @@ msgstr "Odznacz wszystko" msgid "Inside column:" msgstr "Wewnątrz kolumny:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "Zapisz edytowane dane" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "Przywrócić porządek w kolumnie" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "Filtrowanie wierszy" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "Szukaj w tej tabeli" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "Początek" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "Poprzednie" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "Następne" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "Koniec" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Wszystko" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Liczba wierszy:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Sortuj wg klucza" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "Częściowe teksty" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "Pełne teksty" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Klucz relacyjny" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Display foreign key relationships" msgid "Display column for relations" msgstr "Wyświetlanie związki z kluczem zewnętrznym" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "Pokaż binarne treści" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "Pokaż zawartość BLOB" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "Ukryj transformacje przeglądarki" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "Znany tekst" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "Znane binarne" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "Wiersz został usunięty." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Zabij" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Może być w przybliżeniu. Zobacz [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "Zapytanie SQL zostało wykonane pomyślnie." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3718,40 +3682,40 @@ msgstr "" "Ten widok ma przynajmniej taką liczbę wierszy (rekordów). Proszę odnieść się " "do %sdokumentacji%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "Pokazano wiersze %1s - %2s" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d ogółem, %2$d w zapytaniu" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "%d ogółem" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "Wykonanie zapytania trwało %01.4f sekund(y)." -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Z zaznaczonymi:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3759,25 +3723,25 @@ msgstr "Z zaznaczonymi:" msgid "Check all" msgstr "Zaznacz wszystkie" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Podgląd wydruku" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Operacja na wynikach zapytania" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Wyświetlanie wykresu" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "Wizualizacja danych GIS" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "Łącza nie znaleziono!" @@ -3875,19 +3839,19 @@ msgstr "Brak zdefiniowanego indeksu!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Indeksy" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3896,24 +3860,24 @@ msgid "Action" msgstr "Działanie" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Nazwa klucza" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Jednoznaczny" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Spakowany" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Moc" @@ -3921,8 +3885,8 @@ msgstr "Moc" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3932,8 +3896,8 @@ msgid "Collation" msgstr "Metoda porównywania napisów" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3949,15 +3913,15 @@ msgstr "Klucz podstawowy został usunięty." msgid "Index %s has been dropped." msgstr "Klucz %s został usunięty." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Usuń" @@ -3996,12 +3960,13 @@ msgstr "Widok" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4009,7 +3974,7 @@ msgstr "Tabela" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4018,8 +3983,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4027,41 +3992,41 @@ msgid "Search" msgstr "Szukaj" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Wstaw" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Uprawnienia" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Operacje" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Śledzenie" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4072,16 +4037,16 @@ msgstr "Wyzwalacze" msgid "Database seems to be empty!" msgstr "Baza danych wydaje się pusta!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Zapytanie" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Procedury i funkcje" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4089,20 +4054,20 @@ msgstr "Procedury i funkcje" msgid "Events" msgstr "Zdarzenia" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Widok projektu" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "Centralne kolumny" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Bazy danych" @@ -4113,33 +4078,33 @@ msgid "User accounts" msgstr "Grupy użytkowników" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Dziennik binarny" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikacja" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Zmienne" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Kodowania znaków" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Mechanizmy" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "Wtyczki" @@ -4439,7 +4404,7 @@ msgstr "Nie można zmienić nazwy indeksu na PRIMARY!" msgid "No index parts defined!" msgstr "Brak zdefiniowanych części indeksu!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4923,37 +4888,37 @@ msgstr "Funkcja %s jest dotknięta przez znany błąd, zobacz %s" msgid "Click to toggle" msgstr "Kliknij, aby przełączać" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Wyszukaj w komputerze:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Wybierz katalog serwera WWW dla uploadu %s:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Nie można znaleźć katalogu do zapisu przesyłanych plików." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "Brak plików do załadowania!" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Opróżnij" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "Wykonaj" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Drukuj" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "Użytkownicy" @@ -5116,8 +5081,8 @@ msgid "Add new column" msgstr "Dodaj nową kolumnę" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5181,19 +5146,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "Należy uaktualnić do %s %s lub nowszej." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "Błąd: Token niedopasowany" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "Próba nadpisania GLOBALS" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "można wykorzystać" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "wykryty klawisz numeryczny" @@ -6112,7 +6077,7 @@ msgid "Remember file name template" msgstr "Zapamiętaj nazwę pliku szablonu" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj wartość AUTO_INCREMENT" @@ -6153,7 +6118,7 @@ msgstr "Brakuje tabel przechowujących konfigurację phpMyAdmin" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Dodaj %s" @@ -8091,7 +8056,7 @@ msgid "" msgstr "" "Określa, czy pole zapytania, powinny pozostać na ekranie po jego złożeniu" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "Zachowaj pole zapytania" @@ -8420,106 +8385,35 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Otwórz dokument tekstowy" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "Lista ulubionych jest pełna!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Tabela %s została opróżniona." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "Widok %s został usunięty" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "Tabela %s została usunięta" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "Lista ulubionych jest pełna!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "nieznany" -#: libraries/controllers/TableStructureController.php:162 -#, fuzzy, php-format -#| msgid "The column name '%s' is a MySQL reserved keyword." -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "Nazwa kolumny '%s' jest słowem kluczowym MySQL." -msgstr[1] "Nazwa kolumny '%s' jest słowem kluczowym MySQL." -msgstr[2] "Nazwa kolumny '%s' jest słowem kluczowym MySQL." - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "Nie wybrano żadnej kolumny." - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "Kolumny przeniesiono pomyślnie." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "Tabela %1$s została pomyślnie zmodyfikowana." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "Błąd zapytania" - -#: libraries/controllers/TableStructureController.php:967 -#, fuzzy, php-format -#| msgid "Table %1$s has been altered successfully." -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "Tabela %1$s została pomyślnie zmodyfikowana." - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Zmień" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Indeks" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "Przestrzenny" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Pełny tekst" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "Różne wartości" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8533,6 +8427,14 @@ msgstr "Kolumny liczbowe nie występujących w tabeli wykreślić." msgid "No data to display" msgstr "Brak danych do wyświetlenia" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "Tabela %1$s została pomyślnie zmodyfikowana." + #: libraries/controllers/table/TableRelationController.php:212 #, fuzzy #| msgid "Thread %s was successfully killed." @@ -8545,25 +8447,88 @@ msgstr "Wątek %s został pomyślnie zabity." msgid "Internal relations were successfully updated." msgstr "Relacja wewnętrzna została dodana." -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Table Search" msgid "Table search" msgstr "Tabela szukania" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Zoom Search" msgid "Zoom search" msgstr "Powiększ szukanie" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "Find and Replace" msgid "Find and replace" msgstr "Znajdź i zamień" +#: libraries/controllers/table/TableStructureController.php:163 +#, fuzzy, php-format +#| msgid "The column name '%s' is a MySQL reserved keyword." +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "Nazwa kolumny '%s' jest słowem kluczowym MySQL." +msgstr[1] "Nazwa kolumny '%s' jest słowem kluczowym MySQL." +msgstr[2] "Nazwa kolumny '%s' jest słowem kluczowym MySQL." + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "Nie wybrano żadnej kolumny." + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "Kolumny przeniesiono pomyślnie." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "Błąd zapytania" + +#: libraries/controllers/table/TableStructureController.php:975 +#, fuzzy, php-format +#| msgid "Table %1$s has been altered successfully." +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "Tabela %1$s została pomyślnie zmodyfikowana." + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Zmień" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Indeks" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "Przestrzenny" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Pełny tekst" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "Różne wartości" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8573,7 +8538,7 @@ msgstr "Brak rozszerzenia %s. Proszę sprawdzić konfigurację PHP." msgid "possible deep recursion attack" msgstr "możliwy głęboki atak rekurencji" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Bez zmian" @@ -8642,7 +8607,7 @@ msgstr "Utwórz" msgid "Create database:" msgstr "Utwórz bazę danych:" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Brak uprawnień" @@ -9417,26 +9382,26 @@ msgid "Dump has been saved to file %s." msgstr "Zrzut został zapisany do pliku %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL zwrócił pusty wynik (zero wierszy)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Następujące struktury zostały wcześniej utworzone lub zaktualizowane. Możesz:" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "Zobacz zawartość struktury klikając jej nazwę." -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -9444,48 +9409,48 @@ msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "Możesz zmienić wszystkie ustawienia klikając odnośnik \"Opcje\"" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 #, fuzzy #| msgid "Edit structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link." msgstr "Edytuj strukturę po kliknięciu odnośnika \"Struktura\"" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "Idź do bazy danych: %s" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "Edytuj ustawienia dla %s" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "Przejdź do tabeli: %s" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "Struktura %s" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "Przejdź do widoku: %s" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "Utwórz indeks na kolumnach %s" @@ -9508,68 +9473,68 @@ msgstr "Funkcja" msgid "Binary" msgstr "Binarne" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 #, fuzzy #| msgid "Because of its length,
this column might not be editable" msgid "Because of its length,
this column might not be editable." msgstr "Ze względu na jego długość,
kolumna ta może nie być edytowalne" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Binarne - nie do edycji" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Lub" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "katalog przesyłania serwera web:" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "Edycja/Wstaw" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "Kontynuuj wstawianie %s wierszy" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "i potem" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Wstaw jako nowy wiersz" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "Wstaw jko nowy wiersz i ignoruj błędy" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "Pokaż wstawiane zapytanie" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Wróć" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Wstaw nowy wiersz" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Powrót do tej strony" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Edytuj następny wiersz" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9579,7 +9544,7 @@ msgstr "" "Użyj TAB, aby przejść z wartości do wartości, lub CTRL+strzałki do " "poruszania się w dowolnym miejscu" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9591,11 +9556,11 @@ msgstr "" msgid "Value" msgstr "Wartość" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "Wyświetl zapytanie SQL" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "Id wstawionego wiersza: %1$d" @@ -9611,39 +9576,39 @@ msgstr "Brak" msgid "Convert to Kana" msgstr "Konwersja do Kana" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 #, fuzzy #| msgid "Success." msgid "Success!" msgstr "Sukces." -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table prefix:" msgstr "Zamień przedrostek tabeli" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "Kopiuj tabelę z przedrostkiem:" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "Od" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "Do" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "Dodaj prefiks tabeli:" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "Dodaj prefiks" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "Czy na pewno chcesz wykonać następującą kwerendę?" @@ -9867,8 +9832,8 @@ msgstr "Procedury:" msgid "Views:" msgstr "Widoki:" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Pokaż" @@ -9911,8 +9876,9 @@ msgstr[1] "Znaleziono %s inne wyniki" msgstr[2] "Znaleziono %s innych wyników" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" -msgstr "Filtr wg nazwy bazy danych lub regex" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -9921,10 +9887,6 @@ msgstr "Filtr wg nazwy bazy danych lub regex" msgid "Clear fast filter" msgstr "Wyczyść szybki filtr" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "Filtr wg nazwy lub regex" - #: libraries/navigation/NavigationTree.php:1433 #, fuzzy #| msgid "Collapse" @@ -10324,7 +10286,7 @@ msgstr "Zmień nazwę bazy danych na" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10335,7 +10297,7 @@ msgstr "Nie masz wystarczających uprawnień, aby być tu i teraz!" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -10355,18 +10317,18 @@ msgstr "Usuń bazę danych" msgid "Drop the database (DROP)" msgstr "Usuń bazę danych (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Tylko struktura" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Struktura i dane" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Tylko dane" @@ -10378,7 +10340,7 @@ msgstr "Kopiuj bazę danych do" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE przed przekopiowaniem" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Dodaj ograniczenia" @@ -10418,163 +10380,163 @@ msgstr "Mechanizm składowania" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Kopiuj tabelę do (bazadanych.tabela)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Przełącz na przekopiowaną tabelę" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Zarządzanie tabelą" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Analizuj tabelę" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Sprawdź tabelę" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Sprawdź tabelę" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Defragmentuj tabelę" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "Tabela %s została przeładowana." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Optymalizuj tabelę" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Napraw tabelę" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "Usuń dane lub tabelę" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "Opróżnij tabelę (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "Usuń tabelę (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Analizuj" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Sprawdź" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Optymalizuj" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Przebuduj" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Napraw" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Collapse" msgid "Coalesce" msgstr "Zwiń" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "Zarządzanie partycjami" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "Partycja %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "Usuń partycjonowanie" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Sprawdź spójność powiązań:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Nie można przenieść tabeli do niej samej!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Nie można przekopiować tabeli do niej samej!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabela %s została przeniesiona do %s." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabela %s została przekopiowana do %s." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabela %s została przeniesiona do %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s została przekopiowana do %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Nazwa tabeli jest pusta!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "Ten format nie ma żadnych opcji" @@ -10749,7 +10711,7 @@ msgstr "Opcje eksportu danych" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Zrzut danych tabeli" @@ -10773,21 +10735,21 @@ msgstr "Określenie" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Struktura tabeli dla tabeli" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Struktura widoku" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Zastąpiona struktura widoku" @@ -10879,7 +10841,7 @@ msgid "Database:" msgstr "Baza danych:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "Dane:" @@ -10988,7 +10950,7 @@ msgid "Data creation options" msgstr "Opcje tworzenia danych" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "Tabela Truncate przed wstawieniem" @@ -11075,8 +11037,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11084,89 +11046,89 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Metadata Headers" msgid "Metadata" msgstr "Nagłówki metadanych" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, fuzzy, php-format #| msgid "Metadata Headers" msgid "Metadata for %s" msgstr "Nagłówki metadanych" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Data utworzenia:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Ostatnia aktualizacja:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Ostatnie sprawdzanie:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "w użyciu" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Ograniczenia dla zrzutów tabel" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Ograniczenia dla tabeli" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "Indeksy dla zrzutów tabel" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Wewnątrz tabel:" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "Nie używaj AUTO_INCREMENT dla wartości zerowych" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT dla tabeli" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "TYPY MIME TABELI" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "RELACJE TABELI" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Struktura widoku" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "Błąd odczytu danych:" @@ -11422,9 +11384,9 @@ msgstr "Schemat relacyjny" msgid "Table of contents" msgstr "Spis treści" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Dodatkowo" @@ -11659,59 +11621,59 @@ msgstr "Formatuj tekst traktując jako zapytanie SQL z podświetlaniem składni. msgid "Formats text as XML with syntax highlighting." msgstr "Formatuj tekst traktując jako zapytanie SQL z podświetlaniem składni." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Błąd: relacja już istnieje." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "Relacja FOREIGN KEY została dodana" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "Error: Relation could not be added!" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Błąd: Relacja nie została dodana!" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "Błąd: Funkcjonalność relacyjna jest wyłączona!" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "Relacja wewnętrzna została dodana." -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "Error: Relation could not be added!" msgid "Error: Internal relation could not be added!" msgstr "Błąd: Relacja nie została dodana!" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "Relacja FOREIGN KEY została dodana" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "Error: Relation could not be added!" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Błąd: Relacja nie została dodana!" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "Error: Relation could not be added!" msgid "Error: Internal relation could not be removed!" msgstr "Błąd: Relacja nie została dodana!" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Internal relation has been added." msgid "Internal relation has been removed." @@ -11767,65 +11729,65 @@ msgstr "" "Informacje o tym, jak zaktualizować tabelę Column_comments znajdują się w " "dokumentacji." -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Zapamiętane zapytanie SQL" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "Historia SQL" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "Stale ostatnio używane tabele" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "Persistent recently used tables" msgid "Persistent favorite tables" msgstr "Stale ostatnio używane tabele" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "Preferencje trwałych tabel UI" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "Preferencje użytkownika" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "Konfigurowalne menu" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "Ukryj/Pokaż elementy nawigacji" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "Zapisywanie kwerendy przez przykład wyszukiwania" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Remember table's sorting" msgid "Remembering Designer Settings" msgstr "Zapamiętaj sortowanie tabel" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "Niepoprawny typ eksportu" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "Szybkie kroki w celu konfiguracji zaawansowanych funkcji:" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, fuzzy, php-format #| msgid "" #| "Create the needed tables with the examples/create_tables.sql." @@ -11833,11 +11795,11 @@ msgid "Create the needed tables with the %screate_tables.sql." msgstr "" "Utwórz wymagane tabele używając examples/create_tables.sql." -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "Utwórz użytkownika pma i nadaj mu prawa do tych tabel." -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -11845,24 +11807,24 @@ msgstr "" "Włącz zaawansowane funkcje w pliku konfiguracyjnym (config.inc.php), na przykład zaczynając od config.sample.inc.php." -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Zaloguj się ponownie do phpMyAdmin, żeby załadować zmieniony plik " "konfiguracyjny." -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "brak opisu" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11870,14 +11832,14 @@ msgid "" "configuration storage there." msgstr "Brakuje tabel przechowujących konfigurację phpMyAdmin" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Brakuje tabel przechowujących konfigurację phpMyAdmin" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -12078,8 +12040,8 @@ msgstr "Nazwa użytkownika:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Nazwa użytkownika" @@ -12087,7 +12049,7 @@ msgstr "Nazwa użytkownika" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Hasło" @@ -12745,7 +12707,7 @@ msgstr[2] "%1$d baz danych zostało pomyślnie usuniętych." msgid "Plugin" msgstr "Wtyczka" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Wersja" @@ -12753,101 +12715,97 @@ msgstr "Wersja" msgid "Author" msgstr "Autor" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "Licencja" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "wyłączone" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Brak uprawnień." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Wszystkie uprawnienia, oprócz GRANT." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Pozwól czytać dane." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Pozwól dodawać i zamieniać dane." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Pozwól zmieniać dane." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Pozwól usuwać dane." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Pozwól tworzyć nowe bazy danych i tabele." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Pozwól usuwać bazy danych i tabele." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Pozwól przeładowywać ustawienia serwera i opróżniać pamięć podręczną serwera." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Pozwól wyłączyć serwer." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 #, fuzzy #| msgid "Allows viewing processes of all users" msgid "Allows viewing processes of all users." msgstr "Pozwól oglądać procesy wszystkich użytkowników" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "Pozwól importować i eksportować dane z/do plików." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "Nie ma żadnych skutków w tej wersji MySQL." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Pozwól tworzyć i usuwać indeksy." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Pozwól zmieniać strukturę istniejących tabel." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Daj dostęp do pełnej listy baz danych." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12858,22 +12816,22 @@ msgstr "" "ustawianie zmiennych globalnych czy unicestwianie wątków innych użytkowników." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Pozwala tworzyć tabele tymczasowe." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Pozwól blokować tabele dla aktualnego wątku." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Potrzebne dla replikacji serwera podrzędnego." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Nadaj użytkownikowi prawo, by zapytać gdzie są serwery podrzędne / nadrzędne." @@ -12881,19 +12839,19 @@ msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Pozwól tworzyć widoki." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "Pozwól ustawiać zdarzenia w harmonogramie zdarzeń" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 #, fuzzy #| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." @@ -12901,27 +12859,27 @@ msgstr "Pozwól tworzyć i usuwać wyzwalacze" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Pozwól wykonywać zapytania SHOW CREATE VIEW." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Pozwól tworzyć procedury składowane." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Pozwól modyfikować i usuwać procedury składowane." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "Pozwól tworzyć, usuwać i zmieniać nazwy kont użytkowników." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Pozwól wykonywać procedury składowane." @@ -12933,8 +12891,8 @@ msgstr "Brak" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Grupa użytkownika" @@ -12978,12 +12936,12 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Uwaga: Ustawienie tych opcji na 0 (zero) usuwa ograniczenie." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Ogranicz liczbę zapytań, które może wysłać użytkownik w ciągu godziny." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12992,21 +12950,21 @@ msgstr "" "które może wykonać użytkownik w ciągu godziny." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Ogranicz liczbę nowych połączeń, które może otworzyć użytkownik w ciągu " "godziny." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "Ogranicz liczbę jednoczesnych połączeń, które może użytkownik." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -13014,7 +12972,7 @@ msgid "Routine" msgstr "Procedury i funkcje" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -13035,14 +12993,14 @@ msgstr "Pozwól wykonywać procedury składowane." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Uprawnienia specyficzne dla tabel" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Uwaga: Uprawnienia MySQL są oznaczone w języku angielskim." @@ -13052,7 +13010,7 @@ msgid "Administration" msgstr "Administracja" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Globalne uprawnienia" @@ -13061,15 +13019,15 @@ msgid "Global" msgstr "Ogólny" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Uprawnienia specyficzne dla baz danych" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Pozwól tworzyć nowe tabele." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Pozwól usuwać tabele." @@ -13092,7 +13050,7 @@ msgid "Native MySQL Authentication" msgstr "Uwierzytelnianie ciasteczkami" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Dane użytkownika" @@ -13119,8 +13077,8 @@ msgstr "Nazwa użytkownika:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Log name" msgid "Host name" @@ -13142,242 +13100,242 @@ msgstr "Uwierzytelnienie" msgid "Password Hashing Method" msgstr "Sposób kodowania haseł:" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "Hasło dla %s zostało zmienione." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Masz cofnięte uprawnienia dla %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add user group" msgid "Add user account" msgstr "Dodaj grupę użytkownika" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Baza danych dla użytkownika" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "Utwórz bazę danych z taką samą nazwą i przyznaj wszystkie uprawnienia." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Przyznaj wszystkie uprawienia do baz danych o nazwach pasujących do maski " "(nazwaużytkownika_%)." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Przyznanie wszystkich uprawnień do bazy danych \"%s\"." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Użytkownicy mają dostęp do \"%s\"" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "Użytkownik został dodany." -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Nadawanie" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "Żadnego użytkownika nie znaleziono." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Dowolny" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "ogólny" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "specyficzne dla bazy danych" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "znak wieloznaczny" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "specyficzne dla bazy danych" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "Edytuj uprawnienia:" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Cofnij" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "Edytuj grupę użytkownika" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… pozostaw starego." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… usunąć starą z tabel użytkowników." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… unieważnij wszystkie aktywne uprawnienia ze starej i usuń je później." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… usuń starą z tabel użytkownika i przeładuj uprawnienia później." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Zmień dane użytkownika / Kopiuj użytkownika" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Utwórz nowego użytkownika z takimi samymi uprawnieniami i …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Uprawnienia specyficzne dla kolumn" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Usuń zaznaczonych użytkowników" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Cofnij wszystkie aktywne uprawnienia użytkownikom, a następnie usuń ich." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "Usuń bazy danych o takich samych nazwach jak użytkownicy." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "Żaden użytkownik ze został zaznaczony do usunięcia!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Przeładuj uprawnienia" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Wybrani użytkownicy zostali usunięci pomyślnie." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Zaktualizowano uprawnienia dla %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "Usuwanie %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Uprawnienia były przeładowane pomyślnie." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "Użytkownik %s już istnieje!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "Uprawnienia dla %s" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Użytkownik" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "Nowy" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "Edytuj uprawnienia:" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "User group" msgid "User account" msgstr "Grupa użytkownika" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "Omówienie użytkowników" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13390,7 +13348,7 @@ msgstr "" "może się różnić od uprawnień jakich faktycznie używa serwer. W takim " "przypadku powinieneś przed dalszą pracą %sprzeładować uprawnienia%s." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13409,11 +13367,11 @@ msgstr "" "może się różnić od uprawnień jakich faktycznie używa serwer. W takim " "przypadku powinieneś przed dalszą pracą %sprzeładować uprawnienia%s." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "Wybrany użytkownik nie został znaleziony w tabeli uprawnień." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Dodałeś nowego użytkownika." @@ -13676,26 +13634,26 @@ msgstr "Instrukcje/Setup" msgid "Done dragging (rearranging) charts" msgstr "Gotowe przestawienie/edycji wykresów" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 #, fuzzy #| msgid "Enable highlighting" msgid "Enable charts dragging" msgstr "Włącz podświetlanie" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "Częstotliwość odświeżania" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "Kolumny wykresu" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "Układ wykresu" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -13703,7 +13661,7 @@ msgstr "" "Układ wykresów są przechowywane w przeglądarce lokalnego przechowywania. " "Możesz wyeksportować go, jeśli masz skomplikowany zestaw górę." -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "Przywróć wartość domyślną" @@ -13765,7 +13723,7 @@ msgid "Statements" msgstr "Oświadczenia" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "#" @@ -13790,7 +13748,7 @@ msgstr "Pokaż niesformatowane wartości" msgid "Related links:" msgstr "Powiązane linki:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -13798,11 +13756,11 @@ msgstr "" "Liczba połączeń, które zostały przerwane, ponieważ klient zmarł bez " "poprawnego zamykania połączenia." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Liczba nieudanych prób połączenia się z serwerem MySQL." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13812,18 +13770,18 @@ msgstr "" "binarnego, które przekroczyły wartość binlog_cache_size i do zapisania " "instrukcji transakcji został użyty plik tymczasowy." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Liczba transakcji, które używały pamięci podręcznej tymczasowego dziennika " "binarnego." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Liczba prób połączenia (udane lub nie) do serwera MySQL." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13835,11 +13793,11 @@ msgstr "" "zwiększenie wartości tmp_table_size spowoduje tworzenie tymczasowych tabel w " "pamięci, a nie na dysku." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "Ile plików tymczasowych utworzył mysqld." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13847,7 +13805,7 @@ msgstr "" "Liczba tabel tymczasowych w pamięci, utworzonych automatycznie przez serwer " "podczas wykonywania instrukcji." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13855,7 +13813,7 @@ msgstr "" "Liczba wierszy zapisanych przy pomocy INSERT DELAYED, dla których wystąpił " "jakiś błąd (prawdopodobnie zdublowany klucz)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13863,23 +13821,23 @@ msgstr "" "Liczba użytych wątków obsługujących INSERT DELAYED. Każda osobna tabela, na " "której wykonuje się INSERT DELAYED dostaje własny wątek." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "Liczba wierszy zapisanych poprzez INSERT DELAYED." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "Liczba wykonanych instrukcji FLUSH." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "Liczba wewnętrznych instrukcji COMMIT." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "Ile razy wiersz został usunięty z tabeli." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13889,7 +13847,7 @@ msgstr "" "informacje o tabeli o zadanej nazwie. Nazywamy to odkryciem (discovery). Handler_discover wskazuje, ile razy tabela została odkryta." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13899,7 +13857,7 @@ msgstr "" "sugeruje, że serwer wykonuje pełnych przeszukań indeksów; na przykład SELECT " "col1 FROM foo, przy założeniu, że col1 jest zindeksowane." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -13907,7 +13865,7 @@ msgstr "" "Liczba żądań odczytu wiersza na podstawie indeksu. Duża wartość to dobra " "oznaka tego, że zapytania i tabele są właściwie zindeksowane." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13917,7 +13875,7 @@ msgstr "" "jest zwiększana przy odpytywaniu o zindeksowaną kolumnę na ograniczonym " "przedziale lub przy przeszukiwaniu indeksu." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13925,7 +13883,7 @@ msgstr "" "Liczba żądań odczytu poprzedniego wiersza w porządku indeksowym. Metoda " "używana głównie do optymalizacji ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13937,7 +13895,7 @@ msgstr "" "sortowania rezultatu. Prawdopodobnie wykonano wiele zapytań wymagających " "przeszukania całej tabeli lub złączeń, które nie używają poprawnie indeksów." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13949,35 +13907,35 @@ msgstr "" "nie są poprawnie zindeksowane lub że zapytania nie są napisane w sposób " "pozwalający skorzystać z istniejących indeksów." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "Liczba wewnętrznych instrukcji ROLLBACK." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "Liczba żądań zmiany wiersza w tabeli." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "Liczba żądań dodania wiersza do tabeli." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "Liczba stron zawierających dane (brudnych lub czystych)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "Liczba aktualnie brudnych stron." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Liczba stron w puli bufora, których wymiecienia zażądano." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "Liczba wolnych stron." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13987,7 +13945,7 @@ msgstr "" "odczytywane lub zapisywane lub takie, które nie mogą zostać wymiecione lub " "usunięte z jakiegoś innego powodu." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -14000,11 +13958,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "Całkowita wielkość puli bufora, w stronach." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -14013,7 +13971,7 @@ msgstr "" "Występuje gdy zapytane przeszukiwałoby duże fragmenty tabeli, ale w dowolnej " "kolejności." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -14021,11 +13979,11 @@ msgstr "" "Liczba sekwencyjnych odczytów z wyprzedzeniem zainicjowanych przez InnoDB. " "Występuje gdy InnoDB wykonuje sekwencyjne pełne przeszukiwanie tabeli." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "Liczba żądań logicznych odczytów które wykonał InnoDB." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -14033,7 +13991,7 @@ msgstr "" "Liczba logicznych odczytów, których InnoDB nie mógł zaspokoić pulą bufora i " "musiał wykonać odczyt pojedynczej strony." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -14047,51 +14005,51 @@ msgstr "" "wskazuje liczbę wystąpień takich oczekiwań. Jeżeli rozmiar puli bufora był " "ustawiony właściwie, wartość ta powinna być mała." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "Liczba wykonanych zapisów do puli bufora InnoDB." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "Liczba dotąd wykonanych operacji fsync()." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "Aktualna liczba operacji fsync() w toku." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "Aktualna liczba odczytów w toku." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "Aktualna liczba zapisów w toku." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "Ilość dotąd odczytanych danych, w bajtach." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "Łączna liczba odczytów danych." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "Łączna liczba zapisów danych." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "Ilość dotąd zapisanych danych, w bajtach." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "Liczba przeprowadzonych zapisów typu doublewrite." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "Liczba stron zapisanych przy zapisie typu doublewrite." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -14099,35 +14057,35 @@ msgstr "" "Ile razy czekano, bo bufor dziennika był zbyt mały i przed wznowieniem pracy " "oczekiwano na jego opróżnienie." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "Liczba żądań zapisów do dziennika." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "Liczba fizycznych zapisów do pliku dziennika." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "Liczba synchronicznych zapisów do pliku dziennika." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "Liczba wywołań fsync dla pliku dziennika w toku." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "Liczba zapisów do pliku dziennika w toku." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "Liczba bajtów zapisanych do pliku dziennika." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "Liczba utworzonych stron." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -14136,51 +14094,51 @@ msgstr "" "mierzonych w stronach; znajomość wielkości strony pozwala na ich łatwą " "konwersję na bajty." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "Liczba odczytanych stron." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "Liczba zapisanych stron." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "Liczba blokad wiersza na które aktualnie się czeka." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Średni czas uzyskania blokady wiersza, w milisekundach." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Całkowity czas zużyty na uzyskiwanie blokad wierszy, w milisekundach." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maksymalny czas uzyskania blokady wiersza, w milisekundach." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "Ile razy czekano na blokadę wiersza." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "Liczba wierszy usuniętych z tabel InnoDB." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "Liczba wierszy dodanych do tabel InnoDB." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "Liczba wierszy odczytanych z tabel InnoDB." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "Liczba wierszy zmienionych w tabelach InnoDB." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -14189,7 +14147,7 @@ msgstr "" "jeszcze nie wymiecione na dysk. Wcześniej zmienna miała nazwę " "Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -14197,7 +14155,7 @@ msgstr "" "Liczba nieużywanych bloków w buforze podręcznym indeksów. Można użyć tej " "wartości do określenia jaka część bufora indeksów jest w użyciu." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -14206,15 +14164,15 @@ msgstr "" "Liczba użytych bloków w buforze podręcznym indeksów. Ta wartość to próg, " "który wskazuje maksymalną liczbę kiedykolwiek jednocześnie użytych bloków." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "Procent używanego klucza pamięci podręcznej (obliczona wartość)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "Liczba żądań odczytu bloku z bufora podręcznego indeksów." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -14225,7 +14183,7 @@ msgstr "" "Współczynnik chybień bufora podręcznego można policzyć ze wzoru Key_reads/" "Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -14233,21 +14191,21 @@ msgstr "" "Brakujący klucz pamięci podręcznej oblicza jako porównanie fizycznego " "odczytu do żądania odczytu (obliczona wartość)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "Liczba żądań zapisów bloków indeksów to bufora podręcznego." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "Liczba fizycznych zapisów bloków indeksów na dysk." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Procent fizycznego zapisu w porównaniu do żądania zapisu (obliczona wartość)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -14258,7 +14216,7 @@ msgstr "" "kwerend dla tego samego zapytania. Domyśla wartość 0 onazcza, że kwerenda " "została opracowana jeszcze." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -14266,11 +14224,11 @@ msgstr "" "Maksymalna liczba połączeń, które były używane jednocześnie odkąd serwer " "został uruchomiony." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Liczba wierszy oczekujących na zapisanie w kolejkach INSERT DELAYED." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -14278,20 +14236,20 @@ msgstr "" "Liczba kiedykolwiek otwartych tabel. Jeśli ta wartość jest duża, " "prawdopodobnie wielkość pamięci podręcznej tabel jest zbyt mała." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "Liczba otwartych plików." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Liczba otwartych strumieni (używanych głownie do rejestracji w dzienniku)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "Liczba otwartych tabel." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -14301,19 +14259,19 @@ msgstr "" "na problemy z fragmentacją, które mogą być rozwiązane poprzez wydawanie " "polecenie FLUSH CACHE QUERY." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "Ilość dostępnej pamięci w podręcznym buforze zapytań." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "Liczba trafień pamięci podręcznej." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "Liczba zapytań dodanych do pamięci podręcznej." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14326,7 +14284,7 @@ msgstr "" "bufora podręcznego używana jest strategia \"najpierw najdłużej nieużywany" "\" (least recently used - LRU)." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -14334,19 +14292,19 @@ msgstr "" "Liczba niezbuforowanych zapytań (nie dających się zbuforować lub " "niezbuforowanych z powodu ustawienia query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "Liczba zapytań zarejestrowanych w buforze podręcznym." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "Całkowita liczba bloków w buforze podręcznym zapytań." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stan replikacji bez awaryjnie (jeszcze nie zaimplementowano)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -14354,13 +14312,13 @@ msgstr "" "Liczba złączeń nie używających indeksów. Wartość różna od 0 sugeruje " "staranne przyjrzenie się indeksom tabel." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" "Liczba złączeń w których użyto wyszukiwania zakresowego na pierwszej " "złączanej tabeli." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -14369,7 +14327,7 @@ msgstr "" "dla każdego wiersza. (Wartość różna od 0 sugeruje staranne przyjrzenie się " "indeksom tabel.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -14377,16 +14335,16 @@ msgstr "" "Liczba złączeń w których użyto zakresów w stosunku do pierwszej tabeli. " "(Nawet duża wartość nie ma kluczowego znaczenia.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "Liczba złączeń, które przeszukały w pełni pierwszą tabelę." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Liczba tymczasowych tabel aktualnie otwartych przez podrzędny wątek SQL." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -14394,26 +14352,26 @@ msgstr "" "Ile razy łącznie (od startu) podrzędny wątek SQL replikacji ponawiał " "transakcje." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "ON oznacza, że ten serwer jest podrzędny i jest podłączony go serwera " "głównego." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "Liczba wątków, których utworzenie trwało dłużej niż slow_launch_time sekund." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Liczba zapytań, których wykonanie zajęło więcej niż long_query_time sekund." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -14423,23 +14381,23 @@ msgstr "" "dużej wartości, warto wziąć pod uwagę zwiększenie wartości zmiennej " "systemowej sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "Liczba sortowań wykonanych przy użyciu zakresów." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "Liczba posortowanych wierszy." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "Liczba sortowań wykonanych poprzez przeszukiwanie tabeli." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "Ile razy blokada tabeli została uzyskana natychmiastowo." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14451,7 +14409,7 @@ msgstr "" "się najpierw zoptymalizować zapytania, a następnie podzielić tabelę (tabele) " "lub użyć replikacji." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -14461,11 +14419,11 @@ msgstr "" "może być wyliczony ze wzoru Threads_created/Connections. Kolor czerwony " "oznacza, że powinno się zwiększyć thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "Liczba aktualnie otwartych połączeń." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14477,11 +14435,11 @@ msgstr "" "(W przypadku dobrej implementacja wątków zwykle nie daje to zauważalnego " "polepszenia wydajności.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "Cache wątku trafień (obliczona wartość)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "Liczba nieuśpionych wątków." @@ -14490,65 +14448,65 @@ msgstr "Liczba nieuśpionych wątków." msgid "Users of '%s' user group" msgstr "Użytkownicy '%s' grupy użytkowników" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "Nie znaleziono użytkowników należących do tej grupy użytkowników." -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "Grupy użytkowników" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "Wersja serwera" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "Zakładki poziomie bazy danych" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table comments" msgid "Table level tabs" msgstr "Komentarze tabeli" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "Zobacz użytkowników" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "Dodaj grupę użytkownika" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "Edycja grupy użytkowników: '%s'" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "Menu skojarzenia grupy użytkownika" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "Nazwa grupy:" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Wersja serwera" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "Serwer bazy danych" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14614,21 +14572,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14699,115 +14653,115 @@ msgstr "Zdarzenie %1$s zostało utworzone." msgid "Variable name was expected." msgstr "Nazwa szablonu tabeli" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Na początku tabeli" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 #, fuzzy #| msgid "Unexpected characters on line %s." msgid "Unexpected token." msgstr "Nieoczekiwane znaki w linii %s." -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 #, fuzzy #| msgid "The number of tables that are open." msgid "The name of the entity was expected." msgstr "Liczba otwartych tabel." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Wiersz został usunięty." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "Szczegółowy profil" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "Kolejność" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "Stan" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "Podsumowanie według stanu" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "Całkowity czas" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "% Czas" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Zamknij" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "ø Czas" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Pamiętaj zapytanie SQL" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "Etykieta:" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Niech każdy użytkownik ma dostęp do tej zakładki" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "Zakładka nie utworzona!" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Korzystanie z zakładki \"%s\" jako domyślne przeglądanie zapytania." -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "Pokaż jako kod PHP" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Grid edit, checkbox, Edit, " @@ -14819,7 +14773,7 @@ msgstr "" "Tabela ta nie zawiera unikalnej kolumny. Funkcje związane z edycją siatki, " "pól wyboru, edycji, kopiowania i usuwania łącza może nie działać." -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Grid edit, checkbox, Edit, " @@ -14831,7 +14785,7 @@ msgstr "" "Tabela ta nie zawiera unikalnej kolumny. Funkcje związane z edycją siatki, " "pól wyboru, edycji, kopiowania i usuwania łącza może nie działać." -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemy z indeksami tabeli `%s`" @@ -14862,27 +14816,27 @@ msgstr "" msgid "Bind parameters" msgstr "Złe parametry!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "Zaznacz to zapytanie SQL:" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Zastąp istniejącą zakładkę o tej samej nazwie" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Separator" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Pokaż to zapytanie tutaj ponownie" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Pokaż tylko" @@ -14927,114 +14881,114 @@ msgstr "Dezaktywuj śledzenie dla %s" msgid "Deactivate now" msgstr "Dezaktywuj teraz" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Utworzona" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Zaktualizowana" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "Utwórz wersję" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Raport śledzenia" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Migawka struktury" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "aktywny" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "nieaktywny" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "Śledzenie instrukcji" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "Usuń wiersz śledzenia danych z raportu" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "Brak danych" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Pokaż %1$s w okresie od %2$s do %3$s wg użytkownika %4$s %5$s" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "Zrzut SQL (plik do pobrania)" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "Zrzut SQL" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "Ta opcja zamienia twoją tabelę i zawarte w niej dane." -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "Wykonanie SQL" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "Eksportuj jako %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "Instrukcja przetwarzania danych" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "Instrukcja definiowania danych" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Data" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Użytkownik" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Wersja %s migawki (kod SQL)" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Brak" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "Śledzenie definicją danych pomyślnie usunięte" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "Śledzenie manipulacją danymi pomyślnie usunięte" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -15042,65 +14996,65 @@ msgstr "" "Możesz wykonać zrzut poprzez tworzenie i używanie tymczasowej bazy danych. " "Upewnij się, że masz uprawnienia do tego." -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "Ujmij w komentarz te dwa wiersze jeśli ich nie potrzebujesz." -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "Instrukcje SQL zostały wyeksportowane. Proszę skopiować zrzut lub go wykonać." -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "Raport śledzenia tabeli `%s`" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Śledzenie dla %1$s zostało włączone w wersji %2$s." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Śledzenie dla %1$s zostało wyłączone w wersji %2$s." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format #| msgid "Create version %1$s of %2$s" msgid "Version %1$s of %2$s was deleted." msgstr "Utwórz wersję %1$s dla %2$s" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Wersja %1$s stworzona, śledzenie dla %2$s jest aktywne." -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Tabele nieśledzone" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Śledź tabelę" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Tabele śledzone" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Ostatnia wersja" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "Usuwanie danych śledzących" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Wersje" @@ -15108,11 +15062,11 @@ msgstr "Wersje" msgid "Manage your settings" msgstr "Zarządzaj ustawieniami" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "Konfiguracja została zapamiętana." -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -15217,7 +15171,7 @@ msgstr "Brak baz danych" msgid "View dump (schema) of databases" msgstr "Pokaż zrzut (schemat) bazy danych" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -15244,7 +15198,7 @@ msgstr "" "phpMyAdmin nie mógł unicestwić wątku %s. Prawdopodobnie został on już " "zamknięty." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -16155,47 +16109,53 @@ msgstr "Rozproszony" msgid "Stacked" msgstr "Spakowany" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "Tytuł wykresu" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "Oś X:" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "Serie:" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "Etykieta osi X:" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "Wartość X" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "Etykieta osi Y:" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Wartość Y" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside column:" msgid "Series column:" msgstr "Wewnątrz kolumny:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Values for column %s" msgid "Value Column:" msgstr "Wartości dla kolumny %s" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -16256,55 +16216,56 @@ msgstr "Komentarz:" msgid "Drag to reorder" msgstr "Przeciągnij, aby uporządkować." -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +#, fuzzy +#| msgid "Foreign key constraint" +msgid "Foreign key constraints" +msgstr "Ograniczenie klucza obcego" + +#: templates/table/relation/common_form.phtml:9 +#, fuzzy +#| msgid "Action" +msgid "Actions" +msgstr "Działanie" + +#: templates/table/relation/common_form.phtml:10 +#, fuzzy +#| msgid "Constraints for table" +msgid "Constraint properties" +msgstr "Ograniczenia dla tabeli" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "Ograniczenie klucza obcego" + +#: templates/table/relation/common_form.phtml:60 +#, fuzzy +#| msgid "Add constraints" +msgid "+ Add constraint" +msgstr "Dodaj ograniczenia" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "Wewnętrzne relacje" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "Wewnętrzne relacje" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Wewnętrzna relacja jest zbędna gdy istnieje odpowiednia relacja FOREIGN KEY." -#: templates/table/relation/common_form.phtml:37 -#, fuzzy -#| msgid "Foreign key constraint" -msgid "Foreign key constraints" -msgstr "Ograniczenie klucza obcego" - -#: templates/table/relation/common_form.phtml:40 -#, fuzzy -#| msgid "Action" -msgid "Actions" -msgstr "Działanie" - -#: templates/table/relation/common_form.phtml:41 -#, fuzzy -#| msgid "Constraints for table" -msgid "Constraint properties" -msgstr "Ograniczenia dla tabeli" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "Ograniczenie klucza obcego" - -#: templates/table/relation/common_form.phtml:83 -#, fuzzy -#| msgid "Add constraints" -msgid "+ Add constraint" -msgstr "Dodaj ograniczenia" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "Wybierz kolumny do wyświetlenia:" @@ -16443,7 +16404,7 @@ msgid "at beginning of table" msgstr "Na początku tabeli" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16492,7 +16453,7 @@ msgstr "partycjonowanie" msgid "Edit partitioning" msgstr "Usuń partycjonowanie" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "Edycja widoku" @@ -17951,6 +17912,37 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert jest ustawiony na 0" +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "Tabele" + +#, fuzzy +#~| msgid "Views" +#~ msgid "views" +#~ msgstr "Widoki" + +#, fuzzy +#~| msgid "Procedures" +#~ msgid "procedures" +#~ msgstr "Procedury" + +#, fuzzy +#~| msgid "event" +#~ msgid "events" +#~ msgstr "zdarzenie" + +#, fuzzy +#~| msgid "Functions" +#~ msgid "functions" +#~ msgstr "Funkcje" + +#~ msgid "Filter databases by name or regex" +#~ msgstr "Filtr wg nazwy bazy danych lub regex" + +#~ msgid "Filter by name or regex" +#~ msgstr "Filtr wg nazwy lub regex" + #~ msgid "Username and hostname didn't change." #~ msgstr "Nazwa użytkownika oraz nazwa hosta nie zmienił się." diff --git a/po/pt.po b/po/pt.po index b8bb638f68..cdba423dbc 100644 --- a/po/pt.po +++ b/po/pt.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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-26 05:24+0200\n" "Last-Translator: Paulo Lopes Duarte \n" "Language-Team: Portuguese Are you sure you " "want to continue?" @@ -1996,51 +2008,51 @@ msgstr "" "Esta acção pode modificar as definições de algumas colunas\n" "
Tem a certeze que quer continuar?" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "Continuar" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "Adicionar chave primária" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "Chave primária adicionada." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "Continuando para a próxima forma…" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "A primeira forma de normalização da tabela '%s' foi concluída." -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "Fim da forma de normalização" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "Segunda forma de normalização (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Concluído" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "Confirme as dependências parciais" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "Dependênciais parciais selecionadas:" -#: js/messages.php:440 +#: js/messages.php:441 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2048,19 +2060,19 @@ msgstr "" "Nota: a, b -> d,f implica que os valores das colunas a e b combinadas podem " "determinar os valores das colunas d e f." -#: js/messages.php:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "Nenhuma dependência parcial selecionada!" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "Mostrar possíveis dependênciais parciais baseando nos dados da tabela" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "Ocultar lista de dependências parciais" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2068,175 +2080,175 @@ msgstr "" "Aguarde uns instantes! Isto poderá demorar alguns segundos dependendo do " "tamanho dos dados e do número de colunas da tabela." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "Passo" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "As seguintes ações serão executadas:" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "DROP colunas %s da tabela %s" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "Criar a próxima tabela" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "Terceira forma de normalização (3NF)" -#: js/messages.php:460 +#: js/messages.php:461 #, fuzzy msgid "Confirm transitive dependencies" msgstr "Confirme as dependências transitivas" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "Dependências selecionadas:" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "Nenhuma dependência selecionada!" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Guarda" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Esconder critérios de buca" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Mostrar critérios de busca" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Table Search" msgid "Range search" msgstr "Intervalo de pesquisa" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "Máximo de colunas:" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "Mínimo de colunas:" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "Valor mínimo:" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "Valor máximo:" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "Esconder critérios de localizar e substituir" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "Mostrar critérios de localizar e substituir" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "Cada ponto representa um registo (linha) de dados." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "Colocar o cursor por cima de um ponto irá mostrar a sua legenda." -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Para ampliar, selecione uma area do gráfico com o rato." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "Clique no botão Reset Zoom para voltar ao estado original." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Clique num ponto de dados para ver e possivelmente editar a linha de dados." -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "O plano pode ser redimensionado arrastando-o ao longo do canto inferior " "direito." -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "Seleccione duas colunas" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "Seleccione duas colunas diferentes" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "Conteúdo do ponto de dados" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignora" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Copiar" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Ponto" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Segmento de Reta" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Polígono" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Anel Interior" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Anel exterior:" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "Deseja copiar a chave de encriptação?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "Chave de encriptação" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2244,24 +2256,24 @@ msgstr "" "Indica que foram feitas mudanças nesta página; Será pedida confirmação antes " "de abandonar as mudanças" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Seleccione chave de referencia" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Seleccione Foreign Key" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "Seleccione a chave primária ou uma chave única!" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Escolha a coluna para mostrar" -#: js/messages.php:532 +#: js/messages.php:533 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?" @@ -2269,77 +2281,77 @@ msgstr "" "Não salvou as mudanças no layout. Estas serão perdidas se não as guardar. " "Deseja continuar?" -#: js/messages.php:535 +#: js/messages.php:536 msgid "Page name" msgstr "Nome da página" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Guardar página" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Salvar página como" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Abrir página" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "Eliminar página" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Sem título" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "Selecione uma página para continuar" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "Introduza um nome de página válido" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "Deseja guardar as alterações à página atual?" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "Página eliminada com sucesso" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "Exporta o esquema relacional (schema)" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Modificações foram guardadas" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "Adiciona uma opção para a coluna \"%s\"." -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "%d objecto(s) criado(s)." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Submete" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "Carregue em ESC para cancelar a edição." -#: js/messages.php:557 +#: js/messages.php:558 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?" @@ -2347,41 +2359,41 @@ msgstr "" "Editou alguns dados e estes não foram salvos. Tem certeza que quer sair " "desta página antes de salvar os seus dados?" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "Arraste para re-ordenar." -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "Clica para ordenar resultados por esta coluna." -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "Clique para seleccionar/rejeitar." -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "Duplo-clique para copiar o nome da coluna." -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Clique na seta
para alternar a visibilidade da coluna." -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Mostrar tudo" -#: js/messages.php:574 +#: js/messages.php:575 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." @@ -2390,13 +2402,13 @@ msgstr "" "edição da tabela, checkbox, Editar, Copiar e Eliminar links podem não " "funcionar depois de guardar." -#: js/messages.php:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Por favor introduza uma cadeia hexadecimal válida. Os caracteres válidos são " "0-9, A-F." -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2404,136 +2416,103 @@ msgstr "" "Deseja realmente ver todas as linhas? Grandes tabelas poderão crashar o " "navegador." -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "Segmento original" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "cancelar" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Abortado" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "Sucesso" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "Importar estado" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Largue ficheiros aqui" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "Primeiro selecione a base de dados" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Também pode editar a maioria dos valores
com um duplo clique no valor a " "alterar." -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Pode editar a maioria dos valores
com um duplo clique no valor a editar." -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "Ir para link:" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "Copiar nome da coluna." -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Clique com o botão direito do rato para copiar para a área de transferência." -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Gerar palavra-passe" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Gerar" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "Mais" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Ver Painel" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Esconder Painel" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "Mostrar items de navegação escondidos da árvore." -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "Conectar com o painel principal" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "Desconectar do painel principal" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -msgid "tables" -msgstr "Tabelas" - -#: js/messages.php:633 -#, fuzzy -#| msgid "View" -msgid "views" -msgstr "Vista" - -#: js/messages.php:634 -#, fuzzy -msgid "procedures" -msgstr "Processos" - -#: js/messages.php:635 -#, fuzzy -msgid "events" -msgstr "eventos" - -#: js/messages.php:636 -msgid "functions" -msgstr "Funções" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" "A página requisitada não foi encontrada no histórico, pode ter expirado." -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2543,48 +2522,48 @@ msgstr "" "actualização. A nova versão é %s, e foi lançada em %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", última versão estável:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "até à data" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "Criar visualização" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "Enviar relatório de erro" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Enviar relatório de erro" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" "Ocorreu um erro fatal de JavaScript. Pretende enviar um relatório de erro?" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Alterar as definições dos relatórios" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Ver os detalhes do relatório" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2592,7 +2571,7 @@ msgstr "" "Exportação incompleta devido a um limite de tempo de execução baixo a nível " "do PHP!" -#: js/messages.php:667 +#: js/messages.php:659 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2602,367 +2581,367 @@ msgstr "" "alguns dos campos podem ser ignorados, devido à configuração do PHP " "max_input_vars." -#: js/messages.php:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "Foram detectados alguns erros no servidor!" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "Por favor olhe para a parte inferior desta janela." -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "Ignorar tudo" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "As suas definições estão agora a ser submetidas, por favor aguarde." -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "Executar consulta novamente?" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "Deseja realmente eliminar este marcador?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Comentários da tabela" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Esconder resultados da pesquisa" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "Ant" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "Próx" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Hoje" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "Janeiro" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "Fevereiro" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "Março" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "Abril" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Mai" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "Junho" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "Julho" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "Agosto" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "Setembro" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "Outubro" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "Novembro" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "Dezembro" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "Maio" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Dez" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "Domingo" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "Segunda" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "Terça" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "Quarta" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "Quinta" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "Sexta" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "Sábado" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "Domingo" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Seg" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Ter" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Qua" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Qui" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Sex" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "Dom" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "Seg" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "Ter" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "Qua" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "Qui" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "Sex" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "Sáb" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "Sem" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "Calendário-mês-ano" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "Nenhum" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Hora" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Minuto" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Segundo" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Usar campo de texto" -#: js/messages.php:886 +#: js/messages.php:878 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid email address" msgstr "Introduza um nome de página válido" -#: js/messages.php:887 +#: js/messages.php:879 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "Introduza um número válido!" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date" msgstr "Introduza um nome de página válido" -#: js/messages.php:889 +#: js/messages.php:883 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date ( ISO )" msgstr "Introduza um nome de página válido" -#: js/messages.php:890 +#: js/messages.php:885 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "Introduza um número válido!" -#: js/messages.php:891 +#: js/messages.php:888 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "Introduza um número válido!" -#: js/messages.php:892 +#: js/messages.php:890 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" @@ -2974,53 +2953,53 @@ msgstr "Introduza um comprimento válido!" msgid "Please enter the same value again" msgstr "Introduza um nome de página válido" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter at least {0} characters" msgstr "Introduza um nome de página válido" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a value between {0} and {1}" msgstr "Introduza um nome de página válido" -#: js/messages.php:898 +#: js/messages.php:917 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" msgstr "Introduza um comprimento válido!" -#: js/messages.php:899 +#: js/messages.php:922 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a value greater than or equal to {0}" msgstr "Introduza um nome de página válido" -#: js/messages.php:901 +#: js/messages.php:928 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date or time" msgstr "Introduza um nome de página válido" -#: js/messages.php:902 +#: js/messages.php:933 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "Introduza um número válido!" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Erro" @@ -3111,11 +3090,12 @@ msgstr "Re-consultar" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3157,7 +3137,7 @@ msgstr "Durante a sessão atual" msgid "Explain" msgstr "Explicar" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Perfil" @@ -3193,8 +3173,8 @@ msgid "History" msgstr "Histórico" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3366,7 +3346,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Mudar para a tabela copiada" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3374,25 +3354,25 @@ msgstr "" "O servidor não está a responder (ou o socket do servidor local está mal " "configurado)." -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "O servidor não está a responder." -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "Verifique quais os privilégios que o directório da base de dados tem." -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Informações…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "A ligação como utilizador de controlo definida na sua configuração falhou." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3402,8 +3382,8 @@ msgstr "" msgid "Ascending" msgstr "Ascendente" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3548,8 +3528,8 @@ msgstr[0] "%1$s resultado em %2$s" msgstr[1] "%1$s resultados em %2$s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3593,121 +3573,122 @@ msgstr "Desseleccionar tudo" msgid "Inside column:" msgstr "Dentro da coluna:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "Guardar dados editados" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "Restaurar ordem da coluna" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "Filtrar registos" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "Pesquisar esta tabela" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "Início" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "Anterior" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "Seguinte" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "Fim" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Todas" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Número de registos:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Ordenar por chave" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "Textos parciais" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "Textos completos" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Chave de relação" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display column for relations" msgstr "Mostrando comentários das Colunas" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "Mostrar conteúdo binário" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "Exibir conteúdos BLOB" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "Ocultar transformações do navegador" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "Texto bem conhecido" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "Binario bem conhecido" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "Registo eliminado." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Termina" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Pode ser aproximado. Veja o [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "A sua consulta SQL foi executada com êxito." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3716,40 +3697,40 @@ msgstr "" "Esta vista tem número de linhas aproximado. Por favor, consulte a " "%sdocumentação%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "A mostrar registos de %1s - %2s" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d no total, %2$d na consulta" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "%d total" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "A consulta demorou %01.4f segundos." -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Com os seleccionados:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3757,25 +3738,25 @@ msgstr "Com os seleccionados:" msgid "Check all" msgstr "Todos" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Vista de impressão" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Operações resultantes das consultas" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Mostrar gráfico" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "Visualisar dados GIS" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "Link não encontrado!" @@ -3871,19 +3852,19 @@ msgstr "Nenhum indíce definido!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Índices" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3892,24 +3873,24 @@ msgid "Action" msgstr "Acções" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Nome da chave" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Único" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Pacote" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Quantidade" @@ -3917,8 +3898,8 @@ msgstr "Quantidade" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3928,8 +3909,8 @@ msgid "Collation" msgstr "Agrupamento (Collation)" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3945,15 +3926,15 @@ msgstr "A chave primária foi eliminada." msgid "Index %s has been dropped." msgstr "O Índice %s foi eliminado." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Elimina" @@ -3991,12 +3972,13 @@ msgstr "Vista" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4004,7 +3986,7 @@ msgstr "Tabela" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4013,8 +3995,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4022,41 +4004,41 @@ msgid "Search" msgstr "Pesquisar" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Insere" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilégios" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Operações" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Rastreando" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4067,16 +4049,16 @@ msgstr "Acionadores" msgid "Database seems to be empty!" msgstr "A Base de Dados aparenta estar vazia!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Pesquisa por formulário" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rotinas" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4084,20 +4066,20 @@ msgstr "Rotinas" msgid "Events" msgstr "Eventos" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Desenhador" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "Colunas centrais" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Base de Dados" @@ -4106,33 +4088,33 @@ msgid "User accounts" msgstr "Contas de usuário" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Registo binário" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replicação" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Variáveis" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Mapas de Caracteres" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Motores" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "Plugins" @@ -4430,7 +4412,7 @@ msgstr "Impossível renomear índice para PRIMARY!" msgid "No index parts defined!" msgstr "Nenhuma parte do índice definida!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4915,37 +4897,37 @@ msgstr "A funcionalidade %s é afectada por um bug conhecido, veja %s" msgid "Click to toggle" msgstr "Clique para alternar" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Procurar no seu computador:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Selecionar a partir da directoria de upload do servidor %s:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Não é possivel alcançar a directoria que configurou para fazer upload." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "Não existem ficheiros para fazer upload!" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Limpa" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "Executar" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Imprimir" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "Utilizadores" @@ -5112,8 +5094,8 @@ msgid "Add new column" msgstr "Adicionar nova coluna" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5178,19 +5160,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "deve actualizar para %s %s ou mais recente." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "Erro: testemunho inválido ou trocado" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "Tentativa de sobrescrever GLOBALS" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "possível 'exploit'" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "Tecla numérica detectada" @@ -6062,7 +6044,7 @@ msgid "Remember file name template" msgstr "Lembrar Nome do ficheiro modelo" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Adicionar valor AUTO_INCREMENT" @@ -6103,7 +6085,7 @@ msgstr "Tabelas de configuração de armazenamento phpMyAdmin em falta" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Adicionar %s" @@ -7916,7 +7898,7 @@ msgstr "" "Define se a caixa de consultas deve permanecer aberta depois da sua " "submissão." -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "Reter a caixa da consulta (query)" @@ -8231,109 +8213,35 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Texto OpenDocument" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "Lista de Favoritos está cheia!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "A tabela %s foi limpa." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "A Vista %s foi eliminada" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "A tabela %s foi eliminada" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "Lista de Favoritos está cheia!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "desconhecido" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "Nenhuma coluna seleccionada." - -#: libraries/controllers/TableStructureController.php:484 -#, fuzzy -#| msgid "The selected users have been deleted successfully." -msgid "The columns have been moved successfully." -msgstr "Os utilizadores selecionado foram apagados com sucesso." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, fuzzy, php-format -msgid "Table %1$s has been altered successfully." -msgstr "Os utilizadores selecionado foram apagados com sucesso." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -#, fuzzy -#| msgid "Query type" -msgid "Query error" -msgstr "Tipo de Query" - -#: libraries/controllers/TableStructureController.php:967 -#, fuzzy, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "Os utilizadores selecionado foram apagados com sucesso." - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Muda" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Índice" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Texto Completo" - -#: libraries/controllers/TableStructureController.php:1201 -#, fuzzy -#| msgid "Session value" -msgid "Distinct values" -msgstr "Valor de sessão" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8349,6 +8257,14 @@ msgstr "" msgid "No data to display" msgstr "Dados não encontrados." +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, fuzzy, php-format +msgid "Table %1$s has been altered successfully." +msgstr "Os utilizadores selecionado foram apagados com sucesso." + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "" @@ -8359,25 +8275,91 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr "Relação interna adicionada" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Table Search" msgid "Table search" msgstr "Pesquisa de tabela" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Zoom Search" msgid "Zoom search" msgstr "Pesquisa Avançada" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "Find and Replace" msgid "Find and replace" msgstr "Localizar e substituir" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "Nenhuma coluna seleccionada." + +#: libraries/controllers/table/TableStructureController.php:485 +#, fuzzy +#| msgid "The selected users have been deleted successfully." +msgid "The columns have been moved successfully." +msgstr "Os utilizadores selecionado foram apagados com sucesso." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +#, fuzzy +#| msgid "Query type" +msgid "Query error" +msgstr "Tipo de Query" + +#: libraries/controllers/table/TableStructureController.php:975 +#, fuzzy, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "Os utilizadores selecionado foram apagados com sucesso." + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Muda" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Índice" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Texto Completo" + +#: libraries/controllers/table/TableStructureController.php:1209 +#, fuzzy +#| msgid "Session value" +msgid "Distinct values" +msgstr "Valor de sessão" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8389,7 +8371,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "possível ataque de recursividade em profundidade (deep recursion)" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Sem alterações" @@ -8460,7 +8442,7 @@ msgstr "Criar" msgid "Create database:" msgstr "Criar base de dados:" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Sem Privilégios" @@ -9196,70 +9178,70 @@ msgid "Dump has been saved to file %s." msgstr "O Dump foi gravado para o ficheiro %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL não retornou nenhum registo." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Sem bases de dados" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Sem bases de dados" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Somente a estrutura" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" @@ -9283,76 +9265,76 @@ msgstr "Funções" msgid "Binary" msgstr "Binário" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 #, fuzzy #| msgid "ause of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "Devido ao seu tamanho,
este campo pode não ser editável " -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Binário - não editar" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Ou" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "Directoria no servidor web para fazer upload" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "Inserir/Editar" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Insere como novo registo" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Voltar atrás" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Inserir novo registo" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 #, fuzzy msgid "Go back to this page" msgstr "Voltar atrás" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Editar próxima coluna" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9364,12 +9346,12 @@ msgstr "" msgid "Value" msgstr "Valor" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 #, fuzzy msgid "Showing SQL query" msgstr "Mostrar queries completos" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9387,43 +9369,43 @@ msgstr "Nenhum" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table prefix:" msgstr "Substituir prefixo da tabela" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Copy table with prefix" msgid "Copy table with prefix:" msgstr "Copiar tabela com prefixo" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Sex" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Replace table prefix" msgid "Add table prefix:" msgstr "Substituir prefixo da tabela" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -9657,8 +9639,8 @@ msgstr "Processos" msgid "Views:" msgstr "Vista" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Mostrar" @@ -9700,10 +9682,9 @@ msgstr[0] "" msgstr[1] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "Alter table order by" -msgid "Filter databases by name or regex" -msgstr "Alterar a ordem da tabela por" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -9712,12 +9693,6 @@ msgstr "Alterar a ordem da tabela por" msgid "Clear fast filter" msgstr "envia" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "Alter table order by" -msgid "Filter by name or regex" -msgstr "Alterar a ordem da tabela por" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -10120,7 +10095,7 @@ msgstr "Alterar o nome da base de dados para" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10131,7 +10106,7 @@ msgstr "Não tem permissões suficientes para aceder aqui, neste momento!" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -10151,18 +10126,18 @@ msgstr "Remover a Base de Dados" msgid "Drop the database (DROP)" msgstr "Apagar a Base de Dados (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Somente a estrutura" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Estrutura e dados" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Apenas dados" @@ -10176,7 +10151,7 @@ msgstr "Copiar a Base de Dados para" msgid "CREATE DATABASE before copying" msgstr "Criar a Base de Dados antes de copiar (CREATE DATABASE)" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Adicionar restrições (constraints)" @@ -10216,63 +10191,63 @@ msgstr "Motor de armazenamento" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Copia tabela para (base-de-dados.tabela)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Mudar para a tabela copiada" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Manutenção da tabela" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Analizar tabela" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Verificar tabela" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Verificar tabela" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "A tabela %s foi fechada." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Fecha a tabela (\"FLUSH\")" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Optimizar tabela" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Reparar tabela" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 #, fuzzy @@ -10280,107 +10255,107 @@ msgstr "Reparar tabela" msgid "Delete data or table" msgstr "Extraindo dados da tabela" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 #, fuzzy msgid "Delete the table (DROP)" msgstr "Sem bases de dados" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 #, fuzzy msgid "Check" msgstr "Checo" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 #, fuzzy msgid "Repair" msgstr "Reparar tabela" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Collapse" msgid "Coalesce" msgstr "Ocultar" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 #, fuzzy msgid "Partition maintenance" msgstr "Manutenção da tabela" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Verificar Integridade referencial:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Não é posivel mover a tabela para o mesmo!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Não é possivel copiar a tabela para o mesmo!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "A tabela %s foi movida para %s." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabela %s copiada para %s." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "A tabela %s foi movida para %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s copiada para %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "O nome da tabela está vazio!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10573,7 +10548,7 @@ msgstr "Opções de exportação da Base de Dados" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Extraindo dados da tabela" @@ -10600,14 +10575,14 @@ msgstr "Descrição" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Estrutura da tabela" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 #, fuzzy msgid "Structure for view" @@ -10615,7 +10590,7 @@ msgstr "Somente estrutura" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 #, fuzzy msgid "Stand-in structure for view" @@ -10728,7 +10703,7 @@ msgid "Database:" msgstr "Base de Dados" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10844,7 +10819,7 @@ msgid "Data creation options" msgstr "Opções de tranformação" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -10916,8 +10891,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10925,92 +10900,92 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Missing data for %s" msgid "Metadata" msgstr "Dados em falta para %s" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Metadata for %s" msgstr "Dados em falta para %s" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Criação:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Última actualização:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Última verificação:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "em utilização" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 #, fuzzy msgid "Constraints for dumped tables" msgstr "Limitadores para a tabela" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Limitadores para a tabela" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy msgid "Indexes for dumped tables" msgstr "Limitadores para a tabela" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Dentro de Tabela(s):" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "Não usar AUTO_INCREMENT para valores zero" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Adicionar valor AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Somente estrutura" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11265,9 +11240,9 @@ msgstr "Esquema relacional" msgid "Table of contents" msgstr "Índice" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Extra" @@ -11437,61 +11412,61 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Erro: Relação já existe." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "Relação FOREIGN KEY adicionada" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Erro: Relação não adicionada." -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "Erro: As características relacionais estão desactivadas!" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "Relação interna adicionada" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "Erro: Relação não adicionada." -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "Relação FOREIGN KEY adicionada" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Erro: Relação não adicionada." -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "Erro: Relação não adicionada." -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11548,97 +11523,97 @@ msgid "Please see the documentation on how to update your column_info table. " msgstr "" "Consulte a Documentação sobre como actualizar a Tabela Column_comments Table." -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Comandos SQL marcados" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "Histórico SQL" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "There are no favorite tables." msgid "Persistent favorite tables" msgstr "Não existem tabelas favoritas." -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Configuration file" msgid "Configurable menus" msgstr "Ficheiro de configuração" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Remember table's sorting" msgid "Remembering Designer Settings" msgstr "Lembrar ordenação da tabela" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "Tipo de exportação inválido" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "sem Descrição" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11646,14 +11621,14 @@ msgid "" "configuration storage there." msgstr "Tabelas de configuração de armazenamento phpMyAdmin em falta" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Tabelas de configuração de armazenamento phpMyAdmin em falta" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -11837,8 +11812,8 @@ msgstr "Nome do Utilizador" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Nome do Utilizador" @@ -11846,7 +11821,7 @@ msgstr "Nome do Utilizador" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Palavra-passe" @@ -12534,7 +12509,7 @@ msgstr[1] "As Bases de Dados %s foram apagadas com sucesso." msgid "Plugin" msgstr "Plugin" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 #, fuzzy msgid "Version" msgstr "versão do PHP" @@ -12543,100 +12518,96 @@ msgstr "versão do PHP" msgid "Author" msgstr "Autor" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "Licença" - #: libraries/server_plugins.lib.php:114 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Desactidado" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Sem privilégios." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Inclui todos os privilégios excepto GRANT." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Permite ler dados." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Permite inserir e substituir dados." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Permite alterar dados." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Permite apagar dados." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Permite criar novas Bases de Dados e tabelas." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Permite apagar Bases de Dados e tabelas." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Permite desligar o servidor." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "Permite importar ou exportar dados de e para ficheiros." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "Não tem efeito nesta versão do MySQL." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Permite criar e apagar indexes." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Permite alterar a estrutura de tabelas existentes." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Dá acesso à lista de bases de dados completa." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12644,71 +12615,71 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Permite criar tabelas temporárias." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 #, fuzzy msgid "Allows creating new views." msgstr "Permite criar novas tabelas." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "Permite definir eventos para o organizador de eventos" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 #, fuzzy msgid "Allows creating and dropping triggers." msgstr "Permite criar e apagar indexes." #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 #, fuzzy msgid "Allows creating stored routines." msgstr "Permite criar novas tabelas." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Permite criar e apagar indexes." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permite criar, apagar e mudar o nome das contas dos utilizadores." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 #, fuzzy msgid "Allows executing stored routines." msgstr "Permite criar novas tabelas." @@ -12723,8 +12694,8 @@ msgstr "Nenhum" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12768,32 +12739,32 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Nota: Configurar estas opções para 0 (zero) remove o limite." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12801,7 +12772,7 @@ msgid "Routine" msgstr "Rotinas" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12820,14 +12791,14 @@ msgstr "Permite criar novas tabelas." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Privilégios específicos da tabela" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -12839,7 +12810,7 @@ msgid "Administration" msgstr "Administração" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Privilégios Globais" @@ -12850,15 +12821,15 @@ msgid "Global" msgstr "global" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Privilégios específicos da Base de Dados" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Permite criar novas tabelas." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Permite apagar tabelas." @@ -12881,7 +12852,7 @@ msgid "Native MySQL Authentication" msgstr "Autenticação por cookie" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Informação de Login" @@ -12906,8 +12877,8 @@ msgstr "Nome do Utilizador" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Constraints for table" msgid "Host name" @@ -12929,125 +12900,125 @@ msgstr "Autenticação" msgid "Password Hashing Method" msgstr "Hash da palavra-passe:" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "A palavra-passe para %s foi alterada com sucesso." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Anulou os privilégios para %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Adicionar utilizador" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database export options" msgid "Database for user account" msgstr "Opções de exportação da Base de Dados" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, fuzzy, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Verificar Privilégios para a Base de Dados \"%s\"." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Utilizadores que tem acesso a \"%s\"" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "A Vista %s foi eliminada" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Conceder/Grant" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nenhum utilizador encontrado." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Todos" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "Especifico da Base de Dados" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Especifico da Base de Dados" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Alterar Privilegios" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Anula" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "Editar próxima coluna" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… manter o antigo." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… apagar o antigo das tabelas do utilizador." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… revogar todos os privilégios activos do antigo e a seguir apagá-lo." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -13055,120 +13026,120 @@ msgstr "" "… apagar o antigo das tabelas do utilizador e depois recarregue os " "privilégios." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Mudar a informação de login / Copiar Utilizador" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Criar um novo utilizador com os mesmo privilégios e …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Privilégios específicos da Coluna" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Remover utilizadores seleccionados" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Revogar todos os privilégios dos utilizadores e apagá-los a seguir." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" "Apagar as Bases de Dados que tenham os mesmos nomes que os utilizadores." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "A recarregar privilégios" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Os utilizadores selecionado foram apagados com sucesso." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Actualizou os privilégios de %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "A apagar %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "O privilégios foram recarregados com sucesso." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "O utilizador %s já existe!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilégios" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Utilizador" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Alterar Privilegios" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "Users" msgid "User account" msgstr "Utilizadores" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13181,7 +13152,7 @@ msgstr "" "privilégios que o servidor usa se alterações manuais nele forem feitas. " "Neste caso, deve %sreload the privileges%s antes de continuar." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13200,11 +13171,11 @@ msgstr "" "privilégios que o servidor usa se alterações manuais nele forem feitas. " "Neste caso, deve %sreload the privileges%s antes de continuar." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "O utilizador selecionado não se encontra na tabela de privilégios." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Acrescentou um novo utilizador." @@ -13444,35 +13415,35 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 #, fuzzy #| msgid "Enable highlighting" msgid "Enable charts dragging" msgstr "Ativar destaque" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 #, fuzzy msgid "Refresh rate" msgstr "Gerado por" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Adicionar/Remover Campos" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -13540,7 +13511,7 @@ msgid "Statements" msgstr "Itens" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -13571,34 +13542,34 @@ msgstr "Mostra tabelas" msgid "Related links:" msgstr "Relações" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Limits the number of new connections the user may open per hour." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13606,78 +13577,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13685,7 +13656,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13693,42 +13664,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13736,33 +13707,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13771,243 +13742,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Configurar o Mapa de Caracteres do ficheiro:" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "O número de consultas adicionadas à cache." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14015,99 +13986,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14115,18 +14086,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14134,13 +14105,13 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Detecção de Alterações está desactivada." -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -14149,76 +14120,76 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 #, fuzzy #| msgid "Users" msgid "User groups" msgstr "Utilizadores" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "Versão do servidor" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Database server" msgid "Database level tabs" msgstr "Servidor de base de dados" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table comments" msgid "Table level tabs" msgstr "Comentários da tabela" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy msgid "View users" msgstr "Adicionar utilizador" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "Adicionar utilizador" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Sem privilégios." -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "Nome dos Campos" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Versão do servidor" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "Servidor de base de dados" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14284,21 +14255,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14366,127 +14333,127 @@ msgstr "A tabela %s foi eliminada" msgid "Variable name was expected." msgstr "Modelo de nome da tabela" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "No Início da Tabela" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 #, fuzzy #| msgid "Unexpected characters on line %s." msgid "Unexpected token." msgstr "Caracteres inesperados na linha %s." -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Registo eliminado." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 #, fuzzy msgid "Detailed profile" msgstr "Apenas dados" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Outros" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy msgid "State" msgstr "Estado" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Tempo Total:" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Tempo" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Fechar" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Tempo" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Marcar este comando SQL" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Label" msgid "Label:" msgstr "Etiqueta" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Deixar todos os utilizadores acederem a este marcador" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created!" msgstr "Marcador %s criado" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -14499,7 +14466,7 @@ msgstr "" "edição da tabela, checkbox, Editar, Copiar e Eliminar links podem não " "funcionar depois de guardar." -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -14512,7 +14479,7 @@ msgstr "" "edição da tabela, checkbox, Editar, Copiar e Eliminar links podem não " "funcionar depois de guardar." -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -14543,29 +14510,29 @@ msgstr "" msgid "Bind parameters" msgstr "Parâmetros inválidos!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 #, fuzzy #| msgid "Bookmark this SQL query" msgid "Bookmark this SQL query:" msgstr "Marcar este comando SQL" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Mostrar de novo aqui este comando" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Ver apenas" @@ -14612,105 +14579,105 @@ msgstr "Apagar dados de tracking para esta tabela" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Criado" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Actualizado" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "Criar versão" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Relatório do acompanhamento" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Snapshot da estrutura" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "activo" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "inactivo" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Apagar dados de tracking para esta tabela" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Sem bases de dados" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, fuzzy, php-format msgid "Export as %s" msgstr "Tipo de Exportação" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 #, fuzzy msgid "Date" msgstr "Dados" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Nome de utilizador" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -14718,78 +14685,78 @@ msgctxt "None for default" msgid "None" msgstr "Nenhum" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Detecção de Alterações está activa." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Detecção de Alterações está activa." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format #| msgid "Create version" msgid "Version %1$s of %2$s was deleted." msgstr "Criar versão" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Tabelas sem acompanhamento" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Acompanhar tabela" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Tabelas em tracking" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Última versão" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "Excluir rastreamento" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Versões" @@ -14799,13 +14766,13 @@ msgstr "Versões" msgid "Manage your settings" msgstr "Características gerais de Relação" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." msgstr "Modificações foram guardadas" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14913,7 +14880,7 @@ msgstr "Sem bases de dados" msgid "View dump (schema) of databases" msgstr "Ver o esquema da base de dados" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14938,7 +14905,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -15873,50 +15840,55 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +msgid "Chart title:" +msgstr "Tipo de Exportação" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 #, fuzzy msgid "Series:" msgstr "Comando SQL" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Valor" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Valores para Y" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside column:" msgid "Series column:" msgstr "Dentro da coluna:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Values for column %s" msgid "Value Column:" msgstr "Valores para a coluna \"%s\"" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -15985,56 +15957,57 @@ msgstr "Comentário" msgid "Drag to reorder" msgstr "Arraste para re-ordenar." -#: templates/table/relation/common_form.phtml:7 -msgid "Internal relations" -msgstr "Relações internas" - -#: templates/table/relation/common_form.phtml:11 -#, fuzzy -#| msgid "Internal relations" -msgid "Internal relation" -msgstr "Relações internas" - -#: templates/table/relation/common_form.phtml:14 -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "" - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 #, fuzzy #| msgid "Foreign key limit" msgid "Foreign key constraints" msgstr "Limite de chave estrangeira" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 #, fuzzy #| msgid "Action" msgid "Actions" msgstr "Acções" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 #, fuzzy #| msgid "Constraints for table" msgid "Constraint properties" msgstr "Limitadores para a tabela" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Adicionar restrições (constraints)" -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +msgid "Internal relations" +msgstr "Relações internas" + +#: templates/table/relation/common_form.phtml:80 +#, fuzzy +#| msgid "Internal relations" +msgid "Internal relation" +msgstr "Relações internas" + +#: templates/table/relation/common_form.phtml:83 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "" + +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16176,7 +16149,7 @@ msgid "at beginning of table" msgstr "No Início da Tabela" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16219,7 +16192,7 @@ msgstr "Posição" msgid "Edit partitioning" msgstr "Vista de impressão" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -17581,6 +17554,35 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert é definido como 0" +#~ msgid "tables" +#~ msgstr "Tabelas" + +#, fuzzy +#~| msgid "View" +#~ msgid "views" +#~ msgstr "Vista" + +#, fuzzy +#~ msgid "procedures" +#~ msgstr "Processos" + +#, fuzzy +#~ msgid "events" +#~ msgstr "eventos" + +#~ msgid "functions" +#~ msgstr "Funções" + +#, fuzzy +#~| msgid "Alter table order by" +#~ msgid "Filter databases by name or regex" +#~ msgstr "Alterar a ordem da tabela por" + +#, fuzzy +#~| msgid "Alter table order by" +#~ msgid "Filter by name or regex" +#~ msgstr "Alterar a ordem da tabela por" + #, fuzzy #~| msgid "Tracking report" #~ msgid "Taking you to %s." diff --git a/po/pt_BR.po b/po/pt_BR.po index fd43d85e3d..767777fdb0 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-14 14:56+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Portuguese (Brazil) Are you sure you " "want to continue?" @@ -1993,51 +2005,51 @@ msgstr "" "Esta ação pode mudar alguns de definição colunas.
Tem certeza de que " "deseja continuar?" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "Continuar" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "Adicionar chave primária" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "Chave Primária adicionada." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "Indo para a próxima etapa…" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "O primeira etapa de normalização está completa para a tabela '%s'." -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "Fim da etapa" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "Segunda etapa da normalização (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Concluído" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "Confirme dependências parciais" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "As dependências parciais selecionadas são as seguintes:" -#: js/messages.php:440 +#: js/messages.php:441 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2045,20 +2057,20 @@ msgstr "" "Nota: a, b _. d, f implica em valores de colunas a e b combinados juntos " "podem determinar os valores da coluna d e coluna f." -#: js/messages.php:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "Nenhuma dependência parcial selecionada!" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Mostre-me as possíveis dependências parciais baseado nos dados da tabela" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "Esconder a lista de dependências parciais" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2066,172 +2078,172 @@ msgstr "" "Seja paciente! A operação pode levar alguns segundos dependendo do tamanho " "dos dados e número de colunas da tabela." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "Etapa" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "As seguintes ações serão executadas:" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "APAGAR colunas %s da tabela %s" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "Criar a seguinte tabela" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "Terceiro passo da normalização (3NF)" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "Confirmar dependências transitivas" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "As dependências selecionadas são as seguintes:" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "Nenhuma dependência selecionada!" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Salvar" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Ocultar critério de pesquisa" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Exibir critério de pesquisa" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "Intervalo de pesquisa" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "Máximo de colunas:" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "Mínimo de colunas:" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "Valor mínimo:" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "Valor máximo:" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "Ocultar critério de substituição" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "Exibir critério de substituição" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "Cada ponto representa uma linha de dados." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "Mover o mouse sobre um ponto mostrará seu rótulo." -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Para ampliar, selecione um trecho do gráfico com o mouse." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "Clique no botão resetar zoom para voltar ao estado original." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Clique em um ponto de dados para ver e possivelmente editar a linha de dados." -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "O plano pode ser redimensionado arrastando-o ao longo do canto inferior " "direito." -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "Selecione duas colunas" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "Selecione duas colunas diferentes" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "Conteúdo do ponteiro de dados" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Copiar" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Ponto" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Linha" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Polígono" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Anel interno" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Anel externo:" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "Você deseja copiar a chave de encriptação?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "Chave de encriptação" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2239,24 +2251,24 @@ msgstr "" "Indica que você fez alterações nesta página; Você será questionado por uma " "confirmação antes de abandonar as alterações" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Selecionar chave referenciada" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Selecionar chave estrangeira" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "Por favor, selecione uma chave primária ou uma chave única!" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Marque a coluna para exibir" -#: js/messages.php:532 +#: js/messages.php:533 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?" @@ -2264,77 +2276,77 @@ msgstr "" "Você não salvou as mudanças no layout. Elas serão perdidas se você não salvá-" "las. Deseja continuar mesmo assim?" -#: js/messages.php:535 +#: js/messages.php:536 msgid "Page name" msgstr "Nome da página" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Selecionar página" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Salvar página como" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Páginas livres" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "Apagar página" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Sem título" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "Favor escolher uma página para editar" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "Por favor, digite um número válido" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "Você quer salvar as alterações para a página atual?" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "Página apagada com sucesso :)" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "Exportar esquema relacional" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Modificações foram salvas" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "Adicionar uma opção para a coluna \"%s\"." -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "%d objeto(s) criado(s)." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Submit" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "Pressione ESC para cancelar a edição." -#: js/messages.php:557 +#: js/messages.php:558 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?" @@ -2342,15 +2354,15 @@ msgstr "" "Você editou alguns dados e estes não foram salvos. Você tem certeza que quer " "sair desta página antes de salvar os dados?" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "Arraste para reordenar." -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "Clique para ordenar os resultados por esta coluna." -#: js/messages.php:563 +#: js/messages.php:564 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 " @@ -2361,26 +2373,26 @@ msgstr "" "DECRESCENTE) .
- Ctrl+Clique ou Alt+Clique (Mac: Shift+Opção+Clique) " "para remover a coluna da ORDER BY (ORDEM POR) da cláusula" -#: js/messages.php:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "Clique para marcar/desmarcar." -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "Clique duas vezes para copiar o nome da coluna." -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Clique na seta
para alternar a visibilidade da coluna." -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Mostrar tudo" -#: js/messages.php:574 +#: js/messages.php:575 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." @@ -2389,13 +2401,13 @@ msgstr "" "Editar, Marcar, Editar, Copiar e Apagar podem não funcionar mais depois de " "salvar." -#: js/messages.php:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Por favor insira uma seqüência hexadecimal válido. Os caracteres válidos são " "0-9, A-F." -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2403,134 +2415,103 @@ msgstr "" "Você realmente quer ver todas as linhas? Para uma tabela grande isto poderia " "travar o nevegador." -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "Tamanho original" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "Cancelar" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Abortado" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "Sucesso" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "Importar estado" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Solte os arquivos aqui" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "Primeiro escolha um banco de dados" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Você também pode editar a maioria dos valores
clicando duas vezes sobre " "eles." -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Você também pode editar a maioria dos valores
clicando diretamente sobre " "eles." -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "Ir para o link:" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "Copiar nome da coluna." -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Clique com o botão direito do mouse no nome da coluna para copiá-la para a " "área de transferência." -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Gerar senha" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Gerar" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "Mais" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Mostrar painel" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Ocultar painel" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "Mostrar itens ocultos da árvore de navegação." -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "Fazer ligação com painel principal" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "Encerrar ligação com painel principal" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" -"Para filtrar os banco de dados no servidor, pressione Enter após digitar o " -"que procura" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "Para filtrar todos os %s na database, aperte Enter após pesquisar" - #: js/messages.php:632 -msgid "tables" -msgstr "tabelas" - -#: js/messages.php:633 -msgid "views" -msgstr "visualizações" - -#: js/messages.php:634 -msgid "procedures" -msgstr "Procedimentos" - -#: js/messages.php:635 -msgid "events" -msgstr "evento" - -#: js/messages.php:636 -msgid "functions" -msgstr "Funções" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" "A página solicitada não foi encontrada no histórico, ela pode ter expirado." -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2540,31 +2521,31 @@ msgstr "" "atualização. A nova versão é %s, lançada em %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", última versão estável:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "atualizado(a)" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "Criar view" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy #| msgid "Send error reports" msgid "Send error report" msgstr "Enviar relatório de erros" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Cadastrar Relatório de Erro" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2572,19 +2553,19 @@ msgstr "" "Ocorreu um erro fatal no JavaScript. Gostaria de enviar um relatório de " "erros?" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Alterar configurações de Relatórios" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Exibir Detalhes de Relatório" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2592,7 +2573,7 @@ msgstr "" "A exportação está incompleta devido ao baixo limite de tempo de execução nas " "configurações do PHP!" -#: js/messages.php:667 +#: js/messages.php:659 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2601,65 +2582,65 @@ msgstr "" "Aviso: um formulário nesta página tem mais de %d campos. Ao enviar, alguns " "campos podem ser ignorados, por causa da configuração max_input_vars do PHP." -#: js/messages.php:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "Alguns erros foram detectados no servidor!" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "Por favor, olhe na parte inferior da janela." -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "Ignorar Tudo" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "De acordo com as definições, elas estão sendo submetidas atualmente, por " "favor, seja paciente." -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "Executar esta consulta novamente?" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "Você realmente deseja excluir a busca \"%s\"?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, fuzzy, php-format #| msgid "Executed queries" msgid "%s queries executed %s times in %s seconds." msgstr "Consultas executadas" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Show table comments" msgid "Show arguments" msgstr "Mostrar comentários da tabela" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Ocultar resultados da pesquisa" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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,291 +2651,291 @@ msgstr "" "corretamente para voce. No Safari, este problema é normalmente causado pelo " "\"Modo de Navegação Privado\"." -#: js/messages.php:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "Anterior" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "Próximo" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Hoje" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "Janeiro" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "Fevereiro" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "Março" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "Abril" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Maio" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "Junho" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "Julho" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "Agosto" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "Setembro" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "Outubro" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "Novembro" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "Dezembro" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Dez" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "Domingo" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "Segunda" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "Terça" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "Quarta" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "Quinta" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "Sexta" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "Sábado" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Seg" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Ter" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Qua" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Qui" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Sex" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "Dom" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "Seg" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "Ter" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "Qua" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "Qui" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "Sex" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "Sab" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "Sem" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "calendário-mês-ano" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "Sufixo de ano: nenhum" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Hora" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Minuto" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Segundo" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "Este campo é obrigatório" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "Por favor, corrija este cambo" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "Por favor, digite um correio eletrônico válido" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "Por favor, digite um endereço eletrônico válido" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "Por favor, digite uma data válida" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "Por favor, digite uma data válida" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "Por favor, digite um número válido" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "Por favor, digite um número de cartão de crédito válido" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "Por favor, digite apenas números" @@ -2962,43 +2943,43 @@ msgstr "Por favor, digite apenas números" msgid "Please enter the same value again" msgstr "Por favor, digite o mesmo valor novamente" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "Por favor, digite até {0} caractéres" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "Por favor, digite pelo menos {0} caracteres" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "Por favor digite um valor entre {0} e {1} caracteres compridos" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "Por favor, digite um valor entre {0} and {1}" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "Por favor, digite um valor menor ou igual a {0}" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "Por favor, digite um valor maior ou igual a {0}" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "Por favor, digite um data válida ou um tempo" -#: js/messages.php:902 +#: js/messages.php:933 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "Por favor, digite um número válido!" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Erro" @@ -3089,11 +3070,12 @@ msgstr "Fazer novo consulta" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3135,7 +3117,7 @@ msgstr "Durante a sessão atual" msgid "Explain" msgstr "Demonstrar SQL" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Perfil" @@ -3169,8 +3151,8 @@ msgid "History" msgstr "Histórico" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3337,7 +3319,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Mudar para o tema escuro" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3345,27 +3327,27 @@ msgstr "" "O servidor não está respondendo (ou o soquete do servidor local não está " "configurado corretamente)." -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "O servidor não está respondendo." -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" "Por favor verifique os privilégios do diretório que contém o banco de dados." -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Detalhes…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "A conexão para o controle do usuário, como definida nas configurações, " "falhou." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3375,8 +3357,8 @@ msgstr "" msgid "Ascending" msgstr "Ascendente" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3521,8 +3503,8 @@ msgstr[0] "%1$s resultado em %2$s" msgstr[1] "%1$s resultados em %2$s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3566,121 +3548,122 @@ msgstr "Desmarcar todos" msgid "Inside column:" msgstr "Dentro do campo:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "Salvar dados editados" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "Restaurar ordem da coluna" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "Filtrar linhas" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "Procurar nesta tabela" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "Início" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "Anterior" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "Próximo" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "Fim" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Todos" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Número de linhas:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Ordenar pela chave" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "Textos parciais" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "Textos completos" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Chave de relação" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Display foreign key relationships" msgid "Display column for relations" msgstr "Exibir relacionamentos de chave estrangeira" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "Mostrar conteúdo binário" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "Exibir conteúdo BLOB" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "Ocultar transformações do navegador" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "Texto bem conhecido" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "Binário bem conhecido" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "Registro eliminado." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Finalizar" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Pode ser aproximado. Veja a [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "Seu comando SQL foi executado com sucesso." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3689,40 +3672,40 @@ msgstr "" "Esta view tem pelo menos esse número de linhas. Por favor, consulte a " "%sdocumentação%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "Mostrando registros %1s - %2s" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d no total, %2$d na consulta" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "%d no total" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "Consulta levou %01.4f segundos." -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Com marcados:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3730,25 +3713,25 @@ msgstr "Com marcados:" msgid "Check all" msgstr "Marcar todos" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Imprimir view" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Operações resultantes das consultas" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Exibir gráfico" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "Visualisar dados GIS" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "Link não encontrado!" @@ -3846,19 +3829,19 @@ msgstr "Nenhum índice definido!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Índices" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3867,24 +3850,24 @@ msgid "Action" msgstr "Ação" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Nome da chave" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Único" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Pacote" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Cardinalidade" @@ -3892,8 +3875,8 @@ msgstr "Cardinalidade" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3903,8 +3886,8 @@ msgid "Collation" msgstr "Colação" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3920,15 +3903,15 @@ msgstr "A chave primária foi deletada." msgid "Index %s has been dropped." msgstr "Índice %s foi eliminado." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Eliminar" @@ -3967,12 +3950,13 @@ msgstr "Visualizar" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3980,7 +3964,7 @@ msgstr "Tabela" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3989,8 +3973,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3998,41 +3982,41 @@ msgid "Search" msgstr "Procurar" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Inserir" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilégios" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Operações" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Monitoramento" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4043,16 +4027,16 @@ msgstr "Gatilhos" msgid "Database seems to be empty!" msgstr "O banco de dados parece estar vazio!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Consulta" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rotinas" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4060,20 +4044,20 @@ msgstr "Rotinas" msgid "Events" msgstr "Eventos" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Designer" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "Colunas centrais" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Bancos de dados" @@ -4084,33 +4068,33 @@ msgid "User accounts" msgstr "Grupos de usuários" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Log binário" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replicação" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Variáveis" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Charsets" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Motores" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "Plugins" @@ -4411,7 +4395,7 @@ msgstr "Não foi possível renomear o índice para PRIMARY!" msgid "No index parts defined!" msgstr "Nenhuma parte de índice definida!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Erro ao criar chave externa no %1$s (check data types)" @@ -4898,38 +4882,38 @@ msgstr "A funcionalidade %s é afetada por um bug conhecido, veja %s" msgid "Click to toggle" msgstr "Clique para alternar" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Procurar no seu computador:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Selecionar a partir do diretório de upload do servidor %s:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "" "O diretório que você especificou para subir arquivos não foi encontrado." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "Não existem arquivos para envio!" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Limpar" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "Executar" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Imprimir" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "Usuários" @@ -5094,8 +5078,8 @@ msgid "Add new column" msgstr "Adicionar nova coluna" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5163,19 +5147,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "Você deveria atualizar para %s %s ou posterior." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "Erro: Incompatibilidade de token" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "Tentativa de sobrescrever variáveis GLOBALS" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "Possível exploit" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "tecla numérica detectada" @@ -6036,7 +6020,7 @@ msgid "Remember file name template" msgstr "Lembrar modelo de nome de arquivo" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Adicionar valor AUTO_INCREMENT" @@ -6079,7 +6063,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Adicionar %s" @@ -7841,7 +7825,7 @@ msgid "" msgstr "" "Define se a caixa de consulta deve permanecer em tela depois de seu envio." -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "Manter caixa de consulta" @@ -8159,102 +8143,33 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Texto Open-Document" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "A lista de favoritos está cheia!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "A tabela %s foi esvaziada." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "A view %s foi apagada." -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "A tabela %s foi apagada." -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "A lista de favoritos está cheia!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "desconhecido" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "O nome '%s' é uma palavra-chave reservada do MySQL." -msgstr[1] "Os nomes '%s' são palavras-chaves reservadas do MySQL." - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "Nenhuma coluna selecionada." - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "As colunas foram movidas com sucesso." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "A tabela %1$s foi alterada com sucesso." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "Erro de consulta" - -#: libraries/controllers/TableStructureController.php:967 -#, fuzzy, php-format -#| msgid "Table %1$s has been altered successfully." -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "A tabela %1$s foi alterada com sucesso." - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Alterar" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Índice" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "Espacial" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Texto completo" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "Procurar valores distintos" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8268,6 +8183,14 @@ msgstr "Nenhuma coluna numérica presente na tabela para calcular." msgid "No data to display" msgstr "Sem dados para mostrar" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "A tabela %1$s foi alterada com sucesso." + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "A coluna de exibição foi atualizada com sucesso." @@ -8276,19 +8199,80 @@ msgstr "A coluna de exibição foi atualizada com sucesso." msgid "Internal relations were successfully updated." msgstr "As relações internas foram atualizadas com êxito." -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "pesquisar tabela" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "pesquisa detalhada" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Pesquisar e substituir" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "O nome '%s' é uma palavra-chave reservada do MySQL." +msgstr[1] "Os nomes '%s' são palavras-chaves reservadas do MySQL." + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "Nenhuma coluna selecionada." + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "As colunas foram movidas com sucesso." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "Erro de consulta" + +#: libraries/controllers/table/TableStructureController.php:975 +#, fuzzy, php-format +#| msgid "Table %1$s has been altered successfully." +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "A tabela %1$s foi alterada com sucesso." + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Alterar" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Índice" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "Espacial" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Texto completo" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "Procurar valores distintos" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8299,7 +8283,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "possível ataque de recursão profunda" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Nenhuma alteração" @@ -8368,7 +8352,7 @@ msgstr "Criar" msgid "Create database:" msgstr "Criar banco de dados:" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Sem privilégios" @@ -9131,66 +9115,66 @@ msgid "Dump has been saved to file %s." msgstr "Dump foi salvo no arquivo %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "O MySQL retornou um conjunto vazio (ex. zero registros)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "[Ocorreu um ROLLBACK.]" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "As estruturas a seguir foram criadas ou alteradas. Aqui você pode:" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "Visualizar o conteúdo da estrutura clicando em seu nome." -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Alterar qualquer uma destas configurações clicando no link \"Opções\" " "correspondente." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "Editar a estrutura seguindo o link \"Estrutura\"." -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "Ir para o bando de dados: %s" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "Editar as configurações para %s" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "Ir para a tabela: %s" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "Estrutura do %s" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "Ir para a view: %s" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" "Somente pesquisas de UPDATE e DELETE em tabela-simples podem ser simuladas." -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9198,7 +9182,7 @@ msgstr "" "Apenas operações SQL de INSERT, UPDATE, DELETE e REPLACE contendo tabela(s) " "de motor transacional podem ser repetidas." -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "Criar um índice nas colunas %s" @@ -9221,66 +9205,66 @@ msgstr "Função" msgid "Binary" msgstr "Binário" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "Por causa da sua largura,
esta coluna pode não ser editável." -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Binário - não edite" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Ou" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "diretório de upload do servidor web:" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "Inserir/Editar" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "Continuar a inserção com %s linhas" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "e então" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Inserir como um novo registro" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "Inserir como uma linha nova e ignorar erros" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "Exibir consulta insert" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Ir para a página anterior" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Inserir um registro novo" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Voltar para esta página" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Editar o próximo registro" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9290,7 +9274,7 @@ msgstr "" "Usar a tecla TAB para se mover de valor em valor, ou CTRL+setas para mover " "em qualquer direção" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9302,11 +9286,11 @@ msgstr "" msgid "Value" msgstr "Valor" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "Exibindo consulta SQL" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "Id da linha inserida: %1$d" @@ -9322,35 +9306,35 @@ msgstr "Nenhuma" msgid "Convert to Kana" msgstr "Converter para Katakana" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Sucesso!" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "Substituir o prefixo de tabelas:" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "Copiar tabelas com prefixo:" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "De" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "Para" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "Adicionar prefixo de tabelas:" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "Adicionar índice" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "Você realmente deseja executar a query SQL a seguir?" @@ -9572,8 +9556,8 @@ msgstr "Procedimentos:" msgid "Views:" msgstr "Views:" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Mostrar" @@ -9615,18 +9599,15 @@ msgstr[0] "%s resultado encontrado" msgstr[1] "%s resultados encontrados" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" -msgstr "Filtrar bancos de dados por nome ou expressão regular" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 msgid "Clear fast filter" msgstr "Limpar o filtro rápido" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "Filtrar por nome ou expressão regular" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "Reduzir tudo" @@ -10055,7 +10036,7 @@ msgstr "Renomear banco de dados para" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10066,7 +10047,7 @@ msgstr "Você não tem direitos suficientes para estar aqui agora!" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -10086,18 +10067,18 @@ msgstr "Remover banco de dados" msgid "Drop the database (DROP)" msgstr "Apagar o banco de dados (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Somente estrutura" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Estrutura e dados" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Somente dados" @@ -10109,7 +10090,7 @@ msgstr "Copiar banco de dados para" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE antes de copiar" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Adicionar restrições" @@ -10151,163 +10132,163 @@ msgstr "Mecanismo de armazenamento" msgid "Change all column collations" msgstr "Converter todas as colunas atômicas" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Copiar tabela para (banco de dados.tabela)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Mudar para a tabela copiada" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Manutenção de tabelas" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Analizar tabela" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Verificar tabela" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Verificar tabela" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Desfragmentar tabela" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "A tabela %s foi limpa." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "Limpar a tabela (FLUSH)" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Otimizar tabela" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Reparar tabela" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "Remover dados ou tabela" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "Esvaziar a tabela (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "Remover a tabela (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Analizar" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Verificar" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Otimizar" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Reconstruir" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Reparar" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Collapse" msgid "Coalesce" msgstr "Expandir/Recolher" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "Manutenção da partição" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "Partição %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "Remover particionamento" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Verificar integridade referencial:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Não pode mover a tabela para ela mesma!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Não pode copiar a tabela para ela mesma!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabela %s movida para %s." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabela %s copiada para %s." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabela %s movida para %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s copiada para %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "O nome da tabela está vazio!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "Esse formato não tem opções" @@ -10484,7 +10465,7 @@ msgstr "Opções de dump de dados" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Fazendo dump de dados para tabela" @@ -10508,21 +10489,21 @@ msgstr "Definição" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Estrutura para tabela" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Estrutura para view" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Estrutura stand-in para view" @@ -10612,7 +10593,7 @@ msgid "Database:" msgstr "Banco de dados:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "Dados:" @@ -10722,7 +10703,7 @@ msgid "Data creation options" msgstr "Opções de criação de dados" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "Tabela truncada antes do insert" @@ -10803,8 +10784,8 @@ msgstr "Parece que seu banco de dados utiliza procedimentos;" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "exportar alias pode não funcionar confiantemente em todos os casos." @@ -10812,84 +10793,84 @@ msgstr "exportar alias pode não funcionar confiantemente em todos os casos." msgid "It appears your database uses functions;" msgstr "Parece que seu banco de dados utiliza funções;" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Missing data for %s" msgid "Metadata" msgstr "Dados faltando para %s" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Metadata for %s" msgstr "Dados faltando para %s" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Criação:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Última atualização:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Última verificação:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "em uso" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "Parece que seu banco de dados utiliza visões;" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Restrições para dumps de tabelas" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Restrições para tabelas" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "Índices de tabelas apagadas" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "Índices de tabela" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT de tabelas apagadas" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT de tabela" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "TIPOS MIME PARA TABELAS" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "RELACIONAMENTOS PARA TABELAS" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "Isso demonstra que sua tabela utiliza gatilhos;" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "Estrutura da view %s exportado como tabela" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "Erro ao ler dados:" @@ -11141,9 +11122,9 @@ msgstr "Esquema relacional" msgid "Table of contents" msgstr "Tabela de conteúdos" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Extra" @@ -11384,47 +11365,47 @@ msgstr "Formata o texto como JSON destacando a sintaxe." msgid "Formats text as XML with syntax highlighting." msgstr "Formata o texto como XML destacando a sintaxe." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Erro: relação já existe." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "Relação de FOREIGN KEY foi adicionada." -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Erro: Relação de FOREIGN KEY não pôde ser adicionada!" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "Erro: Perda de Índice(s) de coluna(s)." -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "Erro: Relacionamentos estão desativados!" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "Adicionado modelo interno." -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 msgid "Error: Internal relation could not be added!" msgstr "Erro: Não foi possível adicionar relação interna!" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 msgid "FOREIGN KEY relation has been removed." msgstr "Relação de FOREIGN KEY foi removida." -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Erro: Relação de FOREIGN KEY não pode ser removida!" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 msgid "Error: Internal relation could not be removed!" msgstr "Erro: Relação interna não pode ser removida!" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "Relação interna foi removida." @@ -11471,72 +11452,72 @@ msgstr "" "Por favor, consulte a documentação sobre como atualizar a sua tabela " "column_info. " -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Consulta SQL marcada" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "Histórico SQL" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "Tabelas persistentes recentemente usadas" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 msgid "Persistent favorite tables" msgstr "Tabelas favoritas persistentes" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "Persistir tabelas de preferências de UI" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "Preferências do usuário" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "Menus Configuráveis" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "Exibir/ocultar itens de navegação" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "Salvando pesquisas Query-By-Example" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "Gerenciando a lista Central de colunas" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Remember table's sorting" msgid "Remembering Designer Settings" msgstr "Lembrar a ordenação das tabelas" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "Formato de exportação inválido" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "Passos rápidos para a instalação de funcionalidades avançadas:" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "Criar tabelas necessárias com %screate_tables.sql." -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "Criar um usuário pma e dar acesso a essas tabelas." -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -11544,24 +11525,24 @@ msgstr "" "Ativar recursos avançados no arquivo de configuração (config.inc.php), por exemplo iniciando em config.sample.inc.php." -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Logar novamente no phpMyAdmin para carregar o arquivo de configuração " "atualizado." -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "sem descrição" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, fuzzy, php-format #| msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgid "" @@ -11571,7 +11552,7 @@ msgstr "" "%sCreate%s as tabelas de armazenamento de configuração do phpMyAdmin " "perdidas." -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." @@ -11579,7 +11560,7 @@ msgstr "" "%sCreate%s o armazenamento de configuração do phpMyAdmin no banco de dados " "atual." -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11779,8 +11760,8 @@ msgstr "Nome de usuário:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Nome do usuário" @@ -11788,7 +11769,7 @@ msgstr "Nome do usuário" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Senha" @@ -12421,7 +12402,7 @@ msgstr[1] "Os bancos de dados %1$d foram eliminados com sucesso." msgid "Plugin" msgstr "Plugin" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Versão" @@ -12429,99 +12410,95 @@ msgstr "Versão" msgid "Author" msgstr "Autor" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "Licença" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "desabilitado" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Sem privilégios." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Incluir todos os privilégios exceto o GRANT." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Permitir leitura de dados." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Permitir inserir e substituir dados." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Permitir modificar dados." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Permitir apagar dados." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Permitir criar novos bancos de dados e tabelas." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Permitir eliminar bancos de dados e tabelas." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permitir recarregar configurações do servidor e limpar o cache do servidor." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Permitir desligar o servidor." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "Permitir visualizar processos de todos os usuários." #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "Permitir importar dados e exportar dados em arquivos." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "Não tem nenhum efeito nessa versão do MySQL." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Permitir criar e eliminar índices." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Permitir alterar a estrutura das tabelas existentes." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Dá acesso à lista completa de bancos de dados." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12532,65 +12509,65 @@ msgstr "" "variáveis globais e matar processos de outros usuários." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Permitir criar tabelas temporárias." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Permitir bloquear tabelas para a processo atual." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Necessário para a replicação dos slaves." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "Permitir que o usuário pergunte onde estão os escravos / mestres." #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Permitir criar novas views." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "Permitir definir eventos no agendador de eventos." #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "Permitir criar e apagar gatilhos." #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permitir executar consultas SHOW CREATE VIEW." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Permitir criar rotinas armazenadas." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Permitir alterar e apagar rotinas armazenadas." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permitir criar, apagar e renomear contas dos usuários." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Permitir executar rotinas armazenadas." @@ -12602,8 +12579,8 @@ msgstr "Nenhum privilégio" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Grupo de usuários" @@ -12648,13 +12625,13 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Nota: Ajustar essa opção para 0 (zero) remove os limites." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limitar o número de consultas que podem ser enviadas ao servidor por hora." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12663,19 +12640,19 @@ msgstr "" "usuário pode executar por hora." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "Limitar o numero de novas conexões que o usuário pode abrir por hora." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limitar o número de conexões simultâneas que o usuário pode ter." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12683,7 +12660,7 @@ msgid "Routine" msgstr "Rotinas" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12704,14 +12681,14 @@ msgstr "Permitir executar rotinas armazenadas." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Privilégios específicos de tabela" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Nota: os nomes de privilégios do MySQL são expressos em inglês." @@ -12721,7 +12698,7 @@ msgid "Administration" msgstr "Administração" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Privilégios globais" @@ -12730,15 +12707,15 @@ msgid "Global" msgstr "Global" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Privilégios específicos de banco de dados" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Permitir criar novas tabelas." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Permitir eliminar tabelas." @@ -12761,7 +12738,7 @@ msgid "Native MySQL Authentication" msgstr "Autenticação por cookie" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Informação de login" @@ -12788,8 +12765,8 @@ msgstr "Nome de usuário:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Log name" msgid "Host name" @@ -12811,239 +12788,239 @@ msgstr "Autenticação" msgid "Password Hashing Method" msgstr "Hashing de senha:" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "A senha para %s foi modificada com sucesso." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Você revogou os privilégios para %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add user group" msgid "Add user account" msgstr "Adicionar grupo de usuários" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Banco de dados para usuário" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "Criar banco de dados com o mesmo nome e conceder todos os privilégios." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Conceder todos os privilégios no nome coringa (nome_do_usuário_%)." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Conceder todos os privilégios no banco de dados '%s'." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Usuários que têm acesso à '%s'" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "Usuário foi adicionado." -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Conceder/Grant" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "Privilégio insuficiente para exibir o(s) usuário(s)." -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "Nenhum usuário encontrado." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Qualquer" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "específico de banco de dados" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "coringa" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "específico de tabela" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "Editar privilégios:" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Revogar" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "Editar grupo de usuários" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… manter o antigo." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… apagar o antigo da tabela de usuários." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… revogar todos privilégios ativos do usuário antigo e depois apagá-lo." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… apagar o antigo da tabela de usuários e depois recarregar os privilégios." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Mudar informações de login / Copiar usuário" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Criar um novo usuário com os mesmos privilégios e …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Privilégios específicos de coluna" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Remover os usuários selecionados" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Revogar todos os privilégios ativos dos usuários e depois apagar eles." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "Eliminar os bancos de dados que possem o mesmo nome dos usuários." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "Nenhum usuário selecionado para exclusão!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Recarregando os privilégios" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Os usuários selecionados foram apagados com sucesso." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Você mudou os privilégios para %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "Eliminando %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Os privilégios foram recarregados com sucesso." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "O usuário %s já existe!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "Privilégios para %s" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Usuário" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "Novo usuário" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "Editar privilégios:" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "User group" msgid "User account" msgstr "Grupo de usuários" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" "Nota: Você está tentando editar os privilégios do usuário da sessão atual." -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "Visão geral dos usuários" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13056,7 +13033,7 @@ msgstr "" "privilégios que o servidor usa se eles foram mudados manualmente. Neste " "caso, você deve usar %sAtualizar privilégios%s antes de continuar." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13075,11 +13052,11 @@ msgstr "" "privilégios que o servidor usa se eles foram mudados manualmente. Neste " "caso, você deve usar %sAtualizar privilégios%s antes de continuar." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "O usuário selecionado não foi encontrado na tabela de privilégios." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Você adicionou um novo usuário." @@ -13349,24 +13326,24 @@ msgstr "Instruções/Configurações" msgid "Done dragging (rearranging) charts" msgstr "Terminou de arrastar (reorganizar) os gráficos" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "Habilita o arraste de gráficos" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "Taxa de atualização" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "Colunas do gráfico" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "Organização de gráficos" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -13374,7 +13351,7 @@ msgstr "" "A organização dos gráficos é armazenada no armazenamento local dos " "navegadores. Você pode exportá-la, se você tiver uma configuração complicada." -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "Resetar para o padrão" @@ -13430,7 +13407,7 @@ msgid "Statements" msgstr "Comandos" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "#" @@ -13455,7 +13432,7 @@ msgstr "Exibir valores não formatados" msgid "Related links:" msgstr "Links relacionados:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -13463,11 +13440,11 @@ msgstr "" "O número de conexões que foram abortadas porque o cliente morreu sem fechar " "a conexão de forma apropriada." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "O número de tentativas de conexão sem sucesso ao servidor MySQL." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13477,17 +13454,17 @@ msgstr "" "excederam o valor do binlog_cache_size e usaram o arquivo temporário para " "armazenar enunciados da transação." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "O número de transações que usaram o cache do log binário temporário." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "O número de tentativas de conexão (com sucesso ou não) ao servidor MySQL." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13499,11 +13476,11 @@ msgstr "" "grande, você pode aumentar o valor de tmp_table_size para fazer as tabelas " "temporárias serem baseadas na memória ou invés de baseadas no disco." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "Quantos arquivos temporários o MySQL tinha criado." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13511,7 +13488,7 @@ msgstr "" "O número de tabelas temporárias na memória criadas automaticamente pelo " "servidor enquanto executava os enunciados." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13519,7 +13496,7 @@ msgstr "" "O número de linhas escritas com INSERT DELAYED para cada erro ocorrido " "(provavelmente chave duplicada)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13527,23 +13504,23 @@ msgstr "" "O número de processos manipuladores de INSERT DELAYED em uso. Cada tabela " "diferente em que se usa INSERT DELAYED começa seu próprio processo." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "O número de linhas INSERT DELAYED escritas." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "O número de enunciados FLUSH executados." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "O número de enunciados COMMIT internos." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "O número de vezes que uma linha foi deletada de uma tabela." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13553,7 +13530,7 @@ msgstr "" "ele sabe sobre uma tabela com um nome dado. Isto é chamado descoberta. " "Handler_discover indica o número de vezes que tabelas foram descobertas." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13563,7 +13540,7 @@ msgstr "" "alto, sugere que o usuário está fazendo muitas varreduras completas do " "índice; por exemplo, SELECT col1 FROM foo, supondo que col1 é um índice." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -13572,7 +13549,7 @@ msgstr "" "grande, é uma boa indicação de que suas consultas e tabelas estão " "corretamente indexadas." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13582,7 +13559,7 @@ msgstr "" "incrementado se você estiver consultando uma coluna do índice com uma " "restrição da escala ou se você estiver fazendo uma varredura do índice." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13590,7 +13567,7 @@ msgstr "" "O número de requisições para ler a linha precedente na ordem da chave. Este " "método de leitura é usado principalmente para otimizar ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13603,7 +13580,7 @@ msgstr "" "faça a varredura de tabelas inteiras ou você tem junções que não usam as " "chaves corretamente." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13615,37 +13592,37 @@ msgstr "" "sugere que suas tabelas não estão corretamente indexadas ou que suas " "consultas não estão escritas para tomar vantagem dos índices que você têm." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "O número de enunciados ROLLBACK internos." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "O número de requisições para atualizar uma linha na tabela." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "O número de requisições para inserir uma linha na tabela." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "O número de páginas que contém dados (sujos ou limpos)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "O número de páginas atualmente sujas." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "O número de páginas do buffer pool que foram requisitadas para serem " "niveladas." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "O número de páginas livres." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13655,7 +13632,7 @@ msgstr "" "que estão sendo lidas ou escritas atualmente ou que não podem ser niveladas " "ou removidas por alguma outra razão." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13667,11 +13644,11 @@ msgstr "" "Este valor também pode ser calculado como Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "Tamanho total do buffer pool, em páginas." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13680,7 +13657,7 @@ msgstr "" "quando uma consulta faz a varredura de uma parcela grande de uma tabela mas " "em ordem aleatória." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13688,11 +13665,11 @@ msgstr "" "O número de read-aheads sequenciais InnoDB iniciados. Isto acontece quando o " "InnoDB faz uma varredura sequencial completa da tabela." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "O número de requisições de leitura lógica feitas pelo InnoDB." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13700,7 +13677,7 @@ msgstr "" "O número de leituras lógicas que o InnoDB não pôde satisfazer com buffer " "pool e teve que fazer uma leitura de página simples." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13715,53 +13692,53 @@ msgstr "" "tamanho do buffer pool for ajustado corretamente, este valor deve ser " "pequeno." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "O número de escritas feitas para o buffer pool do InnoDB." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "O número de operações fsync() até agora." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "O número atual de operações fsync() pendentes." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "O número atual de leituras pendentes." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "O número atual de escritas pendentes." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "A quantidade de dados lidos até agora, em bytes." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "O número total de leituras de dados." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "O número total de escritas de dados." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "A quantidade de dados escritos até agora, em bytes." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "O número de páginas que foram escritas para operações doublewrite (dupla-" "escrita)." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "O número de operações doublewrite (dupla-escrita) que foi executado." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13769,35 +13746,35 @@ msgstr "" "O número de esperas ocorridas porque o buffer de log era muito pequeno e " "teve que esperar seu nivelamento antes de continuar." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "O número de requisições de escrita de log." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "O número de escritas físicas para o arquivo de log." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "O número de escritas fsyncs feitas no arquivo de log." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "O número de arquivos de log fsyncs pendentes." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "Escrita de arquivos de log pendentes." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "O número de bytes escritos para o arquivo de log." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "O número de páginas criadas." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -13806,51 +13783,51 @@ msgstr "" "contados em páginas; o tamanho de página permite que sejam facilmente " "convertidos em bytes." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "O número de páginas lidas." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "O número de páginas escritas." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "O número de linhas trancadas que estão esperando atualmente." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "O tempo médio para recuperar uma linha trancada, em milisegundos." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "O tempo total gasto para recuperar linhas trancadas, em milisegundos." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "O tempo máximo para recuperar uma linha trancada, em milisegundos." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "O número de vezes que uma trava de linha teve que esperar." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "O número de linhas deletadas de tabelas InnoDB." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "O número de linhas inseridas em tabelas InnoDB." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "O número de linhas lidas de tabelas InnoDB." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "O número de linhas atualizadas em tabelas InnoDB." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13858,7 +13835,7 @@ msgstr "" "O número de blocos chave no key cache que mudaram mas que não foram " "nivelados ainda para disco. Costumava ser chamado de Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -13866,7 +13843,7 @@ msgstr "" "O número de blocos não usados no key cache. Você pode usar este valor para " "determinar quanto do key cache está em uso." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13875,15 +13852,15 @@ msgstr "" "O número de blocos usados no key cache. Este valor é uma marca d'água que " "indica o número máximo de blocos que já estiveram em uso em algum momento." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "Porcentagem utilizada do key cache (valor calculado)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "O número de requisições para ler um bloco chave do cache." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13893,7 +13870,7 @@ msgstr "" "alto, então seu valor do key_buffer_size provavelmente está muito baixo. A " "taxa de falta de cache pode ser calculada como Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13901,22 +13878,22 @@ msgstr "" "Key cache mal calculado quanto a taxa de leitura física comparada aos " "pedidos de leitura (valor calculado)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "O número de requisições para escrever um bloco chave para o cache." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "O número de escritas físicas para um bloco chave para o disco." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Porcentagem de escritas físicas comparada aos pedidos de escrita (valor " "calculado)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13927,7 +13904,7 @@ msgstr "" "consulta para a mesma consulta. O valor padrão 0 significa que nenhuma " "consulta foi compilada ainda." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13935,12 +13912,12 @@ msgstr "" "O número máximo de conexões que estiveram em uso simultaneamente desde a " "inicialização do servidor." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "O número de linhas esperando para serem escritas na fila de INSERT DELAYED." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13948,20 +13925,20 @@ msgstr "" "O número de tabelas que foram abertas. Se este número for grande, o valor do " "cache de tabelas provavelmente está muito pequeno." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "O número de arquivos que estão abertos." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "O número de streams que estão abertos (usados principalmente para log)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "O número de tabelas que estão abertas." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13971,19 +13948,19 @@ msgstr "" "podem indicar problemas de fragmentação, o que pode ser resolvido com " "execução de um comando FLUSH QUERY CACHE." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "O montante de memória livre para o cache de consultas." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "O número de hits do cache." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "O número de consultas adicionadas no cache." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13995,7 +13972,7 @@ msgstr "" "cache de consultas. O cache de consultas usa a estratégia LRU (menos usadas " "recentemente) para decidir quais consultas remover do cache." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -14003,19 +13980,19 @@ msgstr "" "O número de consultas sem cache (não cacheável, ou não pode ser cacheável " "devido à configuração em query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "O número de consultas registradas no cache." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "O número total de blocos no cache de consultas." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "O status da replicação à prova de falhas (não implementado ainda)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -14023,13 +14000,13 @@ msgstr "" "O número de junções que não usam índices. Se este valor não for 0, você deve " "verificar com cuidado os índices de suas tabelas." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" "O número de junções que usaram uma pesquisa de escala em uma tabela de " "referência." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -14038,7 +14015,7 @@ msgstr "" "linha. (Se isto não for 0, você deve verificar com cuidado os índices de " "suas tabelas.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -14046,16 +14023,16 @@ msgstr "" "O número de junções que usaram escalas na primeira tabela. (Isso normalmente " "não é crítico mesmo se for grande.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "O número junções que fez uma varredura completa da primeira tabela." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "O número de tabelas temporárias abertas atualmente pelo processo SQL escravo." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -14063,12 +14040,12 @@ msgstr "" "Número total (desde o início) de vezes que o processo de replicação SQL " "escravo tentou refazer transações." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Isto é ON se este servidor é um escravo que está conectado a um mestre." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -14076,12 +14053,12 @@ msgstr "" "O número de processos que levaram mais que slow_launch_time segundos para " "serem criadas." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "O número de consultas que levaram mais que long_query_time segundos." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -14091,24 +14068,24 @@ msgstr "" "valor for alto, você deve considerar aumentar o valor da variável " "sort_buffer_size do sistema." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "O número de ordenações que foram feitas com escalas." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "O número de linhas ordenadas." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "O número de ordenações que foram feitas por leituras da tabela." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" "O número de vezes que uma tabela trancada foi recuperada imediatamente." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14120,7 +14097,7 @@ msgstr "" "performance, você precisa otimizar suas consultas primeiro e então, ou " "dividir sua(s) tabela(s) ou usar replicação." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -14130,11 +14107,11 @@ msgstr "" "ser calculada como Threads_created/conexões. Se este valor for vermelho você " "deve aumentar seu thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "O número de conexões atualmente abertas." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14146,11 +14123,11 @@ msgstr "" "isso não dá um aumento notável de performance se você tiver uma boa " "implementação de processos.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "Taxa de acesso a cache de threads (valor calculado)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "O número de processos que não estão dormindo." @@ -14159,57 +14136,57 @@ msgstr "O número de processos que não estão dormindo." msgid "Users of '%s' user group" msgstr "Usuários do grupo '%s'" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "Nenhum usuário pertencente a este grupo foi encontrado." -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "Grupos de usuários" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "Guias de Servidor" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "Guias de Bancos de Dados" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "Guias de Tabelas" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "Ver usuários" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "Adicionar grupo de usuários" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "Editar grupo de usuários: '%s'" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "Atribuições do menu de grupos de usuários" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "Nome do Grupo:" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "Guias do Servidor" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "Guias do Banco de Dados" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "Guias de Tabelas" @@ -14273,21 +14250,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14358,113 +14331,113 @@ msgstr "O evento %1$s foi criado." msgid "Variable name was expected." msgstr "Modelo de nome da tabela" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "at beginning of table" msgid "Unexpected beginning of statement." msgstr "No início da tabela" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 #, fuzzy #| msgid "Unexpected characters on line %s." msgid "Unexpected token." msgstr "Há caracteres inesperados na linha %s." -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 #, fuzzy #| msgid "The number of tables that are open." msgid "The name of the entity was expected." msgstr "O número de tabelas que estão abertas." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Registro eliminado." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "Perfil detalhado" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "Ordem" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "Estado" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "Índice por estado" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "Tempo Total" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "% Tempo" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "Chamadas" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "ø Tempo" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Marcar essa consulta SQL" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "Rótulo:" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Deixar qualquer usuário acessar esse marcador" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "Marcador não criado!" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Usando marcador \"%s\" como query padrão de navegação." -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "Exibindo como código PHP" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, fuzzy, php-format #| msgid "" #| "Current selection does not contain a unique column. Grid edit, checkbox, " @@ -14476,7 +14449,7 @@ msgstr "" "A seleção atual não contém uma única coluna. As funções edição em grade, " "checkbox, editar, copiar e apagar não estão disponíveis." -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, fuzzy, php-format #| msgid "" #| "Current selection does not contain a unique column. Grid edit, checkbox, " @@ -14488,7 +14461,7 @@ msgstr "" "A seleção atual não contém uma única coluna. As funções edição em grade, " "checkbox, editar, copiar e apagar não estão disponíveis." -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas com os índices da tabela `%s`" @@ -14519,27 +14492,27 @@ msgstr "Obter consulta auto-salva" msgid "Bind parameters" msgstr "Parâmetros incorretos!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "Marcar essa query SQL:" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Substituir marcador de mesmo nome existente" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Delimitadores" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Mostrar esta consulta SQL aqui novamente" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "Recuar quando finalizado" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Apenas visualizar" @@ -14583,112 +14556,112 @@ msgstr "Desativar rastreamento para %s" msgid "Deactivate now" msgstr "Desativar agora" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Criado" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Atualizado" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 msgid "Delete version" msgstr "Excluir versão" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Relatório de monitoramento" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Vizualização da estrutura" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "ativo" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "inativo" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "Rastreando instruções" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "Excluir dados de rastreamento desta coluna do relatório" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "Nenhum dado" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Mostrar %1$s com datas desde %2$s até %3$s pelo usuário %4$s %5$s" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "Despejar SQL (download de arquivo)" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "Despejar SQL" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "Esta opção irá substituir sua tabela e os dados nela contidos." -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "Execução SQL" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "Exportar como %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "Instrução de manipulação de dados" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "Instrução de definição de dados" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Data" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Nome de usuário" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Instantâneo (código SQL) da versão %s" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Nenhum wrap (padrão: none)" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "Definição de dados de rastreamento removidos com sucesso" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "Manipulação de dados de rastreamento removida com sucesso" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14696,61 +14669,61 @@ msgstr "" "Você pode executar o dump criando e usando uma tabela temporária. Favor " "certificar-se de ter os privilégios necessários." -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "Comente estas duas linhas se você não precisa delas." -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Instruções SQL exportadas. Por favor, copie a saída ou execute-as." -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "Relatório de rastreamento para tabela `%s`" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Rastreamento para %1$s foi ativado na versão %2$s." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Rastreamento para %1$s foi desativado na versão %2$s." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Versão %1$s de %2$s foi excluída." -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versão %1$s foi criada, rastreamento para %2$s está ativado(a)." -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Tabelas não monitoradas" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Monitorar tabela" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Tabelas rastreadas" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Última versão" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "Excluir os dados de monitoramento" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Versões" @@ -14758,11 +14731,11 @@ msgstr "Versões" msgid "Manage your settings" msgstr "Gerencie suas configurações" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "A configuração foi salva." -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14869,7 +14842,7 @@ msgstr "Nenhum banco de dados" msgid "View dump (schema) of databases" msgstr "Ver dump (esquema) dos bancos de dados" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14900,7 +14873,7 @@ msgstr "" "O phpMyAdmin não foi capaz de matar o processo %s. É possível que ele já " "esteja fechado." -#: server_status_queries.php:50 +#: server_status_queries.php:47 #, fuzzy #| msgid "Not enough privilege to view users." msgid "Not enough privilege to view query statistics." @@ -15761,45 +15734,51 @@ msgstr "Espalhado" msgid "Stacked" msgstr "Empilhado" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "Título do gráfico" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "Eixo X:" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "Série:" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "Rótulo do Eixo X:" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "Valores X" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "Rótulo do Eixo Y:" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Valores Y" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "Nomes em série estão em uma coluna" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "Coluna de série:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Value column:" msgid "Value Column:" msgstr "Coluna de valor:" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "Salvar gráfico como imagem" @@ -15853,15 +15832,43 @@ msgstr "Cometário:" msgid "Drag to reorder" msgstr "Arraste para reordenar" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +msgid "Foreign key constraints" +msgstr "Restrições de chave estrangeira" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "Ações" + +#: templates/table/relation/common_form.phtml:10 +msgid "Constraint properties" +msgstr "Propriedades da restrição" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" +"Somente colunas com índice serão exibidas. Você pode definir um índice " +"abaixo." + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "Restrição de chave estrangeira" + +#: templates/table/relation/common_form.phtml:60 +msgid "+ Add constraint" +msgstr "+ Adicionar restrição" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "Relações internas" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "Relações internas" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15869,34 +15876,7 @@ msgstr "" "Uma relação interna é desnecessária quando uma relação de CHAVE ESTRANGEIRA " "correspondente existe." -#: templates/table/relation/common_form.phtml:37 -msgid "Foreign key constraints" -msgstr "Restrições de chave estrangeira" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "Ações" - -#: templates/table/relation/common_form.phtml:41 -msgid "Constraint properties" -msgstr "Propriedades da restrição" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" -"Somente colunas com índice serão exibidas. Você pode definir um índice " -"abaixo." - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "Restrição de chave estrangeira" - -#: templates/table/relation/common_form.phtml:83 -msgid "+ Add constraint" -msgstr "+ Adicionar restrição" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "Marque a coluna para exibir:" @@ -16024,7 +16004,7 @@ msgid "at beginning of table" msgstr "No início da tabela" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16073,7 +16053,7 @@ msgstr "particionado" msgid "Edit partitioning" msgstr "Remover particionamento" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "Tela de edição" @@ -17503,6 +17483,35 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert está com valor 0" +#~ msgid "To filter all databases on server, press Enter after a search term" +#~ msgstr "" +#~ "Para filtrar os banco de dados no servidor, pressione Enter após digitar " +#~ "o que procura" + +#~ msgid "To filter all %s in database, press Enter after a search term" +#~ msgstr "Para filtrar todos os %s na database, aperte Enter após pesquisar" + +#~ msgid "tables" +#~ msgstr "tabelas" + +#~ msgid "views" +#~ msgstr "visualizações" + +#~ msgid "procedures" +#~ msgstr "Procedimentos" + +#~ msgid "events" +#~ msgstr "evento" + +#~ msgid "functions" +#~ msgstr "Funções" + +#~ msgid "Filter databases by name or regex" +#~ msgstr "Filtrar bancos de dados por nome ou expressão regular" + +#~ msgid "Filter by name or regex" +#~ msgstr "Filtrar por nome ou expressão regular" + #~ msgid "Username and hostname didn't change." #~ msgstr "Username e hostname sem alterações." diff --git a/po/ro.po b/po/ro.po index a5dcb77d0f..b37047e4cf 100644 --- a/po/ro.po +++ b/po/ro.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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:02+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Romanian Are you sure you " "want to continue?" @@ -2007,51 +2019,51 @@ msgstr "" "Această acţiune poate modifica definiţia anumitor coloane.
Sunteţi sigur " "că doriţi să continuaţi?" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "Continuă" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "Adaugă cheie primară" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "Cheia primară a fost adăugată." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "Continuați cu pasul următor…" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Primul pas de normalizare este complet pentru tabela '%s'." -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "Sfârşitul pasului" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "Al doilea pas de normalizare (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Gata" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "Confirmați dependenţele parţiale" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "Dependenţe parţiale selectate sunt după cum urmează:" -#: js/messages.php:440 +#: js/messages.php:441 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2059,19 +2071,19 @@ msgstr "" "Notă: a, b -> d, f presupune ca valorile coloanelor a şi b combinate " "împreună să poată determina valorile din coloana d şi coloana f." -#: js/messages.php:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "Nici o dependenţă parţială selectată!" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "Arată-mi posibile dependenţe parţiale pe baza datelor din tabel" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "Ascunde lista dependenţelor parţiale" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2079,196 +2091,196 @@ msgstr "" "Fiți răbdător! Poate dura câteva secunde în funcţie de dimensiunea datelor " "şi numărul coloanelor tabelului." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "Pas" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "Vor fi efectuate următoarele acţiuni:" -#: js/messages.php:455 +#: js/messages.php:456 #, fuzzy, php-format #| msgid "DROP columns %1s from the table %2s" msgid "DROP columns %s from the table %s" msgstr "Șterge coloanele %1s din tabelul %2s" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "Creaţi tabelul următor" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "Al treilea pas de normalizare (3NF)" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "Confirmați dependenţele tranzitive" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "Dependenţe selectate sunt după cum urmează:" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "Nici o dependenţă selectată!" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Salvează" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Ascunde criteriile de căutare" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Afișează criteriile de căutare" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "Intervalul de căutare" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "Maximul coloanei:" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "Minimul coloanei:" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "Valorea minimă:" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "Valorea maximă:" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "Ascunde criteriile de căutare și înlocuire" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "Afișează criteriile de căutare și înlocuire" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "Fiecare punct reprezintă un rând de date." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "Ducând mouse-ul deasupra unui punct, i se va afișa eticheta." -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Pentru a mări, selectaţi o secţiune cu mouse-ul." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" "Faceţi click pe butonul de resetare zoom pentru a reveni la starea iniţială." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Apăsați pe un punct de date pentru a vedea sau chiar a edita rândul de date." -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "Afişarea poate fi modificată trăgând de colțul din dreapta jos." -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "Alege două coloane" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "Alege două coloane diferite" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Mărime pointer date" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignoră" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Copiază" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Punct" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Linii terminate de" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Poligon" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometrie" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy msgid "Inner ring" msgstr "Inel interior" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Inelul exterior:" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "Doriți să copiați cheia de criptare?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "Cheie de criptare" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Alegere cheie referențiată" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Alegeți cheia străină" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "Vă rugăm să alegeți cheia primară sau o cheie unică!" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Selectează coloana pentru afișare" -#: js/messages.php:532 +#: js/messages.php:533 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?" @@ -2276,81 +2288,81 @@ msgstr "" "Nu ați salvat schimbarile în așezare. Ele vor fi pierdute dacă nu le " "salvați. Doriți să continuați?" -#: js/messages.php:535 +#: js/messages.php:536 msgid "Page name" msgstr "Numele paginii" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Salvează pagina" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Save page" msgid "Save page as" msgstr "Salvează pagina" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Pagina de deschidere" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "Șterge pagina" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "*Untitled" msgid "Untitled" msgstr "*Fără titlu" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "Selectează o pagină pentru a continua" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "Introduceţi un nume valid pentru pagină" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "Doriţi să salvaţi modificările aduse paginii curente?" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "Pagina a fost ștearsă cu succes" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "Exportați schema relațională" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Modificările au fost salvate" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "Adăugați o opțiune pentru coloana \"%s\"." -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "%d obiect(e) creat(e)." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Trimite" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "Apăsați escape pentru a anula editarea." -#: js/messages.php:557 +#: js/messages.php:558 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?" @@ -2358,15 +2370,15 @@ msgstr "" "Ați editat unele date și acestea nu au fost salvate. Sigur vreți să părăsiți " "această pagină fără să salvați datele?" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "Deplasați pentru a reordona." -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "Click pentru a sorta rezultatele după această coloană." -#: js/messages.php:563 +#: js/messages.php:564 #, fuzzy #| msgid "" #| "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC." @@ -2380,27 +2392,27 @@ msgstr "" "pentru a activa ASC/DESC.
-Control+Click pentru a îndepărta coloana " "din instrucțiunea ORDER BY" -#: js/messages.php:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "Click pentru a selecta/deselecta." -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "Dublu click pentru a copia denumirea coloanei." -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" "Apăsați pe săgeata verticală
pentru a alterna vizibilitatea coloanei." -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Arată tot" -#: js/messages.php:574 +#: js/messages.php:575 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." @@ -2409,156 +2421,117 @@ msgstr "" "checkbox, sau link-urile de Editare, Copiere si Ștergere pot să nu " "funcționeze după salvare." -#: js/messages.php:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Vă rugăm să introduceţi un şir hexazecimal valid. Caracterele valide sunt " "0-9, A-F." -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "Textul original" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "anulează" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Întrerupt" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "Succes" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "Starea importului" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Dați drumul la fişiere aici" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "Selectaţi mai întâi baza de date" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "De asemenea puteți edita majoritatea valorilor
făcând dublu-click direct " "pe acestea." -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" "De asemenea puteți edita majoritatea valorile
făcând click direct pe " "acestea." -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "Mergi la adresa link-ului:" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "Copie denumirea coloanei." -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Faceți click dreapta pe numele de coloană pentru a-l copia în clipboard." -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Generează parolă" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Generează" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "Mai mult" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Arată panou" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Ascunde panou" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "Afişează itemii ascunşi din arborele din cadrul din stânga." -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "Link-ul cu panoul principal" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "Deconectarea de la panoul principal" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -#, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "Tabele" - -#: js/messages.php:633 -#, fuzzy -#| msgid "View" -msgid "views" -msgstr "Vizualizare" - -#: js/messages.php:634 -#, fuzzy -#| msgid "Procedures" -msgid "procedures" -msgstr "Proceduri" - -#: js/messages.php:635 -#, fuzzy -#| msgid "Event" -msgid "events" -msgstr "Eveniment" - -#: js/messages.php:636 -#, fuzzy -#| msgid "Functions" -msgid "functions" -msgstr "Funcții" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" "Pagina solicitată nu a fost găsită în istorie, este posibil ca acesta să fi " "expirat." -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2568,56 +2541,56 @@ msgstr "" "procesul de actualizare. Noua versiune %s a fost publicată în data de %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", ultima versiune stabilă:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "la zi" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "Creare view" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Portul serverului" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Trimite raport de eroare" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" "A apărut o eroare JavaScript fatală. Doriți să trimiteți un raport de eroare?" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Modificați setările rapoartelor" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Afișează detaliile raportului" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "Exportul este incomplet din cauza timpului de executie redus al PHP!" -#: js/messages.php:667 +#: js/messages.php:659 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2627,369 +2600,369 @@ msgstr "" "trimiterea datelor, unele câmpuri pot fi ignorate datorită configurației " "max_input_vars." -#: js/messages.php:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "Anumite erori au fost detectate pe server!" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "Vă rugăm să vă uitați la partea de jos a acestei ferestre." -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "Ignoră tot" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "În ceea ce privește setările dumneavoastră, aceste sunt trimise momentan, vă " "rugăm să aveți răbdare." -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "Executați această interogare din nou?" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "Sigur doriți să ştergeţi acest marcaj?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "Comanda SQL" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Comentarii tabel" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Ascunde rezultatele căutării" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "Anterior" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "Următoarea" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Astăzi" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "Ianuarie" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "Februarie" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "Martie" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "Aprilie" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Mai" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "Iunie" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "Iulie" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "August" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "Septembrie" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "Octombrie" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "Noiembrie" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "Decembrie" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Ian" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Iun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Iul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Noi" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Dec" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "Duminică" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "Luni" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "Marți" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "Miercuri" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "Joi" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "Vineri" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "Sâmbătă" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "Dum" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Mie" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Joi" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Vin" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Sâm" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "Du" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "Mi" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "Jo" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "Vi" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "Sâ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "Săpt" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "calendar-lună-an" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "Nici unul(a)" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Oră" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Minut" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Secundă" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Utilizare câmp text" -#: js/messages.php:886 +#: js/messages.php:878 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid email address" msgstr "Introduceţi un nume valid pentru pagină" -#: js/messages.php:887 +#: js/messages.php:879 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "Introduceţi un număr valid!" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date" msgstr "Introduceţi un nume valid pentru pagină" -#: js/messages.php:889 +#: js/messages.php:883 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date ( ISO )" msgstr "Introduceţi un nume valid pentru pagină" -#: js/messages.php:890 +#: js/messages.php:885 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "Introduceţi un număr valid!" -#: js/messages.php:891 +#: js/messages.php:888 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "Introduceţi un număr valid!" -#: js/messages.php:892 +#: js/messages.php:890 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" @@ -3001,53 +2974,53 @@ msgstr "Vă rugăm să introduceţi o lungime validă!" msgid "Please enter the same value again" msgstr "Introduceţi un nume valid pentru pagină" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter at least {0} characters" msgstr "Introduceţi un nume valid pentru pagină" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a value between {0} and {1}" msgstr "Introduceţi un nume valid pentru pagină" -#: js/messages.php:898 +#: js/messages.php:917 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" msgstr "Vă rugăm să introduceţi o lungime validă!" -#: js/messages.php:899 +#: js/messages.php:922 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a value greater than or equal to {0}" msgstr "Introduceţi un nume valid pentru pagină" -#: js/messages.php:901 +#: js/messages.php:928 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date or time" msgstr "Introduceţi un nume valid pentru pagină" -#: js/messages.php:902 +#: js/messages.php:933 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "Introduceţi un număr valid!" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Eroare" @@ -3137,11 +3110,12 @@ msgstr "Reinterogare" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3184,7 +3158,7 @@ msgstr "În timpul sesiunii curente" msgid "Explain" msgstr "Explică" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Creare profil" @@ -3218,8 +3192,8 @@ msgid "History" msgstr "Istoric" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3384,7 +3358,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Schimbă la tabela copiată" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3392,26 +3366,26 @@ msgstr "" "Server-ul nu răspunde (sau soclul serverului MySQL local nu este configurat " "corect)." -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "Serverul nu răspunde." -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" "Vă rugăm să verificați drepturile de acces ale directorului ce conține baza " "de date." -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Detalii…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3421,8 +3395,8 @@ msgstr "" msgid "Ascending" msgstr "Crescătoare" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3570,8 +3544,8 @@ msgstr[1] "%s rezultat(e) în interiorul tabelului %s" msgstr[2] "%s rezultat(e) în interiorul tabelului %s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3615,121 +3589,122 @@ msgstr "Deselectează tot" msgid "Inside column:" msgstr "In interiorul coloanei::" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "Salvaţi datele editate" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "Restaurează ordinea coloanei" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "Filtrare înregistrări" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "Caută în tabelă" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "Început" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "Anterior" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "Următoarea" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "Sfârșit" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Toate" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Număr de rânduri:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Sortare după cheie" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "Texte parțiale" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "Texte întregi" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Cheie relațională" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Disable foreign key checks" msgid "Display column for relations" msgstr "Dezactivare verificări de cheie străine" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "Afișează conținut binar" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "Afișează conținut BLOB" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "Ascunde transformarea browser-ului" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "Text Bine Cunoscut" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "Binar Bine Cunoscut" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "Înregistrarea a fost ștearsă." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Oprește" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Poate fi aproximativ. Vezi [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "Comanda SQL a fost executată cu succes." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3737,40 +3712,40 @@ msgid "" msgstr "" "Această vedere are minim acest număr de rânduri. Vedeți %sdocumentation%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "Afișează înregistrările %1s - %2s" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d în total, %2$d în interogare" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "total de %d" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "Interogarea a durat %01.4f secunde." -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Cele bifate:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3778,25 +3753,25 @@ msgstr "Cele bifate:" msgid "Check all" msgstr "Marchează toate" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Vizualizare imprimare" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Operațiuni asupra rezultatelor interogării" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Arată diagramă" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "Vizualizarea datelor GIS" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "Link-ul nu a fost găsit!" @@ -3893,19 +3868,19 @@ msgstr "Index nu este definit!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Indexuri" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3914,24 +3889,24 @@ msgid "Action" msgstr "Acțiune" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Nume cheie" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Unic" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Împachetat" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Cardinalitate" @@ -3939,8 +3914,8 @@ msgstr "Cardinalitate" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3950,8 +3925,8 @@ msgid "Collation" msgstr "Interclasare" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3967,15 +3942,15 @@ msgstr "Cheia primară a fost aruncată." msgid "Index %s has been dropped." msgstr "Indexul %s a fost aruncat." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Aruncă" @@ -4014,12 +3989,13 @@ msgstr "Vizualizare" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4027,7 +4003,7 @@ msgstr "Tabel" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4036,8 +4012,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4045,41 +4021,41 @@ msgid "Search" msgstr "Caută" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Inserare" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Drepturi de acces" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Operații" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Urmărire" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4090,16 +4066,16 @@ msgstr "Declanșatori" msgid "Database seems to be empty!" msgstr "Baza de date pare a fi goală!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Interogare prin exemplu" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rutine" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4107,20 +4083,20 @@ msgstr "Rutine" msgid "Events" msgstr "Evenimente" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Designer" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "Coloane centrale" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Baze de date" @@ -4131,33 +4107,33 @@ msgid "User accounts" msgstr "Utilizatori" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Jurnal binar" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replicare" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Variabile" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Seturi de caractere" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Motoare" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "Extensii" @@ -4462,7 +4438,7 @@ msgstr "Nu puteți redenumi indexul în PRIMARY!" msgid "No index parts defined!" msgstr "Nu sînt definite părți din index!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4917,37 +4893,37 @@ msgstr "Funcționalitatea %s este afectată de o eroare cunoscută, vedeți %s" msgid "Click to toggle" msgstr "Faceţi click pentru a comuta" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Caută în calculatorul tău:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Selectați de pe serverul web un director %s: pentru încărcări:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Directorul stabilit pentru încărcare nu poate fi găsit." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "Nu sunt fișiere pentru încărcare!" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Golește" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "Execută" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Listare" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "Utilizatori" @@ -5110,8 +5086,8 @@ msgid "Add new column" msgstr "Adăugați o coloană nouă" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5178,19 +5154,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "Ar trebui sa reactualizati serverul %s %s la o versiune mai noua." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "Eroare: Tokenii nu se potrivesc" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "S-a încercat suprascrierea valorilor globale" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "potenţială vulnerabilitate" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "cheie numerica detectată" @@ -6037,7 +6013,7 @@ msgid "Remember file name template" msgstr "Șablon reține nume fișier" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Adaugă valoare pentru AUTO_INCREMENT" @@ -6078,7 +6054,7 @@ msgstr "Tabele de stocare a configurării phpMyAdmin absente" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Adăugare %s" @@ -8144,7 +8120,7 @@ msgid "" msgstr "" "Definește dacă după submit, casuța de interogare ar trebui să rămână pe ecran" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "Reține căsuța de interogare" @@ -8502,111 +8478,35 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Text Open Document" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "Lista favoritelor este plină!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Tabelul %s a fost golit." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "Vizualizarea %s a fost eliminată" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "Tabelul %s a fost aruncat" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "Lista favoritelor este plină!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "necunoscut" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "Nicio coloană aleasă." - -#: libraries/controllers/TableStructureController.php:484 -#, fuzzy -#| msgid "The selected users have been deleted successfully." -msgid "The columns have been moved successfully." -msgstr "Utilizatorii selectați au fost eliminați." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "Tabelul %1$s a fost alterat cu succes." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -#, fuzzy -#| msgid "Query type" -msgid "Query error" -msgstr "Tip interogare" - -#: libraries/controllers/TableStructureController.php:967 -#, fuzzy, php-format -#| msgid "Table %1$s has been altered successfully." -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "Tabelul %1$s a fost alterat cu succes." - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Schimbă" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Index" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Tot textul" - -#: libraries/controllers/TableStructureController.php:1201 -#, fuzzy -#| msgid "Browse distinct values" -msgid "Distinct values" -msgstr "Răsfoiește valori distincte" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8620,6 +8520,14 @@ msgstr "" msgid "No data to display" msgstr "Nu sînt date de afișat" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "Tabelul %1$s a fost alterat cu succes." + #: libraries/controllers/table/TableRelationController.php:212 #, fuzzy #| msgid "Thread %s was successfully killed." @@ -8632,25 +8540,93 @@ msgstr "Firul de execuție %s a fost oprit cu succes." msgid "Internal relations were successfully updated." msgstr "Relație internă adăugată" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Table Search" msgid "Table search" msgstr "Caută în tabelă" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Search" msgid "Zoom search" msgstr "Caută" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "Find and Replace" msgid "Find and replace" msgstr "Caută şi Înlocuieşte" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "Nicio coloană aleasă." + +#: libraries/controllers/table/TableStructureController.php:485 +#, fuzzy +#| msgid "The selected users have been deleted successfully." +msgid "The columns have been moved successfully." +msgstr "Utilizatorii selectați au fost eliminați." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +#, fuzzy +#| msgid "Query type" +msgid "Query error" +msgstr "Tip interogare" + +#: libraries/controllers/table/TableStructureController.php:975 +#, fuzzy, php-format +#| msgid "Table %1$s has been altered successfully." +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "Tabelul %1$s a fost alterat cu succes." + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Schimbă" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Index" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Tot textul" + +#: libraries/controllers/table/TableStructureController.php:1209 +#, fuzzy +#| msgid "Browse distinct values" +msgid "Distinct values" +msgstr "Răsfoiește valori distincte" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8660,7 +8636,7 @@ msgstr "Extensia %s lipsește. Vă rugăm să vă verificați configurația PHP. msgid "possible deep recursion attack" msgstr "posibil atac adânc recursiv" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Nici o schimbare" @@ -8737,7 +8713,7 @@ msgstr "Creează" msgid "Create database:" msgstr "Creează bază de date nouă" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Nu există drepturi de acces" @@ -9527,71 +9503,71 @@ msgid "Dump has been saved to file %s." msgstr "Copia a fost salvată în fișierul %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL a dat un set de rezultate gol (zero linii)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Nu sînt baze de date" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Nu sînt baze de date" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Numai structura" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, fuzzy, php-format #| msgid "Export views" msgid "Go to view: %s" msgstr "Modul de export" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" @@ -9615,73 +9591,73 @@ msgstr "Funcție" msgid "Binary" msgstr "Binar" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "" "Datorită lungimii sale,
acest câmp s-ar putea să nu fie editabil" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Binar - a nu se edita" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Sau" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "director de încărcare al serverului Web" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "Editare/Inserare" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Repornește inserția cu %s rânduri" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "și apoi" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Inserează ca o nouă linie" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 #, fuzzy msgid "Show insert query" msgstr "Afișare interogare SQL" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Revenire" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Adaugă o nouă înregistrare" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Înapoi la această pagină" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Editează rândul următor" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9691,7 +9667,7 @@ msgstr "" "Folosiți tasta TAB pentru a trece de la o valoare la alta sau CTRL+săgeți " "pentru a merge în oricare direcție" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9703,11 +9679,11 @@ msgstr "" msgid "Value" msgstr "Valoare" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "Afișare interogare SQL" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "ID rând inserat: %1$d" @@ -9725,43 +9701,43 @@ msgstr "Nici unul(a)" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table prefix:" msgstr "Înlocuiește prefixul tabelei" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Copy table with prefix" msgid "Copy table with prefix:" msgstr "Copiază tabelul cu prefix" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Vin" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Replace table prefix" msgid "Add table prefix:" msgstr "Înlocuiește prefixul tabelei" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -9993,8 +9969,8 @@ msgstr "Proceduri" msgid "Views:" msgstr "Vizualizare" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Arată" @@ -10036,10 +10012,9 @@ msgstr[1] "" msgstr[2] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "table name" -msgid "Filter databases by name or regex" -msgstr "nume tabel" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -10048,12 +10023,6 @@ msgstr "nume tabel" msgid "Clear fast filter" msgstr "Salvează ca fișier" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "table name" -msgid "Filter by name or regex" -msgstr "nume tabel" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -10477,7 +10446,7 @@ msgstr "Redenumire bază de date în" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10488,7 +10457,7 @@ msgstr "Nu dețineți drepturi de acces pentru a vă afla aici!" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -10508,18 +10477,18 @@ msgstr "Elimină baza de date" msgid "Drop the database (DROP)" msgstr "Ștergeți baza de date (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Numai structura" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Structura și date" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Numai date" @@ -10533,7 +10502,7 @@ msgstr "Copiază baza de date" msgid "CREATE DATABASE before copying" msgstr "CREEAZĂ BAZA DE DATE înainte de copiere" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Adaugă constrângeri" @@ -10573,167 +10542,167 @@ msgstr "Motor de stocare" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Copiază tabelul la (bază_de_date.tabel)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Schimbă la tabela copiată" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Administrare tabel" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Analizare tabel" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Verificare tabel" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Verificare tabel" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Defragmentare tabel" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "Tabelul %s a fost curățat." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Curățarea tabelului (\"FLUSH\")" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Optimizare tabel" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Reparare tabel" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 #, fuzzy msgid "Delete data or table" msgstr "Șterge datele urmărite din acest tabel" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 #, fuzzy msgid "Delete the table (DROP)" msgstr "Nu sînt baze de date" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Analizează" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Verifică" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Optimizează" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Reconstruiește" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Repară" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Collapse" msgid "Coalesce" msgstr "Restrânge" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "Întreținerea partiției" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "Partiția %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "Elimină partiționarea" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Verificarea integrității referinței:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Nu se poate muta tabelul în el însuși!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Nu se poate copia tabelul în el însuși!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabelul %s a fost mutat la %s." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabelul %s a fost copiat la %s." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabelul %s a fost mutat la %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabelul %s a fost copiat la %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Denumirea tabelului e goală!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10928,7 +10897,7 @@ msgstr "Opțiuni de afișare a bazelor de date" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Salvarea datelor din tabel" @@ -10952,21 +10921,21 @@ msgstr "Definiție" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Structura de tabel pentru tabelul" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Structură pentru vizualizare" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -11080,7 +11049,7 @@ msgid "Database:" msgstr "Bază de date" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11197,7 +11166,7 @@ msgid "Data creation options" msgstr "Opțiuni de transformare" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -11266,8 +11235,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11275,93 +11244,93 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Metadata Headers" msgid "Metadata" msgstr "Headere Metadata" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, fuzzy, php-format #| msgid "Metadata Headers" msgid "Metadata for %s" msgstr "Headere Metadata" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Creare:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Ultima actualizare:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Ultima verificare:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "în uz" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Restrictii pentru tabele sterse" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Restrictii pentru tabele" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Restrictii pentru tabele sterse" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "În interiorul tabelelor:" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "Nu folosi AUTO_INCREMENT pentru valorile de zero" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Adaugă valoare pentru AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "TIPURI MIME PENTRU TABEL" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "RELAȚII PENTRU TABEL" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Structură pentru vizualizare" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11622,9 +11591,9 @@ msgstr "Schema relațională" msgid "Table of contents" msgstr "Sumar" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Extra" @@ -11870,61 +11839,61 @@ msgstr "Formatează textul ca interogare SQL cu evidențierea sintaxei." msgid "Formats text as XML with syntax highlighting." msgstr "Formatează textul ca interogare SQL cu evidențierea sintaxei." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Eroare: relația deja există." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been added." msgstr "Modificările au fost salvate" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Eroare: Relația nu a fost adăugată." -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "Eroare: Relația nu a fost adăugată!" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "Relație internă adăugată" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "Eroare: Relația nu a fost adăugată." -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been removed." msgstr "Modificările au fost salvate" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Eroare: Relația nu a fost adăugată." -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "Eroare: Relația nu a fost adăugată." -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11981,98 +11950,98 @@ msgid "Please see the documentation on how to update your column_info table. " msgstr "" "Parcurgeti documentatia pentru modul de updatare a Column_comments Table." -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Comandă SQL salvată" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "Istoric SQL" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "There are no favorite tables." msgid "Persistent favorite tables" msgstr "Nu există tabele favorite." -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Configuration file" msgid "Configurable menus" msgstr "Fișier de configurare" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 #, fuzzy msgid "Hide/show navigation items" msgstr "Personalizează cadrul principal" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Remember table's sorting" msgid "Remembering Designer Settings" msgstr "Reține sortarea tabelei" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "Tip invalid de export" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "Nu există descriere" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -12080,14 +12049,14 @@ msgid "" "configuration storage there." msgstr "Tabele de stocare a configurării phpMyAdmin absente" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Tabele de stocare a configurării phpMyAdmin absente" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -12293,8 +12262,8 @@ msgstr "Nume utilizator" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Nume utilizator" @@ -12302,7 +12271,7 @@ msgstr "Nume utilizator" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Parola" @@ -13017,7 +12986,7 @@ msgstr[2] "%s baza(ele) de data(e) au fost aruncate." msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 #, fuzzy msgid "Version" msgstr "Persană" @@ -13026,105 +12995,101 @@ msgstr "Persană" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Dezactivat" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Fără drepturi." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Include toate privilegiile, excluzand GRANT." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Permite citirea datelor." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Permite inserarea și înlocuirea datelor." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Permite schimbarea datelor." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Permite stergere de date." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Permite crearea de noi baze de date și tabele." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Permite stergerea unei baze de date sau a unor tabele." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permite reîncărcarea setărilor de server și golirea memoriei cache a " "serverului." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Permite oprirea serverului." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 #, fuzzy #| msgid "Allows viewing processes of all users" msgid "Allows viewing processes of all users." msgstr "Permite vizualizarea proceselor tuturor utilizatorilor" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" "Permite importarea datelor in fisiere și exportarea acestora din fisiere." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "Nu are efect în această versiune MySQL." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Permite crearea și stergerea indexurilor." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Permite alterarea structurii la tabelele deja existente." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Permite accesul la lista completă a bazelor de date." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -13135,41 +13100,41 @@ msgstr "" "variabilelor globale sau oprirea firelor de execuție a altor utilizatori." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Permite crearea de tabele temporare." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Permite blocarea tabelelor din firul curent de execuție." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Necesară pentru „slave replication”." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "Permite utilizatorului de a interoga locația slave/master." #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Permite crearea noilor viziuni." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "Permite configurarea evenimentelor pentru planificatorul de evenimente" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 #, fuzzy #| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." @@ -13177,27 +13142,27 @@ msgstr "Permite crearea și eliminarea declanșatorilor" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permite executarea interogărilor SHOW CREATE VIEW." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Permite crearea rutinelor stocate." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Permite alterarea și aruncarea rutinelor stocate." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permite crearea, aruncarea și redenumirea conturilor de utilizator." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Permite executarea rutinelor stocate." @@ -13211,8 +13176,8 @@ msgstr "Nici unul(a)" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -13258,14 +13223,14 @@ msgstr "" "restricția." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limiteaza numarul de comenzi care pot fi trimise de utilizator către server " "într-o oră." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -13274,22 +13239,22 @@ msgstr "" "baze de date executabile de utilizator într-o oră." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Limitează numărul de noi conexiuni care pot fi deschise de utilizator într-o " "oră." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Limitează numărul conexiunilor simultane pe care le poate avea utilizatorul." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -13297,7 +13262,7 @@ msgid "Routine" msgstr "Rutine" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -13318,14 +13283,14 @@ msgstr "Permite executarea rutinelor stocate." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Drepturi specifice de tabele" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -13337,7 +13302,7 @@ msgid "Administration" msgstr "Administrare" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Privilegii globale" @@ -13348,15 +13313,15 @@ msgid "Global" msgstr "global" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Drepturi specifice bazei de date" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Permite crearea de noi tabele." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Permite aruncarea a unei baze de date." @@ -13379,7 +13344,7 @@ msgid "Native MySQL Authentication" msgstr "Autentificare Cookie" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Informații de autentificare" @@ -13404,8 +13369,8 @@ msgstr "Nume utilizator" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Log name" msgid "Host name" @@ -13427,252 +13392,252 @@ msgstr "Autentificare" msgid "Password Hashing Method" msgstr "Criptare Parola" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "Parola pentru %s a fost schimbată cu succes." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Drepturile tale au fost revocate pentru %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Adaugă utilizator" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Bază de date pentru utilizatorul" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "Creează o bază de date cu același nume și acordă toate privilegiile." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, fuzzy, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Verifică privilegiile pentru baza de date \"%s\"." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Utilizatorul are acces la \"%s\"" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Vizualizarea %s a fost eliminată" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Permite" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nu s-a găsit nici un utilizator." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Oricare" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "specific bazei de date" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "Metacaracter" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "specific bazei de date" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Editează drepturile de acces" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Revocare" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Redactează serverul" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… menține cel vechi." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… șterge cel vechi din tabelul de utilizatori." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "…revocă toate privilegiile active de la utilizatorul vechi și șterge-l după " "aceea." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… șterge cel vechi din tabelul de utilizatori și reîncarcă privilegiile." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Schimbă informațiile de autentificare/Copiază utilizator" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Creează un utilizator nou cu aceleași privilegii și…" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Drepturi specifice coloanei" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Eliminarea utilizatorilor selectați" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revocarea tuturor drepturilor active ale utilizatorilor și stergerea " "acestora." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "Aruncă baza de date care are același nume ca utilizatorul." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "Nici un utilizator ales pentru ștergere!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Reîncărcarea drepturilor" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Utilizatorii selectați au fost eliminați." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Ați actualizat privilegiile pentru %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "Șterge %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Drepturile au fost reîncarcate cu succes." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "Utilizatorul %s există deja!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Drepturi de acces" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Utilizator" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 #, fuzzy #| msgid "New" msgctxt "Create new user" msgid "New" msgstr "Nou" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Editează drepturile de acces" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "Users" msgid "User account" msgstr "Utilizatori" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Descriere utilizator" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13685,7 +13650,7 @@ msgstr "" "În acest caz, reîncărcați de aici înainte de a continua %sreîncărcarea " "drepturilor%s." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13704,11 +13669,11 @@ msgstr "" "În acest caz, reîncărcați de aici înainte de a continua %sreîncărcarea " "drepturilor%s." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "Utilizatorul selectat nu a fost găsit în tabelul de drepturi." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Ați adăugat un nou utilizator." @@ -13957,35 +13922,35 @@ msgid "Done dragging (rearranging) charts" msgstr "" # Activați evidențierea -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 #, fuzzy #| msgid "Enable highlighting" msgid "Enable charts dragging" msgstr "Activați highlighting-ul" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 #, fuzzy msgid "Refresh rate" msgstr "Reîncarcă" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Adaugă/șterge coloane" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -14054,7 +14019,7 @@ msgid "Statements" msgstr "Comenzi" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -14087,34 +14052,34 @@ msgstr "Afișează tabele deschise" msgid "Related links:" msgstr "Legături" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Comprimă conexiunea la serverul MySQL" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -14122,11 +14087,11 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "Cîte fișiere temporare a creat mysqld." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -14134,68 +14099,68 @@ msgstr "" "Numărul de tabele temporare create automat în memorie de căter server în " "timpul execuției de interogări." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -14203,7 +14168,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -14211,42 +14176,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "Numărul de cereri de a insera un rând într-un tabel." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "Numărul de pagini conținînd date (curate sau murdare)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "Numărul de pagini actualmente murdare." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "Numărul de pagini libere." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -14254,33 +14219,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -14289,248 +14254,248 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "Numărul total de citiri de date." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "Numărul total de scrieri de date." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "Cantitatea totală de date scrisă până acum, în bytes." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "The number of doublewrite writes that have been performed and the number of " "pages that have been written for this purpose." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" "The number of doublewrite writes that have been performed and the number of " "pages that have been written for this purpose." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "The number of fsyncs writes done to the log file." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "Numărul de pagini create." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "Numărul de pagini citite." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "Numărul de pagini scrise." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "Numărul de rânduri citite din tabelele InnoDB." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "Numărul de rânduri actualizate în tabelele InnoDB." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Formatul fișierului importat" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "Numărul de tabele ce sînt deschise." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "Numărul de nimeriri în cache." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "Numărul de interogări adăugate la cache." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14538,99 +14503,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "Numărul de interogări înregistrate în cache." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "Numărul total de blocuri în cache-ul interogării." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "Numărul de rânduri sortate." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14638,18 +14603,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "Numărul de conexiuni deschise momentan." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14657,13 +14622,13 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Monitorizarea nu este activată" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -14672,77 +14637,77 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 #, fuzzy #| msgid "Users" msgid "User groups" msgstr "Utilizatori" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "Versiune server" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Database for user" msgid "Database level tabs" msgstr "Bază de date pentru utilizatorul" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table removal" msgid "Table level tabs" msgstr "Denumire tabel" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy #| msgid "View" msgid "View users" msgstr "Vizualizare" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "Adaugă utilizator" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Fără drepturi." -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "Denumirile coloanelor" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Versiune server" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Database for user" msgid "Database-level tabs" msgstr "Bază de date pentru utilizatorul" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table removal" msgid "Table-level tabs" @@ -14807,21 +14772,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14892,130 +14853,130 @@ msgstr "Evenimentul %1$s a fost creat." msgid "Variable name was expected." msgstr "Șablon nume tabel" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "La începutul tabelului" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 #, fuzzy #| msgid "Unexpected characters on line %s." msgid "Unexpected token." msgstr "Caractere neaşteptate pe linia %s." -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 #, fuzzy #| msgid "The number of tables that are open." msgid "The name of the entity was expected." msgstr "Numărul de tabele ce sînt deschise." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Înregistrarea a fost ștearsă." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "Fișiere cu date" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "Începutul" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Total" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Timp" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Închide" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Timp" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Pune semn de carte la această comandă SQL" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Label" msgid "Label:" msgstr "Etichetă" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Permite tuturor utilizatorilor să acceseze acest semn de carte" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 #, fuzzy #| msgid "Bookmark not created" msgid "Bookmark not created!" msgstr "Semnul de carte nu a fost creat" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Se folosește semnul de carte „%s” ca interogare de răsfoire implicită." -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "Afișare ca cod PHP" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -15028,7 +14989,7 @@ msgstr "" "checkbox, sau link-urile de Editare, Copiere si Ștergere pot să nu " "funcționeze după salvare." -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -15041,7 +15002,7 @@ msgstr "" "checkbox, sau link-urile de Editare, Copiere si Ștergere pot să nu " "funcționeze după salvare." -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probleme cu indexul tabelului „%s”" @@ -15072,29 +15033,29 @@ msgstr "" msgid "Bind parameters" msgstr "Parametrii greșiți!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 #, fuzzy #| msgid "Bookmark this SQL query" msgid "Bookmark this SQL query:" msgstr "Pune semn de carte la această comandă SQL" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Înlocuiește semnul de carte cu același nume" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Delimitator" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Afișează această interogare din nou aici" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Numai vizualizare" @@ -15139,102 +15100,102 @@ msgstr "Șterge datele urmărite din acest tabel" msgid "Deactivate now" msgstr "Dezactivează acum" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Creat" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Actualizat" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "Creează versiune" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Raport de monitorizare" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Instantaneu al structurii" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "activ" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "inactiv" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 #, fuzzy msgid "Delete tracking data row from report" msgstr "Șterge datele urmărite din acest tabel" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "Nu sînt date" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "Execuție SQL" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "Exportă ca %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Dată" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 #, fuzzy msgid "Username" msgstr "Nume utilizator:" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -15242,77 +15203,77 @@ msgctxt "None for default" msgid "None" msgstr "Nici unul/una" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Monitorizarea este activată" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Monitorizarea este activată" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Creare relație" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Tabele fără monitorizare" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Monitorizează tabel" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Tabele monitorizate" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Ultima versiune" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "Se șterg datele monitorizare" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Versiuni" @@ -15322,13 +15283,13 @@ msgstr "Versiuni" msgid "Manage your settings" msgstr "Facilități generale" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." msgstr "Modificările au fost salvate" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -15432,7 +15393,7 @@ msgstr "Nu sînt baze de date" msgid "View dump (schema) of databases" msgstr "Vizualizarea schemei bazei de date" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -15459,7 +15420,7 @@ msgstr "" "phpMyAdmin n-a reusit sa opreasca firul de executie %s. Probabil a fost " "deja oprit." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -16394,47 +16355,53 @@ msgstr "" msgid "Stacked" msgstr "Împachetat" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "Titlul diagramei" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "Axa X:" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "Serii:" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "Valori X" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Valori Y" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside column:" msgid "Series column:" msgstr "In interiorul coloanei::" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Values for column %s" msgid "Value Column:" msgstr "Valori pentru coloana %s" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -16499,15 +16466,47 @@ msgstr "Comentariu:" msgid "Drag to reorder" msgstr "Drag and drop pentru reordonare" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +#, fuzzy +#| msgid "Foreign key constraint" +msgid "Foreign key constraints" +msgstr "Constrîngere de cheie străină" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "Acțiuni" + +#: templates/table/relation/common_form.phtml:10 +#, fuzzy +#| msgid "Constraints for table" +msgid "Constraint properties" +msgstr "Restrictii pentru tabele" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "Constrîngere de cheie străină" + +#: templates/table/relation/common_form.phtml:60 +#, fuzzy +#| msgid "Add constraints" +msgid "+ Add constraint" +msgstr "Adaugă constrângeri" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "Relații interne" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "Relație internă" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -16515,38 +16514,7 @@ msgstr "" "Nu este necesară o relație internă atunci cînd există o cheie externă " "corespondentă." -#: templates/table/relation/common_form.phtml:37 -#, fuzzy -#| msgid "Foreign key constraint" -msgid "Foreign key constraints" -msgstr "Constrîngere de cheie străină" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "Acțiuni" - -#: templates/table/relation/common_form.phtml:41 -#, fuzzy -#| msgid "Constraints for table" -msgid "Constraint properties" -msgstr "Restrictii pentru tabele" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "Constrîngere de cheie străină" - -#: templates/table/relation/common_form.phtml:83 -#, fuzzy -#| msgid "Add constraints" -msgid "+ Add constraint" -msgstr "Adaugă constrângeri" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16688,7 +16656,7 @@ msgid "at beginning of table" msgstr "La începutul tabelului" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16737,7 +16705,7 @@ msgstr "partiționat" msgid "Edit partitioning" msgstr "Elimină partiționarea" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -18120,6 +18088,41 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert este setat cu 0" +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "Tabele" + +#, fuzzy +#~| msgid "View" +#~ msgid "views" +#~ msgstr "Vizualizare" + +#, fuzzy +#~| msgid "Procedures" +#~ msgid "procedures" +#~ msgstr "Proceduri" + +#, fuzzy +#~| msgid "Event" +#~ msgid "events" +#~ msgstr "Eveniment" + +#, fuzzy +#~| msgid "Functions" +#~ msgid "functions" +#~ msgstr "Funcții" + +#, fuzzy +#~| msgid "table name" +#~ msgid "Filter databases by name or regex" +#~ msgstr "nume tabel" + +#, fuzzy +#~| msgid "table name" +#~ msgid "Filter by name or regex" +#~ msgstr "nume tabel" + #, fuzzy #~| msgid "Tracking report" #~ msgid "Taking you to %s." diff --git a/po/ru.po b/po/ru.po index 589df565fc..4122900529 100644 --- a/po/ru.po +++ b/po/ru.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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-09-06 06:59+0200\n" "Last-Translator: Egorov Artyom \n" "Language-Team: Russian =20) ? 1 : 2;\n" "X-Generator: Weblate 2.4-dev\n" -#: changelog.php:37 license.php:30 +#: changelog.php:37 license.php:33 #, php-format msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " @@ -38,7 +38,7 @@ msgstr "Кликните для сортировки." msgid "Showing rows %1$s - %2$s." msgstr "Отображение строк %1$s - %2$s." -#: db_create.php:61 +#: db_create.php:62 #, php-format msgid "Database %1$s has been created." msgstr "База данных %1$s создана." @@ -47,13 +47,13 @@ msgstr "База данных %1$s создана." msgid "Database comment" msgstr "Комментарий к базе данных" -#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:601 +#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:599 #: templates/columns_definitions/column_definitions_form.phtml:84 msgid "Table comments:" msgstr "Комментарии к таблице:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1568 +#: libraries/insert_edit.lib.php:1575 #: libraries/navigation/nodes/NodeColumn.php:34 #: libraries/plugins/export/ExportHtmlword.php:288 #: libraries/plugins/export/ExportHtmlword.php:384 @@ -63,13 +63,14 @@ msgstr "Комментарии к таблице:" #: libraries/plugins/export/ExportTexytext.php:282 #: libraries/plugins/export/ExportTexytext.php:373 #: libraries/plugins/export/PMA_ExportPdf.php:472 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:882 libraries/tracking.lib.php:978 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 +#: libraries/tracking.lib.php:892 libraries/tracking.lib.php:990 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:10 -#: templates/table/relation/common_form.phtml:43 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:27 +#: templates/table/relation/common_form.phtml:79 #: templates/table/relation/foreign_key_row.phtml:176 #: templates/table/relation/foreign_key_row.phtml:188 #: templates/table/relation/internal_relational_row.phtml:73 @@ -89,14 +90,14 @@ msgstr "Столбец" #: libraries/plugins/export/ExportTexytext.php:283 #: libraries/plugins/export/ExportTexytext.php:374 #: libraries/plugins/export/PMA_ExportPdf.php:474 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 #: libraries/rte/rte_list.lib.php:78 libraries/rte/rte_list.lib.php:106 #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2606 libraries/tracking.lib.php:883 -#: libraries/tracking.lib.php:975 +#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -106,7 +107,7 @@ msgstr "Тип" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:709 -#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1577 +#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1584 #: libraries/plugins/export/ExportHtmlword.php:294 #: libraries/plugins/export/ExportHtmlword.php:390 #: libraries/plugins/export/ExportLatex.php:517 @@ -115,9 +116,9 @@ msgstr "Тип" #: libraries/plugins/export/ExportTexytext.php:284 #: libraries/plugins/export/ExportTexytext.php:375 #: libraries/plugins/export/PMA_ExportPdf.php:476 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 -#: libraries/tracking.lib.php:885 libraries/tracking.lib.php:981 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/tracking.lib.php:895 libraries/tracking.lib.php:993 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 @@ -134,9 +135,9 @@ msgstr "Null" #: libraries/plugins/export/ExportTexytext.php:285 #: libraries/plugins/export/ExportTexytext.php:376 #: libraries/plugins/export/PMA_ExportPdf.php:478 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 -#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:886 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:896 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 @@ -148,8 +149,8 @@ msgstr "По умолчанию" #: libraries/plugins/export/ExportOdt.php:488 #: libraries/plugins/export/ExportTexytext.php:378 #: libraries/plugins/export/PMA_ExportPdf.php:487 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:640 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:663 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 msgid "Links to" msgstr "Ссылки на" @@ -160,37 +161,38 @@ msgstr "Ссылки на" #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:381 #: libraries/plugins/export/PMA_ExportPdf.php:494 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:651 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:664 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:649 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 #: templates/columns_definitions/table_fields_definitions.phtml:65 msgid "Comments" msgstr "Комментарии" -#: db_datadict.php:155 libraries/controllers/TableStructureController.php:1189 -#: libraries/controllers/TableStructureController.php:1194 -#: libraries/tracking.lib.php:925 +#: db_datadict.php:155 +#: libraries/controllers/table/TableStructureController.php:1197 +#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:79 +#: templates/table/structure/display_structure.phtml:80 msgid "Primary" msgstr "Первичный" -#: db_datadict.php:165 js/messages.php:370 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:371 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 -#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:403 -#: libraries/mult_submits.lib.php:417 +#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:408 +#: libraries/mult_submits.lib.php:422 #: libraries/plugins/export/ExportHtmlword.php:654 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:710 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2971 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3620 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1013 libraries/tracking.lib.php:1018 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2973 +#: libraries/server_privileges.lib.php:2993 +#: libraries/server_privileges.lib.php:3631 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -199,32 +201,32 @@ msgstr "Первичный" msgid "No" msgstr "Нет" -#: db_datadict.php:165 js/messages.php:515 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:516 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 #: libraries/config/FormDisplay.tpl.php:280 -#: libraries/controllers/TableStructureController.php:770 -#: libraries/controllers/TableStructureController.php:1440 -#: libraries/controllers/TableStructureController.php:1449 -#: libraries/controllers/TableStructureController.php:1454 -#: libraries/controllers/TableStructureController.php:1459 -#: libraries/controllers/TableStructureController.php:1464 -#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:199 -#: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 -#: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 +#: libraries/controllers/table/TableStructureController.php:771 +#: libraries/controllers/table/TableStructureController.php:1448 +#: libraries/controllers/table/TableStructureController.php:1457 +#: libraries/controllers/table/TableStructureController.php:1462 +#: libraries/controllers/table/TableStructureController.php:1467 +#: libraries/controllers/table/TableStructureController.php:1472 +#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:200 +#: libraries/mult_submits.lib.php:344 libraries/mult_submits.lib.php:377 +#: libraries/mult_submits.lib.php:406 libraries/mult_submits.lib.php:420 #: libraries/plugins/export/ExportHtmlword.php:655 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:788 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:711 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2968 -#: libraries/server_privileges.lib.php:2989 -#: libraries/server_privileges.lib.php:3617 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1011 libraries/tracking.lib.php:1016 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2970 +#: libraries/server_privileges.lib.php:2991 +#: libraries/server_privileges.lib.php:3628 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -237,8 +239,8 @@ msgstr "Да" msgid "View dump (schema) of database" msgstr "Отобразить дамп (схему) базы данных" -#: db_export.php:51 db_tracking.php:102 export.php:382 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:176 +#: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 +#: libraries/controllers/DatabaseStructureController.php:157 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "Таблиц в базе данных не обнаружено." @@ -255,7 +257,7 @@ msgstr "Таблицы" #: db_export.php:66 libraries/Menu.php:320 libraries/Menu.php:427 #: libraries/Util.php:3407 libraries/Util.php:3417 libraries/Util.php:3423 -#: libraries/Util.php:3702 libraries/Util.php:4339 libraries/Util.php:4356 +#: libraries/Util.php:3703 libraries/Util.php:4340 libraries/Util.php:4357 #: libraries/central_columns.lib.php:729 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:320 @@ -263,10 +265,10 @@ msgstr "Таблицы" #: libraries/config/user_preferences.forms.php:218 #: libraries/config/user_preferences.forms.php:259 #: libraries/config/user_preferences.forms.php:285 -#: libraries/import.lib.php:1299 libraries/navigation/nodes/NodeColumn.php:44 +#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:44 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 -#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:877 +#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:887 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -310,11 +312,11 @@ msgid "" msgstr "" "Хранилище конфигурации phpMyAdmin неактивно. %sДля определения причины%s." -#: db_qbe.php:135 +#: db_qbe.php:136 msgid "You have to choose at least one column to display!" msgstr "Необходимо выбрать хотя бы один столбец для отображения!" -#: db_qbe.php:152 +#: db_qbe.php:154 #, php-format msgid "Switch to %svisual builder%s" msgstr "Переключиться на %sвизуальный составитель запросов%s" @@ -340,7 +342,7 @@ msgstr "Версия %1$s для выбранных таблиц создана, msgid "No tables selected." msgstr "Ни одна таблица не выбрана." -#: db_tracking.php:146 +#: db_tracking.php:149 msgid "Database Log" msgstr "Журнал базы данных" @@ -374,7 +376,7 @@ msgstr "Возможно вы хотите перезагрузить стран msgid "Bad type!" msgstr "Ошибочный тип!" -#: export.php:276 +#: export.php:278 msgid "Bad parameters!" msgstr "Ошибочные параметры!" @@ -382,98 +384,98 @@ msgstr "Ошибочные параметры!" msgid "Invalid export type" msgstr "Ошибочный тип экспорта" -#: gis_data_editor.php:119 +#: gis_data_editor.php:117 #, php-format msgid "Value for the column \"%s\"" msgstr "Значение для столбца \"%s\"" -#: gis_data_editor.php:147 +#: gis_data_editor.php:145 #: templates/table/gis_visualization/gis_visualization.phtml:37 msgid "Use OpenStreetMaps as Base Layer" msgstr "Используйте в качестве основного слоя OpenStreetMaps" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:169 +#: gis_data_editor.php:167 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:192 +#: gis_data_editor.php:190 #, php-format msgid "Geometry %d:" msgstr "Геометрия %d:" -#: gis_data_editor.php:214 +#: gis_data_editor.php:212 msgid "Point:" msgstr "Точка:" -#: gis_data_editor.php:215 gis_data_editor.php:242 gis_data_editor.php:298 -#: gis_data_editor.php:371 js/messages.php:504 +#: gis_data_editor.php:213 gis_data_editor.php:240 gis_data_editor.php:296 +#: gis_data_editor.php:369 js/messages.php:505 msgid "X" msgstr "X" -#: gis_data_editor.php:218 gis_data_editor.php:246 gis_data_editor.php:302 -#: gis_data_editor.php:377 js/messages.php:505 +#: gis_data_editor.php:216 gis_data_editor.php:244 gis_data_editor.php:300 +#: gis_data_editor.php:375 js/messages.php:506 msgid "Y" msgstr "Y" -#: gis_data_editor.php:240 gis_data_editor.php:296 gis_data_editor.php:369 -#: js/messages.php:507 +#: gis_data_editor.php:238 gis_data_editor.php:294 gis_data_editor.php:367 +#: js/messages.php:508 #, php-format msgid "Point %d" msgstr "Точка %d" -#: gis_data_editor.php:253 gis_data_editor.php:309 gis_data_editor.php:387 -#: js/messages.php:513 +#: gis_data_editor.php:251 gis_data_editor.php:307 gis_data_editor.php:385 +#: js/messages.php:514 msgid "Add a point" msgstr "Добавить точку" -#: gis_data_editor.php:270 +#: gis_data_editor.php:268 #, php-format msgid "Linestring %d:" msgstr "Отрезок %d:" -#: gis_data_editor.php:273 gis_data_editor.php:350 +#: gis_data_editor.php:271 gis_data_editor.php:348 msgid "Outer ring:" msgstr "Внешний контур:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:273 gis_data_editor.php:350 #, php-format msgid "Inner ring %d:" msgstr "Внутренний контур %d:" -#: gis_data_editor.php:312 +#: gis_data_editor.php:310 msgid "Add a linestring" msgstr "Добавить отрезок" -#: gis_data_editor.php:313 gis_data_editor.php:392 js/messages.php:514 +#: gis_data_editor.php:311 gis_data_editor.php:390 js/messages.php:515 msgid "Add an inner ring" msgstr "Добавить внутренний контур" -#: gis_data_editor.php:334 +#: gis_data_editor.php:332 #, php-format msgid "Polygon %d:" msgstr "Многоугольник %d:" -#: gis_data_editor.php:398 +#: gis_data_editor.php:396 msgid "Add a polygon" msgstr "Добавить многоугольник" -#: gis_data_editor.php:404 +#: gis_data_editor.php:402 msgid "Add geometry" msgstr "Добавить геометрию" -#: gis_data_editor.php:410 js/messages.php:345 libraries/DbSearch.php:462 -#: libraries/DisplayResults.php:1783 libraries/browse_foreigners.lib.php:142 +#: gis_data_editor.php:408 js/messages.php:346 libraries/DbSearch.php:462 +#: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:151 #: libraries/display_export.lib.php:404 libraries/display_export.lib.php:410 -#: libraries/display_import.lib.php:403 libraries/index.lib.php:42 -#: libraries/insert_edit.lib.php:1547 libraries/insert_edit.lib.php:1584 +#: libraries/display_import.lib.php:403 libraries/index.lib.php:45 +#: libraries/insert_edit.lib.php:1554 libraries/insert_edit.lib.php:1591 #: libraries/normalization.lib.php:168 libraries/normalization.lib.php:825 #: libraries/operations.lib.php:47 libraries/operations.lib.php:114 #: libraries/operations.lib.php:266 libraries/operations.lib.php:309 #: libraries/operations.lib.php:806 libraries/operations.lib.php:877 -#: libraries/operations.lib.php:926 libraries/operations.lib.php:1336 -#: libraries/operations.lib.php:1653 +#: libraries/operations.lib.php:926 libraries/operations.lib.php:1339 +#: libraries/operations.lib.php:1656 #: libraries/plugins/auth/AuthenticationCookie.php:239 #: libraries/replication_gui.lib.php:124 libraries/replication_gui.lib.php:163 #: libraries/replication_gui.lib.php:328 libraries/replication_gui.lib.php:465 @@ -482,12 +484,12 @@ msgstr "Добавить геометрию" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2343 -#: libraries/server_privileges.lib.php:3114 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_user_groups.lib.php:285 -#: libraries/sql_query_form.lib.php:369 libraries/sql_query_form.lib.php:429 -#: libraries/tracking.lib.php:536 libraries/tracking.lib.php:656 +#: libraries/server_privileges.lib.php:2345 +#: libraries/server_privileges.lib.php:3116 +#: libraries/server_privileges.lib.php:3735 +#: libraries/server_user_groups.lib.php:290 +#: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 +#: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 #: prefs_manage.php:280 prefs_manage.php:358 #: templates/columns_definitions/column_definitions_form.phtml:64 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 @@ -500,11 +502,11 @@ msgstr "Добавить геометрию" msgid "Go" msgstr "Вперёд" -#: gis_data_editor.php:413 +#: gis_data_editor.php:411 msgid "Output" msgstr "Вывод" -#: gis_data_editor.php:416 +#: gis_data_editor.php:414 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -516,7 +518,7 @@ msgstr "" msgid "Succeeded" msgstr "Удалось" -#: import.php:59 js/messages.php:588 +#: import.php:59 js/messages.php:589 msgid "Failed" msgstr "Ошибка" @@ -578,7 +580,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "Не удалось загрузить модули импорта. Пожалуйста, проверьте установку!" -#: import.php:669 libraries/sql.lib.php:744 libraries/sql.lib.php:1468 +#: import.php:669 libraries/sql.lib.php:754 libraries/sql.lib.php:1485 #, php-format msgid "Bookmark %s has been created." msgstr "Закладка %s создана." @@ -610,7 +612,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "Не удалось загрузить прогресс (ход) импорта." -#: import_status.php:111 js/messages.php:444 libraries/Util.php:797 +#: import_status.php:111 js/messages.php:445 libraries/Util.php:797 #: libraries/export.lib.php:523 #: libraries/plugins/schema/ExportRelationSchema.php:301 user_password.php:268 msgid "Back" @@ -635,7 +637,7 @@ msgstr "" msgid "General settings" msgstr "Основные настройки" -#: index.php:191 js/messages.php:617 +#: index.php:191 js/messages.php:618 #: libraries/display_change_password.lib.php:54 #: libraries/display_change_password.lib.php:57 user_password.php:262 msgid "Change password" @@ -735,7 +737,11 @@ msgstr "Получить помощь" msgid "List of changes" msgstr "Список изменений" -#: index.php:453 +#: index.php:438 libraries/server_plugins.lib.php:83 +msgid "License" +msgstr "Лицензия" + +#: index.php:460 msgid "" "You are connected as 'root' with no password, which corresponds to the " "default MySQL privileged account. Your MySQL server is running with this " @@ -747,7 +753,7 @@ msgstr "" "открыт для вторжений. Вам следует исправить данную погрешность, установив " "пароль для пользователя 'root'." -#: index.php:470 +#: index.php:477 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -757,7 +763,7 @@ msgstr "" "func_overload. Для предотвращения возможной потери данных данный параметр " "должен быть выключен!" -#: index.php:485 +#: index.php:492 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -767,7 +773,7 @@ msgstr "" "mbstring phpMyAdmin не в состоянии производить корректное разбиение строк, " "что может привести к непредсказуемым результатам." -#: index.php:502 +#: index.php:509 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than " @@ -779,7 +785,7 @@ msgstr "" "длительность хранения cookie, определённая в phpMyAdmin. По этой причине " "сессия входа может закончиться быстрее установленной в phpMyAdmin." -#: index.php:521 +#: index.php:528 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -787,12 +793,12 @@ msgstr "" "Значение длительности хранения cookie меньше, чем определено в phpMyAdmin. " "По этой причине сессия входа завершится быстрее установленной в phpMyAdmin." -#: index.php:537 +#: index.php:544 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "В конфигурационном файле необходимо задать парольную фразу (blowfish_secret)." -#: index.php:550 +#: index.php:557 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. It is strongly recommended to remove it " @@ -805,7 +811,7 @@ msgstr "" "может быть скомпрометирована через свободный доступ к загрузке " "конфигурационного файла." -#: index.php:566 +#: index.php:573 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -814,13 +820,13 @@ msgstr "" "Хранилище конфигурации phpMyAdmin не полностью настроено, некоторые " "расширенные функции были отключены. %sДля определения причины%s. " -#: index.php:573 +#: index.php:580 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "Или перейдите на вкладку 'Операции' любой базы данных, чтобы настроить там." -#: index.php:619 +#: index.php:626 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -829,7 +835,7 @@ msgstr "" "Версия клиентской библиотеки MySQL %s отличается от версии установленного " "MySQL-сервера %s. Это может привести к некорректной работе." -#: index.php:647 +#: index.php:654 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -851,7 +857,7 @@ msgstr "Подтвердить" msgid "Do you really want to execute \"%s\"?" msgstr "Вы действительно хотите выполнить запрос \"%s\"?" -#: js/messages.php:45 libraries/mult_submits.lib.php:397 +#: js/messages.php:45 libraries/mult_submits.lib.php:402 msgid "You are about to DESTROY a complete database!" msgstr "База данных будет полностью УДАЛЕНА!" @@ -1008,7 +1014,7 @@ msgid "Save & close" msgstr "Сохранить и Закрыть" #: js/messages.php:109 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1551 prefs_manage.php:364 +#: libraries/insert_edit.lib.php:1558 prefs_manage.php:364 #: prefs_manage.php:375 msgid "Reset" msgstr "Сбросить" @@ -1066,10 +1072,10 @@ msgstr "Пожалуйста, выберите столбец(ы) для инд msgid "You have to add at least one column." msgstr "Необходимо добавить хотя бы одно поле." -#: js/messages.php:129 libraries/insert_edit.lib.php:1549 +#: js/messages.php:129 libraries/insert_edit.lib.php:1556 #: templates/columns_definitions/column_definitions_form.phtml:159 #: templates/table/index_form.phtml:237 -#: templates/table/relation/common_form.phtml:108 +#: templates/table/relation/common_form.phtml:127 msgid "Preview SQL" msgstr "Предпросмотр SQL" @@ -1112,8 +1118,8 @@ msgstr "Некорректное подтверждение пароля!" msgid "Removing Selected Users" msgstr "Удаление выбранных пользователей" -#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:461 -#: libraries/tracking.lib.php:831 +#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:471 +#: libraries/tracking.lib.php:841 msgid "Close" msgstr "Закрыть" @@ -1135,7 +1141,7 @@ msgstr "Шаблон удален." #. l10n: Other, small valued, queries #: js/messages.php:155 libraries/ServerStatusData.php:130 -#: libraries/server_status_queries.lib.php:148 +#: libraries/server_status_queries.lib.php:150 msgid "Other" msgstr "Другое" @@ -1302,7 +1308,7 @@ msgstr "Вопросы" msgid "Traffic" msgstr "Трафик" -#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4330 +#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4331 #: libraries/server_status_monitor.lib.php:258 msgid "Settings" msgstr "Настройки" @@ -1315,9 +1321,9 @@ msgstr "Добавить график к сетке" msgid "Please add at least one variable to the series!" msgstr "Пожалуйста, добавьте в серию хотя бы одну переменную!" -#: js/messages.php:216 libraries/DisplayResults.php:1477 +#: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1434,7 +1440,7 @@ msgstr "Изменить настройки" msgid "Current settings" msgstr "Текущие настройки" -#: js/messages.php:253 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:253 msgid "Chart title" msgstr "Заголовок графика" @@ -1523,21 +1529,21 @@ msgstr "Анализ…" msgid "Explain output" msgstr "Анализ результатов" -#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4326 +#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4327 #: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:396 #: libraries/rte/rte_list.lib.php:104 -#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:282 -#: libraries/tracking.lib.php:1623 +#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:284 +#: libraries/tracking.lib.php:1639 msgid "Status" msgstr "Состояние" -#: js/messages.php:289 js/messages.php:870 +#: js/messages.php:289 js/messages.php:862 #: libraries/plugins/export/ExportHtmlword.php:484 #: libraries/plugins/export/ExportOdt.php:600 #: libraries/plugins/export/ExportTexytext.php:445 #: libraries/plugins/export/PMA_ExportPdf.php:314 #: libraries/rte/rte_list.lib.php:93 -#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:239 +#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:243 msgid "Time" msgstr "Время" @@ -1622,10 +1628,10 @@ msgstr "" "изначальную конфигурацию…" #: js/messages.php:322 libraries/Menu.php:355 libraries/Menu.php:457 -#: libraries/Menu.php:578 libraries/Util.php:4329 libraries/Util.php:4344 -#: libraries/Util.php:4361 libraries/config/messages.inc.php:260 +#: libraries/Menu.php:578 libraries/Util.php:4330 libraries/Util.php:4345 +#: libraries/Util.php:4362 libraries/config/messages.inc.php:260 #: libraries/display_import.lib.php:108 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:241 +#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:241 #: setup/frames/menu.inc.php:26 msgid "Import" msgstr "Импорт" @@ -1682,7 +1688,13 @@ msgstr "Тест" msgid "Formatting SQL…" msgstr "Форматирование SQL…" -#: js/messages.php:346 libraries/server_variables.lib.php:159 +#: js/messages.php:343 +#, fuzzy +#| msgid "Bad parameters!" +msgid "No parameters found!" +msgstr "Ошибочные параметры!" + +#: js/messages.php:347 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 @@ -1693,59 +1705,59 @@ msgstr "Форматирование SQL…" msgid "Cancel" msgstr "Отменить" -#: js/messages.php:349 libraries/Header.php:457 +#: js/messages.php:350 libraries/Header.php:457 msgid "Page-related settings" msgstr "Настройки, касающиеся страницы" -#: js/messages.php:350 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:351 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Применить" -#: js/messages.php:353 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:354 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:124 msgid "Loading…" msgstr "Загрузка…" -#: js/messages.php:354 +#: js/messages.php:355 msgid "Request aborted!!" msgstr "Запрос отменён!" -#: js/messages.php:355 +#: js/messages.php:356 msgid "Processing request" msgstr "Обработка запроса" -#: js/messages.php:356 +#: js/messages.php:357 msgid "Request failed!!" msgstr "Запрос не выполнен!" -#: js/messages.php:357 +#: js/messages.php:358 msgid "Error in processing request" msgstr "Ошибка при обработке запроса" -#: js/messages.php:358 +#: js/messages.php:359 #, php-format msgid "Error code: %s" msgstr "Код ошибки: %s" -#: js/messages.php:359 +#: js/messages.php:360 #, php-format msgid "Error text: %s" msgstr "Текст ошибки: %s" -#: js/messages.php:360 libraries/db_common.inc.php:73 +#: js/messages.php:361 libraries/db_common.inc.php:73 #: libraries/db_table_exists.lib.php:33 libraries/server_databases.lib.php:462 msgid "No databases selected." msgstr "Ни одна база данных не выбрана." -#: js/messages.php:361 +#: js/messages.php:362 msgid "Dropping column" msgstr "Удаление столбца" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Adding primary key" msgstr "Добавление первичного ключа" -#: js/messages.php:363 +#: js/messages.php:364 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1755,165 +1767,165 @@ msgstr "Добавление первичного ключа" msgid "OK" msgstr "OK" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Click to dismiss this notification" msgstr "Кликните для сокрытия данного уведомления" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Renaming databases" msgstr "Переименование баз данных" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Copying database" msgstr "Копирование базы данных" -#: js/messages.php:369 +#: js/messages.php:370 msgid "Changing charset" msgstr "Смена кодировки" -#: js/messages.php:373 libraries/Util.php:3289 +#: js/messages.php:374 libraries/Util.php:3289 msgid "Enable foreign key checks" msgstr "Включить проверку внешних ключей" -#: js/messages.php:376 +#: js/messages.php:377 msgid "Failed to get real row count." msgstr "Не удалось получить реальное количество строк." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Searching" msgstr "Поиск" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide search results" msgstr "Скрыть результаты поиска" -#: js/messages.php:381 +#: js/messages.php:382 msgid "Show search results" msgstr "Отобразить результаты поиска" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Browsing" msgstr "Просмотр" -#: js/messages.php:383 +#: js/messages.php:384 msgid "Deleting" msgstr "Удаление" -#: js/messages.php:387 +#: js/messages.php:388 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Определение хранимой функции должно содержать выражение RETURN!" -#: js/messages.php:388 libraries/DisplayResults.php:4832 -#: libraries/DisplayResults.php:5091 libraries/Menu.php:347 -#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3709 -#: libraries/Util.php:3710 libraries/Util.php:4328 libraries/Util.php:4343 -#: libraries/Util.php:4360 libraries/config/messages.inc.php:254 +#: js/messages.php:389 libraries/DisplayResults.php:4850 +#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 +#: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 +#: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2448 -#: libraries/server_privileges.lib.php:2527 -#: libraries/server_privileges.lib.php:2873 -#: libraries/server_privileges.lib.php:3532 -#: libraries/server_status_monitor.lib.php:321 prefs_manage.php:306 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2875 +#: libraries/server_privileges.lib.php:3543 +#: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 msgid "Export" msgstr "Экспорт" -#: js/messages.php:391 libraries/rte/rte_routines.lib.php:742 +#: js/messages.php:392 libraries/rte/rte_routines.lib.php:742 msgid "ENUM/SET editor" msgstr "Редактор ENUM/SET" -#: js/messages.php:392 +#: js/messages.php:393 #, php-format msgid "Values for column %s" msgstr "Значения для столбца %s" -#: js/messages.php:393 +#: js/messages.php:394 msgid "Values for a new column" msgstr "Значения для новых столбцов" -#: js/messages.php:394 +#: js/messages.php:395 msgid "Enter each value in a separate field." msgstr "Вставьте каждое значение в отдельное поле." -#: js/messages.php:395 +#: js/messages.php:396 #, php-format msgid "Add %d value(s)" msgstr "Добавить %d значение(й)" -#: js/messages.php:399 +#: js/messages.php:400 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Замечание: если файл содержит множество таблиц, они будут объединены в одну." -#: js/messages.php:403 +#: js/messages.php:404 msgid "Hide query box" msgstr "Скрыть поле запроса" -#: js/messages.php:404 +#: js/messages.php:405 msgid "Show query box" msgstr "Отобразить поле запроса" -#: js/messages.php:405 libraries/Console.php:88 libraries/Console.php:217 -#: libraries/DisplayResults.php:3457 libraries/DisplayResults.php:4816 +#: js/messages.php:406 libraries/Console.php:88 libraries/Console.php:217 +#: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4834 #: libraries/Index.php:721 libraries/Util.php:727 libraries/Util.php:1238 -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:119 +#: libraries/server_user_groups.lib.php:121 #: libraries/server_variables.lib.php:242 #: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 msgid "Edit" msgstr "Изменить" -#: js/messages.php:406 libraries/Console.php:89 libraries/DbSearch.php:360 -#: libraries/DisplayResults.php:3526 libraries/DisplayResults.php:4800 +#: js/messages.php:407 libraries/Console.php:89 libraries/DbSearch.php:360 +#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4818 #: libraries/central_columns.lib.php:854 #: libraries/central_columns.lib.php:1200 libraries/display_export.lib.php:227 -#: libraries/server_user_groups.lib.php:129 -#: libraries/sql_query_form.lib.php:416 libraries/tracking.lib.php:480 +#: libraries/server_user_groups.lib.php:131 +#: libraries/sql_query_form.lib.php:417 libraries/tracking.lib.php:490 #: setup/frames/index.inc.php:187 setup/frames/index.inc.php:295 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Удалить" -#: js/messages.php:407 libraries/DisplayResults.php:915 -#: libraries/DisplayResults.php:923 +#: js/messages.php:408 libraries/DisplayResults.php:919 +#: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "Число %d не является правильным номером строки." -#: js/messages.php:408 -#: libraries/controllers/table/TableSearchController.php:435 -#: libraries/controllers/table/TableSearchController.php:920 -#: libraries/sql.lib.php:193 tbl_change.php:159 +#: js/messages.php:409 +#: libraries/controllers/table/TableSearchController.php:432 +#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "Обзор внешних значений" -#: js/messages.php:409 +#: js/messages.php:410 msgid "No auto-saved query" msgstr "Нет автосохраненных запросов" -#: js/messages.php:410 +#: js/messages.php:411 #, php-format msgid "Variable %d:" msgstr "Переменная %d:" -#: js/messages.php:413 libraries/normalization.lib.php:889 +#: js/messages.php:414 libraries/normalization.lib.php:889 msgid "Pick" msgstr "Выбрать" -#: js/messages.php:414 +#: js/messages.php:415 msgid "Column selector" msgstr "Селектор столбца" -#: js/messages.php:415 +#: js/messages.php:416 msgid "Search this list" msgstr "Искать в списке" -#: js/messages.php:417 +#: js/messages.php:418 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1923,15 +1935,15 @@ msgstr "" "столбцов для базы данных %s имеет столбцы, которые не присутствуют в текущей " "таблице." -#: js/messages.php:420 +#: js/messages.php:421 msgid "See more" msgstr "Больше информации" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Are you sure?" msgstr "Вы уверены?" -#: js/messages.php:423 +#: js/messages.php:424 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1939,51 +1951,51 @@ msgstr "" "Это действие может изменить некоторые определения столбцов.
Вы уверены, " "что хотите продолжить?" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "Продолжить" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "Добавить первичный ключ" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "Добавлен первичный ключ." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "Переход к следующему шагу…" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Первый этап нормализации таблицы '%s' завершён." -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "Конец шага" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "Второй этап нормализации (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Готово" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "Подтвердите частичные зависимости" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "Выбранные частичные зависимости показаны ниже:" -#: js/messages.php:440 +#: js/messages.php:441 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1991,20 +2003,20 @@ msgstr "" "Примечание: a, b -> d, f подразумевает, что значения столбцов a и b при " "объединении вместе могут определить значения столбца d и столбца f." -#: js/messages.php:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "Не выбраны зависимости!" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Покажите мне возможные частичные зависимости на основе данных в таблице" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "Скрыть список частичных зависимостей" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2012,167 +2024,167 @@ msgstr "" "Подождите, пожалуйста! Это может занять несколько секунд, в зависимости от " "объёма данных и количества столбцов таблицы." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "Шаг" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "Выполнены следующие действия:" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "DROP столбцов %s в таблице %s" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "Создать следующую таблицу" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "Третий этап нормализации (3NF)" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "Подтвердите транзитивные зависимости" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "Выбранные зависимости показаны ниже:" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "Не выбраны зависимости!" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Сохранить" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Скрыть параметры поиска" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Отобразить параметры поиска" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "Поиск в диапазоне" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "Максимум в столбце:" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "Минимум в столбце:" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "Минимальное значение:" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "Максимальное значение:" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "Скрыть параметры поиска и замены" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "Отобразить параметры поиска и замены" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "Каждая точка представляет строку данных." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "Задержание курсора над точкой отобразит ее название." -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Для увеличения, выберите часть диаграммы мышкой." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" "Кликните ссылку сброса увеличения для возвращения к исходному состоянию." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "Кликните точку данных для просмотра или редактирования строки данных." -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Можно изменить размер участка перетащив его вдоль нижнего правого угла." -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "Выберите два столбца" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "Выберите два различных столбца" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "Содержание точки данных" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Игнорировать" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Копировать" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Точка" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Линия" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Многоугольник" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Геометрия" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "Внутренний контур" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "Внешний контур" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "Вы хотите скопировать ключ шифрования?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "Ключ шифрования" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2180,24 +2192,24 @@ msgstr "" "Показывает, что были произведены изменения на странице. Для отмены изменений " "потребуется подтверждение" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Выберите ссылочный ключ" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Выберите внешний ключ" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "Выберите поле основного индекса (PRIMARY) или уникального индекса!" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Выбор отображаемого столбца" -#: js/messages.php:532 +#: js/messages.php:533 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 +2217,77 @@ msgstr "" "Вы не сохранили изменения в раскладке. Без сохранения, они будут потеряны. " "Продолжить?" -#: js/messages.php:535 +#: js/messages.php:536 msgid "Page name" msgstr "Название страницы" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Сохранить страницу" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Сохранить страницу как" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Открыть страницу" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "Удалить страницу" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Без названия" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "Выберите следующую страницу" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "Введите правильное имя страницы" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "Вы хотите записать изменения на текущую страницу?" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "Страница успешно удалена" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "Экспорт схемы связей" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Изменения сохранены" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "Добавить параметр для столбца \"%s\"." -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "создано %d объект(ов)." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Выполнить" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "Для отмены редактирования нажмите Esc." -#: js/messages.php:557 +#: js/messages.php:558 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 +2295,15 @@ msgstr "" "Вы отредактировали некоторые данные, но изменения не были сохранены. Вы " "уверены, что хотите покинуть данную страницу без сохранения данных?" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "Перетяните для изменения порядка сортировки." -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "Кликните для сортировки результатов по данному столбцу." -#: js/messages.php:563 +#: js/messages.php:564 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 +2313,26 @@ msgstr "" "переключения ASC/DESC.
- Удерживая Ctrl или Alt (для Mac: удерживая " "Shift и Option), кликните для удаления столбца из класса ORDER BY" -#: js/messages.php:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "Кликните для установки/снятия отметки." -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "Кликните дважды для копирования имени столбца." -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Кликните выпадающую стрелку
для переключения видимости столбца." -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Показать все" -#: js/messages.php:574 +#: js/messages.php:575 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,13 +2341,13 @@ msgstr "" "могут не работать функции связанные с редактированием сетки, выставления " "галочки, ссылки редактирования, копирования и удаления." -#: js/messages.php:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Пожалуйста, введите допустимую шестнадцатеричную строку. Допустимыми знаками " "являются 0-9, A-F." -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2343,130 +2355,97 @@ msgstr "" "Вы действительно хотите отобразить все строки? При большом количестве данных " "возможно отключение браузера." -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "Исходный размер" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "Отмена" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Прервано" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "Успех" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "Импортировать состояние" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Перетащите файлы сюда" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "Выберите базу данных" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Большинство значений можно отредактировать
дважды кликнув прямо на них." -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "Возможно редактировать большинство значений
кликнув прямо на них." -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "Перейти к ссылке:" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "Скопировать имя столбца." -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Для копирования имени столбца в буфер обмена, сделайте щелчок правой кнопкой " "мышки." -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Создать пароль" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Генерировать" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "Ещё" -#: js/messages.php:623 +#: js/messages.php:624 msgid "Show panel" msgstr "Раскрыть панель" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "Скрыть панель" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "Отображать скрытые пункты дерева навигации." -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "Связать с главной панелью" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "Отсоединить от основной панели" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" -"Для фильтрации по всем базам данных, нажмите Enter после ввода поискового " -"запроса" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" -"Для фильтрации по всем %s в базе данных, нажмите Enter после ввода " -"поискового запроса" - #: js/messages.php:632 -msgid "tables" -msgstr "таблицам" - -#: js/messages.php:633 -msgid "views" -msgstr "представлениям" - -#: js/messages.php:634 -msgid "procedures" -msgstr "процедурам" - -#: js/messages.php:635 -msgid "events" -msgstr "событиям" - -#: js/messages.php:636 -msgid "functions" -msgstr "функциям" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" "Запрошенная страница не найдена в истории, возможно, истекло время ее " "хранения." -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2476,49 +2455,49 @@ msgstr "" "Новейшая версия %s, выпущена %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", последняя стабильная версия:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "актуально" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "Создать представление" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "Отправить отчёт об ошибках" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "Отправить отчёт об ошибке" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" "Произошла фатальная ошибка JavaScript. Вы хотите отправить отчёт об ошибке?" -#: js/messages.php:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "Изменить настройки отчёта" -#: js/messages.php:660 +#: js/messages.php:652 msgid "Show report details" msgstr "Показать детали отчёта" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" "Ваш экспорт незавершён из-за ограничений времени выполнения на уровне PHP!" -#: js/messages.php:667 +#: js/messages.php:659 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2528,60 +2507,60 @@ msgstr "" "поля могут быть проигнорированы согласно значения переменной max_input_vars " "в PHP." -#: js/messages.php:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "На сервере обнаружены некоторые ошибки!" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "Пожалуйста, посмотрите вниз текущего окна." -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "Игнорировать всё" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "В соответствии с вашими настройками они заносятся в данное время, подождите, " "пожалуйста." -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "Выполнить запрос ещё раз?" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "Вы действительно хотите удалить эту закладку?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "В процессе получения информации по отладке SQL произошла ошибка." -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s запрос(ов) выполнено %s раз(а) за %s секунд(у/ы)." -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "%s аргумент(ов/а) передано" -#: js/messages.php:707 +#: js/messages.php:699 msgid "Show arguments" msgstr "Отобразить аргументы" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "Скрыть аргументы" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "Занято времени:" -#: js/messages.php:711 +#: js/messages.php:703 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 " @@ -2592,291 +2571,291 @@ msgstr "" "Safary, данная проблема возникает из-за включенного \"Private Mode Browsing" "\"." -#: js/messages.php:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "Предыдущий" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "Следующий" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Сегодня" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "Январь" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "Февраль" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "Март" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "Апрель" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Май" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "Июнь" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "Июль" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "Август" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "Сентябрь" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "Октябрь" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "Ноябрь" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "Декабрь" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Янв" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Фев" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Мар" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Апр" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "Май" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Июн" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Июл" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Авг" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Сен" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Окт" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Ноя" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Дек" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "Воскресенье" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "Понедельник" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "Вторник" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "Среда" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "Четверг" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "Пятница" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "Суббота" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "Вс" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Пн" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Вт" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Ср" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Чт" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Пт" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Сб" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "Вс" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "Пн" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "Вт" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "Ср" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "Чт" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "Пт" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "Сб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "Нед." #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "календарь-месяц-год" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Час" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Минута" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Секунда" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "Это обязательное поле" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "Пожалуйста, исправьте это поле" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "Введите правильный email" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "Пожалуйста, введите правильный URL" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "Введите правильную дату" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "Введите правильную дату ( ISO )" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "Пожалуйста, введите правильное числовое значение" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "Пожалуйста, введите правильный номер кредитной карты" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "Пожалуйста, введите только цифровые символы" @@ -2884,41 +2863,41 @@ msgstr "Пожалуйста, введите только цифровые си msgid "Please enter the same value again" msgstr "Введите то же значение еще раз" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "Пожалуйста, введите не более {0} символ(ов/а)" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "Пожалуйста, введите не минее {0} символ(ов/а)" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "Пожалуйста, введите значение длиной между {0} и {1} символами(ом)" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "Пожалуйста, введите значение между {0} и {1} символами(ом)" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "Пожалуйста, введите значение меньшее или равное {0}" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "Пожалуйста, введите значение, большее или равное {0}" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "Введите правильную дату или время" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "Пожалуйста, введите правильное значение HEX" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Ошибка" @@ -3009,11 +2988,12 @@ msgstr "Повторный запрос" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3056,7 +3036,7 @@ msgstr "В течение текущей сессии" msgid "Explain" msgstr "Анализировать" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Профилирование" @@ -3090,8 +3070,8 @@ msgid "History" msgstr "История" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3242,31 +3222,31 @@ msgstr "" msgid "Switch to dark theme" msgstr "Переключиться на темную тему" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" "Сервер не отвечает (либо локальный сокет сервера MySQL неверно настроен)." -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "Сервер не отвечает." -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "Пожалуйста, проверьте привилегии каталога содержащего базу данных." -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Детали…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "Ошибка при указании соединения для controluser в конфигурации." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3276,8 +3256,8 @@ msgstr "Ошибка при указании соединения для control msgid "Ascending" msgstr "По возрастанию" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3422,8 +3402,8 @@ msgstr[1] "%1$s соответствия в таблице %2$s msgstr[2] "%1$s соответствий в таблице %2$s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3465,121 +3445,122 @@ msgstr "Снять выделение" msgid "Inside column:" msgstr "В поле:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "Сохранить отредактированные данные" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "Восстановить порядок столбцов" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "Фильтровать строки" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "Поиск в таблице" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "Начало" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "Предыдущая" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "Следующая" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "Конец" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Все" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Количество строк:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Сортировать по индексу" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "Сокращенные тексты" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "Полные тексты" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Ссылочный ключ" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Display foreign key relationships" msgid "Display column for relations" msgstr "Отобразить связи внешних ключей" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "Показать бинарные данные" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "Показать BLOB содержимое" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "Скрыть преобразование" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "Текст (WKT)" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "Бинарный (WKB)" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "Строка была удалена." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Завершить" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Может быть приблизительно. Смотрите [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "SQL-запрос успешно выполнен." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3588,64 +3569,64 @@ msgstr "" "Данное представление имеет, по меньшей мере, указанное количество строк. " "Пожалуйста, обратитесь к %sдокументации%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "Отображение строк %1s - %2s" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d всего, %2$d в запросе" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "%d всего" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "Запрос занял %01.4f сек." -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "С отмеченными:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 msgid "Check all" msgstr "Отметить все" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Версия для печати" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Использование результатов запроса" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Отобразить график" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "Визуализация GIS данных" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "Связь не найдена!" @@ -3745,19 +3726,19 @@ msgstr "Индекс не определен!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Индексы" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3766,24 +3747,24 @@ msgid "Action" msgstr "Действие" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Имя индекса" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Уникальный" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Упакован" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Уникальных элементов" @@ -3791,8 +3772,8 @@ msgstr "Уникальных элементов" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3802,8 +3783,8 @@ msgid "Collation" msgstr "Сравнение" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3819,15 +3800,15 @@ msgstr "Первичный ключ был удален." msgid "Index %s has been dropped." msgstr "Индекс %s был удален." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Удалить" @@ -3864,12 +3845,13 @@ msgstr "Представление" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3877,7 +3859,7 @@ msgstr "Таблица" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3886,8 +3868,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3895,41 +3877,41 @@ msgid "Search" msgstr "Поиск" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Вставить" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Привилегии" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Операции" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Слежение" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3940,16 +3922,16 @@ msgstr "Триггеры" msgid "Database seems to be empty!" msgstr "Пустая база данных!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Запрос по шаблону" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Процедуры" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3957,20 +3939,20 @@ msgstr "Процедуры" msgid "Events" msgstr "События" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Дизайнер" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "Центральные столбцы" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Базы данных" @@ -3979,33 +3961,33 @@ msgid "User accounts" msgstr "Учетные записи пользователей" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Бинарный журнал" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Репликация" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Переменные" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Кодировки" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Типы таблиц" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "Расширения" @@ -4307,7 +4289,7 @@ msgstr "Невозможно переименовать индекс в PRIMARY! msgid "No index parts defined!" msgstr "Части индекса не определены!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Ошибка создания внешнего ключа на %1$s (проверьте типы данных)" @@ -4785,37 +4767,37 @@ msgstr "Работа параметра \"%s\" подвержена ошибке msgid "Click to toggle" msgstr "Кликните для переключения" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Обзор вашего компьютера:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Выберите из каталога загрузки сервера %s:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Установленный каталог загрузки не доступен." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "Файлы для загрузки отсутствуют!" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Очистить" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "Выполнить" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Печать" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "Пользователи" @@ -4977,8 +4959,8 @@ msgid "Add new column" msgstr "Добавить столбец" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5048,19 +5030,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "Необходимо обновить %s до версии %s или выше." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "Ошибка: несоответствие токена" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "попытка перезаписи GLOBALS" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "возможная уязвимость" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "определена числовая клавиша" @@ -5914,7 +5896,7 @@ msgid "Remember file name template" msgstr "Запомнить шаблон имени файла" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Добавить AUTO_INCREMENT" @@ -5954,7 +5936,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Добавить %s" @@ -7675,7 +7657,7 @@ msgid "" msgstr "" "Определяет будет ли форма запроса оставаться на экране после его отправки." -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "Оставить поле запроса" @@ -7985,103 +7967,33 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Текст OpenDocument" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "Список избранного полностью заполнен!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Таблица %s была очищена." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "Представление %s было удалено." -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "Таблица %s была удалена." -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "Список избранного полностью заполнен!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "неизвестно" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "Имя '%s' является зарезервированным словом MySQL." -msgstr[1] "Имена '%s' являются зарезервированными словами MySQL." -msgstr[2] "Имена '%s' являются зарезервированными словами MySQL." - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "Не выбран столбец." - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "Поля были успешно перемещены." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "Таблица %1$s была успешно изменена." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "Ошибка запроса" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Изменить" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Индекс" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "Пространственный" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Полнотекстовый" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "Уникальные значения" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8095,6 +8007,14 @@ msgstr "В таблице отсутствуют числовые столбцы msgid "No data to display" msgstr "Данные не найдены" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "Таблица %1$s была успешно изменена." + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "Отображаемый столбец был успешно обновлен." @@ -8103,19 +8023,81 @@ msgstr "Отображаемый столбец был успешно обнов msgid "Internal relations were successfully updated." msgstr "Внутренние связи были успешно обновлены." -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "Поиск в таблице" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "Поиск с приближением" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Найти и заменить" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "Имя '%s' является зарезервированным словом MySQL." +msgstr[1] "Имена '%s' являются зарезервированными словами MySQL." +msgstr[2] "Имена '%s' являются зарезервированными словами MySQL." + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "Не выбран столбец." + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "Поля были успешно перемещены." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "Ошибка запроса" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Изменить" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Индекс" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "Пространственный" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Полнотекстовый" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "Уникальные значения" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8125,7 +8107,7 @@ msgstr "Расширение %s не найдено. Пожалуйста, пр msgid "possible deep recursion attack" msgstr "возможная атака глубокой рекурсии" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Нет изменений" @@ -8197,7 +8179,7 @@ msgstr "Создать" msgid "Create database:" msgstr "Создать базу данных:" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Нет привилегий" @@ -8932,64 +8914,64 @@ msgid "Dump has been saved to file %s." msgstr "Дамп был сохранен в файл %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL вернула пустой результат (т.е. ноль строк)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "[Произошел откат.]" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Следующие структуры были созданы, либо изменены. Вы можете:" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "Просмотреть детали структуры, нажав на её имя." -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Изменить любую настройку, нажав на соответствующую ссылку \"Параметры\"." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "Отредактировать структуру, перейдя по ссылке \"Структура\"." -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "Перейти к базе данных: %s" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "Отредактировать настройки для %s" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "Перейти к таблице: %s" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "Структура %s" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "Перейти к представлению (VIEW): %s" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "Можно эмулировать только запросы UPDATE и DELETE с одной таблицей." -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8997,7 +8979,7 @@ msgstr "" "Только для INSERT, UPDATE, DELETE и REPLACE SQL запросов, содержащих " "транзакционные таблицы движка, может быть произведен откат." -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "Создать индекс для  %s столбца/ов" @@ -9020,66 +9002,66 @@ msgstr "Функция" msgid "Binary" msgstr "Двоичный" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "Из-за большой длины
изменение поля невозможно." -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Двоичные данные - не редактируются" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Или" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "Из каталога загрузки:" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "Редактировать/Вставить" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "Продолжить вставку с %s строки" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "и затем" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Вставить запись" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "Вставить в виде новой строки и игнорировать появляющиеся ошибки" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "Отобразить запрос вставки" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Вернуться на предыдущую страницу" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Добавить новую запись" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Вернуться к данной странице" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Редактировать следующую строку" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9089,7 +9071,7 @@ msgstr "" "Для перемещения между полями значения, используйте клавишу TAB, либо CTRL" "+клавиши со стрелками - для свободного перемещения" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9101,11 +9083,11 @@ msgstr "" msgid "Value" msgstr "Значение" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "Отображает SQL-запрос" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "Идентификатор вставленной строки: %1$d" @@ -9121,35 +9103,35 @@ msgstr "Нет" msgid "Convert to Kana" msgstr "Конвертировать в Кану" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Успех!" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "Заменить префикс таблицы:" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "Копировать таблицу с префиксом:" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "От" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "До" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "Добавить префикс таблицы:" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "Добавить префикс" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "Вы действительно хотите выполнить данный запрос?" @@ -9367,8 +9349,8 @@ msgstr "Процедуры:" msgid "Views:" msgstr "Представления:" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Показать" @@ -9407,18 +9389,15 @@ msgstr[1] "найдено %s результата" msgstr[2] "найдено %s результатов" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" -msgstr "Фильтровать базы данных по имени или регулярному выражению" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 msgid "Clear fast filter" msgstr "Очистить быстрый фильтр" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "Фильтровать по имени или регулярному выражению" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "Свернуть все" @@ -9840,7 +9819,7 @@ msgstr "Переименовать базу данных в" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9851,7 +9830,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Настроить привилегии" @@ -9869,18 +9848,18 @@ msgstr "Удалить базу данных" msgid "Drop the database (DROP)" msgstr "Удалить базу данных (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Только структура" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Структура и данные" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Только данные" @@ -9892,7 +9871,7 @@ msgstr "Скопировать базу данных в" msgid "CREATE DATABASE before copying" msgstr "Перед копированием создать базу данных (CREATE DATABASE)" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Добавить ограничения" @@ -9934,161 +9913,161 @@ msgstr "Тип таблиц" msgid "Change all column collations" msgstr "Сделать все столбцы atomic" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Скопировать таблицу в (таблицу базы данных.)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Переключиться на скопированную таблицу" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Обслуживание таблицы" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Анализ таблицы" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Проверить таблицу" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Проверить таблицу" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Дефрагментировать таблицу" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "Обновлен кеш таблицы %s." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "Обновить кеш таблицы (FLUSH)" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Оптимизировать таблицу" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Восстановить таблицу" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "Удалить данные или таблицу" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "Очистить таблицу (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "Удалить таблицу (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Анализ" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Проверка" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Оптимизация" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Перестройка" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Исправление" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 msgid "Coalesce" msgstr "Объединить" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "Обслуживание разделов" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "Раздел %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "Удалить разделение" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Проверить целостность данных:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Не возможно переместить таблицу саму в себя!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Невозможно скопировать таблицу саму в себя!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Таблица %s была перемещена в %s." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Таблица %s была скопирована в %s." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "Таблица %s была перемещена в %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "Таблица %s была скопирована в %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Не задано имя таблицы!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "Для этого формата нет настраиваемых параметров" @@ -10260,7 +10239,7 @@ msgstr "Параметры сохранения данных" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Дамп данных таблицы" @@ -10284,21 +10263,21 @@ msgstr "Определение" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Структура таблицы" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Структура для представления" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Дублирующая структура для представления" @@ -10388,7 +10367,7 @@ msgid "Database:" msgstr "База данных:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "Данные:" @@ -10492,7 +10471,7 @@ msgid "Data creation options" msgstr "Параметры создания данных" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "Очистить таблицу перед добавлением данных" @@ -10577,8 +10556,8 @@ msgstr "Похоже, что база данных использует проц #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "экспорт псевдонима не может надёжно работать во всех случаях." @@ -10586,81 +10565,81 @@ msgstr "экспорт псевдонима не может надёжно ра msgid "It appears your database uses functions;" msgstr "Похоже, что база данных использует функции;" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 msgid "Metadata" msgstr "Метаданные" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "Метаданные для %s" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Создание:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Последнее обновление:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Последняя проверка:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "используется" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "Похоже, что база данных использует представления;" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Ограничения внешнего ключа сохраненных таблиц" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Ограничения внешнего ключа таблицы" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "Индексы сохранённых таблиц" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "Индексы таблицы" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT для сохранённых таблиц" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT для таблицы" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "MIME-ТИПЫ ТАБЛИЦЫ" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "СВЯЗИ ТАБЛИЦЫ" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "Похоже, что ваша таблица использует триггеры;" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "Структура для представления %s экспортирована как таблица" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "Ошибка считывания данных:" @@ -10902,9 +10881,9 @@ msgstr "Cхема связей" msgid "Table of contents" msgstr "Содержание" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Дополнительно" @@ -11137,47 +11116,47 @@ msgstr "Форматирует текст в виде JSON с подсветко msgid "Formats text as XML with syntax highlighting." msgstr "Форматирует текст в виде XML с подсветкой синтаксиса." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Ошибка: Связь уже существует." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "Добавлена связь FOREIGN KEY." -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Ошибка: связь внешнего ключа невозможно добавить!" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "Ошибка: отсутствует индекс в столбце." -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "Ошибка: Функция связи отключена!" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "Добавлена внутренняя связь." -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 msgid "Error: Internal relation could not be added!" msgstr "Ошибка: внутреннюю связь невозможно добавить!" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 msgid "FOREIGN KEY relation has been removed." msgstr "Связь внешнего ключа была удалена." -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Ошибка: связь внешнего ключа невозможно удалить!" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 msgid "Error: Internal relation could not be removed!" msgstr "Ошибка: внутреннюю связь невозможно удалить!" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "Внутренняя связь удалена." @@ -11223,70 +11202,70 @@ msgid "Please see the documentation on how to update your column_info table. " msgstr "" "Необходимо обновить таблицу column_info. Детали смотрите в документации. " -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Созданные закладки" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "История SQL-запросов" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "Недавно использованные таблицы" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 msgid "Persistent favorite tables" msgstr "Постоянно используемые таблицы избранных" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "Настройки интерфейса часто используемых таблиц" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "Пользовательские настройки" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "Настраиваемые меню" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "Скрыть/показать пункты навигации" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "Сохраняются Query-By-Example" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "Управление центральным списком столбцов" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "Запоминание настроек дизайна" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 msgid "Saving export templates" msgstr "Сохранение шаблонов экспорта" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "Шаги необходимые для установки дополнительных функций:" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" "Создайте необходимые таблицы с помощью скрипта %screate_tables.sql." -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "Создайте пользователя pma и предоставьте доступ к этим таблицам." -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -11294,23 +11273,23 @@ msgstr "" "Подключите дополнительные функции в конфигурационном файле (config.inc." "php), начните с примера в config.sample.inc.php." -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Перезайдите в phpMyAdmin, чтобы загрузить обновленный конфигурационный файл." -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "нет описания" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11319,13 +11298,13 @@ msgstr "" "%sСоздать%s базу данных с именем 'phpmyadmin' и настроить там хранение " "конфигурации phpMyAdmin." -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "%sСоздать%s хранилище конфигурации phpMyAdmin в текущей базе данных." -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "%sСоздать%s отсутствующие таблицы хранения конфигурации phpMyAdmin." @@ -11517,8 +11496,8 @@ msgstr "Имя пользователя:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Имя пользователя" @@ -11526,7 +11505,7 @@ msgstr "Имя пользователя" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Пароль" @@ -12155,7 +12134,7 @@ msgstr[2] "%1$d баз данных было успешно удалено." msgid "Plugin" msgstr "Расширение" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Версия" @@ -12163,98 +12142,94 @@ msgstr "Версия" msgid "Author" msgstr "Автор" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "Лицензия" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "отключено" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Нет привилегий." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Содержит все привилегии, за исключением GRANT." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Разрешает выборку данных." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Разрешает вставку и замену данных." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Разрешает изменение данных." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Разрешает удаление данных." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Разрешает создание новых баз данных и таблиц." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Разрешает удаление баз данных и таблиц." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Разрешает перезагрузку настроек сервера и очистку его кешей." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Разрешает остановку сервера." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "Разрешает просмотр процессов всех пользователей." #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "Разрешает импорт и экспорт данных в файлы." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "Не доступно в данной версии MySQL." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Разрешает создание и удаление индексов." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Разрешает изменение структуры существующих таблиц." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Разрешает доступ к полному списку баз данных." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12266,22 +12241,22 @@ msgstr "" "пользователей)." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Разрешает создание временных таблиц." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Разрешает блокировку таблиц для текущего потока." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Необходимо для подчиненных серверов при репликации." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Разрешает запрашивать местонахождение головного и подчиненных серверов." @@ -12289,44 +12264,44 @@ msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Разрешает создание новых представлений (CREATE VIEW)." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "Разрешает настройку отложенных событий." #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "Разрешает создание и удаление триггеров." #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Разрешает вывод запроса создающего представление (SHOW CREATE VIEW)." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Разрешает создание хранимых процедур." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Разрешает изменение и удаление хранимых процедур." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Разрешает создание, удаление и переименование учетных записей пользователей." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Разрешает выполнение хранимых процедур." @@ -12338,8 +12313,8 @@ msgstr "Нет" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Группа пользователей" @@ -12382,14 +12357,14 @@ msgstr "" "Замечание: Установка значения параметров в 0 (ноль), снимает ограничения." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Максимальное количество запросов, которые пользователь может отправить в " "течение часа." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12398,21 +12373,21 @@ msgstr "" "данных, которые пользователь может выполнить в течение часа." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Максимальное количество новых подключений, которые пользователь может " "установить в течение часа." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "Максимальное количество одновременных подключений одного пользователя." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12420,7 +12395,7 @@ msgid "Routine" msgstr "Процедуры" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12441,14 +12416,14 @@ msgstr "Разрешает выполнение хранимых процеду #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Привилегии уровня таблицы" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Примечание: типы привилегий MySQL отображаются по-английски." @@ -12458,7 +12433,7 @@ msgid "Administration" msgstr "Администрирование" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Глобальные привилегии" @@ -12467,15 +12442,15 @@ msgid "Global" msgstr "Глобальный" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Привилегии уровня базы данных" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Разрешает создание новых таблиц." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Разрешает удаление таблиц." @@ -12498,7 +12473,7 @@ msgid "Native MySQL Authentication" msgstr "Авторизация с помощью cookie" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Информация учётной записи" @@ -12523,8 +12498,8 @@ msgstr "Имя хоста:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 msgid "Host name" msgstr "Имя хоста" @@ -12542,206 +12517,206 @@ msgstr "Модуль аутентификации" msgid "Password Hashing Method" msgstr "Хеширование пароля:" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "Пароль для %s был успешно изменён." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Вы отменили привилегии для %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 msgid "Add user account" msgstr "Добавить учетную запись пользователя" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 msgid "Database for user account" msgstr "База данных для учетных записей пользователей" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" "Создать базу данных с таким же именем и предоставить на неё все привилегии." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Предоставить все привилегии на то, что подпадает под шаблон (имя пользователя" "\\_%)." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Предоставить все привилегии на базу данных \"%s\"." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Пользователи с правами доступа к \"%s\"" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "Пользователь был добавлен." -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Предоставить" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "Недостаточно прав для просмотра пользователей." -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "Пользователь не найден." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Любой" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "глобальный" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "уровень базы данных" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "шаблон" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "уровень таблицы" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 msgid "Edit privileges" msgstr "Редактировать привилегии" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Отменить" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "Редактировать группу пользователей" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… сохранить предыдущего." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… удалить предыдущего из таблиц пользователей." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… отменить все активные привилегии предыдущего и затем удалить его." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… удалить предыдущего из таблиц пользователей и перезагрузить привилегии." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "" "Изменить регистрационные данные / Копировать учетную запись пользователя" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "Создать новую учетную запись пользователя с такими же привилегиями и …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Привилегии уровня столбца" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 msgid "Remove selected user accounts" msgstr "Удалить выбранные учетные записи пользователей" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Отменить все активные привилегии пользователей и затем удалить их." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "Удалить базы данных, имена которых совпадают с именами пользователей." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "Не выбраны пользователи, подлежащие удалению!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Перезагрузка привилегий" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Выбранные пользователи были успешно удалены." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Вы обновили привилегии для %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "Удаление %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Привилегии были успешно перезагружены." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "Пользователь %s уже существует!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "Привилегии для %s" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Пользователь" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "Новый" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 msgid "Edit privileges:" msgstr "Редактировать привилегии:" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "Учетная запись пользователя" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12749,18 +12724,18 @@ msgstr "" "Примечание: Вы пытаетесь изменить привилегии пользователя, под именем " "которого вы в настоящее время вошли в систему." -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "Обзор учетных записей пользователей" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12773,7 +12748,7 @@ msgstr "" "отличаться от привилегий, используемых сервером, если они были изменены " "вручную. В этом случае необходимо %sперезагрузить привилегии%s." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -12792,11 +12767,11 @@ msgstr "" "отличаться от привилегий, используемых сервером, если они были изменены " "вручную. В этом случае необходимо %sперезагрузить привилегии%s." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "Выбранный пользователь не найден в таблице привилегий." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Вы добавили нового пользователя." @@ -13052,24 +13027,24 @@ msgstr "Инструкции/Настройки" msgid "Done dragging (rearranging) charts" msgstr "Завершено перетягивание графиков" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "Включить перетягивание графиков" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "Интервал обновления" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "Столбцы графика" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "Расположение графика" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -13077,7 +13052,7 @@ msgstr "" "Расположения графиков сохраняются в локальном хранилище браузера. При " "наличии сложной настройки вы можете экспортировать её." -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "Восстановить изначальное значение" @@ -13133,7 +13108,7 @@ msgid "Statements" msgstr "Параметры" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "#" @@ -13158,7 +13133,7 @@ msgstr "Выводить неформатированные значения" msgid "Related links:" msgstr "Связанные ссылки:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -13166,11 +13141,11 @@ msgstr "" "Количество прерванных соединений в связи с потерей связи и неверно закрытым " "соединением клиента." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Количество неудавшихся попыток соединения с сервером MySQL." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13180,16 +13155,16 @@ msgstr "" "значение binlog_cache_size, вследствие чего содержащиеся в них SQL-выражения " "были сохранены во временном файле." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "Количество транзакций, использовавших кэш бинарного журнала." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Количество попыток соединения (успешных либо нет) с сервером MySQL." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13201,11 +13176,11 @@ msgstr "" "велико, следует увеличить значение переменной tmp_table_size, чтобы " "временные таблицы располагались в памяти, а не на жестком диске." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "Количество временных файлов, созданных MySQL сервером (mysqld)." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13213,7 +13188,7 @@ msgstr "" "Количество временных таблиц в памяти, созданных сервером автоматически в " "процессе выполнения SQL-выражений." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13221,7 +13196,7 @@ msgstr "" "Количество ошибок, возникших в процессе обработки запросов INSERT DELAYED, " "например, из-за дублирования ключей." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13229,25 +13204,25 @@ msgstr "" "Количество потоков запросов INSERT DELAYED. Каждой таблице, для которой " "использован INSERT DELAYED, предоставляется свой поток." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" "Количество строк, записанных в режиме отложенной вставки данных (INSERT " "DELAYED)." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "Количество выполненных команд FLUSH." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "Количество внутренних команд COMMIT." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "Количество запросов на удаление строки из таблицы." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13257,7 +13232,7 @@ msgstr "" "определённым именем. Этот процесс называется обнаружением. Handler_discover " "- число обнаружений таблиц." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13268,7 +13243,7 @@ msgstr "" "индекса. Например, SELECT col1 FROM foo, при условии, что col1 " "проиндексирован." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -13277,7 +13252,7 @@ msgstr "" "переменной говорит о том, что запросы и таблицы проиндексированы надлежащим " "образом." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13287,7 +13262,7 @@ msgstr "" "индексов. Значение увеличивается при запросе индексного столбца с " "ограничением по размеру или при сканировании индекса." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13295,7 +13270,7 @@ msgstr "" "Количество запросов на чтение предыдущей строки в порядке расположения " "индексов. Обычно используется для оптимизации: ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13308,7 +13283,7 @@ msgstr "" "требующих полного сканирования таблиц, или имеются объединения, " "неиспользующие индексы надлежащим образом." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13320,37 +13295,37 @@ msgstr "" "это означает, что таблицы проиндексированы ненадлежащим образом или запросы " "не используют преимущества индексов." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "Количество внутренних команд ROLLBACK." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "Количество запросов на обновление строки в таблице." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "Количество запросов на вставку строки в таблицу." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "Количество страниц, содержащих данные (\"грязные\" или \"чистые\")." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "Текущее количество \"грязных\" страниц." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Количество страниц буферного пула, для которых был осуществлен процесс " "очистки (FLUSH)." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "Количество свободных страниц." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13360,7 +13335,7 @@ msgstr "" "страницами осуществляется процесс чтения или записи либо они не могут быть " "очищены или удалены по иной причине." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13372,11 +13347,11 @@ msgstr "" "Значение можно рассчитать по формуле: Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "Общий размер буферного пула (в страницах)." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13384,7 +13359,7 @@ msgstr "" "Количество \"случайных\" опережающих чтений, инициированных InnoDB. Это " "происходит, когда запрос сканирует большую часть таблицы в случайном порядке." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13393,11 +13368,11 @@ msgstr "" "происходит, когда InnoDB выполняет полное последовательное сканирование " "таблицы." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "Количество логических операций чтения, выполненных InnoDB." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13405,7 +13380,7 @@ msgstr "" "Количество логических операций чтения, которые InnoDB не смог выполнить из " "буферного пула и использовал постраничное чтение." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13419,87 +13394,87 @@ msgstr "" "ожиданий. Если размер буферного пула был установлен правильно, то значение " "будет небольшим." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "Количество операций записи, выполненных в буферный пул InnoDB." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "Количество операций fsync() на данный момент." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "Текущее количество незавершенных операций fsync()." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "Текущее количество незавершенных операций чтения." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "Текущее количество незавершенных операций записи." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "Объём прочитанных на данный момент данных, в байтах." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "Общее количество операций чтения данных." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "Общее количество операций записи данных." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "Объём записанных на данный момент данных, в байтах." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Количество страниц, записанных при использовании операций двойной записи." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "Количество выполненных операций двойной записи." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" "Количество ожиданий очистки журнального буфера вследствие малого его размера." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "Количество запросов на запись в журнал." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "Количество физических операций записи в файл журнала." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "Количество операций записи в файл журнала с помощью fsync()." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "Количество незавершенных fsyncs в файл журнала." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "Количество незавершенных операций записи в файл журнала." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "Объём данных в байтах, записанных в файл журнала." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "Количество созданных страниц." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -13508,51 +13483,51 @@ msgstr "" "значения приводятся в страницах, но зная размер страницы, можно перевести " "эти значения в байты." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "Количество прочитанных страниц." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "Количество записанных страниц." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "Текущее количество ожиданий блокировок строк." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Среднее время ожидания блокировки строки, в миллисекундах." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Общее время ожидания блокировок строк, в миллисекундах." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Максимальное время ожидания блокировки строки, в миллисекундах." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "Общее количество ожиданий блокировки строк." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "Количество удаленных из таблиц InnoDB строк." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "Количество добавленных в таблицы InnoDB строк." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "Количество прочитанных из таблиц InnoDB строк." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "Количество обновленных в таблицах InnoDB строк." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13560,7 +13535,7 @@ msgstr "" "Количество блоков в кэше индекса, которые изменены, но ещё не записаны на " "диск. Данный параметр также известен как Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -13568,7 +13543,7 @@ msgstr "" "Количество неиспользуемых блоков в кэше индекса. Данный параметр позволяет " "определить насколько полно используется кэш индекса." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13577,15 +13552,15 @@ msgstr "" "Количество используемых блоков в кэше индекса. Данное значение - " "максимальное количество блоков, использованных одновременно." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "Процент использования кэша ключей (подсчитанное значение)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "Количество запросов на чтение блока из кэша индексов." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13596,7 +13571,7 @@ msgstr "" "Коэффициент неудачных обращений к кэшу может быть рассчитан как: Key_reads/" "Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13604,22 +13579,22 @@ msgstr "" "Неудачные обращения к кэшу ключей - отношение физических операций чтения к " "запросам на чтение (подсчитанное значение)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "Количество запросов на запись блока в кэш индекса." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "Количество физических операций записи блока индексов на диск." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Процентное соотношение физических операций записи к запросам на запись " "(подсчитанное значение)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13630,7 +13605,7 @@ msgstr "" "одного запроса. Изначальное нулевое значение означает, что запрос ещё не был " "скомпилирован." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13638,11 +13613,11 @@ msgstr "" "Максимальное количество использованных одновременно соединений с момента " "запуска сервера." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Количество ожидающих вставки строк в запросах INSERT DELAYED." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13650,20 +13625,20 @@ msgstr "" "Количество открытых таблиц. При большом значении переменной рекомендуется " "увеличить размер кэша таблиц." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "Количество открытых файлов." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Количество открытых потоков (в основном применяется для протоколирования)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "Количество открытых таблиц." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13672,19 +13647,19 @@ msgstr "" "Количество свободных блоков памяти в кэше запроса. Большое значение может " "указывать на фрагментацию и решается выполнением запроса FLUSH QUERY CACHE." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "Объём свободной памяти для кэша запросов." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "Количество \"попаданий\" в кэше запросов." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "Количество добавленных в кэш запросов." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13697,7 +13672,7 @@ msgstr "" "время страницы заменяются новыми) при принятии решения об удалении запроса " "из кэша." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13705,19 +13680,19 @@ msgstr "" "Количество некэшированных запросов (некэшируемых или с установленным " "query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "Количество зарегистрированных в кэше запросов." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "Количество блоков памяти в кэше запросов." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "Состояние отказоустойчивой репликации (пока не реализовано)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -13725,13 +13700,13 @@ msgstr "" "Количество запросов-объединений без использования индексов. Если значение не " "равно 0, рекомендуется проверить индексы таблиц." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" "Количество запросов-объединений с использованием поиска по диапазону в " "таблице, на которую делается ссылка." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -13740,7 +13715,7 @@ msgstr "" "индекса после каждой строки. (Если значение не равно 0, рекомендуется " "проверить индексы таблиц.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13748,17 +13723,17 @@ msgstr "" "Количество запросов-объединений с использованием диапазонов в первой " "таблице. (Некритичное значение, даже если оно является большим.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "Количество запросов-объединений с полным сканированием первой таблицы." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Количество открытых подчинённым SQL потоком в настоящий момент временных " "таблиц." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13766,13 +13741,13 @@ msgstr "" "Количество повторов транзакций репликации подчинённым потоком с момента " "запуска." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Присваивается значение ON, если данный сервер - подчинённый, подключенный к " "главному." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -13780,12 +13755,12 @@ msgstr "" "Количество потоков, на создание которых потребовалось более, чем " "slow_launch_time секунд." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Количество запросов, выполнявшихся более long_query_time секунд." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13794,26 +13769,26 @@ msgstr "" "Количество выполненных алгоритмом сортировки проходов. При большом значении " "следует увеличить значение переменной sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "Количество операций сортировки с использованием диапазонов." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "Количество отсортированных строк." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" "Количество операций сортировки с использованием полного сканирования таблицы." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" "Количество запросов на блокировку таблицы, которые были удовлетворены " "немедленно." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13825,7 +13800,7 @@ msgstr "" "производительностью, необходимо сначала оптимизировать свои запросы, а затем " "разбить свою таблицу (или таблицы) или использовать репликацию." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13835,11 +13810,11 @@ msgstr "" "вычислить по формуле Threads_created/Connections. Если это значение окрашено " "в красный цвет - вам следует увеличить thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "Количество открытых текущих соединений." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13851,11 +13826,11 @@ msgstr "" "thread_cache_size. (Это не даст существенного выигрыша в производительности, " "при хорошей реализации потоков.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "Соотношение обращений в кеш потока (подсчитанное значение)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "Количество процессов, находящихся в активном состоянии." @@ -13864,57 +13839,57 @@ msgstr "Количество процессов, находящихся в ак msgid "Users of '%s' user group" msgstr "Пользователи группы пользователей '%s'" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "Не найдены пользователи, принадлежащие этой группе." -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "Группы пользователей" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "Вкладки уровня сервера" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "Вкладки уровня базы данных" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "Вкладки уровня таблицы" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "Просмотреть пользователей" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "Добавить группу пользователей" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "Редактировать группу пользователей: '%s'" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "Назначения меню группы пользователей" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "Имя группы:" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "Вкладки уровня сервера" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "Вкладки уровня базы данных" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "Вкладки уровня таблицы" @@ -13976,21 +13951,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "Нераспознанный тип данных." -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "Неожиданная закрывающая скобка." - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "Псевдоним был найден ранее." -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "Неожиданная точка." -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 msgid "An alias was expected." msgstr "Ожидался псевдоним." @@ -14046,105 +14017,105 @@ msgstr "Ожидалась закрывающая кавычка %1$s." msgid "Variable name was expected." msgstr "Ожидалось имя переменной." -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 msgid "Unexpected beginning of statement." msgstr "Неожиданное начало выражения." -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "Неожиданный токен." -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "Неизвестное ключевое слово." -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "Ожидалось имя сущности." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 msgid "At least one column definition was expected." msgstr "Ожидалось объявление, по крайней мере, одного столбца." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "Ожидалось ключевое слово \"RETURNS\"." -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "Детальный профиль" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "Порядок сортировки" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "Состояние" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "Итоги по состоянию" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "Общее время" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "% времени" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "Вызовы" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "ø время" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Создание закладки" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "Метка:" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Доступна для всех пользователей" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "Закладка не создана!" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Для обзора данных использован запрос из закладки \"%s\"." -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "Отображает как PHP-код" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " @@ -14153,7 +14124,7 @@ msgstr "" "Данное выделение не содержит уникального столбца. Изменение сетки, " "выставление галочки, редактирование, копирование и удаление невозможно. %s" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " @@ -14163,7 +14134,7 @@ msgstr "" "редактирование, копирование и удаление могут привести к нежелательному " "поведению. %s" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблемы с индексами таблицы `%s`" @@ -14191,27 +14162,27 @@ msgstr "Получить автосохранённый запрос" msgid "Bind parameters" msgstr "Связать параметры" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "Создание закладки SQL запроса:" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Заменить существующую с таким же именем" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Разделитель" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Показать данный запрос снова" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "Откат после завершения" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Просмотр" @@ -14255,112 +14226,112 @@ msgstr "Выключить слежение за %s" msgid "Deactivate now" msgstr "Выключить" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Создано" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Обновлёно" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 msgid "Delete version" msgstr "Удалить версию" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Отчёт слежения" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Снимок структуры" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "включено" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "выключено" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "Отслеживаемые выражения" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "Удалить строку данных слежения за таблицей" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "Нет данных" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Вывести %1$s с датой от %2$s до %3$s пользователя %4$s %5$s" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "Выгрузка SQL (файл)" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "Выгрузка SQL" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "Данный параметр заместит таблицу и содержащиеся в ней данные." -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "Выполнение SQL запроса" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "Экспортировать как %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "Выражение изменяющее данные" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "Выражение определяющее структуру" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Дата" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Пользователь" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Обзор версии %s (SQL код)" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Нет" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "Данные слежения успешно удалены" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "Данные слежения успешно удалены" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14369,61 +14340,61 @@ msgstr "" "временную базу данных. Убедитесь, что у вас есть для этого достаточные " "привилегии." -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "Закомментируйте эти две строки, если они вам не нужны." -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL выражения успешно выгружены; скопируйте, либо выполните их." -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "Отчёт слежения для таблицы `%s`" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Слежение за %1$s было включено на версии %2$s." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Слежение за %1$s было выключено на версии %2$s." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Версия %1$s из %2$s удалена." -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Версия %1$s создана, отслеживание %2$s включено." -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Неотслеживаемые таблицы" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Отслеживать таблицу" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Отслеживаемые таблицы" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Последняя версия" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "Удаление данных слежени" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Версии" @@ -14431,11 +14402,11 @@ msgstr "Версии" msgid "Manage your settings" msgstr "Пользовательские настройки" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "Настройки успешно сохранены." -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14542,7 +14513,7 @@ msgstr "Базы данных отсутствуют" msgid "View dump (schema) of databases" msgstr "Отобразить дамп (схему) баз данных" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14569,7 +14540,7 @@ msgstr "" "phpMyAdmin не смог завершить работу потока с ID %s. Вероятно, он уже был " "закрыт." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "Недостаточно прав для просмотра статистики запроса." @@ -15425,43 +15396,49 @@ msgstr "Вид диаграммы" msgid "Stacked" msgstr "Уложенный" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "Заголовок графика" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "Ось-X:" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "Серии:" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "Подпись для оси X:" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "Значения X" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "Подпись для оси Y:" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Значения Y" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "Имена серии находятся в столбце" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "Столбец серии:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 msgid "Value Column:" msgstr "Столбец значения:" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "Сохранить диаграмму как изображение" @@ -15514,15 +15491,43 @@ msgstr "Комментарий:" msgid "Drag to reorder" msgstr "Перетяните для изменения порядка сортировки" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +msgid "Foreign key constraints" +msgstr "Ограничения внешнего ключа" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "Действия" + +#: templates/table/relation/common_form.phtml:10 +msgid "Constraint properties" +msgstr "Свойства ограничения" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" +"Будут отображаться только столбцы с индексом. Вы можете определить индекс " +"ниже." + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "Ограничение внешнего ключа" + +#: templates/table/relation/common_form.phtml:60 +msgid "+ Add constraint" +msgstr "+ Добавить ограничение" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "Внутренние связи" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "Внутренняя связь" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15530,34 +15535,7 @@ msgstr "" "Внутренняя связь не обязательна, если существует соответствующая связь с " "помощью внешнего ключа (FOREIGN KEY)." -#: templates/table/relation/common_form.phtml:37 -msgid "Foreign key constraints" -msgstr "Ограничения внешнего ключа" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "Действия" - -#: templates/table/relation/common_form.phtml:41 -msgid "Constraint properties" -msgstr "Свойства ограничения" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" -"Будут отображаться только столбцы с индексом. Вы можете определить индекс " -"ниже." - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "Ограничение внешнего ключа" - -#: templates/table/relation/common_form.phtml:83 -msgid "+ Add constraint" -msgstr "+ Добавить ограничение" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "Выбор отображаемого столбца:" @@ -15685,7 +15663,7 @@ msgid "at beginning of table" msgstr "в начале таблицы" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 msgid "Partitions" msgstr "Разделы" @@ -15728,7 +15706,7 @@ msgstr "разделён" msgid "Edit partitioning" msgstr "Удалить разделение" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "Редактировать представление" @@ -17171,6 +17149,40 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert установлен в 0" +#~ msgid "To filter all databases on server, press Enter after a search term" +#~ msgstr "" +#~ "Для фильтрации по всем базам данных, нажмите Enter после ввода поискового " +#~ "запроса" + +#~ msgid "To filter all %s in database, press Enter after a search term" +#~ msgstr "" +#~ "Для фильтрации по всем %s в базе данных, нажмите Enter после ввода " +#~ "поискового запроса" + +#~ msgid "tables" +#~ msgstr "таблицам" + +#~ msgid "views" +#~ msgstr "представлениям" + +#~ msgid "procedures" +#~ msgstr "процедурам" + +#~ msgid "events" +#~ msgstr "событиям" + +#~ msgid "functions" +#~ msgstr "функциям" + +#~ msgid "Filter databases by name or regex" +#~ msgstr "Фильтровать базы данных по имени или регулярному выражению" + +#~ msgid "Filter by name or regex" +#~ msgstr "Фильтровать по имени или регулярному выражению" + +#~ msgid "Unexpected closing bracket." +#~ msgstr "Неожиданная закрывающая скобка." + #~ msgid "Username and hostname didn't change." #~ msgstr "Имя пользователя и хоста не изменялись." diff --git a/po/si.po b/po/si.po index 2ef689c72a..ea9f13a380 100644 --- a/po/si.po +++ b/po/si.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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-07-24 06:59+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: Sinhala Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "දායක වන්න" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "ප්‍රාථමික මූලය එක් කරන්න" -#: js/messages.php:430 +#: js/messages.php:431 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "%s ට ප්‍රාථමික මූලයක් එක් කරන ලදි" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "අවධානය පිළිබඳ වාර්තාව" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 #, fuzzy @@ -2053,257 +2065,257 @@ msgstr "" msgid "End of step" msgstr "පේළියේ අවසානය" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "තෝරන්න" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "දත්තගබඩාවක් තෝරාගෙන නොමැත." -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 #, fuzzy #| msgid "The following queries have been executed:" msgid "The following actions will be performed:" msgstr "පහත විමසුම් ක්‍රියාත්මක කරන ලදි:" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 #, fuzzy #| msgid "Add privileges on the following table:" msgid "Create the following table" msgstr "පහත වගුවට වරප්‍රසාද එක් කරන්න:" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "දත්තගබඩාවක් තෝරාගෙන නොමැත." -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "සුරකින්න" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "සෙවුම් නිර්ණායක සඟවන්න" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "සෙවුම් නිර්ණායක පෙන්වන්න" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Table Search" msgid "Range search" msgstr "වගුව තුල සෙවීම" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Column names: " msgid "Column maximum:" msgstr "තීර නම්: " -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Column names: " msgid "Column minimum:" msgstr "තීර නම්: " -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "උපරිම වගු" -#: js/messages.php:474 +#: js/messages.php:475 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "උපරිම වගු" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "සෙවුම් නිර්ණායක සඟවන්න" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "සෙවුම් නිර්ණායක පෙන්වන්න" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "එක් ලක්ෂ්‍යයකින් දත්ත පේළියක් නියෝජනය කෙරේ." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "ලක්ෂ්‍යයක් මතින් ගමන් කරන විට එහි ලේබලය පෙන්නුම් කරයි." -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "තුළු සූමකරණය සඳහා ප්‍රස්ථාරයේ කොටසක් මූසිකය ආධාරයෙන් තෝරන්න." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "පෙර තත්ත්වයට පැමිණීම සඳහා සූමකරණය ප්‍රතිසකසන බොත්තම ක්ලික් කරන්න." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "පේළියක දත්ත පරීකෂා කිරීමට හා සමහරක් දත්ත වෙනස් කිරීමට ලක්ෂ්‍යයක් මත ක්ලික් කරන්න." -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "ප්‍රස්තාරයෙහි විශාලත්වය පහළ දකුණු කොණෙන් ඇදීමෙන් වෙනස් කල හැක." -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "තීර දෙකක් තෝරන්න" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "එකිනෙකට වෙනස් තීර දෙකක් තෝරන්න" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "ලක්ෂයට අදාල දත්ත" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "නොසලකන්න" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "පිටපත් කරන්න" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "ලක්ෂ්‍යය" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "රේඛාව" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "බහු අස්‍රය" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "ජ්‍යාමිතිය" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "ඇතුලත කවය" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "පිටත කවය:" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "සම්බන්දිත මූලය තෝරන්න" # ප්‍රාථමික මූලය = Primary key. Source: Glossary of Information Technology # Terms - ICTA -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "අන්‍ය මූලය තෝරන්න" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "කරුණාකර ප්‍රාථමික මූලය හෝ අනුපම මූලයක් තෝරන්න!" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "පෙන්වීම සඳහා තීරය ‍තෝරාගන්න" -#: js/messages.php:532 +#: js/messages.php:533 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?" @@ -2311,137 +2323,137 @@ msgstr "" "සැලැස්මේ සිදුකල වෙනස්කම් සුරැකීම සිදුකර නැත. සුරැකීම සිදු නොකළහොත් ඒවා අහිමි වනු ඇත. ඉදිරියට " "යන්න?" -#: js/messages.php:535 +#: js/messages.php:536 msgid "Page name" msgstr "පිටුවේ නම" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 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:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 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:539 +#: js/messages.php:540 #, fuzzy #| msgid "Select page" msgid "Delete page" msgstr "පිටුව තෝරන්න" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "ඒකකය" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "සංස්කරණය සඳහා පිටුවක් තෝරාගන්න" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "ක්‍රමානුරූපය සංස්කරණය හෝ අපනයනය කරන්න" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "වෙනස් කිරීම් සුරකින ලදි" # අභිරුචිය = option. Source: Glossary of Information Technology Terms - ICTA -#: js/messages.php:550 +#: js/messages.php:551 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "ක්ෂේත්‍රයට අභිරුචියක් එක් කරන්න " -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "වස්තූන් %d ක් නිමැවිණි." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "ඉදිරිපත් කරන්න" -#: js/messages.php:555 +#: js/messages.php:556 #, fuzzy #| msgid "Press escape to cancel editing" msgid "Press escape to cancel editing." msgstr "සංස්කරණය අවලංගු කිරීමට escape ඔබන්න" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "අනුපිලිවෙල නැවත සකස් කිරීමට අදින්න." -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "සලකුණු කිරීමට/ ඉවත් කිරීමට ක්ලික් කරන්න." -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "තීර නාමය පිටපත් කිරීම සඳහා ද්වි ක්ලික් කරන්න." -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "තීර පෙන්වීමට/සැඟවීමට
ඊතලය ක්ලික් කරන්න." -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "සියල්ල පෙන්වන්න" -#: js/messages.php:574 +#: js/messages.php:575 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." @@ -2449,161 +2461,122 @@ msgstr "" "මෙම වගුවෙහි අනුපම තීරුවක් නැත. සුරැකීමෙන් අනතුරුව වෙනස් කිරීමට, පිටපත් කිරීමට, මකා දැමීමට අදාළ " "ඇඳීම් ක්‍රියා විරහිත වනු ඇත." -#: js/messages.php:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "මුල් පිහිටුම" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "අවලංගු කරන්න" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "අත්හැර දමන ලදි" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "ආනයන පෙරනිමි" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "වගු තෝරන්න" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "අන්තර්ගත දත්ත මත ද්විත්ව-ක්ලික් කිරීමෙන් ඔබට
බොහෝ තීරවල අඩංගු දත්ත වෙනස් කල හැක." -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "අන්තර්ගත දත්ත මත ක්ලික් කිරීමෙන් ඔබට
බොහෝ තීරවල අඩංගු දත්ත වෙනස් කල හැක." -#: js/messages.php:609 +#: js/messages.php:610 #, fuzzy #| msgid "Go to link." msgid "Go to link:" msgstr "සබැඳීම වෙත යන්න." -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "තීර නම් පිටපත් කරන්න." -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "පසුරු පුවරුව වෙත පිටපත් කිරීම සඳහා තීර නාමය දකුණු ක්ලික් කරන්න." -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "මුරපදය උත්පාදනය කරන්න" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "උත්පාදනය කරන්න" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "තවත්" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "පැනලය පෙන්වන්න" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "පැනලය සඟවන්න" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Show logo in navigation panel" msgid "Show hidden navigation tree items." msgstr "යාත්‍රණ පැනලයේ ලාංඡනය පෙන්වන්න" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 #, fuzzy #| msgid "Customize main panel" msgid "Link with main panel" msgstr "ප්‍රධාන පැනලය රිසි සේ සකසන්න" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 #, fuzzy #| msgid "Customize main panel" msgid "Unlink from main panel" msgstr "ප්‍රධාන පැනලය රිසි සේ සකසන්න" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -#, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "වගු" - -#: js/messages.php:633 -#, fuzzy -#| msgid "Views" -msgid "views" -msgstr "දසුන්" - -#: js/messages.php:634 -#, fuzzy -#| msgid "Procedures" -msgid "procedures" -msgstr "ක්‍රියාපටිපාටි" - -#: js/messages.php:635 -#, fuzzy -#| msgid "event" -msgid "events" -msgstr "සිද්ධිය" - -#: js/messages.php:636 -#, fuzzy -#| msgid "Functions" -msgid "functions" -msgstr "ශ්‍රිත" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "ඔබ ඉල්ලු පිටුව ඉතිහාසයේ හමු නොවිණි, එය කල් ඉකුත් වී ඇතිවා විය හැකිය." -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2613,429 +2586,429 @@ msgstr "" "අනුවාදය %s අනුවාදයයි (%s දින නිකුත් කරන ලද)." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", නවතම ස්ථායි අනුවාදය:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "යාවත්කාලීන" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "දසුනක් සාදන්න" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "සර්වරයේ පොර්ට්" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "සර්වරයේ පොර්ට්" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "සිටුවම් වෙනස් කිරීම" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "විවෘත වගු පෙන්වන්න" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "නොසලකන්න" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "මෙම විමසුම මෙහි නැවත පෙන්වන්න" -#: js/messages.php:701 +#: js/messages.php:693 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "\"%s\" ක්‍රියාත්මක කිරීමට ඔබට ඇත්තෙන්ම අවශ්‍යද?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, fuzzy, php-format #| msgid "Executed queries" msgid "%s queries executed %s times in %s seconds." msgstr "ක්‍රියාත්මක කරන ලද විමසුම්" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "වගු විස්තර" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "සෙවුම් ප්‍රතිඵල සඟවන්න" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "පෙර" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "මීලඟ" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "අද දින" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "ජනවාරි" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "පෙබරවාරි" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "මාර්තු" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "අ‍ප්‍රේල්" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "මැයි" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "ජුනි" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "ජූලි" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "අගෝස්තු" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "සැප්තැම්බර්" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "ඔක්තෝම්බර්" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "නොවැම්බර්" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "දෙසැම්බර්" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "ජනවාරි" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "පෙබරවාරි" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "මාර්තු" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "අ‍ප්‍රේල්" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "මැයි" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "ජුනි" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "ජූලි" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "අගෝස්තු" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "සැප්තැම්බර්" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "ඔක්තෝම්බර්" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "නොවැම්බර්" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "දෙසැම්බර්" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "ඉරිදා" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "සඳුදා" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "අඟහරු‍වදා" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "බදාදා" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "බ්‍රහස්පතින්දා" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "සිකුරාදා" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "සෙනසුරාදා" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "ඉරිදා" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "සඳුදා" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "අඟහ" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "බදාදා" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "බ්‍රහස්" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "සිකුරා" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "සෙනසු" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "ඉරි" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "සඳු" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "අඟ" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "බදා" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "බ්‍රහ" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "සිකු" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "සෙන" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "සති" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "දින දර්ශන-මාස-වසර" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "කිසිවක් නැත" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "පැය" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "මිනිත්තු" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "තත්පර" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "පෙළ ක්ෂේත්‍ර භාවිතා කරන්න" -#: js/messages.php:886 +#: js/messages.php:878 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:887 +#: js/messages.php:879 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:889 +#: js/messages.php:883 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:890 +#: js/messages.php:885 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:891 +#: js/messages.php:888 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:892 +#: js/messages.php:890 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" @@ -3047,53 +3020,53 @@ msgstr "වලංගු පොර්ට් අංකයක් නොවේ" msgid "Please enter the same value again" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:898 +#: js/messages.php:917 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:899 +#: js/messages.php:922 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:901 +#: js/messages.php:928 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:902 +#: js/messages.php:933 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "දෝෂය" @@ -3180,11 +3153,12 @@ msgstr "උප විමසුම" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3234,7 +3208,7 @@ msgstr "වත්මන් දෝෂය මගහරින්න" msgid "Explain" msgstr "SQL ය පහදන්න" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "" @@ -3278,8 +3252,8 @@ msgid "History" msgstr "SQL ඉතිහාසය" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3466,30 +3440,30 @@ msgstr "" msgid "Switch to dark theme" msgstr "පිටපත් කල වගුව වෙත මාරු වන්න" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "සේවාදායකය ප්‍රතිචාර නොදක්වයි (හෝ සේවාදායකයේ සොකට් නිවැරදිව සකසා නැත)." -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "සේවාදායකය ප්‍රතිචාර නොදක්වයි." -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "කරුණාකර දත්තගබඩාව අඩංගු ඩිරෙක්ටරිය සඳහා වරප්‍රසාද පරීක්ෂා කරන්න." -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "තොරතුරු…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "වින්‍යාසයන් හි අර්ථදක්වා ඇති පරිදි පරිපාලක භාවිතා කරන්නා ලෙස සම්බන්ධ වීම අසමත් විය." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3499,8 +3473,8 @@ msgstr "වින්‍යාසයන් හි අර්ථදක්වා ඇ msgid "Ascending" msgstr "ආරෝහන" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3653,8 +3627,8 @@ msgstr[0] "%2$s තුල ගැලපීම් %1$s කි" msgstr[1] "%2$s තුල ගැලපීම් %1$s කි" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3698,125 +3672,126 @@ msgstr "සියල්ලේ තෝරාගැනීම ඉවත් කරන msgid "Inside column:" msgstr "තීරය තුල:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "සංස්කරණය කල දත්ත සුරකින්න" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "තීර අනුපිලිවල ප්‍රතිෂ්ඨාපනය කරන්න" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 #, fuzzy #| msgid "Filters" msgid "Filter rows" msgstr "පෙරහන්" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Search in database" msgid "Search this table" msgstr "දත්තගබඩාවේ සොයන්න" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "ඇරඹුම" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "පෙර" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "මීලඟ" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "අවසන" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "සියලු" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "පේළි ගණන:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "යතුර අනුව තෝරන්න" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "අර්ධ පෙළ" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "පූර්ණ පෙළ" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "සබැඳි යතුර" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Display foreign key relationships" msgid "Display column for relations" msgstr "අන්‍ය යතුරු සබඳතා පෙන්වන්න" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "ද්වීමය දත්ත පෙන්වන්න" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "BLOB දත්ත පෙන්වන්න" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "බ්‍රව්සර රූපාන්තරනය සඟවන්න" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "Well Known Text" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "Well Known Binary" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "පේළිය ඉවත් කරන ලදි." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "නවතා දමන්න" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "සමහර විට ආසන්න වශයෙන්. [doc@faq3-11]FAQ 3.11[/doc] බලන්න." -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "ඔබගේ SQL විමසුම සාර්ථකව ක්‍රියාවට නංවන ලදි." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3824,40 +3799,40 @@ msgid "" msgstr "" "මෙම දසුනේ අවම වශයෙන් පේළි මෙතරම් සංඛයාවක් ඇත. කරුණාකර %s ලේඛනය %s අධ්‍යනය කරන්න." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "%1s - %2s පේළි පෙන්වමින්" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "මුළු එකතුව %d" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "විමසුම තත්පර %01.4f ගන්නා ලදි." -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "තෝරාගත්:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3865,25 +3840,25 @@ msgstr "තෝරාගත්:" msgid "Check all" msgstr "සියල්ල කතිර කොටුගත කරන්න" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "මුද්‍රණ දර්ශනය" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "විමසුම් ප්‍රථිඵල සඳහා මෙහෙයුම්" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "ප්‍රස්තාරගත කරන්න" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "ජ්‍යාමිතික දත්ත නිරූපණය" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "සබැඳිය හමු නොවිණි!" @@ -3984,19 +3959,19 @@ msgstr "සුචියක් අර්ථදක්වා නැත!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "සූචියන්" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -4005,24 +3980,24 @@ msgid "Action" msgstr "ක්‍රියාව" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "යතුරු නම" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "අනන්‍ය" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "අහුරන ලද" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "අනේකත්වය" @@ -4030,8 +4005,8 @@ msgstr "අනේකත්වය" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -4041,8 +4016,8 @@ msgid "Collation" msgstr "පරිතුලනය" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -4058,15 +4033,15 @@ msgstr "ප්‍රාථමික මූලය හලන ලදි." msgid "Index %s has been dropped." msgstr "%s සූචිය හලන ලදි." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "හලන්න" @@ -4103,12 +4078,13 @@ msgstr "දසුන" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4116,7 +4092,7 @@ msgstr "වගුව" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4125,8 +4101,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4134,41 +4110,41 @@ msgid "Search" msgstr "සෙවීම" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "ඇතුල් කරන්න" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "වරප්‍රසාද" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "මෙහෙයුම්" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "අවධානය" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4179,16 +4155,16 @@ msgstr "ප්‍රේරක" msgid "Database seems to be empty!" msgstr "දත්තගබඩාව හිස්ය!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "විමසුම" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "නෛත්‍යක" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4196,20 +4172,20 @@ msgstr "නෛත්‍යක" msgid "Events" msgstr "සිද්ධි" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "සැලසුම්කරණය" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "මධ්‍යම තීර" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "දත්තගබඩා" @@ -4218,33 +4194,33 @@ msgid "User accounts" msgstr "භාවිත ගිණුම්" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "ද්වීමය ලොගය" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "අනුරූකරණය" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "විචල්‍යනයන්" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "අක්ෂර කට්ටලය" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "යන්ත්‍රයන්" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "පේණු" @@ -4555,7 +4531,7 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "%1$s මත අන්‍ය මූලය සෑදීමේදී දෝෂ ඇතිවිය (දත්ත වර්ග පරීක්ෂා කරන්න)" @@ -5021,37 +4997,37 @@ msgstr "%s විශේෂාංගයෙහි හඳුනාගත් දෝ msgid "Click to toggle" msgstr "මාරු කිරීමට ක්ලික් කරන්න" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "පරිගණකය තුළ පිරික්සන්න:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "වෙබ් සේවාදායකයේ %s උඩුගත කිරීම් ඩිරෙක්ටරියෙන් තෝරන්න:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "උඩුගත කිරීම් සඳහා සැකසූ ඩිරෙක්ටරිය වෙත පිවිසිය නොහැක." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "උඩුගත කිරීම සඳහා ගොනු නොමැත!" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "හිස් කරන්න" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "ක්‍රියාත්මක කරන්න" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "මුද්‍රණය කරන්න" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "භාවිතා කරන්නන්" @@ -5224,8 +5200,8 @@ msgid "Add new column" msgstr "තීරයක් එක් කරන්න" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5286,19 +5262,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "ඔබ %s %s හෝ ඉන්පසු අනුවාදයක් වෙත යාවත්කාලීන කල යුතුය." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "දෝෂය: ටෝකන නොගැලපීම" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS අගයන් උඩින් ලිවීමේ උත්සාහය" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "විය හැකි අයුතු ප්‍රයෝජන ගැනීමක්" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "සංඛ්‍යාත්මක යතුරක් අනාවරණය වුණි" @@ -6115,7 +6091,7 @@ msgid "Remember file name template" msgstr "ගොනු නාම ටෙම්ප්ලේටය මතක තබා ගන්න" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT අගයක් එක් කරන්න" @@ -6158,7 +6134,7 @@ msgstr "phpMyAdmin වින්‍යාස ගබඩාවේ අඩු වග #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "%s එක් කරන්න" @@ -8031,7 +8007,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "විමසුම ක්‍රියාත්මක කිරීමෙන් පසුව විමසුම් කවුළුව තිරය මත රඳවා ගත යුතුදැයි සඳහන් කරයි" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "විමසුම් කවුළුව රඳවාගන්න" @@ -8362,104 +8338,33 @@ msgstr "මයික්‍රොසොෆ්ට් වර්ඩ් 2000" msgid "OpenDocument Text" msgstr "OpenDocument පෙළ" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "%s වගුව හිස් කරන ලදි." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "%s දසුන හලන ලදි." -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "%s වගුව හලන ලදි." -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "නොදන්නා" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" - -#: libraries/controllers/TableStructureController.php:250 -#, fuzzy -#| msgid "No rows selected" -msgid "No column selected." -msgstr "පේළි කිසිවක් තෝරගෙන නැත" - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "තීර සාර්ථකව ගෙන යන ලදි." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "%1$s වගුව සාර්ථකව වෙනස් කරන ලදි." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "විමසුම් දෝෂය" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "වෙනස් කරන්න" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "සූචිය" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "ජ්‍යාමිතික" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "සම්පූර්ණ පාඨය" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "එකිනෙකට වෙනස් අගයන්" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8473,6 +8378,14 @@ msgstr "" msgid "No data to display" msgstr "පෙන්වීම සඳහා දත්ත නොමැත" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "%1$s වගුව සාර්ථකව වෙනස් කරන ලදි." + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "" @@ -8483,25 +8396,88 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr "අභ්‍යන්තර සබඳතා එක් කරන ලදි" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Table Search" msgid "Table search" msgstr "වගුව තුල සෙවීම" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Zoom Search" msgid "Zoom search" msgstr "Zoom සෙවීම" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "Hide search criteria" msgid "Find and replace" msgstr "සෙවුම් නිර්ණායක සඟවන්න" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" + +#: libraries/controllers/table/TableStructureController.php:251 +#, fuzzy +#| msgid "No rows selected" +msgid "No column selected." +msgstr "පේළි කිසිවක් තෝරගෙන නැත" + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "තීර සාර්ථකව ගෙන යන ලදි." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "විමසුම් දෝෂය" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "වෙනස් කරන්න" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "සූචිය" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "ජ්‍යාමිතික" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "සම්පූර්ණ පාඨය" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "එකිනෙකට වෙනස් අගයන්" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8511,7 +8487,7 @@ msgstr "%s දිගුව සොයාගත නොහැක. කරුණා msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "වෙනස්කම් නැත" @@ -8578,7 +8554,7 @@ msgstr "සාදන්න" msgid "Create database:" msgstr "දත්තගබඩාවක් සාදන්න:" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "වරප්‍රසාද නොමැත" @@ -9292,27 +9268,27 @@ msgid "Dump has been saved to file %s." msgstr "%s ගොනුවට නික්ෂේප දත්ත සුරකින ලදි." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL හිස් ප්‍රතිඵල කුලකයක් (පේළි කිසිවක් අඩංගු නොවන) සපයන ලදි." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "පහත සැකිලි අලුතින් සාදා හෝ වෙනස් කර ඇත. මෙහිදී ඔබට:" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 #, fuzzy #| msgid "View a structure's contents by clicking on its name" msgid "View a structure's contents by clicking on its name." msgstr "සැකිල්ලක අන්තර්ගතය එහි නම මත ක්ලික් කිරීමෙන් බලන්න" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -9320,48 +9296,48 @@ msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "අදාල \"විකල්ප\" සබැඳිය මත ක්ලික් කිරීමෙන් එහි ඕනෑම සිටුවමක් වෙනස් කරන්න" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 #, fuzzy #| msgid "Edit structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link." msgstr "\"සැකිල්ල\" සබැඳිය ඔස්සේ යාමෙන් සැකිල්ල සංස්කරණය කරන්න" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "%s දත්තගබඩාව වෙත යන්න" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "%s සඳහා සිටුවම් සංස්කරණය කරන්න" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "%s වගුව වෙත යන්න" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "%s හි සැකිල්ල" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "%s දසුන වෙත යන්න" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "පේළි %s මත සුචියක් සාදන්න" @@ -9384,73 +9360,73 @@ msgstr "ශ්‍රිතය" msgid "Binary" msgstr "ද්වීමය" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 #, fuzzy #| msgid "Because of its length,
this column might not be editable" msgid "Because of its length,
this column might not be editable." msgstr "මෙහි දිග නිසා,
මෙම තීරුව සංස්කරණය කල නොහැකි විය හැකිය" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "ද්වීමය - සංස්කරණය නොකරන්න" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "හෝ" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "වෙබ් සේවාදායකයේ උඩුගත ඩිරෙක්ටරිය:" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "සංස්කරණය/ඇතුල් කරන්න" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "පේළි %s බැගින් තවදුරටත් ඇතුල් කරන්න" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "අනතුරුව" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "නව පේළියක් ලෙස ඇතුල් කරන්න" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "දෝෂ නොසලකමින් නව පේළියක් ලෙස ඇතුල් කරන්න" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "ඇතුල් කිරීමේ විමසුම පෙන්වන්න" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "පෙර පිටුවට ආපසු යන්න" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "නව පේළියක් එක් කරන්න" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "මෙම පිටුව වෙත ආපසු යන්න" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "මීලඟ පේළිය සංස්කරණය කරන්න" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9462,11 +9438,11 @@ msgstr "" msgid "Value" msgstr "අගය" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "SQL විමසුම පෙන්වමින්" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "%1$d පේළිය ඇතුල් කරන ලදි" @@ -9482,35 +9458,35 @@ msgstr "නැත" msgid "Convert to Kana" msgstr "Kana වෙත පරිවර්තනය කරන්න" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "වගු නාම මූලය ප්‍රතිස්ථාපනය කරන්න:" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "නාම මූලය සහිත වගු පිටපත් කරන්න:" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "සිට" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "දක්වා" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "වගු නාම මූලයක් එක් කරන්න:" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "නාම මූලයක් එක් කරන්න" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "පහත විමසුම ක්‍රියාත්මක කිරීමට ඔබට ඇත්තෙන්ම අවශ්‍යද?" @@ -9738,8 +9714,8 @@ msgstr "ක්‍රියාපටිපාටි" msgid "Views:" msgstr "දසුන්" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "පෙන්වන්න" @@ -9781,10 +9757,9 @@ msgstr[0] "" msgstr[1] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "filter databases by name" -msgid "Filter databases by name or regex" -msgstr "දත්තගබඩා නමින් පෙරහන්න" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -9793,12 +9768,6 @@ msgstr "දත්තගබඩා නමින් පෙරහන්න" msgid "Clear fast filter" msgstr "පෙරහන ප්‍රත්‍යාරම්භ කරන්න" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "filter items by name" -msgid "Filter by name or regex" -msgstr "අයිතම නමින් පෙරහන්න" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -10204,7 +10173,7 @@ msgstr "බවට දත්තගබඩාවේ නම වෙනස් කර #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -10213,7 +10182,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Adjust Privileges" @@ -10233,18 +10202,18 @@ msgstr "දත්තගබඩාව ඉවත් කරන්න" msgid "Drop the database (DROP)" msgstr "දත්තගබඩාව හලන්න. (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "සැකිල්ල පමණයි" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "සැකිල්ල සහ දත්ත" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "දත්ත පමණයි" @@ -10256,7 +10225,7 @@ msgstr "වෙත දත්තගබඩාව පිටවත් කරන්න msgid "CREATE DATABASE before copying" msgstr "පිටපත් කිරීමට ප්‍රථම දත්තගබඩාවක් සාදන්න" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "සීමා බාධවන් එක් කරන්න" @@ -10297,165 +10266,165 @@ msgstr "ගබඩා යන්ත්‍ර‍" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "වගුව (දත්තගබඩාව.වගුව) වෙතට පිටපත් කරන්න" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "පිටපත් කල වගුව වෙත මාරු වන්න" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "වගු නඩත්තුව" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "වගුව විශ්ලේෂණය කරන්න" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "වගුව පරීක්ෂා කරන්න" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "වගුව පරීක්ෂා කරන්න" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Flush the table (FLUSH)" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "වගුව ප්‍රශස්තගත කරන්න" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "වගුව ප්‍රතිසංස්කරණය කරන්න" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "වගුව හෝ දත්ත ඉවත් කරන්න" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "වගුව හිස් කරන්න (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "වගුව ඉවත් කරන්න (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "විශ්ලේෂණය" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "පරීක්ෂාව" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "ප්‍රශස්තනය" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "නැවත සෑදීම" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "ප්‍රතිසංස්කරණය" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "වසන්න" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "කොටස් නඩත්තුව" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "%s කොටස" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "කොටස් කිරීම ඉවත් කරන්න" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "එම වගුවටම පිටපත් කල නොහැක!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "%s වගුව %s වෙතට ගෙනයන ලදි." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "%s වගුව %s වෙතට පිටපත් කරන ලදි." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "%s වගුව %s වෙතට ගෙනයන ලදි." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "%s වගුව %s වෙතට පිටපත් කරන ලදි." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "වගුවෙහි නම හිස්ව ඇත!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "මෙම ආකෘතියේ ආකෘති-විශේෂී තෝරා ගැනීම් කිසිවක් නැත" @@ -10627,7 +10596,7 @@ msgstr "දත්ත නික්ෂේපන විකල්ප" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "වගු සඳහා නික්ෂේප දත්ත" @@ -10651,21 +10620,21 @@ msgstr "අර්ථ දැක්වීම" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "වගුවක් සඳහා වගු සැකිල්ල" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "දසුන සඳහා සැකිල්ල" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "දසුන සැදීම සඳහා තාවකාලික සැකිල්ල" @@ -10755,7 +10724,7 @@ msgid "Database:" msgstr "දත්තගබඩාව:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "දත්ත:" @@ -10861,7 +10830,7 @@ msgid "Data creation options" msgstr "දත්ත සෑදීමේ විකල්ප" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "ඇතුල් කිරීම් වලට පෙර වගුව හිස් කරන්න" @@ -10947,8 +10916,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10956,93 +10925,93 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Missing data for %s" msgid "Metadata" msgstr "%s සඳහා දත්ත නොමැත" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Metadata for %s" msgstr "%s සඳහා දත්ත නොමැත" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "සෑදීම:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "අවසන් යාවත්කාලීන කිරීම:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "අවසන් පරීක්ෂාව:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "භාවිතා වෙමින් පවතී" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "නික්ෂේපනය කරන ලද වගු සඳහා සීමා බාධක" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "වගුව සඳහා සීමා බාධක" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "නික්ෂේපනය කරන ලද වගු සඳහා සීමා බාධක" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "වගු තුල:" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "ශුන්‍ය අගයන් සඳහා AUTO_INCREMENT භාවිතා නොකරන්න" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT අගයක් එක් කරන්න" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "දසුන සඳහා සැකිල්ල" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "දත්ත කියවීමේදී දෝෂයකි:" @@ -11294,9 +11263,9 @@ msgstr "ක්‍රමානුරූපය" msgid "Table of contents" msgstr "පටුන" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "අතිරේක" @@ -11493,61 +11462,61 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "Configuration has been saved." msgid "FOREIGN KEY relation has been added." msgstr "වෙනස් කිරීම් සුරකින ලදි" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "File could not be read!" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "ගොනුව කියවිය නොහැක!" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "අභ්‍යන්තර සබඳතා එක් කරන ලදි" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "File could not be read!" msgid "Error: Internal relation could not be added!" msgstr "ගොනුව කියවිය නොහැක!" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "Configuration has been saved." msgid "FOREIGN KEY relation has been removed." msgstr "වෙනස් කිරීම් සුරකින ලදි" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "File could not be read!" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "ගොනුව කියවිය නොහැක!" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "File could not be read!" msgid "Error: Internal relation could not be removed!" msgstr "ගොනුව කියවිය නොහැක!" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11601,99 +11570,99 @@ msgstr "බ්‍රව්සර රූපාන්තරනය" msgid "Please see the documentation on how to update your column_info table. " msgstr "ඔබගේ column_comments වගුව යාවත්කාලීන කරන්නේ කෙසේද යන්න පිළිබඳව ලියකියවිලි බලන්න" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "පොත් සලකුණු කරන ලද SQL විමසුම" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL ඉතිහාසය" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "කල්පවතිනා ලෙස සටහන් කෙරෙන මෑතදී භාවිතා කල වගු" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "Persistent recently used tables" msgid "Persistent favorite tables" msgstr "කල්පවතිනා ලෙස සටහන් කෙරෙන මෑතදී භාවිතා කල වගු" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "කල්පවතිනා ලෙස සටහන් කෙරෙන වගු අතුරු මුහුණත සම්බන්ධ අභිරුචි" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "භාවිතා කරන්නාගේ අභිරුචි" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Configuration: %s" msgid "Configurable menus" msgstr "සැකසුම : %s" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 #, fuzzy #| msgid "Reload navigation frame" msgid "Hide/show navigation items" msgstr "යාත්‍රණ රාමුව ප්‍රතිපූර්ණය කරන්න" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Remember table's sorting" msgid "Remembering Designer Settings" msgstr "වගුව සැකසූ අනුපිළිවෙල මතක තබාගන්න" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 msgid "Saving export templates" msgstr "අපනයන ආකෘති සුරකිමින්" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, fuzzy, php-format #| msgid "" #| "Create the needed tables with the examples/create_tables.sql." msgid "Create the needed tables with the %screate_tables.sql." msgstr "examples/create_tables.sql භාවිතා කර අවශ්‍ය කරන වගු තනා ගන්න." -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "පරිපාලක භාවිතා කරන්නෙක් තනා ඔහුට මෙම වගු සඳහා පරිශීලන වරප්‍රසාද ලබා දෙන්න." -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "යාවත්කාලීන කරන ලද වින්‍යාස ගොනුව පූරණය සඳහා phpMyAdmin වෙත නැවත වරක් ඇතුල් වන්න." -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "විස්තරයක් නොමැත" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11701,14 +11670,14 @@ msgid "" "configuration storage there." msgstr "phpMyAdmin වින්‍යාස ගබඩාවේ අඩු වගු" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "phpMyAdmin වින්‍යාස ගබඩාවේ අඩු වගු" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -11894,8 +11863,8 @@ msgstr "භාවිත නාමය:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "භාවිත නාමය" @@ -11903,7 +11872,7 @@ msgstr "භාවිත නාමය" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "මුරපදය" @@ -12542,7 +12511,7 @@ msgstr[1] "දත්තගබඩා %1$d ක් සාර්ථකව හලන msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "අනුවාදය" @@ -12550,98 +12519,94 @@ msgstr "අනුවාදය" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "අක්‍රීයයි" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "වරප්‍රසාද නොමැත." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "" #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "" #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "" #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12649,65 +12614,65 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "" #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "" #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "ප්‍රේරක සැදීමට හා ඉවත් කිරීමට අවසර ලබා දෙයි." #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -12719,8 +12684,8 @@ msgstr "කිසිවක් නැත" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "භාවිතා කරන්නන් කණ්ඩායම" @@ -12764,31 +12729,31 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "සටහන: මෙම විකල්පය 0 (බිංදුවට) පත් කිරීම මගින්සීමා ඉවත් වනු ලැ‍‍බේ." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12796,7 +12761,7 @@ msgid "Routine" msgstr "නෛත්‍යක" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12813,14 +12778,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "වගු-විශේෂී වරප්‍රසාද" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "සටහන: MySQL වරප්‍රසාද නම් සඳහන් වනුයේ ඉංග්‍රීසියෙනි." @@ -12830,7 +12795,7 @@ msgid "Administration" msgstr "පරිපාලනය" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "ගෝලීය වරප්‍රසාද" @@ -12839,15 +12804,15 @@ msgid "Global" msgstr "ගෝලීය" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "දත්තගබඩා විශේෂිත වරප්‍රසාද" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "" @@ -12870,7 +12835,7 @@ msgid "Native MySQL Authentication" msgstr "Cookie සත්‍යාපනය" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "ලොගින තොරතුරු" @@ -12893,8 +12858,8 @@ msgstr "දාරක නාමය:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 msgid "Host name" msgstr "දාරක නාමය" @@ -12914,222 +12879,222 @@ msgstr "සත්‍යාපනය" msgid "Password Hashing Method" msgstr "මුරපදය hash කිරීම:" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "%s ගේ මුරපදය සාර්ථකව වෙනස් කරන ලදි." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "ඔබ %s සඳහා වරප්‍රසාද අහෝසි කර ඇත." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 msgid "Add user account" msgstr "භාවිත ගිණුමක් එක් කරන්න" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 msgid "Database for user account" msgstr "භාවිත ගිණුම සඳහා දත්තගබඩාව" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "එම නමින්ම දත්තගබඩාවක් සාදා එයට සියලු වරප්‍රසාද ප්‍රදානය කරන්න." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "අභිමත ආදේශක නාමයන් සඳහා සියලු වරප්‍රසාද ප්‍රදානය කරන්න (භාවිත නාමය\\_%)." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "\"%s\" දත්තගබඩාව සඳහා සියලු වරප්‍රසාද ප්‍රදානය කරන්න." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\" වෙත ප්‍රවේශ වරප්‍රසාද ඇති භාවිතා කරන්නන්" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "භාවිතා කරන්නා එක් කරන ලදි." -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "ප්‍රදානය කරන්න" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "භාවිතා කරන්නන් හමු නොවිණි." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "ඕනෑම" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "ගෝලීය" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "දත්තගබඩා විශේෂිත" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "අව්‍යවස්ථිත කාඩ්පත" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "වගු විශේෂිත" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "වරප්‍රසාද සංස්කරණය කරන්න:" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "අහෝසි කරන්න" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "භාවිතා කරන්නන් කණ්ඩායම සංස්කරණය කරන්න" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… පැරණි එක තබා ගන්න." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කරන්න." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… පැරැන්නෙන් සියලුම සක්‍රීය වරප්‍රසාද අහෝසි කර අනතුරුව එය ඉවත් කරන්න." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කර වරප්‍රසාද නැවත අලුත් කරන්න." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "ලොගින් තොරතුරු වෙනස් කරන්න / භාවිත ගිණුම පිටපත් කරන්න" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "සහ එකම වරප්‍රසාද සහිතව නව භාවිත ගිණුමක් එක් කරන්න …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "තීර-විශේෂී වරප්‍රසාද" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 msgid "Remove selected user accounts" msgstr "තෝරාගත් භාවිත ගිණුම් ඉවත් කරන්න" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "භාවිතා කරන්නන්ගේ සියලුම සක්‍රීය වරප්‍රසාද අහෝසි කර අනතුරුව ඔවුන් ඉවත් කරන්න." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "භාවිතා කරන්නන් හා සමාන නම් ඇති දත්තගබඩා හලන්න." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "ඉවත් කිරීම සඳහා භාවිතා කරන්නන් කිසිවෙක් තෝරාගෙන නොමැත!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "වරප්‍රසාද පූරණය කෙරෙමින්" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "තෝරාගත් භාවිතා කරන්නන් සාර්ථකව ඉවත් කරන ලදි." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "ඔබ %s සඳහා වරප්‍රසාද අලුත් කර ඇත." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "%s ඉවත් කරමින් පවතී" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "සාර්ථකව වරප්‍රසාද පූරණය කරන්න ලදි." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "%s භාවිතා කරන්නා දැනටමත් පවතී!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "%s සඳහා වරප්‍රසාද" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "භාවිතා කරන්නා" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "නව භාවිතා කරන්නෙක්" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "වරප්‍රසාද සංස්කරණය කරන්න:" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "භාවිත ගිණුම" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "භාවිත ගිණුම් පිළිබඳ දළ විශ්ලේෂණය" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13141,7 +13106,7 @@ msgstr "" "සේවාදායකයේ වරප්‍රසාද වෙනම ම වෙනස් කර ඇත්නම් ඉහත වගුවේ දත්ත සේවාදායකයේ වරප්‍රසාද වලට " "වඩා වෙනස් විය හැකිය. එවැනි අවස්ථාවක ඔබ %sවරප්‍රසාද පූරණය%s කල යුතුය." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13159,11 +13124,11 @@ msgstr "" "සේවාදායකයේ වරප්‍රසාද වෙනම ම වෙනස් කර ඇත්නම් ඉහත වගුවේ දත්ත සේවාදායකයේ වරප්‍රසාද වලට " "වඩා වෙනස් විය හැකිය. එවැනි අවස්ථාවක ඔබ %sවරප්‍රසාද පූරණය%s කල යුතුය." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "තෝරාගත් භාවිත කරන්නා වරප්‍රසාද වගුවේ හමු නොවිණි." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "ඔබ නව භාවිතා කරන්නනෙක් එක් කරන ලදි." @@ -13423,26 +13388,26 @@ msgstr "උපදෙස්/පිහිටුවීම" msgid "Done dragging (rearranging) charts" msgstr "ප්‍රස්ථාර වෙනස් කර/අනුපිලිවෙල සකස්කර අවසානයි" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 #, fuzzy #| msgid "Enable highlighting" msgid "Enable charts dragging" msgstr "ඉස්මතු කිරීම සක්‍රීය කරන්න" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "යාවත්කාලීන කිරීමේ ශ්‍රීඝ‍්‍රතාව" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "ප්‍රස්ථාරයේ තීර" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "ප්‍රස්ථාර සැකසුම" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -13450,7 +13415,7 @@ msgstr "" "ප්‍රස්ථාර සැකැස්ම බ්‍රවුසරයේ ගබඩාවේ ගබඩා කර ඇත. සංකීර්ණ වූ සැකැස්මක් ඇත්නම් ඔබට එය අපනයනය " "කර ගැනීමට අවශ්‍ය විය හැකිය." -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "පෙරනිමි අගයන් පිහිටුවන්න" @@ -13510,7 +13475,7 @@ msgid "Statements" msgstr "ප්‍රකාශය" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -13535,33 +13500,33 @@ msgstr "ආකෘතික අගයන් පෙන්වන්න" msgid "Related links:" msgstr "අදාල සබැඳි:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL සේවාදායකය හා සම්බන්ද වීමට ගත් අසාර්ථක උත්සාහ ගණන." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13569,78 +13534,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13648,7 +13613,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13656,42 +13621,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "අභ්‍යන්තරව සිදු කෙරුණු ROLLBACK ප්‍රකාශ ගණන." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "වගුවක පේළියක් යාවත්කාලීන කිරීම සඳහා කෙරුණු ඉල්ලීම් ගණන." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "වගුවකට පේළියක් ඇතුලු කිරීම සඳහා කෙරුණු ඉල්ලීම් ගණන." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "දත්ත අඩංගු පිටු ගණන (අපවිත්‍ර හෝ පවිත්‍ර)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "දැනට අපවිත්‍රව ඇති පිටු ගණන." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "නිදහස් පිටු ගණන." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13699,33 +13664,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13734,243 +13699,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "මුළු දත්ත කියැවුම් ගණන." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "මුළු දත්ත ලියැවුම් ගණන." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "මේ දක්වා ලියැවුණු දත්ත ප්‍රමාණය, බයිට වලින්." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "ද්විත්ව-ලිවීම් මෙහෙයුම් සඳහා ලියැවුණු පිටු ගණන." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "සිදු කෙරුණු ද්විත්ව-ලිවීම් මෙහෙයුම් ගණන." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" "ලොග බෆරය කුඩා වීම නිසා ඉදිරියට යාමට පෙර එය හිස් කෙරෙන තුරු බලා සිටීමට සිදු වූ වාර ගණන." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "ලොගය වෙත ලිවීමට කෙරුණු ඉල්ලීම් ගණන." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "ලොග ගොනුව වෙත සිදු කරන ලද fsync() ලිවීම් ගණන." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "ඉදිරියේදී ලොග ගොනුව වෙත සිදු කිරීමට ඇති fsync ගණන." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "ඉදිරියේදී ලොග ගොනුව වෙත සිදු කිරීමට ඇති ලිවීම්." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "ලොග ගොනුව වෙත ලියන ලද බයිට ගණන." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "සාදන ලද පිටු ගණන." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "කියවන ලද පිටු ගණන." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "ලියන ලද පිටු ගණන." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "නිදහස් වන තුරු බලා සිටින පේළි අගුලු ගණන." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "පේළි අගුලක් අත්පත් කර ගැනීමට ගතවූ මධ්‍යන්‍ය කාලය, මිලිතත්පර වලින්." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "පේළි අගුලු අත්පත් කර ගැනීමට ගතවූ මුළු කාලය, මිලිතත්පර වලින්." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "පේළි අගුලක් අත්පත් කර ගැනීමට ගතවූ උපරිම කාලය, මිලිතත්පර වලින්." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "පේළි අගුලක් නිදහස් වන තුරු බලා සිටීමට සිදු වූ අවස්ථා ගණන." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB වගු වලින් ඉවත් කෙරුණු පේළි ගණන." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB වගු වෙත ඇතුල් කෙරුණු පේළි ගණන." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB වගු වෙතින් කියැවුණු පේළි ගණන." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB වගු තුල යාවත්කාලීන කෙරුණු පේළි ගණන." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "යතුරු කෑෂයේ භාවිතා කරන ලද ප්‍රතිශතය (ගණනය කරන ලද අගයකි)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13978,99 +13943,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14078,18 +14043,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14097,13 +14062,13 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "අවධානය අක්‍රීයයි." -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -14112,73 +14077,73 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "භාවිතා කරන්නන් කණ්ඩායම්" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "සේවාදායකයේ අනුවාදය" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Database server" msgid "Database level tabs" msgstr "දත්තගබඩා සේවාදායකය" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table comments" msgid "Table level tabs" msgstr "වගු විස්තර" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy #| msgid "Views" msgid "View users" msgstr "දසුන්" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "භාවිතා කරන්නන් කණ්ඩායමක් එක් කරන්න" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "'%s' භාවිතා කරන්නන් කණ්ඩායම සංස්කරණය කරන්න" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "වරප්‍රසාද නොමැත." -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Column names: " msgid "Group name:" msgstr "තීර නම්: " -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "සේවාදායකයේ අනුවාදය" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "දත්තගබඩා සේවාදායකය" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14244,21 +14209,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14327,120 +14288,120 @@ msgstr "%1$s සිද්ධිය සාදන ලදි." msgid "Variable name was expected." msgstr "ගොනු නාම ටෙම්ප්ලේටය" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "වගුව මුලදී" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 #, fuzzy #| msgid "Unexpected characters on line %s." msgid "Unexpected token." msgstr "%s වන පේළියේ අනපේක්ෂිත අනුලකුණකි." -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "පේළිය ඉවත් කරන ලදි." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "දත්ත ගොනු" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 #, fuzzy #| msgid "Other" msgid "Order" msgstr "අනෙකුත්" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "අරඹන්න" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "මුළු කාලය" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "% කාලය" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "වසන්න" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "ø කාලය" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "මෙම SQL විමසුම පොත් සලකුණුගත කරන්න" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "ලේබලය:" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "සියලු භාවිතා කරන්නනට මෙම පොත් සලකුණට පිවිසීමට ඉඩ දෙන්න" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "පොත් සලකුණ නොසාදන ලදි!" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "\"%s\" පොත් සලකුණ පිරික්සීම සඳහා වූ පෙරනිමි SQL විමසුම ලෙස යොදා ගනිමින්." -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "PHP කේත ලෙස පෙන්වමින්" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -14452,7 +14413,7 @@ msgstr "" "මෙම වගුවෙහි අනුපම තීරුවක් නැත. සුරැකීමෙන් අනතුරුව වෙනස් කිරීමට, පිටපත් කිරීමට, මකා දැමීමට අදාළ " "ඇඳීම් ක්‍රියා විරහිත වනු ඇත." -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -14464,7 +14425,7 @@ msgstr "" "මෙම වගුවෙහි අනුපම තීරුවක් නැත. සුරැකීමෙන් අනතුරුව වෙනස් කිරීමට, පිටපත් කිරීමට, මකා දැමීමට අදාළ " "ඇඳීම් ක්‍රියා විරහිත වනු ඇත." -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -14493,27 +14454,27 @@ msgstr "ස්වයං සුරැකුණු විමසුම ලබාග msgid "Bind parameters" msgstr "පරාමිතියන් බඳින්න" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "මෙම SQL විමසුම පොත් සලකුණුගත කරන්න:" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "එකම නම ඇති පොත් සලකුණ ප්‍රතිස්ථාපනය කරන්න" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "පරිසීමකය" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "මෙම විමසුම මෙහි නැවත පෙන්වන්න" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "දර්ශනය කිරීම පමණි" @@ -14558,178 +14519,178 @@ msgstr "%s සඳහා අවධානය අක්‍රීය කරන්න msgid "Deactivate now" msgstr "අක්‍රීය කරන්න" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "සාදන ලදි" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "යාවත්කාලීන කරන ලදි" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "අනුවාදය සාදන්න" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "අවධානය පිළිබඳ වාර්තාව" # සැණරුව = snapshot. Source: Glossary of Information Technology terms - ICTA -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "සැකිල්ලේ සැණරුව" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "සක්‍රිය" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "අක්‍රිය" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "අවධානය පිළිබඳ දත්ත පේළිය වාර්තාවෙන් ඉවත් කරන්න" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "දත්ත නොමැත" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "%1$s පෙන්වන්න, %2$s දින සිට %3$s දින දක්වා %4$s %5$s භාවිතා කරන්නා විසින්" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "මෙම විකල්පය මගින් ඔබගේ වගුව සහ දත්ත ප්‍රතිස්ථාපනය කෙරෙනු ඇත." -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "SQL ක්‍රියාත්මක කිරීම" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "අපනයන කරන්න %s ලෙස" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "දත්ත අර්ථ දැක්වීම" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "දිනය" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "භාවිත නාමය" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "%s වන අනුවාදයේ සැණරුව (SQL කේත)" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "කිසිවක් නැත" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "`%s` වගුව සඳහා අවධානය පිළිබඳ වාර්තාව" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "%2$s වන අනුවාදයේදී %1$s සඳහා අවධානය සක්‍රීය කරන ලදී." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "%2$s වන අනුවාදයේදී %1$s සඳහා අවධානය අක්‍රීය කරන ලදී." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format #| msgid "Create version %1$s of %2$s" msgid "Version %1$s of %2$s was deleted." msgstr "%2$s හි %1$s වන අනුවාදය සාදන්න" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "%1$s වන අනුවාදය සාදන ලදි. %2$s සඳහා අවධානය සක්‍රීයයි." -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "අවධානය අක්‍රීය වගු" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "වගුව අවධානයට ලක් කරන්න" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "අවධානය සක්‍රීය වගු" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "අවසන් අනුවාදය" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "අවධානය පිළිබඳ දත්ත ඉවත් කෙරෙමින්" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "අනුවාද" @@ -14737,11 +14698,11 @@ msgstr "අනුවාද" msgid "Manage your settings" msgstr "සිටුවම් පරිපාලනය" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "වින්‍යාස සුරකින ලදි." -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14846,7 +14807,7 @@ msgstr "දත්තගබඩා නොමැත" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14871,7 +14832,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -15768,47 +15729,53 @@ msgstr "" msgid "Stacked" msgstr "ගොඩ ගසන ලද" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "ප්‍රස්ථාර මාතෘකාව" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "ශ්‍රේණි:" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "X-අක්ෂයේ ලේබලය:" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "X අගයන්" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "Y-අක්ෂයේ ලේබලය:" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Y අගයන්" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside column:" msgid "Series column:" msgstr "තීරය තුල:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Values for column %s" msgid "Value Column:" msgstr "%s තීරුව සඳහා අගයන්" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -15869,54 +15836,55 @@ msgstr "ටීකාව:" msgid "Drag to reorder" msgstr "අනුපිලිවෙල නැවත සකස් කිරීමට අදින්න." -#: templates/table/relation/common_form.phtml:7 -msgid "Internal relations" -msgstr "අභ්‍යන්තර සබඳතා" - -#: templates/table/relation/common_form.phtml:11 -msgid "Internal relation" -msgstr "අභ්‍යන්තර සබඳතා" - -#: templates/table/relation/common_form.phtml:14 -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "අදාල අන්‍ය මූලය ඇති විට අභ්‍යන්තර සබඳතාවක් අවශ්‍ය නොවේ." - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 #, fuzzy #| msgid "Foreign key constraint" msgid "Foreign key constraints" msgstr "අන්‍ය මූල නිරෝධය" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 #, fuzzy #| msgid "Action" msgid "Actions" msgstr "ක්‍රියාව" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 #, fuzzy #| msgid "Constraints for table" msgid "Constraint properties" msgstr "වගුව සඳහා සීමා බාධක" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 msgid "Foreign key constraint" msgstr "අන්‍ය මූල නිරෝධය" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "සීමා බාධවන් එක් කරන්න" -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +msgid "Internal relations" +msgstr "අභ්‍යන්තර සබඳතා" + +#: templates/table/relation/common_form.phtml:80 +msgid "Internal relation" +msgstr "අභ්‍යන්තර සබඳතා" + +#: templates/table/relation/common_form.phtml:83 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "අදාල අන්‍ය මූලය ඇති විට අභ්‍යන්තර සබඳතාවක් අවශ්‍ය නොවේ." + +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "පෙන්වීම සඳහා තීරය ‍තෝරාගන්න:" @@ -16059,7 +16027,7 @@ msgid "at beginning of table" msgstr "වගුව මුලදී" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16108,7 +16076,7 @@ msgstr "කොටස් කරන ලද" msgid "Edit partitioning" msgstr "කොටස් කිරීම ඉවත් කරන්න" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "දසුන සංස්කරණය කරන්න" @@ -17376,6 +17344,41 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert ශුන්‍යයට සිටුවා ඇත" +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "වගු" + +#, fuzzy +#~| msgid "Views" +#~ msgid "views" +#~ msgstr "දසුන්" + +#, fuzzy +#~| msgid "Procedures" +#~ msgid "procedures" +#~ msgstr "ක්‍රියාපටිපාටි" + +#, fuzzy +#~| msgid "event" +#~ msgid "events" +#~ msgstr "සිද්ධිය" + +#, fuzzy +#~| msgid "Functions" +#~ msgid "functions" +#~ msgstr "ශ්‍රිත" + +#, fuzzy +#~| msgid "filter databases by name" +#~ msgid "Filter databases by name or regex" +#~ msgstr "දත්තගබඩා නමින් පෙරහන්න" + +#, fuzzy +#~| msgid "filter items by name" +#~ msgid "Filter by name or regex" +#~ msgstr "අයිතම නමින් පෙරහන්න" + #, fuzzy #~| msgid "Tracking report" #~ msgid "Taking you to %s." diff --git a/po/sk.po b/po/sk.po index 9026cdf24d..8e77be8144 100644 --- a/po/sk.po +++ b/po/sk.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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-12 18:54+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: Slovak =2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 2.5-dev\n" -#: changelog.php:37 license.php:30 +#: changelog.php:37 license.php:33 #, php-format msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " @@ -37,7 +37,7 @@ msgstr "Kliknite pre zoradenie." msgid "Showing rows %1$s - %2$s." msgstr "Zobrazované riadky %1$s - %2$s." -#: db_create.php:61 +#: db_create.php:62 #, php-format msgid "Database %1$s has been created." msgstr "Databáza %1$s bola vytvorená." @@ -46,13 +46,13 @@ msgstr "Databáza %1$s bola vytvorená." msgid "Database comment" msgstr "Komentár k databáze" -#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:601 +#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:599 #: templates/columns_definitions/column_definitions_form.phtml:84 msgid "Table comments:" msgstr "Komentáre k tabuľke:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1568 +#: libraries/insert_edit.lib.php:1575 #: libraries/navigation/nodes/NodeColumn.php:34 #: libraries/plugins/export/ExportHtmlword.php:288 #: libraries/plugins/export/ExportHtmlword.php:384 @@ -62,13 +62,14 @@ msgstr "Komentáre k tabuľke:" #: libraries/plugins/export/ExportTexytext.php:282 #: libraries/plugins/export/ExportTexytext.php:373 #: libraries/plugins/export/PMA_ExportPdf.php:472 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:882 libraries/tracking.lib.php:978 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 +#: libraries/tracking.lib.php:892 libraries/tracking.lib.php:990 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:10 -#: templates/table/relation/common_form.phtml:43 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:27 +#: templates/table/relation/common_form.phtml:79 #: templates/table/relation/foreign_key_row.phtml:176 #: templates/table/relation/foreign_key_row.phtml:188 #: templates/table/relation/internal_relational_row.phtml:73 @@ -88,14 +89,14 @@ msgstr "Stĺpec" #: libraries/plugins/export/ExportTexytext.php:283 #: libraries/plugins/export/ExportTexytext.php:374 #: libraries/plugins/export/PMA_ExportPdf.php:474 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 #: libraries/rte/rte_list.lib.php:78 libraries/rte/rte_list.lib.php:106 #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2606 libraries/tracking.lib.php:883 -#: libraries/tracking.lib.php:975 +#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -105,7 +106,7 @@ msgstr "Typ" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:709 -#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1577 +#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1584 #: libraries/plugins/export/ExportHtmlword.php:294 #: libraries/plugins/export/ExportHtmlword.php:390 #: libraries/plugins/export/ExportLatex.php:517 @@ -114,9 +115,9 @@ msgstr "Typ" #: libraries/plugins/export/ExportTexytext.php:284 #: libraries/plugins/export/ExportTexytext.php:375 #: libraries/plugins/export/PMA_ExportPdf.php:476 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 -#: libraries/tracking.lib.php:885 libraries/tracking.lib.php:981 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/tracking.lib.php:895 libraries/tracking.lib.php:993 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 @@ -133,9 +134,9 @@ msgstr "Nulový" #: libraries/plugins/export/ExportTexytext.php:285 #: libraries/plugins/export/ExportTexytext.php:376 #: libraries/plugins/export/PMA_ExportPdf.php:478 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 -#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:886 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:896 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 @@ -147,8 +148,8 @@ msgstr "Predvolené" #: libraries/plugins/export/ExportOdt.php:488 #: libraries/plugins/export/ExportTexytext.php:378 #: libraries/plugins/export/PMA_ExportPdf.php:487 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:640 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:663 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 msgid "Links to" msgstr "Linkovať na" @@ -159,37 +160,38 @@ msgstr "Linkovať na" #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:381 #: libraries/plugins/export/PMA_ExportPdf.php:494 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:651 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:664 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:649 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 #: templates/columns_definitions/table_fields_definitions.phtml:65 msgid "Comments" msgstr "Komentáre" -#: db_datadict.php:155 libraries/controllers/TableStructureController.php:1189 -#: libraries/controllers/TableStructureController.php:1194 -#: libraries/tracking.lib.php:925 +#: db_datadict.php:155 +#: libraries/controllers/table/TableStructureController.php:1197 +#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:79 +#: templates/table/structure/display_structure.phtml:80 msgid "Primary" msgstr "Primárny" -#: db_datadict.php:165 js/messages.php:370 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:371 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 -#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:403 -#: libraries/mult_submits.lib.php:417 +#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:408 +#: libraries/mult_submits.lib.php:422 #: libraries/plugins/export/ExportHtmlword.php:654 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:710 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2971 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3620 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1013 libraries/tracking.lib.php:1018 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2973 +#: libraries/server_privileges.lib.php:2993 +#: libraries/server_privileges.lib.php:3631 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -198,32 +200,32 @@ msgstr "Primárny" msgid "No" msgstr "Nie" -#: db_datadict.php:165 js/messages.php:515 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:516 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 #: libraries/config/FormDisplay.tpl.php:280 -#: libraries/controllers/TableStructureController.php:770 -#: libraries/controllers/TableStructureController.php:1440 -#: libraries/controllers/TableStructureController.php:1449 -#: libraries/controllers/TableStructureController.php:1454 -#: libraries/controllers/TableStructureController.php:1459 -#: libraries/controllers/TableStructureController.php:1464 -#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:199 -#: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 -#: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 +#: libraries/controllers/table/TableStructureController.php:771 +#: libraries/controllers/table/TableStructureController.php:1448 +#: libraries/controllers/table/TableStructureController.php:1457 +#: libraries/controllers/table/TableStructureController.php:1462 +#: libraries/controllers/table/TableStructureController.php:1467 +#: libraries/controllers/table/TableStructureController.php:1472 +#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:200 +#: libraries/mult_submits.lib.php:344 libraries/mult_submits.lib.php:377 +#: libraries/mult_submits.lib.php:406 libraries/mult_submits.lib.php:420 #: libraries/plugins/export/ExportHtmlword.php:655 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:788 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:711 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2968 -#: libraries/server_privileges.lib.php:2989 -#: libraries/server_privileges.lib.php:3617 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1011 libraries/tracking.lib.php:1016 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2970 +#: libraries/server_privileges.lib.php:2991 +#: libraries/server_privileges.lib.php:3628 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -236,8 +238,8 @@ msgstr "Áno" msgid "View dump (schema) of database" msgstr "Zobraziť dump (schému) databázy" -#: db_export.php:51 db_tracking.php:102 export.php:382 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:176 +#: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 +#: libraries/controllers/DatabaseStructureController.php:157 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "Neboli nájdené žiadne tabuľky v tejto databáze." @@ -254,7 +256,7 @@ msgstr "Tabuľky" #: db_export.php:66 libraries/Menu.php:320 libraries/Menu.php:427 #: libraries/Util.php:3407 libraries/Util.php:3417 libraries/Util.php:3423 -#: libraries/Util.php:3702 libraries/Util.php:4339 libraries/Util.php:4356 +#: libraries/Util.php:3703 libraries/Util.php:4340 libraries/Util.php:4357 #: libraries/central_columns.lib.php:729 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:320 @@ -262,10 +264,10 @@ msgstr "Tabuľky" #: libraries/config/user_preferences.forms.php:218 #: libraries/config/user_preferences.forms.php:259 #: libraries/config/user_preferences.forms.php:285 -#: libraries/import.lib.php:1299 libraries/navigation/nodes/NodeColumn.php:44 +#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:44 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 -#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:877 +#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:887 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -310,11 +312,11 @@ msgstr "" "Konfiguračná pamäť phpMyAdmina bola deaktivovaná. Ak chcete zistiť prečo, " "kliknite %ssem%s." -#: db_qbe.php:135 +#: db_qbe.php:136 msgid "You have to choose at least one column to display!" msgstr "Zvoľte prosím aspoň jeden stĺpec, ktorý chcete zobraziť!" -#: db_qbe.php:152 +#: db_qbe.php:154 #, php-format msgid "Switch to %svisual builder%s" msgstr "Prepnúť do %svizuálneho návrhára%s" @@ -342,7 +344,7 @@ msgstr "" msgid "No tables selected." msgstr "Neboli vybrané žiadne tabuľky." -#: db_tracking.php:146 +#: db_tracking.php:149 msgid "Database Log" msgstr "Databázový log" @@ -378,7 +380,7 @@ msgstr "Možno bude treba obnoviť stránku." msgid "Bad type!" msgstr "Nesprávny typ!" -#: export.php:276 +#: export.php:278 msgid "Bad parameters!" msgstr "Chybné parametre!" @@ -386,98 +388,98 @@ msgstr "Chybné parametre!" msgid "Invalid export type" msgstr "Chybný typ exportu" -#: gis_data_editor.php:119 +#: gis_data_editor.php:117 #, php-format msgid "Value for the column \"%s\"" msgstr "Hodnota pre pole \"%s\"" -#: gis_data_editor.php:147 +#: gis_data_editor.php:145 #: templates/table/gis_visualization/gis_visualization.phtml:37 msgid "Use OpenStreetMaps as Base Layer" msgstr "Použíť OpenStreetMap ako základnú vrstvu" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:169 +#: gis_data_editor.php:167 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:192 +#: gis_data_editor.php:190 #, php-format msgid "Geometry %d:" msgstr "Geometria %d:" -#: gis_data_editor.php:214 +#: gis_data_editor.php:212 msgid "Point:" msgstr "Bod:" -#: gis_data_editor.php:215 gis_data_editor.php:242 gis_data_editor.php:298 -#: gis_data_editor.php:371 js/messages.php:504 +#: gis_data_editor.php:213 gis_data_editor.php:240 gis_data_editor.php:296 +#: gis_data_editor.php:369 js/messages.php:505 msgid "X" msgstr "X" -#: gis_data_editor.php:218 gis_data_editor.php:246 gis_data_editor.php:302 -#: gis_data_editor.php:377 js/messages.php:505 +#: gis_data_editor.php:216 gis_data_editor.php:244 gis_data_editor.php:300 +#: gis_data_editor.php:375 js/messages.php:506 msgid "Y" msgstr "Y" -#: gis_data_editor.php:240 gis_data_editor.php:296 gis_data_editor.php:369 -#: js/messages.php:507 +#: gis_data_editor.php:238 gis_data_editor.php:294 gis_data_editor.php:367 +#: js/messages.php:508 #, php-format msgid "Point %d" msgstr "Bod %d" -#: gis_data_editor.php:253 gis_data_editor.php:309 gis_data_editor.php:387 -#: js/messages.php:513 +#: gis_data_editor.php:251 gis_data_editor.php:307 gis_data_editor.php:385 +#: js/messages.php:514 msgid "Add a point" msgstr "Pridať bod" -#: gis_data_editor.php:270 +#: gis_data_editor.php:268 #, php-format msgid "Linestring %d:" msgstr "Čiara %d:" -#: gis_data_editor.php:273 gis_data_editor.php:350 +#: gis_data_editor.php:271 gis_data_editor.php:348 msgid "Outer ring:" msgstr "Vonkajší obrys:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:273 gis_data_editor.php:350 #, php-format msgid "Inner ring %d:" msgstr "Vnútorný obrys %d:" -#: gis_data_editor.php:312 +#: gis_data_editor.php:310 msgid "Add a linestring" msgstr "Pridať linku" -#: gis_data_editor.php:313 gis_data_editor.php:392 js/messages.php:514 +#: gis_data_editor.php:311 gis_data_editor.php:390 js/messages.php:515 msgid "Add an inner ring" msgstr "Pridať vnútorný obrys" -#: gis_data_editor.php:334 +#: gis_data_editor.php:332 #, php-format msgid "Polygon %d:" msgstr "Polygón %d:" -#: gis_data_editor.php:398 +#: gis_data_editor.php:396 msgid "Add a polygon" msgstr "Pridať polygón" -#: gis_data_editor.php:404 +#: gis_data_editor.php:402 msgid "Add geometry" msgstr "Pridať geometriu" -#: gis_data_editor.php:410 js/messages.php:345 libraries/DbSearch.php:462 -#: libraries/DisplayResults.php:1783 libraries/browse_foreigners.lib.php:142 +#: gis_data_editor.php:408 js/messages.php:346 libraries/DbSearch.php:462 +#: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:151 #: libraries/display_export.lib.php:404 libraries/display_export.lib.php:410 -#: libraries/display_import.lib.php:403 libraries/index.lib.php:42 -#: libraries/insert_edit.lib.php:1547 libraries/insert_edit.lib.php:1584 +#: libraries/display_import.lib.php:403 libraries/index.lib.php:45 +#: libraries/insert_edit.lib.php:1554 libraries/insert_edit.lib.php:1591 #: libraries/normalization.lib.php:168 libraries/normalization.lib.php:825 #: libraries/operations.lib.php:47 libraries/operations.lib.php:114 #: libraries/operations.lib.php:266 libraries/operations.lib.php:309 #: libraries/operations.lib.php:806 libraries/operations.lib.php:877 -#: libraries/operations.lib.php:926 libraries/operations.lib.php:1336 -#: libraries/operations.lib.php:1653 +#: libraries/operations.lib.php:926 libraries/operations.lib.php:1339 +#: libraries/operations.lib.php:1656 #: libraries/plugins/auth/AuthenticationCookie.php:239 #: libraries/replication_gui.lib.php:124 libraries/replication_gui.lib.php:163 #: libraries/replication_gui.lib.php:328 libraries/replication_gui.lib.php:465 @@ -486,12 +488,12 @@ msgstr "Pridať geometriu" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2343 -#: libraries/server_privileges.lib.php:3114 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_user_groups.lib.php:285 -#: libraries/sql_query_form.lib.php:369 libraries/sql_query_form.lib.php:429 -#: libraries/tracking.lib.php:536 libraries/tracking.lib.php:656 +#: libraries/server_privileges.lib.php:2345 +#: libraries/server_privileges.lib.php:3116 +#: libraries/server_privileges.lib.php:3735 +#: libraries/server_user_groups.lib.php:290 +#: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 +#: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 #: prefs_manage.php:280 prefs_manage.php:358 #: templates/columns_definitions/column_definitions_form.phtml:64 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 @@ -504,11 +506,11 @@ msgstr "Pridať geometriu" msgid "Go" msgstr "Vykonaj" -#: gis_data_editor.php:413 +#: gis_data_editor.php:411 msgid "Output" msgstr "Výstup" -#: gis_data_editor.php:416 +#: gis_data_editor.php:414 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -520,7 +522,7 @@ msgstr "" msgid "Succeeded" msgstr "Úspešný" -#: import.php:59 js/messages.php:588 +#: import.php:59 js/messages.php:589 msgid "Failed" msgstr "Neúspešný" @@ -584,7 +586,7 @@ msgstr "" "Nebolo možné načítať importovacie pluginy, skontrolujte prosím vašu " "inštaláciu!" -#: import.php:669 libraries/sql.lib.php:744 libraries/sql.lib.php:1468 +#: import.php:669 libraries/sql.lib.php:754 libraries/sql.lib.php:1485 #, php-format msgid "Bookmark %s has been created." msgstr "Príkaz %s bol zaradený medzi obľúbené." @@ -616,7 +618,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "Nemôžem načítať priebeh importu." -#: import_status.php:111 js/messages.php:444 libraries/Util.php:797 +#: import_status.php:111 js/messages.php:445 libraries/Util.php:797 #: libraries/export.lib.php:523 #: libraries/plugins/schema/ExportRelationSchema.php:301 user_password.php:268 msgid "Back" @@ -640,7 +642,7 @@ msgstr "" msgid "General settings" msgstr "Všeobecné nastavenia" -#: index.php:191 js/messages.php:617 +#: index.php:191 js/messages.php:618 #: libraries/display_change_password.lib.php:54 #: libraries/display_change_password.lib.php:57 user_password.php:262 msgid "Change password" @@ -740,7 +742,11 @@ msgstr "Získať podporu" msgid "List of changes" msgstr "Zoznam zmien" -#: index.php:453 +#: index.php:438 libraries/server_plugins.lib.php:83 +msgid "License" +msgstr "Licencia" + +#: index.php:460 msgid "" "You are connected as 'root' with no password, which corresponds to the " "default MySQL privileged account. Your MySQL server is running with this " @@ -752,7 +758,7 @@ msgstr "" "zabezpečený proti napadnutiu, táto bezpečnostná chyba by mala byť urýchlene " "odstránená nastavením hesla pre užívateľa 'root'." -#: index.php:470 +#: index.php:477 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -761,7 +767,7 @@ msgstr "" "V nastavení PHP je aktívna funkcia mbstring.func_overload, ktorá nie je " "kompatibilná s phpMyAdmin-om a môže spôsobiť stratu dát!" -#: index.php:485 +#: index.php:492 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -772,7 +778,7 @@ msgstr "" "rozdeľovať reťazce kódované v týchto znakových sadách a môže to viesť k " "nečakaným výsledkom." -#: index.php:502 +#: index.php:509 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than " @@ -785,7 +791,7 @@ msgstr "" "($cfg['LoginCookieValidity']). Kvôli tomu môže vaše prihlásenie vypršať skôr " "ako je nastavené v konfigurácii phpMyAdmina." -#: index.php:521 +#: index.php:528 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -793,13 +799,13 @@ msgstr "" "Životnosť cookie je nižšia ako je nastavené v phpMyAdmin. Kvôli tomu vaše " "prihlásenie vyprší skôr ako je nastavené v konfigurácii phpMyAdmin." -#: index.php:537 +#: index.php:544 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Nastavte prosím kľúč pre šifrovanie cookies v konfiguračnom súbore " "(blowfish_secret)." -#: index.php:550 +#: index.php:557 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. It is strongly recommended to remove it " @@ -811,7 +817,7 @@ msgstr "" "nakonfigurovaný. V opačnom prípade bezpečnosť Vášho servera môže byť " "narušená neautorizovanými užívateľmi, ktorí stiahnu Vašu konfiguráciu." -#: index.php:566 +#: index.php:573 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -820,12 +826,12 @@ msgstr "" "Miesto uloženia phpMyAdmin konfigurácie nie je úplne nastavené, niektoré " "rozšírené vlastnosti boli vypnuté. Ak chcete zistiť prečo, kliknite %ssem%s. " -#: index.php:573 +#: index.php:580 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "Voliteľne môžete ísť do záložky 'Operácie' a nastaviť to tam." -#: index.php:619 +#: index.php:626 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -834,7 +840,7 @@ msgstr "" "Verzia Vašej PHP MySQL knižnice %s je rozdielna od MySQL server verzie %s. " "Toto môže spôsobiť nepredvídateľné správanie." -#: index.php:647 +#: index.php:654 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -856,7 +862,7 @@ msgstr "Potvrdenie" msgid "Do you really want to execute \"%s\"?" msgstr "Skutočne chcete vykonať príkaz \"%s\"?" -#: js/messages.php:45 libraries/mult_submits.lib.php:397 +#: js/messages.php:45 libraries/mult_submits.lib.php:402 msgid "You are about to DESTROY a complete database!" msgstr "Chystáte sa ZMAZAŤ celú databázu!" @@ -989,7 +995,7 @@ msgid "Save & close" msgstr "Uložiť a zavrieť" #: js/messages.php:109 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1551 prefs_manage.php:364 +#: libraries/insert_edit.lib.php:1558 prefs_manage.php:364 #: prefs_manage.php:375 msgid "Reset" msgstr "Vynulovať" @@ -1047,10 +1053,10 @@ msgstr "Vyberte stĺpce pre index." msgid "You have to add at least one column." msgstr "Musíte pridať aspoň jeden stĺpec." -#: js/messages.php:129 libraries/insert_edit.lib.php:1549 +#: js/messages.php:129 libraries/insert_edit.lib.php:1556 #: templates/columns_definitions/column_definitions_form.phtml:159 #: templates/table/index_form.phtml:237 -#: templates/table/relation/common_form.phtml:108 +#: templates/table/relation/common_form.phtml:127 msgid "Preview SQL" msgstr "Ukážka SQL" @@ -1093,8 +1099,8 @@ msgstr "Heslá sa nezhodujú!" msgid "Removing Selected Users" msgstr "Odstránenie vybraných používateľov" -#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:461 -#: libraries/tracking.lib.php:831 +#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:471 +#: libraries/tracking.lib.php:841 msgid "Close" msgstr "Zavrieť" @@ -1116,7 +1122,7 @@ msgstr "Šablóna bola zmazaná." #. l10n: Other, small valued, queries #: js/messages.php:155 libraries/ServerStatusData.php:130 -#: libraries/server_status_queries.lib.php:148 +#: libraries/server_status_queries.lib.php:150 msgid "Other" msgstr "Ostatné" @@ -1282,7 +1288,7 @@ msgstr "Dopyty" msgid "Traffic" msgstr "Vyťaženie" -#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4330 +#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4331 #: libraries/server_status_monitor.lib.php:258 msgid "Settings" msgstr "Nastavenia" @@ -1295,9 +1301,9 @@ msgstr "Pridať graf do mriežky" msgid "Please add at least one variable to the series!" msgstr "Pridajte prosím aspoň jednu hodnotu do série!" -#: js/messages.php:216 libraries/DisplayResults.php:1477 +#: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1413,7 +1419,7 @@ msgstr "Zmeniť nastavenia" msgid "Current settings" msgstr "Aktuálne nastavenia" -#: js/messages.php:253 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:253 msgid "Chart title" msgstr "Názov grafu" @@ -1502,21 +1508,21 @@ msgstr "Analyzujem…" msgid "Explain output" msgstr "Vysvetliť výstup" -#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4326 +#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4327 #: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:396 #: libraries/rte/rte_list.lib.php:104 -#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:282 -#: libraries/tracking.lib.php:1623 +#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:284 +#: libraries/tracking.lib.php:1639 msgid "Status" msgstr "Stav" -#: js/messages.php:289 js/messages.php:870 +#: js/messages.php:289 js/messages.php:862 #: libraries/plugins/export/ExportHtmlword.php:484 #: libraries/plugins/export/ExportOdt.php:600 #: libraries/plugins/export/ExportTexytext.php:445 #: libraries/plugins/export/PMA_ExportPdf.php:314 #: libraries/rte/rte_list.lib.php:93 -#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:239 +#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:243 msgid "Time" msgstr "Čas" @@ -1603,10 +1609,10 @@ msgstr "" "nastavenia…" #: js/messages.php:322 libraries/Menu.php:355 libraries/Menu.php:457 -#: libraries/Menu.php:578 libraries/Util.php:4329 libraries/Util.php:4344 -#: libraries/Util.php:4361 libraries/config/messages.inc.php:260 +#: libraries/Menu.php:578 libraries/Util.php:4330 libraries/Util.php:4345 +#: libraries/Util.php:4362 libraries/config/messages.inc.php:260 #: libraries/display_import.lib.php:108 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:241 +#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:241 #: setup/frames/menu.inc.php:26 msgid "Import" msgstr "Import" @@ -1663,7 +1669,13 @@ msgstr "Kontrola" msgid "Formatting SQL…" msgstr "Formátujem SQL…" -#: js/messages.php:346 libraries/server_variables.lib.php:159 +#: js/messages.php:343 +#, fuzzy +#| msgid "Bad parameters!" +msgid "No parameters found!" +msgstr "Chybné parametre!" + +#: js/messages.php:347 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 @@ -1674,59 +1686,59 @@ msgstr "Formátujem SQL…" msgid "Cancel" msgstr "Zrušiť" -#: js/messages.php:349 libraries/Header.php:457 +#: js/messages.php:350 libraries/Header.php:457 msgid "Page-related settings" msgstr "Nastavenia stránky" -#: js/messages.php:350 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:351 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Použiť" -#: js/messages.php:353 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:354 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:124 msgid "Loading…" msgstr "Načítanie…" -#: js/messages.php:354 +#: js/messages.php:355 msgid "Request aborted!!" msgstr "Požiadavka bola prerušená!" -#: js/messages.php:355 +#: js/messages.php:356 msgid "Processing request" msgstr "Prebieha spracovanie požiadavky" -#: js/messages.php:356 +#: js/messages.php:357 msgid "Request failed!!" msgstr "Požiadavka zlyhala!" -#: js/messages.php:357 +#: js/messages.php:358 msgid "Error in processing request" msgstr "Chyba pri spracovaní požiadavky" -#: js/messages.php:358 +#: js/messages.php:359 #, php-format msgid "Error code: %s" msgstr "Číslo chyby: %s" -#: js/messages.php:359 +#: js/messages.php:360 #, php-format msgid "Error text: %s" msgstr "Text chyby: %s" -#: js/messages.php:360 libraries/db_common.inc.php:73 +#: js/messages.php:361 libraries/db_common.inc.php:73 #: libraries/db_table_exists.lib.php:33 libraries/server_databases.lib.php:462 msgid "No databases selected." msgstr "Neboli vybrané žiadne databázy." -#: js/messages.php:361 +#: js/messages.php:362 msgid "Dropping column" msgstr "Odstraňujem stĺpec" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Adding primary key" msgstr "Pridávam primárny kľúč" -#: js/messages.php:363 +#: js/messages.php:364 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1736,180 +1748,180 @@ msgstr "Pridávam primárny kľúč" msgid "OK" msgstr "OK" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Click to dismiss this notification" msgstr "Kliknutím zatvoríte túto správu" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Renaming databases" msgstr "Premenovávam databázy" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Copying database" msgstr "Kopírujem databázu" -#: js/messages.php:369 +#: js/messages.php:370 msgid "Changing charset" msgstr "Mením znakovú sadu" -#: js/messages.php:373 libraries/Util.php:3289 +#: js/messages.php:374 libraries/Util.php:3289 msgid "Enable foreign key checks" msgstr "Povoliť kontrolu cudzích kľúčov" -#: js/messages.php:376 +#: js/messages.php:377 msgid "Failed to get real row count." msgstr "Nepodarilo sa zístiť skutočný počet riadkov." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Searching" msgstr "Vyhľadávam" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide search results" msgstr "Skryť výsledky vyhľadávania" -#: js/messages.php:381 +#: js/messages.php:382 msgid "Show search results" msgstr "Zobraziť výsledky vyhľadávania" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Browsing" msgstr "Prechádzať" -#: js/messages.php:383 +#: js/messages.php:384 msgid "Deleting" msgstr "Odstraňujem" -#: js/messages.php:387 +#: js/messages.php:388 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Definícia uloženej funkcie musí obsahovať príkaz RETURN!" -#: js/messages.php:388 libraries/DisplayResults.php:4832 -#: libraries/DisplayResults.php:5091 libraries/Menu.php:347 -#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3709 -#: libraries/Util.php:3710 libraries/Util.php:4328 libraries/Util.php:4343 -#: libraries/Util.php:4360 libraries/config/messages.inc.php:254 +#: js/messages.php:389 libraries/DisplayResults.php:4850 +#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 +#: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 +#: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2448 -#: libraries/server_privileges.lib.php:2527 -#: libraries/server_privileges.lib.php:2873 -#: libraries/server_privileges.lib.php:3532 -#: libraries/server_status_monitor.lib.php:321 prefs_manage.php:306 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2875 +#: libraries/server_privileges.lib.php:3543 +#: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 msgid "Export" msgstr "Exportovať" -#: js/messages.php:391 libraries/rte/rte_routines.lib.php:742 +#: js/messages.php:392 libraries/rte/rte_routines.lib.php:742 msgid "ENUM/SET editor" msgstr "Upraviť ENUM/SET" -#: js/messages.php:392 +#: js/messages.php:393 #, php-format msgid "Values for column %s" msgstr "Hodnoty pre pole %s" -#: js/messages.php:393 +#: js/messages.php:394 msgid "Values for a new column" msgstr "Hodnoty pre nový stĺpec" -#: js/messages.php:394 +#: js/messages.php:395 msgid "Enter each value in a separate field." msgstr "Zadajte každú hodnotu do samostatného poľa." -#: js/messages.php:395 +#: js/messages.php:396 #, php-format msgid "Add %d value(s)" msgstr "Pridať %d hodnôt" -#: js/messages.php:399 +#: js/messages.php:400 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Poznámka: Ak súbor obsahuje viac tabuliek, tieto budú spojené do jednej." -#: js/messages.php:403 +#: js/messages.php:404 msgid "Hide query box" msgstr "Skryť vyhľadávacie pole" -#: js/messages.php:404 +#: js/messages.php:405 msgid "Show query box" msgstr "Zobrazit vyhľadávacie pole" -#: js/messages.php:405 libraries/Console.php:88 libraries/Console.php:217 -#: libraries/DisplayResults.php:3457 libraries/DisplayResults.php:4816 +#: js/messages.php:406 libraries/Console.php:88 libraries/Console.php:217 +#: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4834 #: libraries/Index.php:721 libraries/Util.php:727 libraries/Util.php:1238 -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:119 +#: libraries/server_user_groups.lib.php:121 #: libraries/server_variables.lib.php:242 #: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 msgid "Edit" msgstr "Upraviť" -#: js/messages.php:406 libraries/Console.php:89 libraries/DbSearch.php:360 -#: libraries/DisplayResults.php:3526 libraries/DisplayResults.php:4800 +#: js/messages.php:407 libraries/Console.php:89 libraries/DbSearch.php:360 +#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4818 #: libraries/central_columns.lib.php:854 #: libraries/central_columns.lib.php:1200 libraries/display_export.lib.php:227 -#: libraries/server_user_groups.lib.php:129 -#: libraries/sql_query_form.lib.php:416 libraries/tracking.lib.php:480 +#: libraries/server_user_groups.lib.php:131 +#: libraries/sql_query_form.lib.php:417 libraries/tracking.lib.php:490 #: setup/frames/index.inc.php:187 setup/frames/index.inc.php:295 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Zmazať" -#: js/messages.php:407 libraries/DisplayResults.php:915 -#: libraries/DisplayResults.php:923 +#: js/messages.php:408 libraries/DisplayResults.php:919 +#: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d nie je platné číslo riadku." -#: js/messages.php:408 -#: libraries/controllers/table/TableSearchController.php:435 -#: libraries/controllers/table/TableSearchController.php:920 -#: libraries/sql.lib.php:193 tbl_change.php:159 +#: js/messages.php:409 +#: libraries/controllers/table/TableSearchController.php:432 +#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "Prejsť hodnoty cudzích kľúčov" -#: js/messages.php:409 +#: js/messages.php:410 msgid "No auto-saved query" msgstr "Žiadny automaticky uložený dopyt" -#: js/messages.php:410 +#: js/messages.php:411 #, php-format msgid "Variable %d:" msgstr "Premenná %d:" -#: js/messages.php:413 libraries/normalization.lib.php:889 +#: js/messages.php:414 libraries/normalization.lib.php:889 msgid "Pick" msgstr "Zvoliť" -#: js/messages.php:414 +#: js/messages.php:415 msgid "Column selector" msgstr "Volič stĺpcov" -#: js/messages.php:415 +#: js/messages.php:416 msgid "Search this list" msgstr "Hľadať v tomto zozname" -#: js/messages.php:417 +#: js/messages.php:418 #, 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:420 +#: js/messages.php:421 msgid "See more" msgstr "Zobraziť viac" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Are you sure?" msgstr "Ste si istí?" -#: js/messages.php:423 +#: js/messages.php:424 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1917,51 +1929,51 @@ msgstr "" "Táto akcia môže zmeniť niektoré definície stĺpcov.
Naozaj chcete " "pokračovať?" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "Pokračovať" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "Pridať primárny kľúč" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "Bol pridaný primárny kľúč." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "Vezmeme vás na ďalší krok…" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Prvý krok normalizácie je kompletný pre tabuľku '%s'." -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "Koniec kroku" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "Druhý krok normalizácie (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Hotovo" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "Potvrdiť čiastočné závislosti" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "Vybrané čiastočné závislostí sú nasledovné:" -#: js/messages.php:440 +#: js/messages.php:441 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1969,19 +1981,19 @@ msgstr "" "Poznámka: a, b -> d,f znamená, že kombinované hodnoty v stĺpcoch a a b " "spolu môžu určovať hodnoty stĺpcov d a f." -#: js/messages.php:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "Neboli vybrané žiadne čiastkové závislosti!" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "Ukáž mi možné čiastočné závislosti na základe údajov v tabuľke" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "Skryť zoznam čiastočných závislostí" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -1989,165 +2001,165 @@ msgstr "" "Posaďte sa! Môže to trvať niekoľko sekúnd v závislosti od veľkosti dát a " "počtu stĺpcov tabuľky." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "Krok" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "Vykonajú sa nasledovné akcie:" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "Odstrániť stĺpce %s z tabuľky %s" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "Vytvoriť nasledujúcu tabuľku" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "Tretí krok normalizácie (3NF)" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "Potvrdiť prechodné závislostí" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "Boli zvolené nasledujúce závislosti:" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "Neboli vybrané žiadne závislosti!" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Uložiť" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Skryť parametre vyhľadávania" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Zobraziť parametre vyhľadávania" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "Rozsah vyhľadávania" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "Najväčšia hodnota stĺpca:" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "Najmenšia hodnota stĺpca:" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "Minimálna hodnota:" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "Maximálna hodnota:" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "Skryť kritériá vyhľadávania" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "Zobraziť kritériá vyhľadávania" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "Každý bod reprezentuje riadok dát." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "Pohybom myši nad bodom zobrazíte jeho názov." -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Pre priblíženie kliknite na sekciu grafu." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "Kliknite na tlačidlo Obnoviť zoom na návrat do pôvodného stavu." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "Kliknite na dátový bod pre zobrazenie a prípadnú úpravu dát." -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "Graf môžete zväčšiť potiahnutím za pravý dolný roh." -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "Zvoľte dva stĺpce" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "Zvoľte dva rôzne stĺpce" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "Obsah datového bodu" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignorovať" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Kopírovať" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Bod" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Linka" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Polygón" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "Vnútorný obrys" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "Vonkajší obrys" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "Chcete skopírovať šifrovací kľúč?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "Šifrovací kľúč" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2155,24 +2167,24 @@ msgstr "" "Hovorí, že ste vykonali zmeny na tejto stránke; budete vyzvaní k potvrdeniu " "pred zahodením zmien" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Zvoliť odkazovaný kľúč" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Zvoliť cudzí kľúč" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "Zvoľte, prosím, primárny alebo unikátny kľúč!" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Zvoľte, ktoré polia zobraziť" -#: js/messages.php:532 +#: js/messages.php:533 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?" @@ -2180,118 +2192,118 @@ msgstr "" "Neuložili ste zmeny v schéme. Ak ich neuložíte, tieto zmeny budú stratené. " "Chcete pokračovať?" -#: js/messages.php:535 +#: js/messages.php:536 msgid "Page name" msgstr "Názov stránky" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Uložiť stránku" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Uložiť stránku ako" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Otvoriť stránku" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "Zmazať stránku" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Nepomenovaná" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "Prosím zvoľte si stránku, kde chcete pokračovať" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "Prosím zadajte platný názov stránky" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "Chcete uložiť zmeny aktuálnej stránky?" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "Stránka bola odstránená" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "Exportovať relačnú schému" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Zmeny boli uložené" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "Pridať voľbu pre stĺpec \"%s\"." -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "Bolo vytvorených %d objektov." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Odošli" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "Klávesou ESC ukončíte upravovanie." -#: js/messages.php:557 +#: js/messages.php:558 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ánke sú neuložené zmeny. Naozaj ju chcete opustiť?" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "Usporiadajte pretiahnutím." -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "Kliknutím zoradíte výsledky podľa tohto stĺpca." -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "Kliknite pre označenie/odznačenie." -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "Dvakrát kliknite pre skopírovanie názvu stĺpca." -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" "Kliknite na šípku rozbaľovacieho zoznamu
pre zmenu viditeľnosti stĺpca." -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Zobraziť všetko" -#: js/messages.php:574 +#: js/messages.php:575 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." @@ -2300,11 +2312,11 @@ msgstr "" "zaškrtávanie, úprava, kopírovanie a mazanie liniek nemusí fungovať po " "uložení." -#: js/messages.php:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "Zadajte platný šestnástkový reťazec. Platné znaky sú 0-9, A-F." -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2312,126 +2324,93 @@ msgstr "" "Skutočne chcete zobraziť všetky riadky? Pri veľkej tabuľke môže dôjsť k pádu " "prehliadača." -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "Originálna dĺžka" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "zrušiť" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Prerušené" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "Úspech" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "Stav importu" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Presuňte súbory sem" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "Najprv vyberte databázu" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "Väčšinu stĺpcov môžete upraviť
dvojkliknutím na ich obsah." -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "Väčšinu stĺpcov môžete upraviť
kliknutím na ich obsah." -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "Prejsť na odkaz:" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "Kopírovať názov stĺpca." -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Kliknutím pravým tlačidlom myši na názov stĺpca ho skopírujete do schránky." -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Vytvoriť heslo" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Vytvoriť" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "Viac" -#: js/messages.php:623 +#: js/messages.php:624 msgid "Show panel" msgstr "Zobraziť panel" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "Skryť panel" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "Zobraziť skryté položky navigácie." -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "Prepojiť s hlavným panelom" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "Zrušiť prepojenie s hlavným panelom" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" -"Pre filtrovanie všetkých databáz na serveri, stlačte Enter po zadaní " -"hľadaného výrazu" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" -"Pre filtrovanie všetkých %s v databázi, stlačte Enter po zadaní hľadaného " -"výrazu" - #: js/messages.php:632 -msgid "tables" -msgstr "tabuľky" - -#: js/messages.php:633 -msgid "views" -msgstr "pohľady" - -#: js/messages.php:634 -msgid "procedures" -msgstr "procedúry" - -#: js/messages.php:635 -msgid "events" -msgstr "udalosti" - -#: js/messages.php:636 -msgid "functions" -msgstr "funkcie" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "Zvolená stránka sa nenašla v histórii, pravdepodobne bola zrušená." -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2441,41 +2420,41 @@ msgstr "" "Najnovšia verzia je %s a bola vydaná %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", posledná stabilná verzia:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "aktuálna" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "Vytvoriť pohľad" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "Poslať chybové hlásenie" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "Odoslať chybové hlásenie" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "Vyskytla sa chyba JavaScriptu. Chcete odoslať chybové hlásenie?" -#: js/messages.php:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "Zmeniť nastavenia hlásení" -#: js/messages.php:660 +#: js/messages.php:652 msgid "Show report details" msgstr "Zobraziť podrobnosti hlásenia" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2483,7 +2462,7 @@ msgstr "" "Export nie je kompletný kvôli krátkemu času vykonávania (execution time) v " "nastaveniach PHP!" -#: js/messages.php:667 +#: js/messages.php:659 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2492,349 +2471,349 @@ msgstr "" "Varovanie: formulár na tejto stránke má viac než %d polí. Pri odoslaní, " "niektoré polia môžu byť ignorované kvôli nastaveniu PHP max_input_vars." -#: js/messages.php:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "Na serveri boli zistené chyby!" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "Prosím, pozrite sa na spodnú časť okna." -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "Ignorovať všetko" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "Vykonať tento dopyt znovu?" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "Naozaj chcete odstrániť túto záložku?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s dopytov bolo vykonaných %s krát za %s sekúnd." -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 msgid "Show arguments" msgstr "Zobraziť argumenty" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "Skryť argumenty" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "Predchádzajúci" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "Ďalší" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Dnes" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "Január" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "Február" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "Marec" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "Apríl" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Máj" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "Jún" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "Júl" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "August" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "September" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "Október" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "November" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "Máj" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Jún" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Júl" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Dec" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "Nedeľa" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "Pondelok" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "Utorok" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "Streda" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "Štvrtok" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "Piatok" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "Sobota" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Po" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Út" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "St" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Št" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Pi" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "So" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "Ne" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "Po" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "Ut" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "St" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "Št" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "Pi" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "So" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "Týž" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "kalendár-mesiac-rok" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "žiadny" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Hodiny" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Minúty" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Sekundy" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "Toto pole je povinné" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "Prosím opravte toto pole" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "Prosím zadajte platnú emailovú adresu" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "Prosím zdajte platnú adresu URL" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "Prosím zadajte platný dátum" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "Prosím zadajte platný dátum ( ISO )" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "Prosím zadajte platné číslo" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "Prosím zadajte platné číslo kreditnej karty" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "Prosím zadajte iba čísla" @@ -2842,41 +2821,41 @@ msgstr "Prosím zadajte iba čísla" msgid "Please enter the same value again" msgstr "Prosím zadajte tú istú hodnotu ešte raz" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "Prosím zadajte nie viac ako {0} znakov" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "Prosím zadajte najmenej {0} znakov" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "Prosím zadajte počet znakov medzi {0} a {1}" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "Prosím zadajte hodnotu medzi {0} a {1}" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "Prosím zadajte hodnotu menšiu alebo rovnú {0}" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "Prosím zadajte hodnotu väčšiu alebo rovnú {0}" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "Prosím zadajte platný dátum alebo čas" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "Prosím zdajte platný HEX vstup" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Chyba" @@ -2966,11 +2945,12 @@ msgstr "Znovu spustiť dopyt" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3013,7 +2993,7 @@ msgstr "Počas aktuálnej relácie" msgid "Explain" msgstr "Vysvetliť" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Profilovanie" @@ -3047,8 +3027,8 @@ msgid "History" msgstr "História" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3193,7 +3173,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Prepnúť na tmavú tému" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3201,24 +3181,24 @@ msgstr "" "Server neodpovedá (alebo socket lokálneho MySQL servera nie je správne " "nastavený)." -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "Server neodpovedá." -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "Overte prístupové práva k adresáru, v ktorom je uložená databáza." -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Podrobnosti…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "Nepodarilo sa pripojiť ku controluser podľa nastavení z konfigurácie." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3228,8 +3208,8 @@ msgstr "Nepodarilo sa pripojiť ku controluser podľa nastavení z konfigurácie msgid "Ascending" msgstr "Vzostupne" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3374,8 +3354,8 @@ msgstr[1] "%1$s výskyty v %2$s" msgstr[2] "%1$s výskytov v %2$s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3417,119 +3397,120 @@ msgstr "Odznačiť všetko" msgid "Inside column:" msgstr "V tabuľke:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "Uložiť zmeny" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "Obnoviť poradie stĺpcov" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "Filtrovať riadky" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "Hľadať v tabuľke" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "Začiatok" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "Predchádzajúci" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "Ďalší" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "Koniec" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Všetko" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Počet riadkov:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Zoradiť podľa kľúča" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "Čiastočné texty" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "Plné texty" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Relačný kľúč" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 msgid "Display column for relations" msgstr "Zobraziť stĺpec so vzťahmi" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "Zobraziť binárny obsah" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "Zobraziť obsah BLOBu" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "Skryť transformácie prehliadača" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "Text (Well Known Text)" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "Well Known Binary" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "Riadok bol zmazaný." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Zabiť" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Môže byť nepresné. Viď [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "SQL dopyt bol úspešne vykonaný." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3537,64 +3518,64 @@ msgid "" msgstr "" "Tento pohľad má aspoň toľko riadok. Podrobnosti nájdete v %sdokumentaci%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "Zobrazené riadky %1s - %2s" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d celkom, %2$d v dotaze" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "celkom %d" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "Dopyt zabral %01.4f sekúnd." -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Výber:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 msgid "Check all" msgstr "Označiť všetko" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Náhľad k tlači" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Operácie s výsledkami dopytu" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Zobraziť graf" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "Zobraziť GIS data" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "Odkaz nebol nájdený!" @@ -3691,19 +3672,19 @@ msgstr "Nebol definovaný žiadny index!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Indexy" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3712,24 +3693,24 @@ msgid "Action" msgstr "Akcia" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Kľúčový názov" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Unikátny" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Zabalené" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Mohutnosť" @@ -3737,8 +3718,8 @@ msgstr "Mohutnosť" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3748,8 +3729,8 @@ msgid "Collation" msgstr "Zotriedenie" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3765,15 +3746,15 @@ msgstr "Primárny kľúč bol zrušený." msgid "Index %s has been dropped." msgstr "Index pre %s bol odstránený." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Odstrániť" @@ -3812,12 +3793,13 @@ msgstr "Pohľad" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3825,7 +3807,7 @@ msgstr "Tabuľka" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3834,8 +3816,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3843,41 +3825,41 @@ msgid "Search" msgstr "Hľadať" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Vložiť" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Oprávnenia" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Operácie" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Sledovanie" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3888,16 +3870,16 @@ msgstr "Spúšťače" msgid "Database seems to be empty!" msgstr "Databáza vyzerá prázdna!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Dopyt podľa príkladu" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rutiny" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3905,20 +3887,20 @@ msgstr "Rutiny" msgid "Events" msgstr "Udalosti" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Dizajnér" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "Centrálne stĺpce" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Databázy" @@ -3927,33 +3909,33 @@ msgid "User accounts" msgstr "Užívateľské účty" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Binárny log" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikácia" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Premenné" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Znakové sady" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Systémy" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "Rozšírenia" @@ -4254,7 +4236,7 @@ msgstr "Nie je možné premenovať index na PRIMARY!" msgid "No index parts defined!" msgstr "Časti indexu neboli definované!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4721,37 +4703,37 @@ msgstr "Funkčnosť %s je ovplyvnená známou chybou, pozri %s" msgid "Click to toggle" msgstr "Kliknite pre prepnutie" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Prechádzať váš počítač:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Zvoľte súbor z upload adresára %s web servera:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Adresár určený pre upload súborov sa nedá otvoriť." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "Žiadny súbor pre nahrávanie!" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Vyprázdniť" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "Spustiť" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Vytlačiť" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "Používatelia" @@ -4910,8 +4892,8 @@ msgid "Add new column" msgstr "Pridať nový stĺpec" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -4974,19 +4956,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "Mali by ste aktualizovať %s na verziu %s alebo vyššiu." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "Chyba: Nesprávny token" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "Pokus o prepísanie GLOBALS" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "možný pokus o exploit" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "zistený číselný kľúč" @@ -5802,7 +5784,7 @@ msgid "Remember file name template" msgstr "Zapamätať si vzor pre názov súboru" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Pridať hodnotu AUTO_INCREMENT" @@ -5841,7 +5823,7 @@ msgstr "Exportovať súvisiace metadata z úložiska phpMyAdmin konfigurácie" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Pridať %s" @@ -7531,7 +7513,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "Určuje či má príkazové okno ostať na obrazovke po vykonaní." -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "Zachovať príkazové okno" @@ -7825,102 +7807,33 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Open Document Text" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "Zoznam obľúbených je plný!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Tabuľka %s bola vyprázdená." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "Pohľad %s bol odstránený." -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "Tabuľka %s bola odstránená." -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "Zoznam obľúbených je plný!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "neznámy" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "Nebol vybraný žiadny stĺpec." - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "Stĺpce boli úspešne presunuté." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "Tabuľka %1$s bola úspešné upravená." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "Chyba dopytu" - -#: libraries/controllers/TableStructureController.php:967 -#, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "Tabuľka %1$s bola úspešné upravená. Oprávnenia boli upravené." - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Zmeniť" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Index" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Celý text" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "Odlišné hodnoty" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -7934,6 +7847,14 @@ msgstr "" msgid "No data to display" msgstr "Žiadne dáta" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "Tabuľka %1$s bola úspešné upravená." + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "Zobrazený stĺpec bol aktualizovný." @@ -7942,19 +7863,80 @@ msgstr "Zobrazený stĺpec bol aktualizovný." msgid "Internal relations were successfully updated." msgstr "Interné vzťahy boli úspešne zmenené." -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "Vyhľadávanie v tabuľke" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "Zoom vyhľadávania" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Nájsť a nahradiť" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "Nebol vybraný žiadny stĺpec." + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "Stĺpce boli úspešne presunuté." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "Chyba dopytu" + +#: libraries/controllers/table/TableStructureController.php:975 +#, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "Tabuľka %1$s bola úspešné upravená. Oprávnenia boli upravené." + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Zmeniť" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Index" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Celý text" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "Odlišné hodnoty" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -7964,7 +7946,7 @@ msgstr "Chýba rozšírenie %s. Skontrolujte prosín nastavenia PHP." msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Žiadna zmena" @@ -8031,7 +8013,7 @@ msgstr "Vytvoriť" msgid "Create database:" msgstr "Vytvoriť databázu:" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Žiadne oprávnenia" @@ -8737,69 +8719,69 @@ msgid "Dump has been saved to file %s." msgstr "Výpis bol uložený do súboru %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL vrátil prázdny výsledok (tj. nulový počet riadkov)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Nasledujúce tabuľky boli vytvorené alebo zmenené. Teraz možete:" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "Obsah štruktúry sa zobrazí kliknutím na jej názov." -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "Zmeniť jej ľubovolné nastavenia kliknutím na odkaz \"Nastavenia\"." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "Upraviť štruktúru kliknutím na odkaz \"Štruktúra\"." -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "Prejsť do databázy: %s" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "Upraviť nastavenia pre %s" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "Prejsť na tabuľku: %s" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "Štruktúra %s" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "Prejsť na pohľad: %s" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "Vytvoriť index na %s stĺpcoch" @@ -8822,66 +8804,66 @@ msgstr "Funkcia" msgid "Binary" msgstr "Binárny" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "Kvôli jeho dĺžke,
sa toto pole nemusí dať upraviť." -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Binárny - neupravujte" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Alebo" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "upload adresár web serveru:" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "Upraviť/Vložiť" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "a potom" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Vložiť ako nový riadok" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "Vložiť ako nový riadok a ignorovať chyby" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "Zobraziť insert dopyt" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Späť" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Vložiť nový záznam" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Späť na túto stránku" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Upraviť nasledujúci riadok" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -8891,7 +8873,7 @@ msgstr "" "Pre pohyb medzi hodnotami použite klávesu TAB alebo pre pohyb všetkými " "smermi klávesy CTRL+šípky" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -8903,11 +8885,11 @@ msgstr "" msgid "Value" msgstr "Hodnota" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "Zobrazujem SQL dotaz" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "Vložený riadok id: %1$d" @@ -8923,35 +8905,35 @@ msgstr "Žiadny" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Úspech!" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "Nahradiť predponu tabuľky:" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "Skopírovať tabuľku s predponou:" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "Z" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "Pridať prefix tabuľky:" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "Pridať prefix" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "Skutočne chcete vykonať nasledovný príkaz?" @@ -9169,8 +9151,8 @@ msgstr "Procedúry:" msgid "Views:" msgstr "Náhľady:" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Ukázať" @@ -9209,18 +9191,15 @@ msgstr[1] "nájdené %s výsledky" msgstr[2] "nájdených %s výsledkov" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" -msgstr "Filtrovať databázy podľa mena alebo regulárneho výrazu" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 msgid "Clear fast filter" msgstr "Vymazať filter" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "Filtrovať podľa mena alebo regulárneho výrazu" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "Zbaliť všetko" @@ -9593,7 +9572,7 @@ msgstr "Premenovať databázu na" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9604,7 +9583,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Upraviť oprávnenia" @@ -9622,18 +9601,18 @@ msgstr "Odstrániť databázu" msgid "Drop the database (DROP)" msgstr "Odstrániť databázu (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Iba štruktúru" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Štruktúru a dáta" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Iba dáta" @@ -9645,7 +9624,7 @@ msgstr "Skopírovať databázu do" msgid "CREATE DATABASE before copying" msgstr "Vytvoriť databázu (CREATE DATABASE) pred kopírovaním" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Pridať obmedzenia" @@ -9685,157 +9664,157 @@ msgstr "Úložný Systém" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Skopírovať tabuľku do (databáza.tabuľka)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Prepnúť na skopírovanú tabuľku" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Údržba tabuľky" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Analyzovať tabuľku" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Skontrolovať tabuľku" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 msgid "Checksum table" msgstr "Vytvoriť kontrolný súčet tabuľky" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Defragmentovať tabuľku" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "Tabuľka %s bola vyprázdnená." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "Vyprázdniť tabuľku (FLUSH)" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Optimalizovať tabuľku" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Opraviť tabuľku" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "Odstrániť dáta alebo tabuľku" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "Vyprázdniť tabuľku (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "Odstrániť tabuľku (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Analyzovať" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Skontrolovať" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Optimalizovať" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Opraviť" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 msgid "Coalesce" msgstr "Zlúčiť" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Skontrolovať referenčnú integritu:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Nedá sa presunúť tabuľka sama do seba!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Nedá sa skopírovať tabuľka sama do seba!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabuľka %s bola presunutá do %s. Oprávnenia boli upravené." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabuľka %s bola skopírovaná do %s. Oprávnenia boli upravené." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabuľka %s bola presunutá do %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabuľka %s bola skorírovaná do %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Tabuľka je prázdna!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "Tento formát nemá žiadne nastavenia" @@ -10006,7 +9985,7 @@ msgstr "Možnosti uloženia dát" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Sťahujem dáta pre tabuľku" @@ -10030,21 +10009,21 @@ msgstr "Definícia" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Štruktúra tabuľky pre tabuľku" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Štruktúra pre zobrazenie" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10134,7 +10113,7 @@ msgid "Database:" msgstr "Databáza:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "Dáta:" @@ -10233,7 +10212,7 @@ msgid "Data creation options" msgstr "Možnosti vytvárania údajov" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "Vyprázdniť tabuľku pred vložením" @@ -10304,8 +10283,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10313,81 +10292,81 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 msgid "Metadata" msgstr "Metadáta" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "Metadáta pre %s" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Vytvorené:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Posledná zmena:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Posledná kontrola:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "práve sa používa" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Obmedzenie pre exportované tabuľky" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Obmedzenie pre tabuľku" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "Kľúče pre exportované tabuľky" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "Indexy pre tabuľku" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT pre exportované tabuľky" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT pre tabuľku" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPY PRE TABUĽKU" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "PREPOJENIA PRE TABUĽKU" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "Štruktúra pre zobrazenie %s exportovanej ako tabuľka" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "Chyba pri čítaní dát:" @@ -10618,9 +10597,9 @@ msgstr "Relačná schéma" msgid "Table of contents" msgstr "Obsah" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Extra" @@ -10812,47 +10791,47 @@ msgstr "Formátuje text ako JSON so zvýrazňovaním syntaxe." msgid "Formats text as XML with syntax highlighting." msgstr "Formátuje text ako XML so zvýrazňovaním syntaxe." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "Bol pridaný FOREIGN KEY vzťah." -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Chyba: FOREIGN KEY vzťah nemohol byť pridaný!" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "Bol pridaný interný vzťah." -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 msgid "Error: Internal relation could not be added!" msgstr "Chyba: Interný vzťah nemohol byť pridaný!" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 msgid "FOREIGN KEY relation has been removed." msgstr "FOREIGN KEY vzťah bol odstránený." -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Chyba: FOREIGN KEY vzťah nehomol byť odstránený!" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 msgid "Error: Internal relation could not be removed!" msgstr "Chyba: Vnútorný vzťah nemôže byť odstránený!" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "Interný vzťah bol odstránený." @@ -10899,91 +10878,91 @@ msgstr "" "Prosím prečítajte si dokumentáciu ako aktualizovať tabuľku s informáciami o " "stĺpcoch (column_info tabuľka). " -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Obľúbený SQL dopyt" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL história" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "Trvalé naposledy použité tabuľky" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 msgid "Persistent favorite tables" msgstr "Trvalé obľúbené tabuľky" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "Užívateľské nastavenia" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "Konfigurovateľné menu" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Remember table's sorting" msgid "Remembering Designer Settings" msgstr "Pamätať si triedenie tabuľky" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 msgid "Saving export templates" msgstr "Ukladanie exportných šablón" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "bez popisu" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -10991,14 +10970,14 @@ msgid "" "configuration storage there." msgstr "Chýbajú tabuľky pre miesto uloženia phpMyAdmin konfigurácie" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" "%sCreate%s miesto uloženia phpMyAdmin konfigurácie v aktuálnej databáze." -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "%sVytvoriť%s chýbajúce tabuľky pre uloženie phpMyAdmin konfigurácie." @@ -11175,8 +11154,8 @@ msgstr "Meno používateľa:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Meno používateľa" @@ -11184,7 +11163,7 @@ msgstr "Meno používateľa" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Heslo" @@ -11806,7 +11785,7 @@ msgstr[2] "%1$d databáz bolo úspešne zrušených." msgid "Plugin" msgstr "Doplnok" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Verzia" @@ -11814,100 +11793,96 @@ msgstr "Verzia" msgid "Author" msgstr "Autor" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "Licencia" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "vypnuté" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Žiadne práva." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Všetky oprávnenia okrem GRANT." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Povolí čítanie dát." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Povolí vkladanie a nahradzovanie dát." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Povolí menenie dát." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Povolí mazanie dát." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Povolí vytváranie nových databáz a tabuliek." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Povolí odstraňovanie databáz a tabuliek." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Povolí znovunačítanie nastavení a vyprázdňovanie vyrovnávacích pamätí " "serveru." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Povolí vypnutie serveru." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "Povolí importovanie a exportovanie dát zo/do súborov na serveri." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "Nefunguje v tejto verzii MySQL." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Povolí vytváranie a mazanie indexov." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Povolí meniť štruktúru existujúcich tabuliek." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Povolí prístup ku kompletnému zoznamu databáz." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -11918,65 +11893,65 @@ msgstr "" "premenných alebo zabíjanie procesov iných používateľov." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Povolí vytváranie dočasných tabuliek." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Povolí zmaknutie tabuliek pre aktuálne vlákno." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Potrebné pre replikáciu pomocných serverov." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "Povolí používateľovi zistiť kde je hlavný / pomocný server." #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Umožňuje vytvárať nové pohľady." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "Umožňuje plánovať udalosti pomocou plánovača." #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "Povolí vytváranie a mazanie spúšťačov." #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Umožňuje spúšťať príkazy so SHOW CREATE VIEW." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Umožňuje vytvárať uložené procedúry." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Umožňuje upravovať a odstraňovať uložené procedúry." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "Umožňuje vytvárať, odstraňovať a premenovávať používateľské kontá." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Umožňuje spúšťať uložené procedúry." @@ -11988,8 +11963,8 @@ msgstr "Žiadny" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12030,12 +12005,12 @@ msgstr "" "Poznámka: Nastavenie týchto parametrov na 0 (nulu) odstráni obmedzenia." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Obmedzí počet dopytov, ktoré môže používateľ odoslať za hodinu." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12044,26 +12019,26 @@ msgstr "" "používateľ odoslať za hodinu." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Obmedzí počet nových spojení, ktoré môže používateľ vytvoriť za hodinu." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "Obmedzuje počet simultánnych pripojení používateľa." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Rutina" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "Povolí pridávanie uživatelov a práv bez znovunačítania tabuliek práv." @@ -12082,14 +12057,14 @@ msgstr "Umožňuje spúšťať uložené procedúry." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Oprávnenia pre jednotlivé tabuľky" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Poznámka: názvy MySQL oprávnení sú uvádzané po anglicky." @@ -12099,7 +12074,7 @@ msgid "Administration" msgstr "Administrácia" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Globálne práva" @@ -12108,15 +12083,15 @@ msgid "Global" msgstr "Globálny" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Oprávnenia pre jednotlivé databázy" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Povolí vytváranie nových tabuliek." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Povolí odstraňovanie tabuliek." @@ -12139,7 +12114,7 @@ msgid "Native MySQL Authentication" msgstr "Overovanie pomocou cookie" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Prihlasovacie informácie" @@ -12162,8 +12137,8 @@ msgstr "Názov počítača:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 msgid "Host name" msgstr "Názov počítača" @@ -12181,112 +12156,112 @@ msgstr "Rozšírenie pre prihlasovanie" msgid "Password Hashing Method" msgstr "Hashovanie hesla:" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "Heslo pre %s bolo úspešne zmenené." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Boli zrušené oprávnenia pre %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 msgid "Add user account" msgstr "Pridať používateľský účet" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 msgid "Database for user account" msgstr "Databáza pre účet používateľa" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "Vytvoriť databázu s rovnakým menom a prideliť všetky oprávnenia." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Prideliť všetky oprávnenia pomocou masky (používateľ\\_%)." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Prideliť všetky oprávnenia na databázu \"%s\"." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Používatelia majúci prístup k \"%s\"" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "Užívateľ bol pridaný." -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Prideliť" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "Nebol nájdený žiadny používateľ." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Akýkoľvek" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "globálny" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "závislé na databáze" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "nahradzujúci znak" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "závislé na tabuľke" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 msgid "Edit privileges" msgstr "Upraviť oprávnenia" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Zrušiť" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "Upraviť užívateľské skupiny" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… zachovať pôvodného používateľa." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… zmazať pôvodného používateľa z tabuliek používateľov." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… odobrať všetky oprávnenia pôvodnému používateľovi a následne ho zmazať." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12294,109 +12269,109 @@ msgstr "" "… zmazať pôvodného používateľa z tabuliek používateľov a potom znovunačítať " "oprávnenia." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "Zmeniť prihlasovacie informácie / Kopírovať účet používateľa" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "Vytvoriť nový účet používateľa s rovnakými právami a …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Oprávnenia pre jednotlivé stĺpce" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 msgid "Remove selected user accounts" msgstr "Odstrániť vybrané účty používateľov" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Odobranie všetkých aktívnych práv používateľom a ich následné odstránenie." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "Odstrániť databázy s rovnakým menom ako majú používatelia." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "Na odstránenie neboli vybraní žiadni používatelia!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Znovunačítanie práv" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Vybraní používatelia bol úspešne odstránený." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Boli aktualizované oprávnenia pre %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "Odstraňuje sa %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Práva boli úspešne znovunačítané." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "Používateľ %s už existuje!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "Oprávnenia pre %s" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Používateľ" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "Nový" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 msgid "Edit privileges:" msgstr "Upraviť oprávnenia:" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "Užívateľský účet" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "Prehľad účtov používateľov" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12409,7 +12384,7 @@ msgstr "" "tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať " "%sznovunačítanie práv%s predtým ako budete pokračovať." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -12428,11 +12403,11 @@ msgstr "" "tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať " "%sznovunačítanie práv%s predtým ako budete pokračovať." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "Zvolený používateľ nebol nájdený v tabuľke práv." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Používateľ bol pridaný." @@ -12661,30 +12636,30 @@ msgstr "Pokyny/Nastavenie" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "Povoliť presúvanie grafov" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "Obnovovacia frekvencia" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "Stĺpce grafu" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "Obnoviť predvolené" @@ -12740,7 +12715,7 @@ msgid "Statements" msgstr "Údaj" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "#" @@ -12765,17 +12740,17 @@ msgstr "Zobraziť neformátované hodnoty" msgid "Related links:" msgstr "Súvisiace odkazy:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Počet neúspešných pokusov o pripojenie k MySQL serveru." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -12785,16 +12760,16 @@ msgstr "" "ale zároveň prekročili hodnotu binlog_cache_size a museli tak použiť dočasný " "súbor na uloženie príkazov transakcie." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "Počet transakcií, ktoré využili vyrovnávaciu pamäť binárneho logu." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12806,11 +12781,11 @@ msgstr "" "hodnotu tmp_table_size aby boli dočasné tabuľky ukladané do pamäte a nie na " "disk." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "Počet dočasných súborov vytvorených servrom mysqld." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -12818,7 +12793,7 @@ msgstr "" "Počet dočasných, v pamäti uložených tabuliek, vytvorených servrom pri " "vykonávaní príkazov." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -12826,7 +12801,7 @@ msgstr "" "Počet riadkov pridaných príkazom INSERT DELAYED, pri ktorých sa vyskytla " "chyba (pravdepodobne opakujúci sa kľúč)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -12834,23 +12809,23 @@ msgstr "" "Počet vlákien používaných príkazmi INSERT DELAYED. Každá samostatná tabuľka, " "na ktorú je použitý príkaz INSERT DELAYED, ma svoje vlastné vlákno." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "Počet riadkov vložených príkazom INSERT DELAYED." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "Počet vykonaných príkazov FLUSH." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "Počet interných príkazov COMMIT." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "Koľkokrát bol z tabuľky odstránený riadok." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -12860,7 +12835,7 @@ msgstr "" "tabuľky s daným menom. Tento proces sa nazýva objavovanie. Handler_discover " "zobrazuje počet doposiaľ objavených tabuliek." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -12870,7 +12845,7 @@ msgstr "" "znamená to že server vykonáva príliš veľa kompletných prechádzaní indexov; " "napríklad, SELECT col1 FROM foo, za predpokladu že col1 je indexovaný." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -12878,7 +12853,7 @@ msgstr "" "Počet požiadavkov na načítanie riadku podľa kľúča. Ak je táto hodnota " "vysoká, je to dobrým znamením že sú príkazy a tabuľky správne indexované." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -12888,7 +12863,7 @@ msgstr "" "Táto hodnota sa zvyšuje ak sa načítava indexovaný stĺpec v danom rozsahu " "alebo ak sa vykonáva prehľadávanie indexu." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -12897,7 +12872,7 @@ msgstr "" "čítacia metóda sa použiva hlavne na optimalizáciu príkazov typu ORDER BY … " "DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12910,7 +12885,7 @@ msgstr "" "kompletne prehľadávať tabuľky, alebo sa používajú zjednotenia, ktoré správne " "nevyužívajú kľúče." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12922,35 +12897,35 @@ msgstr "" "tabuľky nie sú správne indexované alebo príkazy nedostatočne využívajú " "dostupné indexy." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "Počet interných príkazov ROLLBACK." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "Počet požiadavkov na zmenu riadku v tabuľke." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "Počet požiadavkov na vloženie nového riadku do tabuľky." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "Počet stránok obsahujúcich dáta (nečistých aj čistých)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "Počet nečistých stránok." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Počet stránok, na ktoré je požiadavka na vyprázdnenie." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "Počet voľných stránok." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -12960,7 +12935,7 @@ msgstr "" "momentálne číta alebo zapisuje, prípadne nemôžu byť vyprázdnené ani " "odstránené z nejakého iného dôvodu." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12972,11 +12947,11 @@ msgstr "" "hodnota sa tiež môže vypočítať ako Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "Celkový počet stránok vo vyrovnávacej pamäti InnoDB." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -12984,7 +12959,7 @@ msgstr "" "Počet \"náhodných\" predčítaní vykonaných InnoDB. Táto situácia nastáva pri " "príkazoch, ktoré prehľadávajú veľkú časť tabuľky, ale v náhodnom poradí." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -12992,11 +12967,11 @@ msgstr "" "Počet sekvenčných predčítaní vykonaných InnoDB. Táto situácia nastáva pri " "vykonávaní sekvenčného prehľadávania celej tabuľky." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "Počet požiadavkov na logické načítavanie." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13004,7 +12979,7 @@ msgstr "" "Počet logických načítaní, ktoré sa nemohli vykonať z vyrovnávacej pamäte a " "namiesto toho bolo vykonané načítanie celej jednej stránky." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13018,88 +12993,88 @@ msgstr "" "počet týchto čakaní a ak bola správne nastavená veľkosť vyrovnávacej pamäte, " "mala by byť nízka." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "Počet zápisov do vyrovnávacej pamäte InnoDB." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "Počet vykonaných fsync() operácií." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "Aktuálny počet prebiehajúcich fsync() operácií." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "Počet aktuálne prebiehajúcich načítavaní." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "Počet aktuálne prebiehajúcich zápisov." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "Množstvo už načítaných dát, v bajtoch." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "Celkový počet načítaní dát." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "Celkový počet zápisov dát." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "Množstvo už zapísaných dát, v bajtoch." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Počet vykonaných dvojitých zápisov a počet stránok zapísaných pre tento účel." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" "Počet vykonaných dvojitých zápisov a počet stránok zapísaných pre tento účel." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" "Počet čakaní na vyprázdnenie vyrovnávacej pamäte logu z dôvodu jej zaplnenia." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "Počet požiadaviek na zápis do logovacieho súboru." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "Počet fyzických zápisov do logovacieho súboru." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "Počet fsync() zápisov vykonaných do logovacieho súboru." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "Počet prebiehajúcich synchronizácií logovacieho súboru." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "Počet prebiehajúcich zápisov do logovacieho súboru." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "Množstvo bajtov zapísaných do logovacieho súboru." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "Počet vytvorených stránok." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -13108,51 +13083,51 @@ msgstr "" "hodnôt sa udáva v stránkach; pomocou veľkosti stránky je možné ich premeniť " "na bajty." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "Počet načítaných stránok." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "Počet zapísaných stránok." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "Počet zámkov na riadky, na ktoré sa čaká." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Priemerný čas potrebný na získanie zámku na riadok, v milisekundách." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Celkový čas potrebný na získanie zámku na riadok, v milisekundách." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maximálny čas potrebný na získanie zámku na riadok, v milisekundách." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "Koľkokrát sa muselo čakať na zámok na riadok." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "Počet riadkov odstránených z InnoDB tabuliek." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "Počet riadkov vložených do InnoDB tabuliek." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "Počet načítaných riadkov z InnoDB tabuliek." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "Počet upravených riadkov v InnoDB tabuľkách." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13161,7 +13136,7 @@ msgstr "" "neboli zapísané na disk. Predtým sa táto hodnota nazývala " "Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -13169,7 +13144,7 @@ msgstr "" "Počet nevyužitých blokov vo vyrovnávacej pamäti kľúčov. Z tejto hodnoty " "môžete zistiť koľko vyrovnávacej pamäte sa práve používa." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13178,15 +13153,15 @@ msgstr "" "Počet využitých blokov vo vyrovnávacej pamäti kľúčov. Táto hodnota určuje " "najväčšie množstvo blokov, ktoré kedy naraz použité." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "Percento využitia vyrovnávacej pamäti kľúčov (vypočítaná hodnota)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "Počet požiadavkov na načítanie kľúčového bloku z vyrovnávacej pamäti." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13197,26 +13172,26 @@ msgstr "" "je príliš malá. Úspešnosť vyrovnávacej pamäte si môžte vypočítať zo vzťahu " "Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "Počet požiadavkov na zápis kľúčového bloku do vyrovnávacej pamäti." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "Počet fyzických zápisov kľúčového bloku na disk." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13227,17 +13202,17 @@ msgstr "" "požiadavku. Prednastavená hodnota 0 znamená, že doposiaľ neboli skompilované " "žiadne príkazy." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Počet riadkov čakajúcich na zápis cez INSERT DELAYED." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13245,38 +13220,38 @@ msgstr "" "Počet doposiaľ otvorených tabuliek. Ak je táto hodnota príliš vysoká, " "pravdepodobne je vyrovnávacia pamäť pre tabuľky príliš malá." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "Počet otvorených súborov." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "Počet otvorených streamov (väčšinou využívané na logovanie)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "Počet práve otvorených tabuliek." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "Veľkosť voľnej pamäti pre vyrovnávaciu pamäť príkazov." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "Počet zásahov vyrovnávacej pamäti." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "Počet príkazov pridaných do vyrovnávacej pamäti." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13288,7 +13263,7 @@ msgstr "" "veľkosti vyrovnávacej pamäte príkazov. Vyrovnávacia pamäť príkazov používa " "stratégiu (LRU), odstránenie najdlhšie nepoužitých príkazov ako prvých." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13296,19 +13271,19 @@ msgstr "" "Počet príkazov neumiestnených do vyrovnávacej pamäti (nie sú cachovateľné " "alebo nevyhovujú nastaveniu query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "Počet príkazov registrovaných vo vyrovnávacej pamäti." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "Celkové množstvo blokov vo vyrovnávacej pamäti príkazov." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stav failsafe replikácie (zatiaľ neimplementované)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -13316,12 +13291,12 @@ msgstr "" "Počet spojení, ktoré nevyužívajú indexy. Ak sa táto hodnota nerovná 0, mali " "by ste starostlivo skontrolovať indexy vašich tabuliek." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" "Počet spojení, ktoré na referenčnej tabuľke využili intervalové vyhľadávanie." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -13330,7 +13305,7 @@ msgstr "" "(ak táto hodnota nie je 0, mali by ste starostlivo skontrolovať indexy " "vašich tabuliek.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13338,15 +13313,15 @@ msgstr "" "Počet spojení, ktoré na prvej tabuľke využili intervalové vyhľadávanie (táto " "hodnota nie je kritická ani v prípade, že je vysoká.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "Počet spojení, ktoré vykonali kompletné prehľadanie prvej tabuľky." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Počet dočasných tabuliek, otvorených podriadeným SQL vláknom." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13354,13 +13329,13 @@ msgstr "" "Celkový počet (od spustenia) pokusov replikačného podriadeného SQL vlákna o " "znovuobnovenie transakcie." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Táto položka obsahuje hodnotu ON ak je tento server podriadeným a je " "pripojený k prislúchajúcemu nadriadenému servru." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -13368,14 +13343,14 @@ msgstr "" "Počet vlákien, ktorých vytvorenie zabralo viac ako je hodnota " "slow_launch_time." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Počet príkazov, ktorých vykonanie zabralo viac ako je hodnota " "long_query_time." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13385,23 +13360,23 @@ msgstr "" "je táto hodnota prílis veľká, mali by ste pouvažovať nad zvýšením hodnoty " "systémového nastavania sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "Počet rozsahom obmedzených zoraďovaní." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "Počet zoradených riadkov." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "Počet zoradení uskutočnených prehľadávaním tabuľky." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "Počet zámkov tabuliek, ktoré boli získané okamžite." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13413,7 +13388,7 @@ msgstr "" "najprv optimalizovať vaše príkazy a potom buď rozdeliť tabuľku/tabuľky alebo " "použiť replikáciu." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13423,11 +13398,11 @@ msgstr "" "dá vypočítať zo vzťahu Threads_created/Connections. Ak je táto hodnota v " "červenom, mali by ste zvýšiť hodnotu thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "Počet momentálne otvorených spojení." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13438,11 +13413,11 @@ msgstr "" "Threads_created vysoká, mohli by ste zvýšiť hodnotu thread_cache_size (to " "však nespôsobí žiadnu citeľnú zmenu ak máte vlákna dobre implementované.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "Úspešnosť vyrovnávacej pamäti vlákien (vypočítaná hodnota)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "Počet nespiacich vlákien." @@ -13451,57 +13426,57 @@ msgstr "Počet nespiacich vlákien." msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "Užívateľské skupiny" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "Záložky pre prácu so serverom" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "Záložky pre prácu s databázou" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "Záložky pre prácu s tabuľkami" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "Zobrazenie používateľov" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "Pridať používateľskú skupinu" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "Priradenia menu pre skupinu užívateľov" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "Názov skupiny:" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "Záložky pre prácu so serverom" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "Záložky pre prácu s databázou" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "Záložky pre prácu s tabuľkami" @@ -13561,21 +13536,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 msgid "An alias was expected." msgstr "Bol očakávaný alias." @@ -13638,113 +13609,113 @@ msgstr "Udalosť %1$s bola vytvorená." msgid "Variable name was expected." msgstr "Vzor pre názov tabuľky" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "at beginning of table" msgid "Unexpected beginning of statement." msgstr "na začiatku tabuľky" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 #, fuzzy #| msgid "Unexpected characters on line %s." msgid "Unexpected token." msgstr "Neočakávané znaky na riadku %s." -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 #, fuzzy #| msgid "The number of tables that are open." msgid "The name of the entity was expected." msgstr "Počet práve otvorených tabuliek." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Riadok bol zmazaný." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "Podrobný profil" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "Poradie" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "Stav" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "Celkový čas" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "% Čas" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "Volania" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "ø Čas" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Pridať tento SQL dopyt do obľúbených" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "Názov:" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Dovoliť používať túto položku všetkým používateľom" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "Záložka nebola vytvorená!" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "Zobrazujem ako PHP kód" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, fuzzy, php-format #| msgid "" #| "Current selection does not contain a unique column. Grid edit, checkbox, " @@ -13756,7 +13727,7 @@ msgstr "" "Aktuálny výber neobsahuje unikátny stĺpec. Úprava gridu, zaškrtávanie, " "editácia, kopírovanie a mazanie nie sú dostupné." -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, fuzzy, php-format #| msgid "" #| "Current selection does not contain a unique column. Grid edit, checkbox, " @@ -13768,7 +13739,7 @@ msgstr "" "Aktuálny výber neobsahuje unikátny stĺpec. Úprava gridu, zaškrtávanie, " "editácia, kopírovanie a mazanie nie sú dostupné." -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problémy s indexami v tabuľke `%s`" @@ -13798,27 +13769,27 @@ msgstr "" msgid "Bind parameters" msgstr "Chybné parametre!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "Pridať tento SQL dopyt do obľúbených:" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Prepísať existujúci príkaz s rovnakým menom" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Oddeľovač" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Zobraziť tento dopyt znovu" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Iba prezrieť" @@ -13862,172 +13833,172 @@ msgstr "Deaktivovať sledovanie %s" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Vytvorené" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Aktualizované" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 msgid "Delete version" msgstr "Zmazať verziu" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Informácie o monitorovanie" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Snímok štruktúry" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "zapnuté" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "nie je zapnuté" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "Odstrániť riadok o sledovaní tabuľky z výpisu" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "Žiadne dáta" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "Vykonanie SQL" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "Exportovať ako %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Dátum" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Užívateľ" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Žiadny" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Sledovanie %1$s bolo aktivované vo verzii %2$s." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Sledovanie %1$s bolo deaktivované vo verzii %2$s." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Verzia %1$s z %2$s bola zmazaná." -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Nesledované tabuľky" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Sledovať tabuľku" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Sledované tabuľky" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Posledná verzia" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "Vymazať sledovanie" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Verzia" @@ -14035,11 +14006,11 @@ msgstr "Verzia" msgid "Manage your settings" msgstr "Spravovať svoje nastavenia" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "Nastavenia boli uložené." -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14143,7 +14114,7 @@ msgstr "Žiadne databázy" msgid "View dump (schema) of databases" msgstr "Export databáz" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14169,7 +14140,7 @@ msgid "" msgstr "" "Neporadilo za ukončiť vlákno %s. Jeho beh bol pravdepodobne už ukončený." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -15005,47 +14976,53 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "Názov grafu" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "Série:" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "X Hodnoty" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Y Hodnoty" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside column:" msgid "Series column:" msgstr "V tabuľke:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Values for column %s" msgid "Value Column:" msgstr "Hodnoty pre pole %s" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "Uložiť graf ako obrázok" @@ -15098,46 +15075,47 @@ msgstr "Komentár:" msgid "Drag to reorder" msgstr "Usporiadajte pretiahnutím" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +msgid "Foreign key constraints" +msgstr "Obmedzenia cudzieho kľúča" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "Akcie" + +#: templates/table/relation/common_form.phtml:10 +msgid "Constraint properties" +msgstr "Nastavenia obmedzenia" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "" + +#: templates/table/relation/common_form.phtml:60 +msgid "+ Add constraint" +msgstr "+ Pridať obmedzenie" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "Interné vzťahy" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "Interné vzťahy" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:37 -msgid "Foreign key constraints" -msgstr "Obmedzenia cudzieho kľúča" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "Akcie" - -#: templates/table/relation/common_form.phtml:41 -msgid "Constraint properties" -msgstr "Nastavenia obmedzenia" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "" - -#: templates/table/relation/common_form.phtml:83 -msgid "+ Add constraint" -msgstr "+ Pridať obmedzenie" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "Zvoľte, ktoré polia zobraziť:" @@ -15265,7 +15243,7 @@ msgid "at beginning of table" msgstr "na začiatku tabuľky" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -15309,7 +15287,7 @@ msgstr "Pozícia" msgid "Edit partitioning" msgstr "Upraviť v riadku" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "Upraviť zobrazenie" @@ -16512,6 +16490,37 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert je nastavené na 0" +#~ msgid "To filter all databases on server, press Enter after a search term" +#~ msgstr "" +#~ "Pre filtrovanie všetkých databáz na serveri, stlačte Enter po zadaní " +#~ "hľadaného výrazu" + +#~ msgid "To filter all %s in database, press Enter after a search term" +#~ msgstr "" +#~ "Pre filtrovanie všetkých %s v databázi, stlačte Enter po zadaní hľadaného " +#~ "výrazu" + +#~ msgid "tables" +#~ msgstr "tabuľky" + +#~ msgid "views" +#~ msgstr "pohľady" + +#~ msgid "procedures" +#~ msgstr "procedúry" + +#~ msgid "events" +#~ msgstr "udalosti" + +#~ msgid "functions" +#~ msgstr "funkcie" + +#~ msgid "Filter databases by name or regex" +#~ msgstr "Filtrovať databázy podľa mena alebo regulárneho výrazu" + +#~ msgid "Filter by name or regex" +#~ msgstr "Filtrovať podľa mena alebo regulárneho výrazu" + #~ msgid "Taking you to %s." #~ msgstr "Smerujem ťa na %s." diff --git a/po/sl.po b/po/sl.po index e5443c3f5b..bc727b400a 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3,20 +3,20 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-28 00:33+0200\n" "Last-Translator: Domen \n" -"Language-Team: Slovenian " -"\n" +"Language-Team: Slovenian \n" "Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " -"n%100==4 ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3;\n" "X-Generator: Weblate 2.5-dev\n" -#: changelog.php:37 license.php:30 +#: changelog.php:37 license.php:33 #, php-format msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " @@ -38,7 +38,7 @@ msgstr "Kliknite za razvrščanje." msgid "Showing rows %1$s - %2$s." msgstr "Prikazujem vrstice %1$s–%2$s." -#: db_create.php:61 +#: db_create.php:62 #, php-format msgid "Database %1$s has been created." msgstr "Zbirka podatkov %1$s je ustvarjena." @@ -47,13 +47,13 @@ msgstr "Zbirka podatkov %1$s je ustvarjena." msgid "Database comment" msgstr "Pripomba zbirke podatkov" -#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:601 +#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:599 #: templates/columns_definitions/column_definitions_form.phtml:84 msgid "Table comments:" msgstr "Pripombe tabele:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1568 +#: libraries/insert_edit.lib.php:1575 #: libraries/navigation/nodes/NodeColumn.php:34 #: libraries/plugins/export/ExportHtmlword.php:288 #: libraries/plugins/export/ExportHtmlword.php:384 @@ -63,13 +63,14 @@ msgstr "Pripombe tabele:" #: libraries/plugins/export/ExportTexytext.php:282 #: libraries/plugins/export/ExportTexytext.php:373 #: libraries/plugins/export/PMA_ExportPdf.php:472 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:882 libraries/tracking.lib.php:978 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 +#: libraries/tracking.lib.php:892 libraries/tracking.lib.php:990 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:10 -#: templates/table/relation/common_form.phtml:43 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:27 +#: templates/table/relation/common_form.phtml:79 #: templates/table/relation/foreign_key_row.phtml:176 #: templates/table/relation/foreign_key_row.phtml:188 #: templates/table/relation/internal_relational_row.phtml:73 @@ -89,14 +90,14 @@ msgstr "Stolpec" #: libraries/plugins/export/ExportTexytext.php:283 #: libraries/plugins/export/ExportTexytext.php:374 #: libraries/plugins/export/PMA_ExportPdf.php:474 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 #: libraries/rte/rte_list.lib.php:78 libraries/rte/rte_list.lib.php:106 #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2606 libraries/tracking.lib.php:883 -#: libraries/tracking.lib.php:975 +#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -106,7 +107,7 @@ msgstr "Vrsta" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:709 -#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1577 +#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1584 #: libraries/plugins/export/ExportHtmlword.php:294 #: libraries/plugins/export/ExportHtmlword.php:390 #: libraries/plugins/export/ExportLatex.php:517 @@ -115,9 +116,9 @@ msgstr "Vrsta" #: libraries/plugins/export/ExportTexytext.php:284 #: libraries/plugins/export/ExportTexytext.php:375 #: libraries/plugins/export/PMA_ExportPdf.php:476 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 -#: libraries/tracking.lib.php:885 libraries/tracking.lib.php:981 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/tracking.lib.php:895 libraries/tracking.lib.php:993 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 @@ -134,9 +135,9 @@ msgstr "Null" #: libraries/plugins/export/ExportTexytext.php:285 #: libraries/plugins/export/ExportTexytext.php:376 #: libraries/plugins/export/PMA_ExportPdf.php:478 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 -#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:886 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:896 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 @@ -148,8 +149,8 @@ msgstr "Privzeto" #: libraries/plugins/export/ExportOdt.php:488 #: libraries/plugins/export/ExportTexytext.php:378 #: libraries/plugins/export/PMA_ExportPdf.php:487 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:640 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:663 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 msgid "Links to" msgstr "Povezave z" @@ -160,37 +161,38 @@ msgstr "Povezave z" #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:381 #: libraries/plugins/export/PMA_ExportPdf.php:494 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:651 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:664 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:649 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 #: templates/columns_definitions/table_fields_definitions.phtml:65 msgid "Comments" msgstr "Pripombe" -#: db_datadict.php:155 libraries/controllers/TableStructureController.php:1189 -#: libraries/controllers/TableStructureController.php:1194 -#: libraries/tracking.lib.php:925 +#: db_datadict.php:155 +#: libraries/controllers/table/TableStructureController.php:1197 +#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:79 +#: templates/table/structure/display_structure.phtml:80 msgid "Primary" msgstr "Primarni" -#: db_datadict.php:165 js/messages.php:370 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:371 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 -#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:403 -#: libraries/mult_submits.lib.php:417 +#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:408 +#: libraries/mult_submits.lib.php:422 #: libraries/plugins/export/ExportHtmlword.php:654 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:710 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2971 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3620 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1013 libraries/tracking.lib.php:1018 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2973 +#: libraries/server_privileges.lib.php:2993 +#: libraries/server_privileges.lib.php:3631 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -199,32 +201,32 @@ msgstr "Primarni" msgid "No" msgstr "Ne" -#: db_datadict.php:165 js/messages.php:515 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:516 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 #: libraries/config/FormDisplay.tpl.php:280 -#: libraries/controllers/TableStructureController.php:770 -#: libraries/controllers/TableStructureController.php:1440 -#: libraries/controllers/TableStructureController.php:1449 -#: libraries/controllers/TableStructureController.php:1454 -#: libraries/controllers/TableStructureController.php:1459 -#: libraries/controllers/TableStructureController.php:1464 -#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:199 -#: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 -#: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 +#: libraries/controllers/table/TableStructureController.php:771 +#: libraries/controllers/table/TableStructureController.php:1448 +#: libraries/controllers/table/TableStructureController.php:1457 +#: libraries/controllers/table/TableStructureController.php:1462 +#: libraries/controllers/table/TableStructureController.php:1467 +#: libraries/controllers/table/TableStructureController.php:1472 +#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:200 +#: libraries/mult_submits.lib.php:344 libraries/mult_submits.lib.php:377 +#: libraries/mult_submits.lib.php:406 libraries/mult_submits.lib.php:420 #: libraries/plugins/export/ExportHtmlword.php:655 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:788 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:711 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2968 -#: libraries/server_privileges.lib.php:2989 -#: libraries/server_privileges.lib.php:3617 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1011 libraries/tracking.lib.php:1016 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2970 +#: libraries/server_privileges.lib.php:2991 +#: libraries/server_privileges.lib.php:3628 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -237,8 +239,8 @@ msgstr "Da" msgid "View dump (schema) of database" msgstr "Preglej povzetek stanja zbirke podatkov" -#: db_export.php:51 db_tracking.php:102 export.php:382 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:176 +#: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 +#: libraries/controllers/DatabaseStructureController.php:157 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "V zbirki podatkov ni mogoče najti tabel." @@ -255,7 +257,7 @@ msgstr "Tabele" #: db_export.php:66 libraries/Menu.php:320 libraries/Menu.php:427 #: libraries/Util.php:3407 libraries/Util.php:3417 libraries/Util.php:3423 -#: libraries/Util.php:3702 libraries/Util.php:4339 libraries/Util.php:4356 +#: libraries/Util.php:3703 libraries/Util.php:4340 libraries/Util.php:4357 #: libraries/central_columns.lib.php:729 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:320 @@ -263,10 +265,10 @@ msgstr "Tabele" #: libraries/config/user_preferences.forms.php:218 #: libraries/config/user_preferences.forms.php:259 #: libraries/config/user_preferences.forms.php:285 -#: libraries/import.lib.php:1299 libraries/navigation/nodes/NodeColumn.php:44 +#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:44 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 -#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:877 +#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:887 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -309,11 +311,11 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "Hrambo konfiguracije phpMyAdmin smo onemogočili. %sUgotovite, zakaj%s." -#: db_qbe.php:135 +#: db_qbe.php:136 msgid "You have to choose at least one column to display!" msgstr "Za prikaz morate izbrati morate vsaj en stolpec!" -#: db_qbe.php:152 +#: db_qbe.php:154 #, php-format msgid "Switch to %svisual builder%s" msgstr "Preklopi na %svidni graditelj%s" @@ -340,7 +342,7 @@ msgstr "" msgid "No tables selected." msgstr "Ni izbranih tabel." -#: db_tracking.php:146 +#: db_tracking.php:149 msgid "Database Log" msgstr "Dnevnik zbirke podatkov" @@ -377,7 +379,7 @@ msgstr "Morda boste želeli osvežiti stran." msgid "Bad type!" msgstr "Slaba vrsta!" -#: export.php:276 +#: export.php:278 msgid "Bad parameters!" msgstr "Slabi parametri!" @@ -385,98 +387,98 @@ msgstr "Slabi parametri!" msgid "Invalid export type" msgstr "Neveljavna vrsta izvoza" -#: gis_data_editor.php:119 +#: gis_data_editor.php:117 #, php-format msgid "Value for the column \"%s\"" msgstr "Vrednost za stolpec \"%s\"" -#: gis_data_editor.php:147 +#: gis_data_editor.php:145 #: templates/table/gis_visualization/gis_visualization.phtml:37 msgid "Use OpenStreetMaps as Base Layer" msgstr "Uporabi OpenStreetMaps kot osnovni sloj" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:169 +#: gis_data_editor.php:167 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:192 +#: gis_data_editor.php:190 #, php-format msgid "Geometry %d:" msgstr "Geometrija %d:" -#: gis_data_editor.php:214 +#: gis_data_editor.php:212 msgid "Point:" msgstr "Točka:" -#: gis_data_editor.php:215 gis_data_editor.php:242 gis_data_editor.php:298 -#: gis_data_editor.php:371 js/messages.php:504 +#: gis_data_editor.php:213 gis_data_editor.php:240 gis_data_editor.php:296 +#: gis_data_editor.php:369 js/messages.php:505 msgid "X" msgstr "X" -#: gis_data_editor.php:218 gis_data_editor.php:246 gis_data_editor.php:302 -#: gis_data_editor.php:377 js/messages.php:505 +#: gis_data_editor.php:216 gis_data_editor.php:244 gis_data_editor.php:300 +#: gis_data_editor.php:375 js/messages.php:506 msgid "Y" msgstr "Y" -#: gis_data_editor.php:240 gis_data_editor.php:296 gis_data_editor.php:369 -#: js/messages.php:507 +#: gis_data_editor.php:238 gis_data_editor.php:294 gis_data_editor.php:367 +#: js/messages.php:508 #, php-format msgid "Point %d" msgstr "Točka %d" -#: gis_data_editor.php:253 gis_data_editor.php:309 gis_data_editor.php:387 -#: js/messages.php:513 +#: gis_data_editor.php:251 gis_data_editor.php:307 gis_data_editor.php:385 +#: js/messages.php:514 msgid "Add a point" msgstr "Dodaj točko" -#: gis_data_editor.php:270 +#: gis_data_editor.php:268 #, php-format msgid "Linestring %d:" msgstr "Daljica %d:" -#: gis_data_editor.php:273 gis_data_editor.php:350 +#: gis_data_editor.php:271 gis_data_editor.php:348 msgid "Outer ring:" msgstr "Zunanji obroč:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:273 gis_data_editor.php:350 #, php-format msgid "Inner ring %d:" msgstr "Notranji obroč %d:" -#: gis_data_editor.php:312 +#: gis_data_editor.php:310 msgid "Add a linestring" msgstr "Dodaj daljico" -#: gis_data_editor.php:313 gis_data_editor.php:392 js/messages.php:514 +#: gis_data_editor.php:311 gis_data_editor.php:390 js/messages.php:515 msgid "Add an inner ring" msgstr "Dodaj notranji obroč" -#: gis_data_editor.php:334 +#: gis_data_editor.php:332 #, php-format msgid "Polygon %d:" msgstr "Večkotnik %d:" -#: gis_data_editor.php:398 +#: gis_data_editor.php:396 msgid "Add a polygon" msgstr "Dodaj večkotnik" -#: gis_data_editor.php:404 +#: gis_data_editor.php:402 msgid "Add geometry" msgstr "Dodaj geometrijo" -#: gis_data_editor.php:410 js/messages.php:345 libraries/DbSearch.php:462 -#: libraries/DisplayResults.php:1783 libraries/browse_foreigners.lib.php:142 +#: gis_data_editor.php:408 js/messages.php:346 libraries/DbSearch.php:462 +#: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:151 #: libraries/display_export.lib.php:404 libraries/display_export.lib.php:410 -#: libraries/display_import.lib.php:403 libraries/index.lib.php:42 -#: libraries/insert_edit.lib.php:1547 libraries/insert_edit.lib.php:1584 +#: libraries/display_import.lib.php:403 libraries/index.lib.php:45 +#: libraries/insert_edit.lib.php:1554 libraries/insert_edit.lib.php:1591 #: libraries/normalization.lib.php:168 libraries/normalization.lib.php:825 #: libraries/operations.lib.php:47 libraries/operations.lib.php:114 #: libraries/operations.lib.php:266 libraries/operations.lib.php:309 #: libraries/operations.lib.php:806 libraries/operations.lib.php:877 -#: libraries/operations.lib.php:926 libraries/operations.lib.php:1336 -#: libraries/operations.lib.php:1653 +#: libraries/operations.lib.php:926 libraries/operations.lib.php:1339 +#: libraries/operations.lib.php:1656 #: libraries/plugins/auth/AuthenticationCookie.php:239 #: libraries/replication_gui.lib.php:124 libraries/replication_gui.lib.php:163 #: libraries/replication_gui.lib.php:328 libraries/replication_gui.lib.php:465 @@ -485,12 +487,12 @@ msgstr "Dodaj geometrijo" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2343 -#: libraries/server_privileges.lib.php:3114 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_user_groups.lib.php:285 -#: libraries/sql_query_form.lib.php:369 libraries/sql_query_form.lib.php:429 -#: libraries/tracking.lib.php:536 libraries/tracking.lib.php:656 +#: libraries/server_privileges.lib.php:2345 +#: libraries/server_privileges.lib.php:3116 +#: libraries/server_privileges.lib.php:3735 +#: libraries/server_user_groups.lib.php:290 +#: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 +#: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 #: prefs_manage.php:280 prefs_manage.php:358 #: templates/columns_definitions/column_definitions_form.phtml:64 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 @@ -503,11 +505,11 @@ msgstr "Dodaj geometrijo" msgid "Go" msgstr "Izvedi" -#: gis_data_editor.php:413 +#: gis_data_editor.php:411 msgid "Output" msgstr "Izhod" -#: gis_data_editor.php:416 +#: gis_data_editor.php:414 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -519,7 +521,7 @@ msgstr "" msgid "Succeeded" msgstr "Uspelo" -#: import.php:59 js/messages.php:588 +#: import.php:59 js/messages.php:589 msgid "Failed" msgstr "Spodletelo" @@ -582,7 +584,7 @@ msgid "Could not load import plugins, please check your installation!" msgstr "" "Ne morem naložiti vtičnikov za uvoz, prosimo, preverite vašo namestitev!" -#: import.php:669 libraries/sql.lib.php:744 libraries/sql.lib.php:1468 +#: import.php:669 libraries/sql.lib.php:754 libraries/sql.lib.php:1485 #, php-format msgid "Bookmark %s has been created." msgstr "Ustvaril sem zaznamek %s." @@ -614,7 +616,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "Ne morem naložiti napredka uvoza." -#: import_status.php:111 js/messages.php:444 libraries/Util.php:797 +#: import_status.php:111 js/messages.php:445 libraries/Util.php:797 #: libraries/export.lib.php:523 #: libraries/plugins/schema/ExportRelationSchema.php:301 user_password.php:268 msgid "Back" @@ -639,7 +641,7 @@ msgstr "" msgid "General settings" msgstr "Splošne nastavitve" -#: index.php:191 js/messages.php:617 +#: index.php:191 js/messages.php:618 #: libraries/display_change_password.lib.php:54 #: libraries/display_change_password.lib.php:57 user_password.php:262 msgid "Change password" @@ -739,7 +741,11 @@ msgstr "Prosi za podporo" msgid "List of changes" msgstr "Seznam sprememb" -#: index.php:453 +#: index.php:438 libraries/server_plugins.lib.php:83 +msgid "License" +msgstr "Dovoljenje" + +#: index.php:460 msgid "" "You are connected as 'root' with no password, which corresponds to the " "default MySQL privileged account. Your MySQL server is running with this " @@ -751,7 +757,7 @@ msgstr "" "zato je izpostavljen vdorom. Čimprej odpravite to varnostno luknjo tako, da " "uporabniku 'root' nastavite geslo." -#: index.php:470 +#: index.php:477 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -760,7 +766,7 @@ msgstr "" "V vaši konfiguraciji PHP ste omogočili mbstring.func_overload. Možnost ni " "združljiva s phpMyAdminom in lahko pokvari nekatere podatke!" -#: index.php:485 +#: index.php:492 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -770,7 +776,7 @@ msgstr "" "nabor znakov. Brez razširitve mbstring phpMyAdmin ni sposoben pravilno " "razcepiti nizov, kar lahko vodi v nepričakovane rezultate." -#: index.php:502 +#: index.php:509 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than " @@ -782,7 +788,7 @@ msgstr "" "veljavnosti piškotkov, določene v phpMyAdminu. Zaradi tega se bo vaša " "prijava morda iztekla prej, kot je določeno v phpMyAdminu." -#: index.php:521 +#: index.php:528 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -791,13 +797,13 @@ msgstr "" "določene v phpMyAdminu. Zaradi tega se bo vaša prijava iztekla prej, kot je " "določeno v phpMyAdminu." -#: index.php:537 +#: index.php:544 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Konfiguracijski datoteki morate sedaj določiti skrivno geslo " "(blowfish_secret)." -#: index.php:550 +#: index.php:557 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. It is strongly recommended to remove it " @@ -810,7 +816,7 @@ msgstr "" "strežnika morda ogrožena, saj bodo nepooblaščene osebe lahko prenesle vašo " "konfiguracijo." -#: index.php:566 +#: index.php:573 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -819,14 +825,14 @@ msgstr "" "Hramba konfiguracije phpMyAdmin ni konfigurirana v celoti, zato smo nekatere " "razširjene zmožnosti onemogočili. %sUgotovite, zakaj%s. " -#: index.php:573 +#: index.php:580 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "Ali pa pojdite na zavihek »Dejanja« katere koli zbirke podatkov, da to " "nastavite tam." -#: index.php:619 +#: index.php:626 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -835,7 +841,7 @@ msgstr "" "Vaša PHP-knjižnica MySQL različice %s se razlikuje od vašega strežnika MySQL " "različice %s. To lahko povzroči nepredvidljivo vedenje." -#: index.php:647 +#: index.php:654 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -857,7 +863,7 @@ msgstr "Potrdi" msgid "Do you really want to execute \"%s\"?" msgstr "Ali res želite izvesti \"%s\"?" -#: js/messages.php:45 libraries/mult_submits.lib.php:397 +#: js/messages.php:45 libraries/mult_submits.lib.php:402 msgid "You are about to DESTROY a complete database!" msgstr "S tem dejanjem boste UNIČILI celotno zbirko podatkov!" @@ -977,13 +983,6 @@ msgstr "" "pretvoriti podatke?" #: js/messages.php:95 -#| msgid "" -#| "Through this operation, MySQL attempts to map the data values between " -#| "collations. If the character sets are incompatible, there may be data " -#| "loss and this lost data may NOT be recoverable simply by changing " -#| "back the column collation(s). To convert existing data, it is " -#| "suggested to use the column(s) editing feature (the \"Change\" Link) on " -#| "the table structure page. " msgid "" "Through this operation, MySQL attempts to map the data values between " "collations. If the character sets are incompatible, there may be data loss " @@ -1012,7 +1011,7 @@ msgid "Save & close" msgstr "Shrani in zapri" #: js/messages.php:109 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1551 prefs_manage.php:364 +#: libraries/insert_edit.lib.php:1558 prefs_manage.php:364 #: prefs_manage.php:375 msgid "Reset" msgstr "Ponastavi" @@ -1070,10 +1069,10 @@ msgstr "Prosimo, izberite stolpce za indeks." msgid "You have to add at least one column." msgstr "Dodati morate vsaj en stolpec." -#: js/messages.php:129 libraries/insert_edit.lib.php:1549 +#: js/messages.php:129 libraries/insert_edit.lib.php:1556 #: templates/columns_definitions/column_definitions_form.phtml:159 #: templates/table/index_form.phtml:237 -#: templates/table/relation/common_form.phtml:108 +#: templates/table/relation/common_form.phtml:127 msgid "Preview SQL" msgstr "Predogled SQL" @@ -1116,8 +1115,8 @@ msgstr "Gesli se ne ujemata!" msgid "Removing Selected Users" msgstr "Odstranjevanje izbranih uporabnikov" -#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:461 -#: libraries/tracking.lib.php:831 +#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:471 +#: libraries/tracking.lib.php:841 msgid "Close" msgstr "Zapri" @@ -1139,7 +1138,7 @@ msgstr "Predlogo smo izbrisali." #. l10n: Other, small valued, queries #: js/messages.php:155 libraries/ServerStatusData.php:130 -#: libraries/server_status_queries.lib.php:148 +#: libraries/server_status_queries.lib.php:150 msgid "Other" msgstr "Drugo" @@ -1306,7 +1305,7 @@ msgstr "Vprašanja" msgid "Traffic" msgstr "Promet" -#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4330 +#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4331 #: libraries/server_status_monitor.lib.php:258 msgid "Settings" msgstr "Nastavitve" @@ -1319,9 +1318,9 @@ msgstr "Dodaj grafikon na mrežo" msgid "Please add at least one variable to the series!" msgstr "Prosimo, da v serijo dodate vsaj eno spremenljivko!" -#: js/messages.php:216 libraries/DisplayResults.php:1477 +#: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1437,7 +1436,7 @@ msgstr "Spremeni nastavitve" msgid "Current settings" msgstr "Trenutne nastavitve" -#: js/messages.php:253 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:253 msgid "Chart title" msgstr "Naslov grafikona" @@ -1524,21 +1523,21 @@ msgstr "Analiziranje…" msgid "Explain output" msgstr "Razloži izhod" -#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4326 +#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4327 #: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:396 #: libraries/rte/rte_list.lib.php:104 -#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:282 -#: libraries/tracking.lib.php:1623 +#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:284 +#: libraries/tracking.lib.php:1639 msgid "Status" msgstr "Stanje" -#: js/messages.php:289 js/messages.php:870 +#: js/messages.php:289 js/messages.php:862 #: libraries/plugins/export/ExportHtmlword.php:484 #: libraries/plugins/export/ExportOdt.php:600 #: libraries/plugins/export/ExportTexytext.php:445 #: libraries/plugins/export/PMA_ExportPdf.php:314 #: libraries/rte/rte_list.lib.php:93 -#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:239 +#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:243 msgid "Time" msgstr "Čas" @@ -1625,10 +1624,10 @@ msgstr "" "privzeto konfiguracijo…" #: js/messages.php:322 libraries/Menu.php:355 libraries/Menu.php:457 -#: libraries/Menu.php:578 libraries/Util.php:4329 libraries/Util.php:4344 -#: libraries/Util.php:4361 libraries/config/messages.inc.php:260 +#: libraries/Menu.php:578 libraries/Util.php:4330 libraries/Util.php:4345 +#: libraries/Util.php:4362 libraries/config/messages.inc.php:260 #: libraries/display_import.lib.php:108 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:241 +#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:241 #: setup/frames/menu.inc.php:26 msgid "Import" msgstr "Uvozi" @@ -1685,7 +1684,13 @@ msgstr "Preizkus" msgid "Formatting SQL…" msgstr "Oblikovanje SQL …" -#: js/messages.php:346 libraries/server_variables.lib.php:159 +#: js/messages.php:343 +#, fuzzy +#| msgid "Bad parameters!" +msgid "No parameters found!" +msgstr "Slabi parametri!" + +#: js/messages.php:347 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 +1701,59 @@ msgstr "Oblikovanje SQL …" msgid "Cancel" msgstr "Prekliči" -#: js/messages.php:349 libraries/Header.php:457 +#: js/messages.php:350 libraries/Header.php:457 msgid "Page-related settings" msgstr "Nastavitve, povezane s stranjo" -#: js/messages.php:350 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:351 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Uveljavi" -#: js/messages.php:353 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:354 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:124 msgid "Loading…" msgstr "Nalaganje…" -#: js/messages.php:354 +#: js/messages.php:355 msgid "Request aborted!!" msgstr "Zahteva je prekinjena!" -#: js/messages.php:355 +#: js/messages.php:356 msgid "Processing request" msgstr "Obdelovanje zahteve" -#: js/messages.php:356 +#: js/messages.php:357 msgid "Request failed!!" msgstr "Zahteva je spodletela!" -#: js/messages.php:357 +#: js/messages.php:358 msgid "Error in processing request" msgstr "Napaka v obdelovanju zahteve" -#: js/messages.php:358 +#: js/messages.php:359 #, php-format msgid "Error code: %s" msgstr "Koda napake: %s" -#: js/messages.php:359 +#: js/messages.php:360 #, php-format msgid "Error text: %s" msgstr "Besedilo napake: %s" -#: js/messages.php:360 libraries/db_common.inc.php:73 +#: js/messages.php:361 libraries/db_common.inc.php:73 #: libraries/db_table_exists.lib.php:33 libraries/server_databases.lib.php:462 msgid "No databases selected." msgstr "Ni izbranih zbirk podatkov." -#: js/messages.php:361 +#: js/messages.php:362 msgid "Dropping column" msgstr "Brisanje stolpca" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Adding primary key" msgstr "Dodajanje primarnega ključa" -#: js/messages.php:363 +#: js/messages.php:364 #: 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,164 +1763,164 @@ msgstr "Dodajanje primarnega ključa" msgid "OK" msgstr "V redu" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Click to dismiss this notification" msgstr "Kliknite, da prezrete obvestilo" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Renaming databases" msgstr "Preimenovanje zbirk podatkov" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Copying database" msgstr "Kopiranje zbirke podatkov" -#: js/messages.php:369 +#: js/messages.php:370 msgid "Changing charset" msgstr "Spreminjanje nabora znakov" -#: js/messages.php:373 libraries/Util.php:3289 +#: js/messages.php:374 libraries/Util.php:3289 msgid "Enable foreign key checks" msgstr "Omogoči preverjanja tujih ključev" -#: js/messages.php:376 +#: js/messages.php:377 msgid "Failed to get real row count." msgstr "Pridobivanje pravega števila vrstic je spodletelo." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Searching" msgstr "Iskanje" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide search results" msgstr "Skrij rezultate iskanja" -#: js/messages.php:381 +#: js/messages.php:382 msgid "Show search results" msgstr "Prikaži rezultate iskanja" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Browsing" msgstr "Brskanje" -#: js/messages.php:383 +#: js/messages.php:384 msgid "Deleting" msgstr "Brisanje" -#: js/messages.php:387 +#: js/messages.php:388 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Opredelitev shranjene funkcije mora vsebovati izjavo RETURN!" -#: js/messages.php:388 libraries/DisplayResults.php:4832 -#: libraries/DisplayResults.php:5091 libraries/Menu.php:347 -#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3709 -#: libraries/Util.php:3710 libraries/Util.php:4328 libraries/Util.php:4343 -#: libraries/Util.php:4360 libraries/config/messages.inc.php:254 +#: js/messages.php:389 libraries/DisplayResults.php:4850 +#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 +#: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 +#: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2448 -#: libraries/server_privileges.lib.php:2527 -#: libraries/server_privileges.lib.php:2873 -#: libraries/server_privileges.lib.php:3532 -#: libraries/server_status_monitor.lib.php:321 prefs_manage.php:306 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2875 +#: libraries/server_privileges.lib.php:3543 +#: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 msgid "Export" msgstr "Izvozi" -#: js/messages.php:391 libraries/rte/rte_routines.lib.php:742 +#: js/messages.php:392 libraries/rte/rte_routines.lib.php:742 msgid "ENUM/SET editor" msgstr "Urejevalnik ENUM/SET" -#: js/messages.php:392 +#: js/messages.php:393 #, php-format msgid "Values for column %s" msgstr "Vrednosti stolpca %s" -#: js/messages.php:393 +#: js/messages.php:394 msgid "Values for a new column" msgstr "Vrednosti novega stolpca" -#: js/messages.php:394 +#: js/messages.php:395 msgid "Enter each value in a separate field." msgstr "Vnesite vsako vrednost v svoje polje." -#: js/messages.php:395 +#: js/messages.php:396 #, php-format msgid "Add %d value(s)" msgstr "Dodaj %d vrednost(i)" -#: js/messages.php:399 +#: js/messages.php:400 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "Opomba: Če datoteka vsebuje več tabel, bodo združene v eno." -#: js/messages.php:403 +#: js/messages.php:404 msgid "Hide query box" msgstr "Skrij polje poizvedbe" -#: js/messages.php:404 +#: js/messages.php:405 msgid "Show query box" msgstr "Prikaži polje poizvedbe" -#: js/messages.php:405 libraries/Console.php:88 libraries/Console.php:217 -#: libraries/DisplayResults.php:3457 libraries/DisplayResults.php:4816 +#: js/messages.php:406 libraries/Console.php:88 libraries/Console.php:217 +#: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4834 #: libraries/Index.php:721 libraries/Util.php:727 libraries/Util.php:1238 -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:119 +#: libraries/server_user_groups.lib.php:121 #: libraries/server_variables.lib.php:242 #: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 msgid "Edit" msgstr "Uredi" -#: js/messages.php:406 libraries/Console.php:89 libraries/DbSearch.php:360 -#: libraries/DisplayResults.php:3526 libraries/DisplayResults.php:4800 +#: js/messages.php:407 libraries/Console.php:89 libraries/DbSearch.php:360 +#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4818 #: libraries/central_columns.lib.php:854 #: libraries/central_columns.lib.php:1200 libraries/display_export.lib.php:227 -#: libraries/server_user_groups.lib.php:129 -#: libraries/sql_query_form.lib.php:416 libraries/tracking.lib.php:480 +#: libraries/server_user_groups.lib.php:131 +#: libraries/sql_query_form.lib.php:417 libraries/tracking.lib.php:490 #: setup/frames/index.inc.php:187 setup/frames/index.inc.php:295 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Izbriši" -#: js/messages.php:407 libraries/DisplayResults.php:915 -#: libraries/DisplayResults.php:923 +#: js/messages.php:408 libraries/DisplayResults.php:919 +#: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d ni veljavna številka vrstice." -#: js/messages.php:408 -#: libraries/controllers/table/TableSearchController.php:435 -#: libraries/controllers/table/TableSearchController.php:920 -#: libraries/sql.lib.php:193 tbl_change.php:159 +#: js/messages.php:409 +#: libraries/controllers/table/TableSearchController.php:432 +#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "Prebrskaj tuje vrednosti" -#: js/messages.php:409 +#: js/messages.php:410 msgid "No auto-saved query" msgstr "Ni nobene samodejno shranjene poizvedbe" -#: js/messages.php:410 +#: js/messages.php:411 #, php-format msgid "Variable %d:" msgstr "Spremenljivka %d:" -#: js/messages.php:413 libraries/normalization.lib.php:889 +#: js/messages.php:414 libraries/normalization.lib.php:889 msgid "Pick" msgstr "Izberite" -#: js/messages.php:414 +#: js/messages.php:415 msgid "Column selector" msgstr "Izbirnik stolpcev" -#: js/messages.php:415 +#: js/messages.php:416 msgid "Search this list" msgstr "Iskanje po seznamu" -#: js/messages.php:417 +#: js/messages.php:418 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1924,15 +1929,15 @@ msgstr "" "V osrednjem seznamu ni stolpcev. Prepričajte se, da ima seznam osrednjih " "stolpcev za zbirko podatkov %s stolpce, ki niso prisotni v trenutni tabeli." -#: js/messages.php:420 +#: js/messages.php:421 msgid "See more" msgstr "Poglej več" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Are you sure?" msgstr "Ste prepričani?" -#: js/messages.php:423 +#: js/messages.php:424 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1940,51 +1945,51 @@ msgstr "" "Dejanje bo morda spremenilo nekatere opredelitve stolpcev.
Ste " "prepričani, da želite nadaljevati?" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "Nadaljuj" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "Dodaj primarni ključ" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "Dodal sem primarni ključ." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "Prestavili vas bomo na naslednji korak …" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Prvi korak normalizacije je končan za tabelo '%s'." -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "Konec koraka" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "Druga stopnja normalizacije (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Končano" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "Potrdi delne odvisnosti" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "Izbrane so naslednje delne odvisnosti:" -#: js/messages.php:440 +#: js/messages.php:441 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 +1997,19 @@ msgstr "" "Opomba: a, b -> d,f pomeni, da lahko z združitvijo vrednosti stolpcev a in b " "določimo vrednost stolpca d in stolpca f." -#: js/messages.php:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "Ni izbranih delnih odvisnosti!" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "Pokaži mi možne delne odvisnosti glede na podatke v tabeli" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "Skrij seznam delnih odvisnosti" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2012,166 +2017,166 @@ msgstr "" "Prosimo, počakajte. To lahko traja nekaj sekund, odvisno od velikosti " "podatkov in števila stolpcev v tabeli." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "Korak" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "Izvedli bomo naslednja dejanja:" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "ZAVRZI stolpce %s v tabeli %s" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "Ustvari naslednjo tabelo" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "Tretja stopnja normalizacije (3NF)" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "Potrdi prehodne odvisnosti" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "Izbrane so naslednje odvisnosti:" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "Ni izbranih odvisnosti!" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Shrani" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Skrij iskalne pogoje" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Prikaži iskalne pogoje" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "Iskanje v območju" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "Maksimum stolpcev:" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "Minimum stolpcev:" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "Minimalna vrednost:" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "Maksimalna vrednost:" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "Skrij pogoje za iskanje in zamenjavo" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "Prikaži pogoje za iskanje in zamenjavo" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "Vsaka točka predstavlja podatkovno vrstico." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "Prehod z miško čez točko bo pokazalo njeno oznako." -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Za povečanje izberite z miško del izrisa." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "Kliknite gumb za ponastavitev povečave za vrnitev na prvotno stanje." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Kliknite podatkovno točko za ogled in morebitno urejanje podatkovne vrstice." -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "Izris lahko povečate tako, da ga vlečete ob spodnjem desnem kotu." -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "Izberite dva stolpca" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "Izberite dva različna stolpca" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "Vsebina kazalca podatkov" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Prezri" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Kopiraj" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Točka" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Daljica" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Večkotnik" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometrija" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "Notranji obroč" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "Zunanji obroč" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "Ali želite kopirati šifrirni ključ?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "Šifrirni ključ" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2179,24 +2184,24 @@ msgstr "" "Označuje, da ste na strani naredili spremembe; pred opustitvijo sprememb vas " "bomo pozvali" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Izberite referenčni ključ" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Izberite tuji ključ" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "Prosimo, izberite primarni ključ ali unikatni ključ!" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Izberite stolpec za prikaz" -#: js/messages.php:532 +#: js/messages.php:533 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?" @@ -2204,77 +2209,77 @@ msgstr "" "Niste shranili sprememb ureditve. Če jih ne shranite, bodo izgubljena. " "Želite nadaljevati?" -#: js/messages.php:535 +#: js/messages.php:536 msgid "Page name" msgstr "Ime strani" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Shrani stran" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Shrani stran kot" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Odpri stran" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "Izbriši stran" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Neimenovano" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "Prosimo, izberite stran za nadaljevanje" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "Prosimo, vnesite veljavno ime strani" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "Želite shraniti spremembe na trenutni strani?" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "Stran ste uspešno izbrisali" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "Izvozi relacijsko shemo" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Spremembe so shranjene" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "Dodaj možnost za stolpec \"%s\"." -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "Ustvaril sem %d objekt(ov)." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Pošlji" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "Za prekinitev urejanja pritisnite ubežnico (escape)." -#: js/messages.php:557 +#: js/messages.php:558 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?" @@ -2282,15 +2287,15 @@ msgstr "" "Uredili ste nekatere podatke, vendar jih niste shranili. Ste prepričani, da " "želite zapustiti stran, preden shranite podatke?" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "Povlecite za preureditev." -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "Kliknite, da razvrstite rezultate po tem stolpcu." -#: js/messages.php:563 +#: js/messages.php:564 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 " @@ -2300,26 +2305,26 @@ msgstr "" "
- Ctrl+klik ali Alt+klik (Mac: Shift+možnost+klik), da stolpec " "odstranite iz stavka ORDER BY" -#: js/messages.php:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "Kliknite za označitev/opustitev." -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "Dvakrat kliknite za kopiranje imena stolpca." -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Za preklop vidnosti stolpcev
kliknite spustno puščico." -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Pokaži vse" -#: js/messages.php:574 +#: js/messages.php:575 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." @@ -2328,12 +2333,12 @@ msgstr "" "potrditvenimi polji, povezavami Uredi, Kopiraj in Izbriši, po shranjevanju " "morda ne bodo delovale." -#: js/messages.php:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Prosimo, vnesite veljaven šestnajstiški niz. Veljavni znaki so 0–9, A–F." -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2341,128 +2346,95 @@ msgstr "" "Si res želite ogledati vse vrstice? V primeru velikih tabel lahko to zruši " "brskalnik." -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "Izvirna dolžina" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "prekliči" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Prekinjeno" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "Uspešno" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "Stanje uvoza" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Spustite datoteke tukaj" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "Najprej izberite zbirko podatkov" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Večino vrednosti lahko urejate
neposredno z dvojnim klikom na njih." -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "Večino vrednosti lahko urejate
neposredno s klikom na njih." -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "Pojdi na povezavo:" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "Kopiraj ime stolpca." -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Z desnim miškinim gumbom kliknite na ime stolpca, da ga skopirate v " "odložišče." -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Ustvari geslo" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Ustvari" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "Več" -#: js/messages.php:623 +#: js/messages.php:624 msgid "Show panel" msgstr "Pokaži ploščo" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "Skrij ploščo" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "Prikaži skrite predmete v navigacijskem drevesu." -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "Poveži z glavno ploščo" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "Ne poveži z glavno ploščo" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" -"Za filtriranje vseh zbirk podatkov na strežniku po vnosu iskalnega pojma " -"pritisnite enter" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" -"Za filtriranje vseh %s v zbirki podatkov po vnosu iskalnega pojma pritisnite " -"enter" - #: js/messages.php:632 -msgid "tables" -msgstr "tabel" - -#: js/messages.php:633 -msgid "views" -msgstr "pogledov" - -#: js/messages.php:634 -msgid "procedures" -msgstr "procedur" - -#: js/messages.php:635 -msgid "events" -msgstr "dogodkov" - -#: js/messages.php:636 -msgid "functions" -msgstr "funkcij" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "Izbrane strani nisem našel v zgodovini; morda je potekla." -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2472,42 +2444,42 @@ msgstr "" "Najnovejša različica je %s, izdana %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", zadnja ustaljena različica:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "posodobljeno" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "Ustvari pogled" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "Pošlji poročilo o napaki" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "Oddaj poročilo o napaki" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" "Prišlo je do usodne napake v JavaScriptu. Želite poslati poročilo o napaki?" -#: js/messages.php:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "Spremeni nastavitve poročila" -#: js/messages.php:660 +#: js/messages.php:652 msgid "Show report details" msgstr "Pokaži podrobnosti poročila" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2515,7 +2487,7 @@ msgstr "" "Vaš izvoz ni popoln zaradi nizke časovne omejitve izvršitve na stopnji PHP-" "ja!" -#: js/messages.php:667 +#: js/messages.php:659 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2524,61 +2496,61 @@ msgstr "" "Opozorilo: obrazec na strani vsebuje več kot %d polj. Od potrditvi bodo " "nekatera polja morda prezrta zaradi PHP-jeve nastavitve max_input_vars." -#: js/messages.php:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "Na strežniku smo zaznali nekatere napake!" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "Prosimo, poglejte na dno okna." -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "Prezri vse" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "V skladu z vašimi nastavitvami jih trenutno pošiljamo; prosimo, bodite " "potrpežljivi." -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "Ponovno izvedem poizvedbo?" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "Ali res želite izbrisati zaznamek?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" "Med pridobivanjem informacij za odpravljanje napak SQL je prišlo do napake." -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s poizvedb izvedenih %s-krat v %s sekundah." -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "podanih %s argumentov" -#: js/messages.php:707 +#: js/messages.php:699 msgid "Show arguments" msgstr "Prikaži argumente" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "Skrij argumente" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "Porabljen čas:" -#: js/messages.php:711 +#: js/messages.php:703 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 " @@ -2589,291 +2561,291 @@ msgstr "" "delovale pravilno. V Safariju to težavo pogosto povroči brskanje v zasebnem " "načinu (Private Mode Browsing)." -#: js/messages.php:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "Prej" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "Nasl" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Danes" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "januar" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "februar" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "marec" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "april" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "maj" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "junij" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "julij" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "avgust" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "september" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "oktober" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "november" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "avg" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "dec" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "nedelja" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "ponedeljek" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "torek" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "sreda" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "četrtek" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "petek" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "sobota" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "ned" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "pon" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "tor" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "sre" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "čet" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "pet" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "sob" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "ne" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "po" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "to" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "sr" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "če" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "pe" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "so" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "ted." #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "brez" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Ura" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Minuta" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Sekunda" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "Polje je obvezno" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "Prosimo, popravite to polje" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "Prosimo, vnesite veljaven e-pošni naslov" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "Prosimo, vnesite veljaven URL" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "Prosimo, vnesite veljaven datum" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "Prosimo, vnesite veljaven datum (ISO)" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "Prosimo, vnesite veljavno število" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "Prosimo, vnesite veljavno številko kreditne kartice" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "Prosimo, vnesite samo številke" @@ -2881,41 +2853,41 @@ msgstr "Prosimo, vnesite samo številke" msgid "Please enter the same value again" msgstr "Prosimo, ponovno vnesite isto vrednost" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "Prosimo, ne vnesete več kot {0} znakov" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "Prosimo, vnesite vsaj {0} znakov" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "Prosimo, vnesite vrednost, dolgo od {0} do {1} znakov" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "Prosimo, vnesite vrednost med {0} in {1}" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "Prosimo, vnesite vrednost, manjšo ali enako {0}" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "Prosimo, vnesite vrednost, večjo ali enako {0}" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "Prosimo, vnesite veljaven datum ali čas" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "Prosimo, vnesite veljaven heksadecimalen vnos" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Napaka" @@ -3005,11 +2977,12 @@ msgstr "Ponovna poizvedba" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3053,7 +3026,7 @@ msgstr "Med trenutno sejo" msgid "Explain" msgstr "Razloži" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Profiliranje" @@ -3087,8 +3060,8 @@ msgid "History" msgstr "Zgodovina" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3235,7 +3208,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Preklopi na temno emo" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3243,26 +3216,26 @@ msgstr "" "Strežnik se ne odziva (ali pa lokalna vtičnica strežnika ni pravilno " "konfigurirana)." -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "Strežnik se ne odziva." -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "Prosimo, preverite pravice mape, v kateri se nahaja zbirka podatkov." -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Podrobnosti …" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Povezava za controluserja, kot je določena v vaši konfiguraciji, je " "spodletela." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3272,8 +3245,8 @@ msgstr "" msgid "Ascending" msgstr "Naraščajoče" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3420,8 +3393,8 @@ msgstr[2] "%1$s zadetki v %2$s" msgstr[3] "%1$s zadetkov v %2$s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3463,183 +3436,184 @@ msgstr "Odznači vse" msgid "Inside column:" msgstr "V stolpcu:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "Shrani urejene podatke" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "Obnovi vrstni red stolpcev" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "Filtriraj vrstice" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "Išči po tabeli" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "Začetek" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "Prejšnja" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "Naslednja" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "Konec" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Vse" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Število vrstic:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Uredi po ključu" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "Delna besedila" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "Polna besedila" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Relacijski ključ" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 msgid "Display column for relations" msgstr "Prikaži stolpec za razmerja" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "Prikaži dvojiške vsebine" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "Prikaži vsebine BLOB" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "Skrij pretvorbo z brskalnikom" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "Dobro poznano besedilo" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "Dobro poznana dvojiška datoteka" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "Vrstica je izbrisana." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Prekini proces" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Morda je približno. Glej [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "Poizvedbo SQL sem uspešno izvedel." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "Pogled ima vsaj toliko vrstic. Prosimo, oglejte si %sdokumentacijo%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "Prikazujem vrstice %1s–%2s" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "skupno %1$d, %2$d v poizvedbi" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "skupaj %d" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "Poizvedba je potrebovala %01.4f sekunde." -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Z označenim:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 msgid "Check all" msgstr "Označi vse" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Pogled za tiskanje" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Dejanja rezultatov poizvedbe" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Prikaži grafikon" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "Predstavi podatke GIS" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "Povezave ni mogoče najti!" @@ -3734,19 +3708,19 @@ msgstr "Ni definiranega indeksa!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Indeksi" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3755,24 +3729,24 @@ msgid "Action" msgstr "Dejanje" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Ime ključa" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Edinstven" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Stisnjen" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Kardinalnost" @@ -3780,8 +3754,8 @@ msgstr "Kardinalnost" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3791,8 +3765,8 @@ msgid "Collation" msgstr "Pravilo za razvrščanje znakov" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3808,15 +3782,15 @@ msgstr "Zavrgel sem primarni ključ." msgid "Index %s has been dropped." msgstr "Zavrgel sem indeks %s." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Zavrzi" @@ -3855,12 +3829,13 @@ msgstr "Pogled" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3868,7 +3843,7 @@ msgstr "Tabela" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3877,8 +3852,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3886,41 +3861,41 @@ msgid "Search" msgstr "Iskanje" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Vstavi" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilegiji" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Operacije" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Sledenje" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3931,16 +3906,16 @@ msgstr "Sprožilci" msgid "Database seems to be empty!" msgstr "Zbirka podatkov se zdi prazna!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Poizvedba" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rutina" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3948,20 +3923,20 @@ msgstr "Rutina" msgid "Events" msgstr "Dogodki" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Oblikovalnik" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "Osrednji stolpci" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Zbirke podatkov" @@ -3970,33 +3945,33 @@ msgid "User accounts" msgstr "Uporabniški računi" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Dvojiški dnevnik" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Podvojevanje" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Spremenljivke" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Nabori znakov" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Pogoni" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "Vtičniki" @@ -4303,7 +4278,7 @@ msgstr "Indeksa ni mogoče preimenovati v PRIMARY!" msgid "No index parts defined!" msgstr "Ni definiranega dela indeksa!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4777,37 +4752,37 @@ msgstr "Na funkcionalnost %s vpliva znan hrošč, glej %s" msgid "Click to toggle" msgstr "Kliknite za preklop" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Prebrskajte svoj računalnik:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Izberite iz mape za nalaganje na spletnem strežniku %s:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Imenik, ki ste ga določili za nalaganje, ni dosegljiv." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "Nobene datoteke ni za naložiti!" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Izprazni" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "Izvedi" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Natisni" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "Uporabniki" @@ -4970,8 +4945,8 @@ msgid "Add new column" msgstr "Dodaj nov stolpec" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5040,19 +5015,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "%s bi morali nadgraditi na različico %s ali novejšo." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "Napaka: Neujemanje žetonov" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "poskus prepisa GLOBALS" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "možno izkoriščanje" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "zaznana številska tipka" @@ -5894,7 +5869,7 @@ msgid "Remember file name template" msgstr "Zapomni si predlogo imena datoteke" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj vrednost AUTO_INCREMENT" @@ -5933,7 +5908,7 @@ msgstr "Izvozi sorodne metapodatke iz hrambe konfiguracije phpMyAdmin" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Dodaj %s" @@ -7641,7 +7616,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "Določa, ali naj polje s poizvedbo ostane na zaslonu po njeni izvedbi." -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "Ohrani polje poizvedbe" @@ -7943,103 +7918,33 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Besedilo OpenDocument" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "Seznam Priljubljenih je poln!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Izpraznil sem tabelo %s." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "Pogled %s sem zavrgel." -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "Tabelo %s sem zavrgel." -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "Seznam Priljubljenih je poln!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "neznano" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "Ime '%s' je rezervirana beseda MySQL." -msgstr[1] "Imeni '%s' sta rezervirani besedi MySQL." -msgstr[2] "Imena '%s' so rezervirane besede MySQL." -msgstr[3] "Imena '%s' so rezervirane besede MySQL." - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "Ni izbranih stolpcev." - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "Stolpce smo uspešno premaknili." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "Tabelo %1$s smo uspešno spremenili." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "Napaka poizvedbe" - -#: libraries/controllers/TableStructureController.php:967 -#, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "Tabelo %1$s smo uspešno spremenili. Privilegije smo prilagodili." - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Spremeni" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Indeks" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "Prostorsko" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Polno besedilo" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "Različne vrednosti" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8054,6 +7959,14 @@ msgstr "" msgid "No data to display" msgstr "Ni podatkov za prikaz" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "Tabelo %1$s smo uspešno spremenili." + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "Prikazni stolpec smo uspešno posodobili." @@ -8062,19 +7975,81 @@ msgstr "Prikazni stolpec smo uspešno posodobili." msgid "Internal relations were successfully updated." msgstr "Notranja razmerja smo uspešno posodobili." -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "Iskanje po tabeli" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "Iskanje s povečevanjem" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Najdi in zamenjaj" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "Ime '%s' je rezervirana beseda MySQL." +msgstr[1] "Imeni '%s' sta rezervirani besedi MySQL." +msgstr[2] "Imena '%s' so rezervirane besede MySQL." +msgstr[3] "Imena '%s' so rezervirane besede MySQL." + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "Ni izbranih stolpcev." + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "Stolpce smo uspešno premaknili." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "Napaka poizvedbe" + +#: libraries/controllers/table/TableStructureController.php:975 +#, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "Tabelo %1$s smo uspešno spremenili. Privilegije smo prilagodili." + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Spremeni" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Indeks" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "Prostorsko" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Polno besedilo" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "Različne vrednosti" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8084,7 +8059,7 @@ msgstr "Manjka razširitev %s. Prosimo, preverite vašo konfiguracijo PHP." msgid "possible deep recursion attack" msgstr "možen napad globoke rekurzije" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Brez sprememb" @@ -8153,7 +8128,7 @@ msgstr "Ustvari" msgid "Create database:" msgstr "Ustvari zbirko podatkov:" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Brez privilegijev" @@ -8886,66 +8861,66 @@ msgid "Dump has been saved to file %s." msgstr "Dump je shranjen v datoteko %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vrnil kot rezultat prazno množico (npr. nič vrstic)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "[Zgodil se je ROLLBACK.]" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Naslednje strukture so bile ali ustvarjene ali spremenjene: Tukaj lahko:" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "Oglejte si vsebine strukture s klikom na njeno ime." -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Spremenite katero koli njeno nastavitev s klikom na pripadajočo povezavo " "\"Možnosti\"." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "Uredite strukturo s sledenjem povezavi \"Struktura\"." -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "Pojdi v zbirko podatkov: %s" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "Uredi nastavitve za %s" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "Pojdi na tabelo: %s" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "Struktura %s" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "Pojdi na pogled: %s" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "Simulirate lahko samo poizvedbe UPDATE in DELETE na eni tabeli." -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8953,7 +8928,7 @@ msgstr "" "Razveljavite lahko samo SQL-poizvedbe INSERT, UPDATE, DELETE in REPLACE, ki " "vsebujejo tabele transakcijskega pogona." -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "Ustvari indeks na  %s stolpcih" @@ -8976,73 +8951,73 @@ msgstr "Funkcija" msgid "Binary" msgstr "Dvojiško" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "Zaradi njegove dolžine
stolpca morda ne bo mogoče urejati." -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Dvojiško - ne urejaj" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Ali" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "imenik za nalaganje datotek:" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "Uredi/Vstavi" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "Nadaljuj vstavljanje z %s vrsticami" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "in potem" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Vstavi kot novo vrstico" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "Vstavi kot novo vrstico in presliši napake" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "Prikaži poizvedbo insert" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Pojdi nazaj na prejšnjo stran" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Vstavi še eno novo vrstico" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Pojdi nazaj na stran" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Uredi naslednjo vrstico" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" "Uporabite tipko TAB za premik od vrednosti do vrednosti ali CTRL+puščice za " "premik kamor koli." -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9054,11 +9029,11 @@ msgstr "" msgid "Value" msgstr "Vrednost" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "Prikazovanje poizvedbe SQL" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "Id vstavljene vrstice: %1$d" @@ -9074,35 +9049,35 @@ msgstr "Nobeno" msgid "Convert to Kana" msgstr "Pretvori v kano" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Uspešno!" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "Zamenjaj predpono tabele:" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "Kopiraj tabelo s predpono:" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "Od" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "Za" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "Dodaj predpono tabele:" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "Dodaj predpono" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "Ali res želite izvesti naslednjo poizvedbo?" @@ -9320,8 +9295,8 @@ msgstr "Procedure:" msgid "Views:" msgstr "Pogledi:" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Pokaži" @@ -9364,18 +9339,15 @@ msgstr[2] "najdeni %s rezultati" msgstr[3] "najdenih %s rezultatov" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" -msgstr "Filtriraj zbirke podatkov po imenu ali regularnem izrazu" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 msgid "Clear fast filter" msgstr "Počisti hitri filter" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "Filtriraj po imenu ali regularnem izrazu" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "Skrči vse" @@ -9787,7 +9759,7 @@ msgstr "Preimenuj zbirko podatkov v" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9798,7 +9770,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Prilagodi privilegije" @@ -9816,18 +9788,18 @@ msgstr "Odstrani zbirko podatkov" msgid "Drop the database (DROP)" msgstr "Zavrzi zbirko podatkov (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Samo struktura" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Struktura in podatki" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Samo podatki" @@ -9839,7 +9811,7 @@ msgstr "Kopiraj zbirko podatkov v" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE pred kopiranjem" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Dodaj omejitve" @@ -9879,157 +9851,157 @@ msgstr "Pogon skladiščenja" msgid "Change all column collations" msgstr "Spremeni vsa pravila za razvrščanje znakov v stolpcih" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Kopiraj tabelo v (zbirka_podatkov.tabela)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Preklopi na kopirano tabelo" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Vzdrževanje tabele" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Analiziraj tabelo" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Preveri tabelo" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 msgid "Checksum table" msgstr "Tabela kontrolnih vsot" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Defragmentiraj tabelo" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "Osvežil sem tabelo %s." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "Počisti tabelo (FLUSH)" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Optimiraj tabelo" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Popravi tabelo" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "Izbriši podatke ali tabelo" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "Izprazni tabelo (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "Izbriši tabelo (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Analiziraj" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Označi" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Optimiraj" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Ponovno sestavi" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Popravi" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "Izprazni" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 msgid "Coalesce" msgstr "Združi (coalesce)" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "Vzdrževanje particij" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "Particija %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "Odstrani particioniranje" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Preveri referenčno integriteto:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Tabele ne morete premakniti same vase!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Tabele ne morete kopirati same vase!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabelo %s smo premaknili na %s. Privilegije smo prilagodili." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabelo %s smo skopirali na %s. Privilegije smo prilagodili." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabelo %s smo premaknili na %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabelo %s smo skopirali na %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Ime tabele je prazno!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "Oblika nima nobenih možnosti" @@ -10202,7 +10174,7 @@ msgstr "Možnosti odlaganja podatkov" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Odloži podatke za tabelo" @@ -10226,21 +10198,21 @@ msgstr "Opredelitev" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Struktura tabele" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Struktura pogleda" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Nadomestna struktura pogleda" @@ -10330,7 +10302,7 @@ msgid "Database:" msgstr "Zbirka podatkov:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "Podatki:" @@ -10430,7 +10402,7 @@ msgid "Data creation options" msgstr "Možnosti ustvarjanja podatkov" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "Počisti tabelo pred vstavljanjem" @@ -10513,8 +10485,8 @@ msgstr "Kot kaže, vaša zbirka podatkov uporablja procedure;" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "izvoz z vzdevkom v vseh primerih morda ne bo deloval zanesljivo." @@ -10522,81 +10494,81 @@ msgstr "izvoz z vzdevkom v vseh primerih morda ne bo deloval zanesljivo." msgid "It appears your database uses functions;" msgstr "Kot kaže, vaša zbirka podatkov uporablja funkcije;" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 msgid "Metadata" msgstr "Metapodatki" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "Metapodatki za %s" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Ustvarjeno:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Zadnjič posodobljeno:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Zadnjič pregledano:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "v uporabi" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "Kot kaže, vaša zbirka podatkov uporablja poglede;" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Omejitve tabel za povzetek stanja" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Omejitve za tabelo" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "Indeksi zavrženih tabel" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "Indeksi tabele" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT zavrženih tabel" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT tabele" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "VRSTE MIME ZA TABELO" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "RELACIJE ZA TABELO" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "Kot kaže, vaša tabela uporablja sprožilce;" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "Struktura pogleda %s, izvoženega kot tabela" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "Napaka med branjem podatkov:" @@ -10839,9 +10811,9 @@ msgstr "Relacijska shema" msgid "Table of contents" msgstr "Vsebina" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Dodatno" @@ -11057,47 +11029,47 @@ msgstr "Oblikuje besedilo kot JSON z označevanjem skladnje." msgid "Formats text as XML with syntax highlighting." msgstr "Oblikuje besedilo kot XML z označevanjem skladnje." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Napaka: razmerje že obstaja." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "Dodal sem razmerje FOREIGN KEY." -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Napaka: Razmerja FOREIGN KEY nisem mogel dodati!" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "Napaka: Na stolpcih manjka indeks." -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "Napaka: Funkcionalnosti razmerij so onemogočene!" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "Dodal sem notranje razmerje." -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 msgid "Error: Internal relation could not be added!" msgstr "Napaka: Notranjega razmerja nisem mogel dodati!" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 msgid "FOREIGN KEY relation has been removed." msgstr "Odstranil sem razmerje FOREIGN KEY." -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Napaka: Razmerja FOREIGN KEY nisem mogel odstraniti!" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 msgid "Error: Internal relation could not be removed!" msgstr "Napaka: Notranjega razmerja nisem mogel odstraniti!" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "Odstranil sem notranje razmerje." @@ -11142,68 +11114,68 @@ msgstr "Pretvorba z brskalnikom" msgid "Please see the documentation on how to update your column_info table. " msgstr "Navodila za posodobitev tabele column_info najdete v dokumentaciji. " -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Označena poizvedba SQL" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "Zgodovina SQL" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "Vztrajno nedavno uporabljene tabele" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 msgid "Persistent favorite tables" msgstr "Vztrajne priljubljene tabele" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "Vztrajne nastavitve uporabniškega vmesnika tabel" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "Uporabniške nastavitve" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "Nastavljivi meniji" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "Skrij/prikaži navigacijske predmete" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "Shranjevanje iskanj \"query by example\"" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "Upravljanje osrednjega seznama stolpcev" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "Pomnjenje nastavitev Designerja" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 msgid "Saving export templates" msgstr "Shranjevanje predlog izvoza" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "Hitri koraki za namestitev naprednih funkcij:" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "Ustvarite potrebne tabele z %screate_tables.sql." -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "Ustvarite uporabnika pma in mu dodelite dostop do teh tabel." -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -11211,17 +11183,17 @@ msgstr "" "Omogočite napredne funkcije v konfiguracijski datoteki (config.inc." "php); začnite na primer s config.sample.inc.php." -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Ponovno se prijavite v phpMyAdmin, da naložite posodobljeno konfiguracijsko " "datoteko." -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "brez opisa" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11231,7 +11203,7 @@ msgstr "" "Greste lahko na zavihek 'Dejanja' v vsaki od zbirk podatkov in nastavite " "hrambo konfiguracije phpMyAdmin." -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11240,7 +11212,7 @@ msgstr "" "%sUstvari%s zbirko podatkov 'phpmyadmin' in vanjo namesti hrambo " "konfiguracije phpMyAdmin." -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." @@ -11248,7 +11220,7 @@ msgstr "" "%sCreate%s tabele hrambe konfiguracije phpMyAdmin in trenutni zbirki " "podatkov." -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "%sUstvari%s manjkajoče tabele hrambe konfiguracije phpMyAdmin." @@ -11440,8 +11412,8 @@ msgstr "Uporabniško ime:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Uporabniško ime" @@ -11449,7 +11421,7 @@ msgstr "Uporabniško ime" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Geslo" @@ -12081,7 +12053,7 @@ msgstr[3] "Uspešno sem zavrgel %1$d zbirk podatkov." msgid "Plugin" msgstr "Vtičnik" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Različica" @@ -12089,100 +12061,96 @@ msgstr "Različica" msgid "Author" msgstr "Avtor" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "Dovoljenje" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "onemogočeno" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Brez privilegijev." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Vsebuje vse privilegije razen GRANT." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Omogoča branje podatkov." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Omogoča vstavljanje in zamenjavo podatkov." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Omogoča spreminjanje podatkov." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Omogoča brisanje podatkov." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Omogoča ustvarjanje novih zbirk podatkov in tabel." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Omogoča brisanje zbirk podatkov in tabel." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Omogoča osveževanje strežnikovih nastavitev in praznjenje strežnikovih " "predpomnilnikov." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Omogoča ugašanje strežnika." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "Omogoča ogled procesov vseh uporabnikov." #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "Omogoča uvažanje in izvažanje podatkov v datoteke." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "V tej različici MySQL nima pomena." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Omogoča ustvarjanje in brisanje indeksov." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Omogoča spreminjanje strukture obstoječih tabel." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Omogoča dostop do popolnega spiska zbirk podatkov." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12193,22 +12161,22 @@ msgstr "" "globalnih spremenljivk in ukinjanje procesov drugih uporabnikov." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Omogoča ustvarjanje začasnih tabel." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Omogoča zaklepanje tabel za trenutno nit." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Potrebno za podrejene strežnike pri replikaciji." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Da uporabniku pravico poizvedovati kje so njegovi nadrejeni / podrjeni " @@ -12217,43 +12185,43 @@ msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Omogoča ustvarjanje novih pogledov." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "Omogoča določanje dogodkov za načrtovalnik dogodkov." #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "Omogoča ustvarjanje in brisanje sprožilcev." #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Omogoča izvajanje poizvedb SHOW CREATE VIEW." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Omogoča ustvarjanje shranjenih rutin." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Omogoča ustvarjanje in brisanje shranjenih rutin." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "Omogoča ustvarjanje, brisanje in preimenovanje uporabniških računov." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Omogoča izvajanje shranjenih rutin." @@ -12265,8 +12233,8 @@ msgstr "Brez" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Uporabniška skupina" @@ -12309,13 +12277,13 @@ msgstr "" "Obvestilo: Če postavite vrednost na 0 (nič), boste odstranili omejitev." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Omeji število poizved, ki jih uporabnik lahko pošlje strežniku v eni uri." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12324,25 +12292,25 @@ msgstr "" "uporabnik lahko izvrši v eni uri." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "Omeji število povezav, ki jih uporabnik lahko odpre v eni uri." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "Omeji število sočasnih povezav, ki jih lahko ima uporabnik." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Rutina" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12358,14 +12326,14 @@ msgstr "Omogoča izvajanje rutine." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Privilegiji tipični za tabelo" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Opomba: Imena privilegijev MySQL so zapisana v angleščini." @@ -12375,7 +12343,7 @@ msgid "Administration" msgstr "Administracija" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Globalni privilegiji" @@ -12384,15 +12352,15 @@ msgid "Global" msgstr "Globalno" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Privilegiji, tipični za zbirko podatkov" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Omogoča ustvarjanje novih tabel." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Omogoča brisanje tabel." @@ -12409,7 +12377,7 @@ msgid "Native MySQL Authentication" msgstr "Domorodna overitev MySQL" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Podatki o prijavi" @@ -12434,8 +12402,8 @@ msgstr "Ime gostitelja:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 msgid "Host name" msgstr "Ime gostitelja" @@ -12451,112 +12419,112 @@ msgstr "Vtičnik za overovitev" msgid "Password Hashing Method" msgstr "Metoda šifriranja gesel" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "Geslo za %s je uspešno spremenjeno." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Odvzeli ste privilegije za %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 msgid "Add user account" msgstr "Dodaj uporabniški račun" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 msgid "Database for user account" msgstr "Zbirka podatkov za uporabniški račun" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "Ustvari zbirko podatkov z enakim imenom in dodeli vse privilegije." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Dodeli vse privilegije na imenu z nadomestnim znakom (uporabniskoime\\_%)." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Dodeli vse privilegije za zbirko podatkov \"%s\"." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Uporabniški dostop do \"%s\"" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "Uporabnik je dodan." -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Dovoli" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "Nimate zadostnih privilegijev za ogled uporabnikov." -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "Najden ni bil noben uporabnik." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Kateri koli" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "globalno" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "glede na zbirko podatkov" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "nadomestni znak" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "glede na tabelo" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 msgid "Edit privileges" msgstr "Uredi privilegije" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Odvzemi" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "Uredi uporabniško skupino" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… obdrži starega." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… izbriši starega s seznama uporabnikov." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… prekliči vse aktivne pravice starega uporabnika ter jih izbriši." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12564,89 +12532,89 @@ msgstr "" "… izbriši starega uporabnika s seznama uporabnikov ter ponovno naloži " "njegove pravice." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "Spremeni prijavne informacije / Kopiraj uporabniški račun" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "Ustvari nov uporabniški račun z enakimi pravicami in …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Privilegiji, vezani na rutino" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 msgid "Remove selected user accounts" msgstr "Izbriši izbrane uporabniške račune" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Odvzemi uporabnikom aktivne privilegije in jih potem izbriši." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "Izbriši zbirke podatkov, ki imajo enako ime kot uporabniki." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "Ni izbranih uporabnikov za brisanje!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Osvežujem privilegije" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Uspešno sem izbrisal izbrane uporabnike." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Posodobili ste privilegije za %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "Brišem %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Uspešno sem osvežil privilegije." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "Uporabnik %s že obstaja!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "Privilegiji %s" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Uporabnik" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "Nov" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 msgid "Edit privileges:" msgstr "Uredi privilegije:" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "Uporabniški račun" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12654,11 +12622,11 @@ msgstr "" "Opozorilo: Poskušate urediti privilegije uporabnika, s katerim ste trenutno " "prijavljeni." -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "Pregled uporabniških računov" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " @@ -12669,7 +12637,7 @@ msgstr "" "gostiteljski del njihovega računa dovoljuje povezavo s katerega koli (%) " "gostitelja." -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12682,7 +12650,7 @@ msgstr "" "jih uporablja strežnik, če so bile tabele ročno spremenjene. V tem primeru " "morate pred nadaljevanjem %sosvežiti privilegije%s." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12696,11 +12664,11 @@ msgstr "" "morate pred nadaljevanjem osvežiti privilegije, vendar trenuno nimate " "privilegija RELOAD." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "Izbranega uporabnika v tabelah privilegijev nisem našel." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Dodali ste novega uporabnika." @@ -12958,24 +12926,24 @@ msgstr "Navodila/Namestitev" msgid "Done dragging (rearranging) charts" msgstr "Premikanje (preurejanje) grafikonov je končano" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "Omogoči premikanje grafikonov" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "Hitrost osveževanja" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "Stolpci grafikona" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "Razvrstitev grafikonov" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -12983,7 +12951,7 @@ msgstr "" "Razvrstitev grafikonov je shranjena v lokalni shrambi brskalnika. Če imate " "zapleteno nastavitev, jo boste morda želeli izvoziti." -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "Povrni na privzeto" @@ -13039,7 +13007,7 @@ msgid "Statements" msgstr "Izjave" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "Št." @@ -13064,7 +13032,7 @@ msgstr "Prikaži neoblikovane vrednosti" msgid "Related links:" msgstr "Sorodne povezave:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -13072,11 +13040,11 @@ msgstr "" "Število prekinjenih povezav zaradi izgube odjemalca, ki ni primerno prekinil " "povezave." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Število spodletelih poskusov povezave s strežnikom MySQL." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13086,18 +13054,18 @@ msgstr "" "dnevnika, vendar je ta presegel vrednost binlog_cache_size, zato so bile za " "shranitev izjav iz transakcije uporabljene začasne datoteke." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Število transakcij, ki so uporabile začasni predpomnilnik dvojiškega " "dnevnika." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Število poskusov povezave (uspešnih ali ne) na strežnik MySQL." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13109,11 +13077,11 @@ msgstr "" "povečati vrednost tmp_table_size, zaradi česar bodo začasne tabele temeljile " "na pomnilniku namesto na disku." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "Koliko začasnih datotek je ustvaril mysqld." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13121,7 +13089,7 @@ msgstr "" "Število začasnih tabel v-pomnilniku, ki jih je strežnik samodejno ustvaril " "med izvajanjem stavkov." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13129,7 +13097,7 @@ msgstr "" "Število vrstic zapisanih z INSERT DELAYED, pri katerih je prišlo do neke " "napake (najverjetneje podvojen ključ)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13137,23 +13105,23 @@ msgstr "" "Število upravljalnih niti INSERT DELAYED v uporabi. Vsaka različna tabela, " "na kateri se uporabi INSERT DELAYED, dobi svojo lastno nit." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "Število zapisanih vrstic INSERT DELAYED." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "Število izvedenih izjav FLUSH." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "Število notranjih izjav COMMIT." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "Število izbrisov vrstice iz tabele." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13163,7 +13131,7 @@ msgstr "" "navedenim imenom. Temu se reče odkritje. Handler_discover kaže koliko krat " "so bile tabele odkrite." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13173,7 +13141,7 @@ msgstr "" "kaže, da strežnik izvaja mnogo pregledov indeksa; na primer: SELECT col1 " "FROM foo, pri čemer se predpostavlja, da je col1 indeksiran." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -13182,7 +13150,7 @@ msgstr "" "visoka, je to dober znak, da so vaše poizvedbe in tabele primerno " "indeksirane." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13192,7 +13160,7 @@ msgstr "" "povečano, če poizvedujete po indeksnem stolpcu z omejitvijo obsega ali če " "pregledujete indeks." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13200,7 +13168,7 @@ msgstr "" "Število poizvedb za branje prejšnje vrstice v zaporedju ključa. Postopek " "branja se uporablja predvsem za optimizacijo ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13212,7 +13180,7 @@ msgstr "" "Najverjetneje imate veliko poizvedb, ki od MySQL zahtevajo pregled celotnih " "tabel, ali stike, ki ne uporabljajo ključev pravilno." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13224,36 +13192,36 @@ msgstr "" "tabele niso primerno indeksirane ali da vaše poizvedbe ne izkoristijo " "prednosti indeksov, ki jih imate." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "Število notranjih izjav ROLLBACK." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "Število zahtev za posodobitev vrstice v tabeli." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "Število zahtev za vstavitev vrstice v tabelo." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "Število strani, ki vsebujejo podatke (umazane ali čiste)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "Število trenutno umazanih strani." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Število strani zaloge medpomnilnika, za katere je bila zaprošena izplaknitev." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "Število prostih strani." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13263,7 +13231,7 @@ msgstr "" "trenutno v postopku branja ali pisanja ali pa zaradi nekega drugega razloga " "ne morejo biti izplaknjene ali odstranjene." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13275,11 +13243,11 @@ msgstr "" "lahko izračuna tudi kot Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "Skupna velikost zaloge medpomnilnika, v straneh." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13287,7 +13255,7 @@ msgstr "" "Število začetih \"naključnih\" vnaprejšnjih branj InnoDB. To se zgodi, ko " "poizvedba zahteva pregled večjega dela tabele, vendar v naključnem redu." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13295,11 +13263,11 @@ msgstr "" "Število začetih zaporednih vnaprejšnjih branj InnoDB. To se zgodi, ko InnoDB " "izvaja zaporedno pregledovanje celotne tabele." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "Število logičnih bralnih zahtev, ki jih je izvedel InnoDB." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13307,7 +13275,7 @@ msgstr "" "Število logičnih bralnih zahtev, katerih InnoDB ni mogel izpolniti iz zaloge " "medpomnilnika in je moral izvesti enostransko branje." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13321,52 +13289,52 @@ msgstr "" "čakanj. Če je bila velikost zaloge medpomnilnika primerno nastavljena, bi " "morala biti vrednost majhna." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "Število zapisov storjenih v zalogi medpomnilnika InnoDB." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "Število dozdajšnjih posegov fsync()." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "Trenutno število čakajočih posegov fsync()." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "Trenutno število čakajočih branj." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "Trenutno število čakajočih pisanj." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "Količina do zdaj prebranih podatkov, v bajtih." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "Skupno število branj podatkov." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "Skupno število zapisovanj podatkov." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "Količina do zdaj zapisanih podatkov, v bajtih." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Število strani, ki so bile zapisane za posege dvojnega pisanja (doublewrite)." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "Število posegov dvojnega pisanja (doublewrite), ki so bili izvedeni." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13374,35 +13342,35 @@ msgstr "" "Število čakanj, ki smo jih imeli, ker je bil medpomnilnik dnevnika premajhen " "in je bilo potrebno počakati, da se pred nadaljevanjem izplakne." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "Število zahtev pisanja v dnevnik." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "Število fizičnih pisanj v dnevniško datoteko." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "Število pisanj fsync() storjenih v dnevniško datoteko." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "Število čakajoče dnevniške datoteke fsyncs." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "Čakajoča pisanja v dnevniško datoteko." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "Število bajtov zapisanih v dnevniško datoteko." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "Število ustvarjenih strani." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -13410,51 +13378,51 @@ msgstr "" "Vgrajena velikost strani InnoDB (privzeto 16 KB). Veliko vrednosti je štetih " "v straneh; velikost strani omogoča preprosto pretvorbo v bajte." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "Število prebranih strani." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "Število zapisanih strani." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "Število zaklepov vrstic, na katere se trenutno čaka." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Povprečni čas zagotovitve zaklepa vrstice, v milisekundah." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Skupni čas zagotavljanja zaklepov vrstic, v milisekundah." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Najdaljši čas zagotavljanja zaklepa vrstice, v milisekundah." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "Število čakanj na zaklepe vrstic." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "Število vrstic izbrisanih iz tabel InnoDB." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "Število vrstic vstavljenih v tabele InnoDB." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "Število vrstic prebranih iz tabel InnoDB." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "Število vrstic posodobljenih v tabelah InnoDB." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13463,7 +13431,7 @@ msgstr "" "vendar niso bili izplaknjeni na disk. Včasih je bilo znano kot " "Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -13471,7 +13439,7 @@ msgstr "" "Število neuporabljenih blokov v predpomnilniku ključev. To vrednost lahko " "uporabite, da ugotovite, koliko predpomnilnika ključev je v uporabi." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13481,15 +13449,15 @@ msgstr "" "dosežena vrednost, ki kaže največje število blokov, ki so bili kadar koli " "naenkrat v uporabi." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "Odstotek uporabljenega predpomnilnika ključev (izračunana vrednost)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "Število zahtev za branje bloka ključev iz predpomnilnika." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13499,7 +13467,7 @@ msgstr "" "je vaša vrednost key_buffer_size najverjetneje premajhna. Razmerje " "pogrešitev predpomnilnika se lahko izračuna kot Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13507,22 +13475,22 @@ msgstr "" "Napačno izračunan predpomnilnik ključev kot delež fizičnih branj v " "primerjavi z zahtevami za branje (izračunana vrednost)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "Število zahtev za pisanje bloka ključev v predpomnilnik." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "Število fizičnih pisanj bloka ključev na disk." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Odstotek fizičnih zapisov v primerjavi z zahtevami za zapis (izračunana " "vrednost)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13533,17 +13501,17 @@ msgstr "" "enake poizvedbe. Privzeta vrednost 0 pomeni, da še ni bila prevedena nobena " "poizvedba." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "Največje število sočasno uporabljenih povezav od zagona strežnika." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Število vrstic, ki čakajo na zapis v vrsti INSERT DELAYED." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13551,19 +13519,19 @@ msgstr "" "Število odprtih tabel. Če je vrednost velika, je vaš predpomnilnik tabel " "najverjetneje premajhen." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "Število odprtih datotek." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "Število odprtih tokov (uporabljenih v glavnem za beleženje)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "Število odprtih tabel." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13573,19 +13541,19 @@ msgstr "" "število lahko kaže na težave z razdrobljenostjo, kar lahko odpravite z " "izvedbo stavka FLUSH QUERY CACHE." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "Količina prostega spomina za predpomnilnik poizvedb." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "Število zadetkov predpomnilnika." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "Število poizvedb dodanih v predpomnilnik." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13598,7 +13566,7 @@ msgstr "" "uporablja strategijo nedavno najmanj uporabljanih (LRU), da odloči, katere " "poizvedbe naj odstrani iz predpomnilnika." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13606,19 +13574,19 @@ msgstr "" "Število nepredpomnjenih poizvedb (ne predpomnljive ali ne predpomnjene " "zaradi nastavitve query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "Število zabeleženih poizvedb v predpomnilniku." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "Skupno število blokov v predpomnilniku poizvedb." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stanje podvajanja odpovedne varnosti (ni še vključeno)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -13626,11 +13594,11 @@ msgstr "" "Število stikov, ki ne uporabljajo indeksov. Če vrednost ni 0, skrbno " "preverite indekse vaših tabel." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "Število stikov, ki so uporabili iskanje območja na referenčni tabeli." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -13638,7 +13606,7 @@ msgstr "" "Število stikov brez ključev, ki preverjajo uporabo ključev po vsaki vrstici. " "(Če to ni 0, previdno preverite indekse vaših tabel.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13646,16 +13614,16 @@ msgstr "" "Število stikov, ki so uporabili območja na prvi tabeli. (Po navadi ni " "kritično, četudi je veliko.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "Število stikov, ki so izvedli celotni pregled na prvi tabeli." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Število začasnih tabel, ki so trenutno odprte s strani niti SQL podrejencev." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13663,11 +13631,11 @@ msgstr "" "Skupno (od zagona) število ponovnih poskusov transakcij podvojevalne niti " "SQL podrejenca." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "To je ON, če je strežnik podrejenec, povezan z glavnim strežnikom." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -13675,12 +13643,12 @@ msgstr "" "Število niti, ki so za svoje ustvarjanje porabile več kot slow_launch_time " "sekund." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Število poizvedb, ki so porabile več kot long_query_time sekund." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13690,23 +13658,23 @@ msgstr "" "Če je vrednost velika, razmislite o povečanju sistemske spremenljivke " "sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "Število razvrščanj, ki so bila storjena z razponi." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "Število razvrščenih vrstic." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "Število razvrščanj, ki so bila storjena s pregledovanjem tabele." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "Koliko krat je bil zaklep tabele pridobljen takoj." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13718,7 +13686,7 @@ msgstr "" "optimizirajte vaše poizvedbe, nato pa ali razdelite vašo tabelo oz. tabele " "ali uporabite podvojevanje." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13728,11 +13696,11 @@ msgstr "" "izračuna kot Threads_created/Connections. Če je vrednost obarvana rdeče, " "povečajte svoj thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "Število trenutno odprtih povezav." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13743,11 +13711,11 @@ msgstr "" "velik, boste morda želeli povečati vrednost thread_cache_size. (Po navadi to " "ne izboljša zmogljivosti v veliki meri, če imate dobro izvedbo niti.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "Delež zadetkov predpomnilnika niti (izračunana vrednost)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "Število niti, ki ne spijo." @@ -13756,57 +13724,57 @@ msgstr "Število niti, ki ne spijo." msgid "Users of '%s' user group" msgstr "Uporabniki uporabniške skupine '%s'" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "Našel nisem nobenega uporabnika, ki pripada tej uporabniški skupini." -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "Uporabniške skupine" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "Zavihki stopenj strežnika" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "Zavihki stopenj zbirke podatkov" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "Zavihki stopenj tabele" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "Poglej uporabnike" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "Dodaj uporabniško skupino" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "Uredi uporabniško skupino: '%s'" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "Dodelitve menija uporabniških skupin" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "Ime skupine:" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "Zavihki stopenj strežnika" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "Zavihki stopenj zbirke podatkov" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "Zavihki stopenj tabele" @@ -13866,21 +13834,17 @@ msgstr "Pričakovali smo zaklepaj." msgid "Unrecognized data type." msgstr "Neprepoznana vrsta podatkov." -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "Nepričakovan zakepaj." - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "Vzdevek smo našli že prej." -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "Nepričakovana pika." -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 msgid "An alias was expected." msgstr "Pričakovali smo vzdevek." @@ -13936,107 +13900,107 @@ msgstr "Pričakovali smo končni narekovaj %1$s." msgid "Variable name was expected." msgstr "Pričakovali smo ime spremenljivke." -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 msgid "Unexpected beginning of statement." msgstr "Nepričakovan začetek stavka." -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "Neprepoznana vrsta stavka." -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "Začeli niste nobene transakcije." -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "Nepričakovan žeton." -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "To vrsto stavka smo prej razčlenili." -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" "Naleteli smo na nov stavek, vendar med njim in prejšnjim stavkom ni " "ločilnega znaka." -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "Nepričakovana ključna beseda." -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "Pričakovali smo ime entitete." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 msgid "At least one column definition was expected." msgstr "Pričakovali smo vsaj eno opredelitev stolpca." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "Pričakovali smo ključno besedo \"RETURNS\"." -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "Podrobni profil" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "Vrstni red" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "Stanje" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "Povzetek po stanju" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "Skupni čas" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "% časa" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "Klicev" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "ø časa" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Označi to poizvedbo SQL" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "Oznaka:" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Dovoli dostop do zaznamka vsem uporabnikom" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "Zaznamka nisem ustvaril!" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Uporaba zaznamka \"%s\" kot privzeto poizvedbo med brskanjem." -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "Prikazovanje kot koda PHP" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " @@ -14045,7 +14009,7 @@ msgstr "" "Trenutna izbira ne vsebuje unikatnega stolpca. Možnosti urejanja mreže, " "potrditvena polja, Uredi, Kopiraj in Izbriši niso na voljo. %s" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " @@ -14054,7 +14018,7 @@ msgstr "" "Trenutna izbira ne vsebuje unikatnega stolpca. Možnosti urejanja mreže, " "Uredi, Kopiraj in Izbriši se lahko obnašajo nepredvidljivo. %s" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Težave z indeksi tabele `%s`" @@ -14082,27 +14046,27 @@ msgstr "Dobi samodejno shranjeno poizvedbo" msgid "Bind parameters" msgstr "Poveži parametre" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "Označi to poizvedbo SQL:" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Zamenjaj obstoječ zaznamek z istim imenom" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Ločilo" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Ponovno pokaži poizvedbo v tem oknu" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "Ob koncu razveljavi" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Samo pogled" @@ -14146,112 +14110,112 @@ msgstr "Dezaktiviraj sledenje za %s" msgid "Deactivate now" msgstr "Dezaktiviraj zdaj" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Ustvarjeno" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Posodobljeno" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 msgid "Delete version" msgstr "Izbriši različico" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Poročilo sledenja" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Posnetek strukture" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "aktivno" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "ni aktivno" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "Sledenje stavkom" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "Izbriši vrstico podatkov sledenja iz poročila" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "Brez podatkov" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Prikaži %1$s z datumi od %2$s do %3$s uporabnika %4$s %5$s" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "Odložen SQL (prenos datoteke)" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "Odložen SQL" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "Ta možnost bo zamenjala vašo tabelo in vsebovane podatke." -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "Izvršitev SQL" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "Izvozi kot %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "Stavek upravljanja s podatki" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "Stavek opredeljevanja podatkov" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Datum" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Uporabniško ime" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Različica posnetka %s (koda SQL)" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Brez" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "Opredelitev sledenja podatkom je uspešno izbrisana" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "Stavek upravljanja s podatki je uspešno izbrisan" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14259,63 +14223,63 @@ msgstr "" "Odložene podatke lahko izvedete z ustvarjanjem in uporabo začasne zbirke " "podatkov. Prosimo, prepričajte se, da imate privilegije za ta dejanja." -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "Če teh dveh vrstic ne potrebujete, ju dajte v komentar." -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "Stavki SQL so bili izvoženi. Prosimo, skopirajte odložene podatke ali jih " "izvršite." -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "Poročilo sledenja za tabelo `%s`" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Sledenje %1$s je bilo aktivirano pri različici %2$s." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Sledenje %1$s je bilo deaktivirano pri različici %2$s." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Različico %1$s tabele %2$s smo izbrisali." -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Različica %1$s je ustvarjena, sledenje %2$s je aktivirano." -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Nesledene tabele" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Sledi tabeli" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Sledene tabele" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Zadnja različica" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "Izbriši sledenje" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Različice" @@ -14323,11 +14287,11 @@ msgstr "Različice" msgid "Manage your settings" msgstr "Upravljajte svoje nastavitve" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "Konfiguracijo sem shranil." -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14432,7 +14396,7 @@ msgstr "Brez zbirk podatkov" msgid "View dump (schema) of databases" msgstr "Pokaži povzetek stanja zbirk podatkov" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14459,7 +14423,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin ni uspel prekiniti niti %s. Verjetno je že prekinjena." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "Nimate zadostnih privilegijev za ogled statistike poizvedb." @@ -15278,43 +15242,49 @@ msgstr "Raztreseni" msgid "Stacked" msgstr "Zloženi" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "Naslov grafikona" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "Os x:" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "Serije:" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "Oznaka osi x:" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "Vrednosti x" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "Oznaka osi y:" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Vrednosti y" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "Imena zaporedij so v stolpcu" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "Stolpec z zaporedjem:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 msgid "Value Column:" msgstr "Stolpec z vrednostjo:" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "Shrani grafikon kot sliko" @@ -15367,47 +15337,48 @@ msgstr "Pripomba:" msgid "Drag to reorder" msgstr "Povlecite za preureditev" -#: templates/table/relation/common_form.phtml:7 -msgid "Internal relations" -msgstr "Notranja razmerja" - -#: templates/table/relation/common_form.phtml:11 -msgid "Internal relation" -msgstr "Notranja relacija" - -#: templates/table/relation/common_form.phtml:14 -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "Notranja relacija ni nujna, ko obstaja ustrezna relacija FOREIGN KEY." - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 msgid "Foreign key constraints" msgstr "Omejitve tujih ključev" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 msgid "Actions" msgstr "Dejanja" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 msgid "Constraint properties" msgstr "Lastnosti omejitev" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" "Prikazani bodo samo stolpci z indeksom. Spodaj lahko opredelite indeks." -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 msgid "Foreign key constraint" msgstr "Omejitev tujih ključev" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 msgid "+ Add constraint" msgstr "+ Dodaj omejitev" -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +msgid "Internal relations" +msgstr "Notranja razmerja" + +#: templates/table/relation/common_form.phtml:80 +msgid "Internal relation" +msgstr "Notranja relacija" + +#: templates/table/relation/common_form.phtml:83 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "Notranja relacija ni nujna, ko obstaja ustrezna relacija FOREIGN KEY." + +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "Izberite stolpec za prikaz:" @@ -15534,7 +15505,7 @@ msgid "at beginning of table" msgstr "na začetku tabele" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 msgid "Partitions" msgstr "Particije" @@ -15567,7 +15538,7 @@ msgstr "Tabela razdelitve" msgid "Edit partitioning" msgstr "Uredi razdelitev" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "Urejevalni pogled" @@ -16946,6 +16917,40 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert je nastavljeno na 0" +#~ msgid "To filter all databases on server, press Enter after a search term" +#~ msgstr "" +#~ "Za filtriranje vseh zbirk podatkov na strežniku po vnosu iskalnega pojma " +#~ "pritisnite enter" + +#~ msgid "To filter all %s in database, press Enter after a search term" +#~ msgstr "" +#~ "Za filtriranje vseh %s v zbirki podatkov po vnosu iskalnega pojma " +#~ "pritisnite enter" + +#~ msgid "tables" +#~ msgstr "tabel" + +#~ msgid "views" +#~ msgstr "pogledov" + +#~ msgid "procedures" +#~ msgstr "procedur" + +#~ msgid "events" +#~ msgstr "dogodkov" + +#~ msgid "functions" +#~ msgstr "funkcij" + +#~ msgid "Filter databases by name or regex" +#~ msgstr "Filtriraj zbirke podatkov po imenu ali regularnem izrazu" + +#~ msgid "Filter by name or regex" +#~ msgstr "Filtriraj po imenu ali regularnem izrazu" + +#~ msgid "Unexpected closing bracket." +#~ msgstr "Nepričakovan zakepaj." + #~ msgid "Username and hostname didn't change." #~ msgstr "Uporabniško ime in ime gostitelja ni spremenjeno." diff --git a/po/sq.po b/po/sq.po index 36a20a16f3..d65184ef7c 100644 --- a/po/sq.po +++ b/po/sq.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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-09-05 23:03+0200\n" "Last-Translator: Arben Çokaj \n" "Language-Team: Albanian Are you sure you " "want to continue?" @@ -1961,51 +1973,51 @@ msgstr "" "Ky veprim mund të ndryshojë disa nga përkufizimet e kolonave.
Jeni i " "sigurtë, qe doni te vazhdoni?" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "Vazhdo" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "Shto çelës primar" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "Çelësi primar u shtua." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "Po kalon në hapin tjetër…" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Hapi i parë i normalizimit është i plotë për tabelën '%s'." -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "Fundi i hapit" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "Hapi i dytë i normalizimit (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "U krye" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "Konfirmo varësitë e pjesëshme" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "Varësitë e pjesëshme të zgjedhura janë si vijon:" -#: js/messages.php:440 +#: js/messages.php:441 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,19 +2025,19 @@ msgstr "" "Shënim: a, b -> d,f implikon vlerat e kolonave a dhe b të kombinuara së " "bashku, mund të përcaktojnë vlerat e kolonës d dhe kolonës f." -#: js/messages.php:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "Nuk janë zgjedhur varësi të pjesëshme!" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "Shfaq varësitë e mundshme të pjesëshme në bazë të të dhënave në tabelë" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "Fsheh listën e varësisë së pjesëshme" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2033,172 +2045,172 @@ msgstr "" "Trego durim! Mund të marrë disa sekonda, në varësi të madhësisë së të " "dhënave dhe numrit të kolonave të tabelës." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "Hapi" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "Veprimet që vijojnë do të kryhen:" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "DROP (hedh) kolonat %s nga tabela %s" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "Krijo tabelën që vijon" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "Hapi i tretë i normalizimit (3NF)" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "Konfirmo varësitë kalimtare" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "Varësitë e zgjedhura janë si vijon:" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "Nuk janë zgjedhur varësi!" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Ruaj" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Fsheh kriteret e kërkimit" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Shfaq kriteret e kërkimit" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "Kërkim i vargut" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "Maksimumi i kolonës:" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "Minimumi i kolonës:" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "Vlera minimale:" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "Vlera maksimale:" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "Fsheh gjetjen dhe zëvendëso kriteret" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "Shfaq gjej dhe zëvendëso kriteret" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "Secila pikë paraqet një radhë të dhënash." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" "Vendosja e treguesit të miut sipër një pike do të shfaqë etiketën e saj." -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Për ta zvogëluar, kap një zgjedhje nga subjekti me treguesin e miut." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" "Kliko butonin rivendos dimensionimin (zoom), për t'u kthyer në gjendjen " "origjinale." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Kliko një pikë të të dhënave për të parë dhe ndoshta korrigjuar radhën e të " "dhënave." -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Komploti mund të ndryshojë madhësi, duke u zvarritur përgjatë qoshes së " "djathtë në fund." -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "Zgjedh dy kolona" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "Zgjedh dy kolona të ndryshme" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "Përmbajtja e pikës së të dhënave" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Injoro" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Kopjo" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Pikë" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Vargu i linjës" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Poligon" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Gjeometri" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "Brenda rrethit" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "Rrethi i jashtëm" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "Doni të kopjoni çelësin e kriptimit?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "Çelësi i kriptimit" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2206,24 +2218,24 @@ msgstr "" "Tregon se keni bërë ndryshime në këtë faqe; do të nxiteni për konfirmim para " "braktisjes së ndryshimeve" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Zgjedh çelësin e referencës" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Zgjedh çelësin e huaj" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "Ju lutem, zgjedh çelësin primar ose një çelës unik!" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Zgjedh kolonën për të shfaqur" -#: js/messages.php:532 +#: js/messages.php:533 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?" @@ -2231,77 +2243,77 @@ msgstr "" "Nuk i keni ruajtur ndryshimet e faqosjes (layout). Do të humbin, nëse nuk i " "ruani ato. Doni të vazhdoni?" -#: js/messages.php:535 +#: js/messages.php:536 msgid "Page name" msgstr "Emri i faqes" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Ruaj faqen" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Ruaj faqen si" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Hap faqe" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "Fshij faqen" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Pa titull" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "Ju lutem, zgjedh një faqe për të vazhduar" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "Ju lutem, fut një emër të vlefshëm faqeje" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "A doni të ruani ndryshimet në faqen aktuale?" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "Faqja u fshi me sukses" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "Eksporto skemën relacionale" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Modifikimet janë ruajtur" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "Shto një opsion për kolonë \"%s\"." -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "%d objekt(e) u krijuan." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Dërgo" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "Shtyp Esc (ik) për të anulluar korrigjimin." -#: js/messages.php:557 +#: js/messages.php:558 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?" @@ -2309,15 +2321,15 @@ msgstr "" "Keni ndryshuar disa të dhëna dhe ato nuk janë ruajtur. Jeni i sigurtë, qe " "doni të largoheni nga kjo faqe, para se të ruani të dhënat?" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "Tërhiq dhe rirendit." -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "Kliko të klasifikoni rezultatet sipas kësaj kolone." -#: js/messages.php:563 +#: js/messages.php:564 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 " @@ -2327,27 +2339,27 @@ msgstr "" "bashkuar ASC/DESC.
- Ctrl+klikim ose Alt+klikim (Mac: Shift+Option" "+klikim), për të larguar kolonën nga klauzola ORDER BY" -#: js/messages.php:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "Kliko për të shënjuar/mos-shënjuar." -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "Kliko dyfish për të kopjuar emrin e kolonës." -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" "Kliko shigjetën lësho-poshtë
për të shkëmbyer shikueshmërinë e kolonës." -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Shfaq të gjitha" -#: js/messages.php:574 +#: js/messages.php:575 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." @@ -2356,13 +2368,13 @@ msgstr "" "korrigjim rrjetë, kuti kontrolli, Korrigjo, Kopjo dhe Fshij mund të mos " "punojnë pas ruajtjes." -#: js/messages.php:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Ju lutem, fut një varg të vlefshëm hekzadecimal. Karakteret e vlefshme janë " "0-9, A-F." -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2370,129 +2382,97 @@ msgstr "" "Doni me të vërtetë t'i shikoni të gjitha radhët? Për një tabelë të madhe, " "kjo mund të dështojë shfletuesin." -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "Gjatësi origjinale" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "anulo" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Abortuar" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "Sukses" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "Importo statusin" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Lësho filet këtu" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "Zgjedh databazën së pari" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Mund të korrigjoni vlerat më të shumta
duke klikuar dyfish direkt mbi " "to." -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Mund të korrigjoni vlerat më të shumta
duke klikuar direkt mbi to." -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "Shko tek lidhja:" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "Kopjo emrin e kolonës." -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Kliko me tastin e djathtë të miut emrin e kolonës për ta kopjuar atë në " "bordin e klipeve." -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Gjenero fjalëkalimin" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Gjenero" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "Më shumë" -#: js/messages.php:623 +#: js/messages.php:624 msgid "Show panel" msgstr "Shfaq panelin" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "Fsheh panelin" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "Shfaq njësitë e fshehta të pemës së navigimit." -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "Lidh me panelin kryesor" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "Moslidh nga paneli kryesor" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" -"Për të filtruar të gjitha databazat në server, shtyp Enter pas një termi " -"kërkimi" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" -"Për të filtruar të gjitha %s në databazë, shtyp Enter pas një temi kërkimi" - #: js/messages.php:632 -msgid "tables" -msgstr "tabelat" - -#: js/messages.php:633 -msgid "views" -msgstr "pamje" - -#: js/messages.php:634 -msgid "procedures" -msgstr "proçedurat" - -#: js/messages.php:635 -msgid "events" -msgstr "ngjarjet" - -#: js/messages.php:636 -msgid "functions" -msgstr "funksionet" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "Faqja e kërkuar nuk gjendet në histori, ajo mund të ketë skaduar." -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2502,27 +2482,27 @@ msgstr "" "aktualizimin. Versioni më i ri është %s, lëshuar më %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", versioni i fundit stabil:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "aktual" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "Krijo pamje" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "Dërgo raportin e gabimit" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "Dërgo raportin e gabimit" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2530,15 +2510,15 @@ msgstr "" "Një gabim fatal ka ndodhur në JavaScript. Dëshironi të dërgoni një raport " "gabimi?" -#: js/messages.php:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "Ndrysho rregullimet e raportit" -#: js/messages.php:660 +#: js/messages.php:652 msgid "Show report details" msgstr "Shfaq detajet e raportit" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2546,7 +2526,7 @@ msgstr "" "Eksporti juaj është jo i plotë, për shkak të ekzekutimit të ulët të " "kufizimit kohor në nivel të PHP!" -#: js/messages.php:667 +#: js/messages.php:659 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2556,60 +2536,60 @@ msgstr "" "dorëzimin, disa nga fushat mund të injorohen, për shkak të konfigurimit PHP " "max_input_vars." -#: js/messages.php:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "Disa gabime janë zbuluar në server!" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "Ju lutem shiko në fund të kësaj dritareje." -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "Injoro të gjitha" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "Si per rregullimet tuaja, ata janë duke u dërguar aktualisht, ju lutem " "tregoni durim." -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "Ekzekuto përsëri këtë pyetsor?" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "Doni me të vërtetë të fshini këtë faqeruajtës?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "Disa gabime knë ndodhur, ndërsa merr informacion për SQL debug." -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s pyetsorë të ekzekutuar %s herë në %s sekonda." -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "%s argument(e) kaluan" -#: js/messages.php:707 +#: js/messages.php:699 msgid "Show arguments" msgstr "Shfaq argumentet" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "Fsheh argumentet" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "Koha që ka marrë:" -#: js/messages.php:711 +#: js/messages.php:703 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 " @@ -2620,291 +2600,291 @@ msgstr "" "për ju. Në Safari, një problem i tillë shkaktohet zakonisht nga \"Private " "Browsing Mode\" (mënya private e shfletimit)." -#: js/messages.php:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "Para" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "Tjetër" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Sot" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "Janar" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "Shkurt" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "Mars" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "Prill" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Maj" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "June" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "Korrik" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "Gusht" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "Shtator" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "Tetor" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "Nëntor" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "Dhjetor" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Shk" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Pri" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Kor" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Gus" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Sht" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Tet" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Nën" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Dhj" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "Dielë" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "E hënë" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "E martë" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "E mërkurë" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "E enjte" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "E premte" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "E shtunë" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "Die" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Hën" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Mër" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Enj" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Pre" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Sht" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "Hë" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "Më" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "Enj" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "Pr" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "Sh" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "Wk" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "kalendar-muaj-vit" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "asnjë" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Orë" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Minutë" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Dytësor" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "Kjo fushë kërkohet" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "Ju lutem, fiksoje këtë fushë" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "Ju lutem, fut një adresë të vlefshme email" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "Ju lutem, fut një URL të vlefshme" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "Ju lutem, fut një datë të vlefshme" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "Ju lutem, fut një datë të vlefshme ( ISO )" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "Ju lutem, fut një numër të vlefshëm" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "Ju lutem, fut një numër të vlefshëm karte krediti" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "Ju lutem, fut vetëm numra" @@ -2912,41 +2892,41 @@ msgstr "Ju lutem, fut vetëm numra" msgid "Please enter the same value again" msgstr "Ju lutem, fut të njëjtën vlerë përsëri" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "Ju lutem, mos fut më shumë se {0} karaktere" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "Ju lutem, fut së paku {0} karaktere" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "Ju lutem, fut një vlerë të gjatë ndërmjet {0} dhe {1} karaktere" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "Ju lutem, fut një vlerë ndërmjet {0} dhe {1}" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "Ju lutem, fut një vlerë më të vogël ose të barabartë me {0}" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "Ju lutem, fut një vlerë më të madhe ose të barabartë me {0}" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "Ju lutem, fut një datë ose kohë të vlefshme" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "Ju lutem, fut një hyrje HEX të vlefshëm" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Gabim" @@ -3036,11 +3016,12 @@ msgstr "Requery (kërkesë)" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3082,7 +3063,7 @@ msgstr "Gjatë sesionit aktual" msgid "Explain" msgstr "Sqaro" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Profilon" @@ -3116,8 +3097,8 @@ msgid "History" msgstr "Historia" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3264,7 +3245,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Kalo tek modeli i errët" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3272,26 +3253,26 @@ msgstr "" "Serveri nuk përgjigjet (ose foleja e serverit lokal nuk është konfiguruar " "saktë)." -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "Serveri nuk përgjigjet." -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "Ju lutem, kontrollo privilegjet e drejtorisë që përmban databazën." -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Detajet…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Lidhja për përdoruesin e kontrollit, siç përcaktohet në konfigurimin tuaj " "dështoi." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3301,8 +3282,8 @@ msgstr "" msgid "Ascending" msgstr "Ngritëse" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3445,8 +3426,8 @@ msgstr[0] "%1$s përkim në %2$s" msgstr[1] "%1$s përkime në %2$s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3488,119 +3469,120 @@ msgstr "Mos-zgjedh të gjitha" msgid "Inside column:" msgstr "Kolona e brendshme:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "Ruaj të dhënat e korrigjuara" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "Rivendos renditjen e kolonës" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "Radhët e filterit" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "Kërko këtë tabelë" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "Fillo" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "Përpara" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "Tjetër" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "Fund" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Të gjithë" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Numri i radhëve:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Klasifiko sipas çelësit" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "Tekste pjesore" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "Tekstet e plota" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Çelësi relacional" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 msgid "Display column for relations" msgstr "Shfaq kolonat për marrëdhëniet" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "Shfaq përmbajtjen binare" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "Shfaq përmbajtjen BLOB" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "Fsheh transformimin e shfletuesit" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "Tekst i mirënjohur" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "Binare e mirënjohur" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "Radha është fshirë." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Vrit" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Mund të jetë me afërsi. Shiko [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "Pyetsori juaj SQL është ekzekutuar me sukses." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3609,64 +3591,64 @@ msgstr "" "Kjo pamje ka të paktën këtë numër të radhëve. Ju lutem, refero " "%sdokumentacionin%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "Shfaqën radhët %1s - %2s" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d gjithsejt, %2$d në pyetsor" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "%d gjithsejt" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "Pyetsori mori %01.4f sekonda." -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Me të zgjedhur:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 msgid "Check all" msgstr "Shënjo të gjitha" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Shfaq printimin" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Veprimet e rezultatit të pyetsorit" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Shfaq grafikun" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "Vizualizo të dhënat GIS" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "Lidhja nuk gjendet!" @@ -3761,19 +3743,19 @@ msgstr "Nuk është përcaktuar indeksi!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Indekset" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3782,24 +3764,24 @@ msgid "Action" msgstr "Veprimi" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Emri i çelësit" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Unik" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Paketuar" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Kardinaliteti" @@ -3807,8 +3789,8 @@ msgstr "Kardinaliteti" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3818,8 +3800,8 @@ msgid "Collation" msgstr "Përshtatja" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3835,15 +3817,15 @@ msgstr "Çelësi primar është fshirë." msgid "Index %s has been dropped." msgstr "Indeksi %s është fshirë." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Fshij" @@ -3884,12 +3866,13 @@ msgstr "Shfaq" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3897,7 +3880,7 @@ msgstr "Tabela" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3906,8 +3889,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3915,41 +3898,41 @@ msgid "Search" msgstr "Kërko" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Fut" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilegjet" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Veprime" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Gjurmim" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3960,16 +3943,16 @@ msgstr "Shkrehësit" msgid "Database seems to be empty!" msgstr "Databaza duket se është e zbrazët!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Pyetsori" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rutinat" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3977,20 +3960,20 @@ msgstr "Rutinat" msgid "Events" msgstr "Ngjarjet" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Dizajner" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "Kolonat qendrore" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Databazat" @@ -3999,33 +3982,33 @@ msgid "User accounts" msgstr "Llogaritë e përdoruesve" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Regjistër (log) binar" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikimi" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Variablat" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Karakteret" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Makinat" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "Shtojcat (plugins)" @@ -4322,7 +4305,7 @@ msgstr "uk mund ta riemërojë indeksin tek PRIMARY!" msgid "No index parts defined!" msgstr "Nuk janë përcaktuar pjesë të indeksit!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4799,37 +4782,37 @@ msgstr "Funksionaliteti %s është ndikuar nga një defekt i njohur, shiko %s" msgid "Click to toggle" msgstr "Kliko për të nyjëzuar" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Shfleto kompjuterin:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Zgjedh nga drejtoria e ngarkimit %s të ueb serverit:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Dosja që keni zgjedhur për ngarkim nuk mund të arrihet." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "Nuk ka file për ngarkim!" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Zbraz" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "Ekzekuto" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Printo" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "Përdoruesit" @@ -4992,8 +4975,8 @@ msgid "Add new column" msgstr "Shto kolonë të re" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5062,19 +5045,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "Duhet të aktualizoni tek %s %s ose më lart." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "Gabim: mospërputhje e shenjave" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS përpjekje mbishkrimi" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "e mundur të shfrytëzohet" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "çelës numerik është hetuar" @@ -5932,7 +5915,7 @@ msgid "Remember file name template" msgstr "Kujto modelin e emrit të filit" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Shto vlerën AUTO_INCREMENT" @@ -5972,7 +5955,7 @@ msgstr "Eksporti i metadata të lidhura nga ruajtja e konfigurimit phpMyAdmin" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Shto %s" @@ -7690,7 +7673,7 @@ msgstr "" "Përcakton nëse kutia e pyetsorit duhet të qëndrojë në ekran pas dorëzimit të " "saj." -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "Mbaj kutinë e pyetsorit" @@ -7995,101 +7978,33 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "HapDokument Tekst" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "Lista e preferencave është e mbushur!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Tabela %s është zbrazur." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "Paraqitja %s është fshirë." -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "Tabela %s është fshirë." -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "Lista e preferencave është e mbushur!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "e panjohur" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "Emri '%s' është një fjalë kyçe e rezervuar MySQL." -msgstr[1] "Emrat '%s' janë fjalë kyçe të rezervuara MySQL." - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "Nuk është zgjedhur kolona." - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "Kolonat kanë lëvizur me sukses." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "Tabela %1$s është alternuar me sukses." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "Gabim pyetsori" - -#: libraries/controllers/TableStructureController.php:967 -#, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "Tabela %1$s është alternuar me sukses. Privilegjet janë përshtatur." - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Ndrysho" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Indeksi" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "Spacial (hapësinor)" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Tekst i plotë" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "Vlerat e dallueshme" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8103,6 +8018,14 @@ msgstr "Nuk ka kolona numerike të prezantuara në tabelën e komplotit." msgid "No data to display" msgstr "Nuk ka të dhëna për të shfaqur" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "Tabela %1$s është alternuar me sukses." + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "Shfaqja e kolonës u aktualizua me sukses." @@ -8111,19 +8034,79 @@ msgstr "Shfaqja e kolonës u aktualizua me sukses." msgid "Internal relations were successfully updated." msgstr "Relacionet e brendshme u aktualizuan me sukses." -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "Kërko tabelën" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "Kërkimi zoom" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Gjej dhe zëvendëso" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "Emri '%s' është një fjalë kyçe e rezervuar MySQL." +msgstr[1] "Emrat '%s' janë fjalë kyçe të rezervuara MySQL." + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "Nuk është zgjedhur kolona." + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "Kolonat kanë lëvizur me sukses." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "Gabim pyetsori" + +#: libraries/controllers/table/TableStructureController.php:975 +#, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "Tabela %1$s është alternuar me sukses. Privilegjet janë përshtatur." + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Ndrysho" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Indeksi" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "Spacial (hapësinor)" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Tekst i plotë" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "Vlerat e dallueshme" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8133,7 +8116,7 @@ msgstr "Zgjerimi %s mungon. Ju lutem, kontrollo konfigurimin tuaj PHP." msgid "possible deep recursion attack" msgstr "sulm i mundshëm i thellë ripërsëritje" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Nuk ka ndryshime" @@ -8204,7 +8187,7 @@ msgstr "Krijo" msgid "Create database:" msgstr "Krijo databazë:" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Nuk ka privilegje" @@ -8944,66 +8927,66 @@ msgid "Dump has been saved to file %s." msgstr "Zbrazja është ruajtur tek fili %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ktheu një set rezultati të zbrazët (psh. zero radhë)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "[RIKTHIMI u shfaq.]" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Strukturat e mëposhtme janë krijuar ose ndryshuar. Këtu ju mund të:" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "Shfaq një përmbajtje të strukturës duke klikuar mbi emrin e saj." -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Ndrysho ndonjë nga rregullimet e saj, duke klikuar lidhjen korresponduese " "\"Options\" (opsionet)." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "Korrigjo strukturën duke ndjekur lidhjen \"Structure\" (struktura)." -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "Shko tek databaza: %s" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "Korrigjo rregullimet për %s" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "Shko tek tabela: %s" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "Struktura e %s" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "Shko tek pamja: %s" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" "Vetëm pyetsorët me tabelë të vetme UPDATE dhe DELETE mund të simulohen." -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9011,7 +8994,7 @@ msgstr "" "Vetëm pyetsorët INSERT, UPDATE, DELETE dhe REPLACE SQL, që përmbajnë tabela " "të makinës transaksionale, mund të rikthehen." -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "Krijo një indeks në  %s kolona" @@ -9034,67 +9017,67 @@ msgstr "Funksioni" msgid "Binary" msgstr "Binar" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "" "Për arsye të gjatësisë,
kjo kolonë mund të mos jetë e korrigjueshme." -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Binar - mos korrigjo" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Ose" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "drejtoria e ngarkimit në ueb server:" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "Korrigjo/Fut" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "Vazhdo futjen me %s radhë" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "dhe pastaj" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Fut si radhë të re" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "Fut si radhë të re dhe injoro gabimet" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "Shfaq fut pyetsorin" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Kthehu tek faqja më përpara" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Fut një radhë tjetër" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Kthehu tek kjo faqe" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Korrigjo radhën tjetër" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9104,7 +9087,7 @@ msgstr "" "Përdor tastin TAB (tabelor) për të lëvizur nga një vlerë te tjetra, ose CTRL" "+shigjeta për të lëvizur kudo" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9116,11 +9099,11 @@ msgstr "" msgid "Value" msgstr "Vlera" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "Shfaqën pyetsorin SQL" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "ID e radhës së futur: %1$d" @@ -9136,35 +9119,35 @@ msgstr "Asnjë" msgid "Convert to Kana" msgstr "Konverto në Kana" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Sukses!" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "Zëvendëso prefiksin e tabelës:" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "Kopjo tabelën me prefiks:" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "Nga" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "Tek" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "Shto prefiks tabele:" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "Shto prefiks" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "Doni me të vërtetë të ekzekutoni pyetsorin që vijon?" @@ -9382,8 +9365,8 @@ msgstr "Proçedurat:" msgid "Views:" msgstr "Shfaqje:" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Shfaq" @@ -9424,18 +9407,15 @@ msgstr[0] "%s rezultat është gjetur" msgstr[1] "%s rezultate janë gjetur" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" -msgstr "Filtro databazat sipas emrit ose regex" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 msgid "Clear fast filter" msgstr "Pastro filtrin e shpejtë" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "Filtro sipas emrit ose regex" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "Ngushto të gjitha" @@ -9862,7 +9842,7 @@ msgstr "Riemëro databazën në" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9873,7 +9853,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Përshtat privilegjet" @@ -9891,18 +9871,18 @@ msgstr "Largo databazën" msgid "Drop the database (DROP)" msgstr "Fshij databazën (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Struktura vetëm" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Struktura dhe të dhënat" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Vetëm të dhënat" @@ -9914,7 +9894,7 @@ msgstr "Kopjo databazën në" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE para kopjimit" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Shto detyrime" @@ -9954,157 +9934,157 @@ msgstr "Makinat e ruajtjes" msgid "Change all column collations" msgstr "Ndrysho të gjitha kolonat e sistemit" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Kopjo tabelën tek (databaza.tabela)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Kalo tek tabela e kopjuar" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Mirëmbajta e tabelës" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Tabela e analizës" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Kontrollo tabelën" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 msgid "Checksum table" msgstr "Tabela e kontrollshumës" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Tabela e defragmentimit" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "Tabela %s është pastruar." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "Zbraz tabelën (FLUSH)" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Optimizo tabelë" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Riparo tabelën" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "Fshij të dhënat ose tabelat" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "Zbraz tabelën (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "Fshij tabelën (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Analizë" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Kontrollo" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Optimizo" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Rindërto" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Riparo" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "Cungo" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 msgid "Coalesce" msgstr "Bashko" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "Mirëmbajtja e pjesës" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "Pjesa %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "Largo particionimin" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Kontrollo integritetin referencial:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Nuk mund t'i lëvizë tabelat tek vetvetja!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Nuk mund ta kopjojë tabelën tek vetvetja!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabela %s ka lëvizur tek %s. Privilegjet janë përshtatur." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabela %s është kopjuar tek %s. Privilegjet janë përshtatur." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabela %s ka lëvizur tek %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s është kopjuar tek %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Emri i tabelës është i zbrazët!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "Ky format nuk ka opsione" @@ -10278,7 +10258,7 @@ msgstr "Opsionet e heqjes (dump) së të dhënave" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Zbraz të dhënat për tabelën" @@ -10302,21 +10282,21 @@ msgstr "Përkufizimi" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Struktura e tabelës për tabelën" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Struktura për pamjen" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Struktura zëvendësuese për pamjen" @@ -10406,7 +10386,7 @@ msgid "Database:" msgstr "Databaza:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "Të dhëna:" @@ -10508,7 +10488,7 @@ msgid "Data creation options" msgstr "Opsionet e krijimit të të dhënave" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "Cungo tabelën para futjes" @@ -10591,8 +10571,8 @@ msgstr "Duket se databaza juaj përdor procedurat;" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" "eksporti i pseudonimit nuk mund të punojnë në mënyrë të besueshme në të " @@ -10602,81 +10582,81 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "Duket se databaza juaj përdor funksionet;" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 msgid "Metadata" msgstr "Metadata" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "Metadata për %s" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Krijimi:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Aktualizimi i fundit:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Kontrolli i fundit:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "në përdorim" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "Duket se databaza juaj përdor pamjet;" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Detyrimet për tabelat e hedhura" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Detyrimet për tabelën" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "Indekset për tabelat e hedhura" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "Indekset për tabelë" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT për tabelat e hedhura" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT për tabelë" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "TIPET MIME PËR TABELËN" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "RELACIONET PËR TABELËN" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "Duket se tabela juaj përdor shkrehës;" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "Struktura për pamjen %s eksportuar si një tabelë" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "Gabim në leximin e të dhënave:" @@ -10919,9 +10899,9 @@ msgstr "Skema relacionale" msgid "Table of contents" msgstr "Tabela e përmajtjes" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Ekstra" @@ -11156,47 +11136,47 @@ msgstr "Formaton tekstin si JSON me sintaksë të theksuar." msgid "Formats text as XML with syntax highlighting." msgstr "Formaton tekstin si XML me sintaksë të theksuar." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Gabim: relacioni ekziston ndërkohë." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "Relacioni FOREIGN KEY (çelës i huaj) është shtuar." -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Gabim: Relacioni i ÇELËSIT TË HUAJ nuk mund të shtohet!" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "Gabim: Mungon indeksi në kolonë(a)." -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "Gabim: Tiparet relacionale janë pasivizuar!" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "Relacioni i brendshëm u shtua." -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 msgid "Error: Internal relation could not be added!" msgstr "Gabim: Relacioni i brendshëm nuk mund të shtohet!" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 msgid "FOREIGN KEY relation has been removed." msgstr "Relacioni ÇELËSI I HUAJ është larguar." -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Gabim: Relacioni i ÇELËSIT TË HUAJ nuk mund të hiqet!" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 msgid "Error: Internal relation could not be removed!" msgstr "Gabim: Relacioni i brendshëm nuk mund të hiqet!" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "Relacionet e brendshme janë hequr." @@ -11243,68 +11223,68 @@ msgstr "" "Ju lutem, shiko dokumentacionin mbi mënyrën se si aktualizohet tabela juaj " "column_info. " -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Pyetsor SQL i faqeruajtur" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL historia" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "Tabelat e përdorura së fundi të vazhdueshme" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 msgid "Persistent favorite tables" msgstr "Tabelat e preferuara të përhershme" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "Preferencat UI të tabelave të vazhdueshme" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "Preferencat e përdoruesit" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "Menytë e konfigurueshme" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "Fshih/shfaq njësitë e menysë" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "Ruan kërkimet Pyetsor-sipas-Shembullit" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "Menaxhimi i listës qendrore të kolonave" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "Kujton rregullimet e dizajnerit" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 msgid "Saving export templates" msgstr "Shabllonet e eksportit të ruajtjes" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "Hapat e shpejtë për të rregulluar tiparet e avancuara:" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "Krijo tabelat e nevojshme me %screate_tables.sql." -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "Krijo një përdorues pma dhe jepi hyrje këtyre tabelave." -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -11312,16 +11292,16 @@ msgstr "" "Aftëso tiparet e avancuara në filin e konfigurimit (config.inc.php), për shembull duke filluar nga config.sample.inc.php." -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Ri-hyj në phpMyAdmin, për të ngarkuar filin e aktualizuar të konfigurimit." -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "nuk ka përshkrim" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11331,7 +11311,7 @@ msgstr "" "'phpmyadmin'. Ju mund të shkoni në tabelorin 'Veprimet' të çdo databaze, " "për të rregulluar ruajtjen e konfigurimit phpMyAdmin atje." -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11340,13 +11320,13 @@ msgstr "" "%sKrijo%s një databazë me emrin 'phpmyadmin' dhe rregullo ruajtjen e " "konfigurimit të phpMyAdmin atje." -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "%sKrijo%s ruajtjen e konfigurimit phpMyAdmin në databazën aktuale." -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "%sKrijo%s mungon në tabelat e ruajtjes së konfigurimit phpMyAdmin." @@ -11536,8 +11516,8 @@ msgstr "Emri i përdoruesit:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Emri i përdoruesit" @@ -11545,7 +11525,7 @@ msgstr "Emri i përdoruesit" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Fjalëkalimi" @@ -12174,7 +12154,7 @@ msgstr[1] "%1$d databazat janë fshirë me sukses." msgid "Plugin" msgstr "Shtojcë (plugin)" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Versioni" @@ -12182,100 +12162,96 @@ msgstr "Versioni" msgid "Author" msgstr "Autori" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "Liçensa" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "pasivizuar" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Nuk ka privilegje." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Përfshij të gjitha privilegjet, përveç GRANT." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Lejon leximin e të dhënave." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Lejon futjen dhe zëvendësimin e të dhënave." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Lejon ndryshimin e të dhënave." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Lejon fshirjen e të dhënave." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Lejon krijimin e databazave dhe tabelave të reja." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Lejon fshirjen e databazave dhe tabelave." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Lejon ringarkimin e rregullimeve të serverit dhe rifreskon cachen e serverit." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Lejon fikjen e serverit." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "Lejon shfaqjen e proçeseve për të gjithë përdoruesit." #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" "Lejon importimin e të dhënave nga filet dhe eksportimin e të dhënave në file." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "Nuk ka efekt në këtë version MySQL." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Lejon krijimin dhe fshirjen e treguesve (indekseve)." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Lejon ndryshimin e strukturës së tabelave ekzistuese." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Jep hyrje tek lista e plotë e databazës." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12286,65 +12262,65 @@ msgstr "" "variablave globale, apo fshirjen e rrjedhave të përdoruesve të tjerë." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Lejon krijimin e tabelave të përkohëshme." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Lejon kyçjen e tabelave për rrjedhën aktuale." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Kërkohet për skllavët e replikimit." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "Lejon përdoruesin të pyesë se ku janë skllevërit / masterat." #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Lejon krijimin e pamjeve të reja." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "Lejon për të ngritur ngjarjet për planifikimin e ngjarjeve." #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "Lejo krijimin dhe fshirjen e shkrehësve." #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Lejon kryerjen e pyetsorëve SHOW CREATE VIEW." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Lejon krijimin e rutinave të ruajtura." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Lejon ndryshimin dhe fshirjen e rutinave të ruajtura." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "Lejon krijimin, fshirjen dhe riemërimin e llogarive të përdoruesit." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Lejon ekzekutimin e rutinave të ruajtura." @@ -12356,8 +12332,8 @@ msgstr "Asnjë" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Grup përdoruesi" @@ -12400,13 +12376,13 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Shënim: Vendosja e këtyre opsioneve në 0 (zero) largon kufizimin." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Kufizon numrin e pyetsorëve, që përdoruesi mund të dërgojë në server për orë." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12415,19 +12391,19 @@ msgstr "" "përdoruesi mund të ekzekutojë për orë." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "Kufizon numrin e lidhjeve të reja, që përdoruesi mund të hapë për orë." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "Kufizon numrin e lidhjeve të njëkohëshme, që përdoruesi mund të ketë." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12435,7 +12411,7 @@ msgid "Routine" msgstr "Rutinat" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12456,14 +12432,14 @@ msgstr "Lejon ekzekutimin e rutinave të ruajtura." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Privilegjet specifike të tabelës" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Shënim: emrat e privilegjeve të MySQL janë shprehur në Anglisht." @@ -12473,7 +12449,7 @@ msgid "Administration" msgstr "Administrimi" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Privilegje globale" @@ -12482,15 +12458,15 @@ msgid "Global" msgstr "Globale" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Privilegjet specifike të databazës" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Lejon krijimin e tabelave të reja." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Lejon fshirjen e tabelave." @@ -12513,7 +12489,7 @@ msgid "Native MySQL Authentication" msgstr "Autentifikimi i gatimeve" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Informacioni i hyrjes" @@ -12538,8 +12514,8 @@ msgstr "Emri i pritësit:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 msgid "Host name" msgstr "Emri i pritësit" @@ -12557,207 +12533,207 @@ msgstr "Shtojca e autentifikimit" msgid "Password Hashing Method" msgstr "Ngatërrimi i fjalëkalimit:" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "Fjalëkalimi për %s u ndryshua me sukses." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Keni anuluar privilegjet për %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 msgid "Add user account" msgstr "Shto llogari përdoruesi" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 msgid "Database for user account" msgstr "Databaza për llogarinë e përdoruesit" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "Krijo databazën me të njëjtin emër dhe dhuro të gjitha privilegjet." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Dhuro të gjitha privilegjet në emrin me karaktere të veçanta (wildcard) " "(username\\_%)." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Dhuro të gjithë privilegjet në databazën \"%s\"." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Përdoruesit që kanë hyrje tek \"%s\"" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "Përdoruesi është shtuar." -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Dhuro" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "Nuk ka privilegje të mjaftueshme për të shfaqur përdoruesit." -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "Nuk gjendet asnjë përdorues." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Kushdo" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "globale" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "databazë-specifike" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "wildcard (shenja të veçanta)" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "Privilegjet specifike të tabelës" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 msgid "Edit privileges" msgstr "Korrigjo privilegjet" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Tërhiq" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "Korrigjo grupin e përdoruesit" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… mbaj të vjetrin." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… fshij të vjetrin nga tabelat e përdoruesve." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… të shfuqizojë të gjitha privilegjet aktive që nga i vjetri, e pastaj t'i " "fshijë." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… fshij të vjetrin nga tabela e përdoruesve dhe pastaj ringarko privilegjet." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "Ndrysho informacionin e hyrjes / Kopjo llogarinë e përdoruesit" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "Krijo një llogari të re përdoruesi me të njëjtat privilegje dhe …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Privilegjet specifike të kolonës" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 msgid "Remove selected user accounts" msgstr "Largo llogaritë e zgjedhura të përdoruesve" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Tërhiqi të gjitha privilegjet aktive nga përdoruesit dhe fshij ato më pas." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "Fshij databazat që kanë emra të njëjtë si përdoruesit." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "Nuk janë zgjedhur përdorues për fshirje!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Ringarkon privilegjet" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Përdoruesit e zgjedhur u fshinë me sukses." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Keni aktualizuar privilegjet për %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "Fshin %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Privilegjet u ri-ngarkuan me sukses." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "Përdoruesi %s ekziston ndërkohë!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "Privilegjet për %s" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Përdoruesi" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "I ri" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 msgid "Edit privileges:" msgstr "Korrigjo privilegjet:" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "Llogaria e përdoruesit" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12765,11 +12741,11 @@ msgstr "" "Shënim: Jeni përpjekur për të korrigjuar privilegjet e përdoruesit, me të " "cilën keni hyrë aktualisht." -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "Pamja e përgjithshme e llogarive të përdoruesve" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " @@ -12780,7 +12756,7 @@ msgstr "" "ndërlidhen nëse pjesa e pritësit (host) të llogarisë së tyre lejon një " "lidhje nga çdo pritës (%)." -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12793,7 +12769,7 @@ msgstr "" "privilegjet që përdor serveri, nëse ato janë ndryshuar manualisht. Në këtë " "rast, ju duhet të %sngarkoni privilegjet%s para se të vazhdoni." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12807,11 +12783,11 @@ msgstr "" "rast, privilegjet duhet të ringarkohen, por aktualisht ju nuk duhet të " "RINGARKONI privilegjet." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "Përdoruesi i zgjedhur nuk gjendet në tabelën e të drejtave." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Keni shtuar një përdorues të ri." @@ -13070,24 +13046,24 @@ msgstr "Udhëzimet/Instalimi" msgid "Done dragging (rearranging) charts" msgstr "U krye tërheqja (ri-rregullimi) e grafikëve" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "Aftëso tërheqjen e grafikëve" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "Rifresko normën" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "Kolona grafiku" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "Rregullim grafiku" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -13095,7 +13071,7 @@ msgstr "" "Marrëveshja e grafikëve është ruajtur në ruajtjen e shfletuesve lokalë. Mund " "të doni ta eksportoni atë, nëse keni një rregullim të komplikuar." -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "Rivendos standardin" @@ -13151,7 +13127,7 @@ msgid "Statements" msgstr "Deklaratat" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "#" @@ -13176,7 +13152,7 @@ msgstr "Shfaq vlerat e paformatuara" msgid "Related links:" msgstr "Lidhjet relevante:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -13184,11 +13160,11 @@ msgstr "" "Numri i lidhjeve që u abortuan për shkak se klienti vdiq, pa mbyllur lidhjen " "si duhet." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Numri i përpjekjeve që dështuan në lidhjen me MySQL server." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13198,18 +13174,18 @@ msgstr "" "(log), që tejkalon vlerën e binlog_cache_size dhe përdor një fil të " "përkohshëm, për të ruajtur deklaratat nga transaksioni." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Numri i transaksioneve që përdorën cache binare të përkohshëm të regjistrit " "(log)." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Numri i përpjekjeve të lidhjeve (të sukseshme ose jo) në MySQL server." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13222,11 +13198,11 @@ msgstr "" "e përkohëshme që të jenë të bazuara në kujtesë, në vend se të bazuara në " "disk." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "Sa file të përkohëshme ka krijuar mysqld." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13234,7 +13210,7 @@ msgstr "" "Numri i tabelave të përkohshme në-kujtesë, të krijuara automatikisht nga " "serveri, ndërsa deklaratat ekzekutoheshin." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13242,7 +13218,7 @@ msgstr "" "Numri i radhëve të shkruara me INSERT DELAYED (fut të vonuarat), për të " "cilat disa gabime shfaqen (ka mundësi çelës i dyfishtë)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13250,23 +13226,23 @@ msgstr "" "Numri i rrjedhave të trajtuesit INSERT DELAYED në përdorim. Çdo tabelë e " "ndryshme në të cilën dikush përdor INSERT DELAYED merr rrjedhën e vet." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "Numri i radhëve INSERT DELAYED të shkruara." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "Numri i deklaratave FLUSH që janë ekzekutuar." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "Numri i deklaratave të brendshme COMMIT." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "Numri i herëve, që një radhë është fshirë nga një tabelë." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13276,7 +13252,7 @@ msgstr "" "njohuri rreth një tabele me emrin e dhënë. Kjo quhet zbulim. " "Handler_discover indikon numrin e tabelave të kohës që janë zbuluar." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13287,7 +13263,7 @@ msgstr "" "indeksit; për shembull, SELECT col1 FROM foo, duke nënkuptuar se col1 është " "indeksuar." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -13296,7 +13272,7 @@ msgstr "" "është e lartë, është një tregues i mirë që pyetjet tuaja dhe tabelat janë " "indeksuar si duhet." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13306,7 +13282,7 @@ msgstr "" "është rritur, nëse jeni duke pyetur në një kolonë indeksi, me një pengesë " "serie, ose nëse jeni duke bërë një skanim indeksi." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13315,7 +13291,7 @@ msgstr "" "çelësit. Kjo metodë leximi është përdorur kryesisht për të optimizuar ORDER " "BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13327,7 +13303,7 @@ msgstr "" "klasifikim të rezultatit. Ndoshta keni shumë pyetje që kërkojnë MySQL të " "skanojë tabela të tëra ose keni bashkime që nuk i përdorin çelësat si duhet." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13339,35 +13315,35 @@ msgstr "" "përgjithësi, kjo sugjeron që tabelat tuaja të mos jenë indeksuar si duhet, " "ose pyetsorët tuaj nuk janë shkruar për të përfituar nga indekset që keni." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "Numri i deklaratave të brendshme ROLLBACK." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "Numri i kërkesave për të aktualizuar një radhë në një tabelë." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "Numri i kërkesave për të futur një radhë në një tabelë." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "Numri i faqeve që përmbajnë të dhëna (të pista ose të pastra)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "Numri i faqeve aktualisht pista." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Numri i faqeve të pellgut zbutës, që janë kërkuar të zbrazen." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "Numri i faqeve të lira." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13377,7 +13353,7 @@ msgstr "" "aktualisht lexohen ose shkruhen ose që nuk mund të zbrazen apo të hiqen për " "disa arsye të tjera." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13389,11 +13365,11 @@ msgstr "" "vlerë mund të llogaritet gjithashtu si Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "Madhësia e përgjithshme e pellgut zbutës, në faqet." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13402,7 +13378,7 @@ msgstr "" "një pyetsor është për të skanuar një porcion të madh të një tabele, por në " "renditje të rastësishme." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13410,11 +13386,11 @@ msgstr "" "Numri i leximeve-përpara të vazhdueshme InnoDB të iniciuara. Kjo ndodh kur " "InnoDB bën një skanim të plotë tabele të vazhdueshëm." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "Numri i kërkesave të leximit logjik, që InnoDB ka bërë." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13422,7 +13398,7 @@ msgstr "" "Numri i leximeve logjike që InnoDB nuk mund të kënaqë nga pellgu zbutës dhe " "kishte për të bërë një lexim faqe-të-vetme." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13437,52 +13413,52 @@ msgstr "" "madhësia e pellgut zbutës është vendosur si duhet, kjo vlerë duhet të jetë e " "vogël." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "Numri i shkrimeve të bëra në pellgun e zbutësit InnoDB." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "Numri i veprimeve fsync() deri tani." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "Numri aktual i veprimeve pezull fsync()." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "Numri aktual i leximeve pezull." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "Numri aktual i shkrimeve pezull." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "Sasia e të dhënave të lexuara deri tani, në bajt." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "Numri total i të dhënave të lexuara." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "Numri total i të dhënave të shkruara." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "Sasia e të dhënave të shkruara deri tani, në bajt." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Numri i faqeve që janë shkruar për veprimet doublewrite (shkrim i dyfishtë)." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "Numri i veprimeve të shkruara dyfish që janë kryer." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13490,35 +13466,35 @@ msgstr "" "Numri i pritjeve që kishim, sepse zbutësi i regjistrit (log) ishte shumë i " "vogël dhe na u desh të presim, që ajo të jetë zbrazur, para se të vazhdonim." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "Numri i kërkesave të regjistrit (log) të shkrimit." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "Numri i shkrimeve fizike në filin e regjistrit (log)." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "Numri i shkrimeve fsync() të bëra në filin e regjistrit (log)." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "Numri i filit të regjistrit (log) në pritje fsyncs." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "Fili pezull i regjistrit (log) shkruan." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "Numri i bajtëve të shkruara në një fil regjistri (log)." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "Numri i faqeve të krijuara." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -13527,51 +13503,51 @@ msgstr "" "numëruar në faqe; madhësia e faqes i lejon ato të konvertohen me lehtësi në " "bajt." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "Numri i faqeve të lexuara." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "Numri i faqeve të shkruara." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "Numri i kyçeve të radhës, që presin aktualisht." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Koha mesatare për të marrë një kyçje rreshti, në milisekonda." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Koha totale e shpenzuar në marrjen e kçeve të radhës, në milisekonda." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Koha maksimale për të marrë një kyçje radhe, në milisekonda." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "Numri i herëve, që një kyç i radhës duhej të priste." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "Numri i radhëve që fshihen nga tabela InnoDB." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "Numri i radhëve që futen nga tabela InnoDB." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "Numri i radhëve që lexohen nga tabela InnoDB." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "Numri i radhëve që aktualizohen nga tabela InnoDB." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13579,7 +13555,7 @@ msgstr "" "Numri i blloqeve kryesore në cachen çelës, që kanë ndryshuar, por ende nuk " "janë zbrazur në disk. Ajo njihet si Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -13587,7 +13563,7 @@ msgstr "" "Numri i blloqeve të papërdorura në cache të çelësit. Mund ta përdorni këtë " "vlerë, për të përcaktuar se sa është në përdorim një cache e çelësit." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13597,15 +13573,15 @@ msgstr "" "shenjë e lartë uji, që tregon numrin maksimal të blloqeve, që kanë qenë " "ndonjëherë në përdorim në të njëjtën kohë." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "Përqindja e cache të çelësit të përdorur (vlera e llogaritur)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "Numri i kërkesave për të lexuar një bllok çelësazh nga cache." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13616,7 +13592,7 @@ msgstr "" "vogël. Norma e mungesës cache mund të llogaritet si Key_reads/" "Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13624,22 +13600,22 @@ msgstr "" "Cache e çelësit e llogaritur keq si vlerë e leximeve fizike, krahasuar me " "kërkesat e leximit (vlera e llogaritur)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "Numri i kërkesave për të shkruar një bllok çelësash në cache." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "Numri i shkrimeve fizike të një blloku çelësash në disk." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Përqindja e shkrimeve fizike të krahasuara me kërkesat e shkrimit (vlera e " "llogaritur)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13650,7 +13626,7 @@ msgstr "" "pyetsorit për të njëjtin pyetsor. Vlera e paracaktuar 0, do të thotë se nuk " "ka pyetsor të kompiluar ende." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13658,13 +13634,13 @@ msgstr "" "Numri maksimal i lidhjeve që kanë qenë në përdorim në të njëjtën kohë, që " "nga fillimi i serverit." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Numri i radhëve që presin të shkruhen në pyetsorët INSERT DELAYED (fut të " "vonuarat)." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13672,19 +13648,19 @@ msgstr "" "Numri i tabelave që janë hapur. Nëse tabelat e hapura janë të mëdha, vlera " "cache e tabelës suaj është ndoshta shumë e vogël." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "Numri i fileve që janë hapur." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "Numri i rrjedhave që janë hapur (përdorur kryesisht për prerjet)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "Numri i tabelave që janë hapur." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13694,19 +13670,19 @@ msgstr "" "mund të tregojnë probleme të fragmentimit, të cilat mund të zgjidhen duke " "nxjerrë një derklaratë FLUSH QUERY CACHE (cache e zbrazjes së pyetsorit)." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "Sasia e kujtesës së lirë për cache të pyetsorit." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "Numri i goditjeve cache." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "Numri i pyetsorëve të shtuar në cache." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13719,7 +13695,7 @@ msgstr "" "strategji (LRU) të përdorur së paku kohët e fundit, për të vendosur se cili " "pyetsor duhet hequr nga cache." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13727,20 +13703,20 @@ msgstr "" "Numri i pyetsorëve jo-cache (jo cachable, apo jo cached për shkak të " "rregullimit query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "Numri i pyetsorëve të regjistruar në cache." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "Numri i përgjithshëm i blloqeve në cache të pyetsorit." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" "Statusi i replikimit të sigurisë së dështimit (nuk është implementuar akoma)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -13748,12 +13724,12 @@ msgstr "" "Numri i bashkimeve, që nuk përdorin indekse. Nëse kjo vlerë nuk është 0, ju " "duhet të kontrolloni me kujdes treguesit e tabelave tuaja." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" "Numri i bashkimeve që përdor një kërkim serie, në një tabelë reference." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -13762,7 +13738,7 @@ msgstr "" "çdo radhe. (Nëse kjo nuk është 0, duhet të kontrolloni me kujdes treguesit e " "tabelave tuaja.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13770,16 +13746,16 @@ msgstr "" "Numri i bashkimeve që përdorin seritë në tabelën e parë. (Kjo normalisht nuk " "është kritike edhe nëse kjo është e madhe.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "Numri i bashkimeve, që bënë një skanim të plotë të tabelës së parë." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Numri i tabelave të përkohshme aktualisht të hapura nga rrjedha SQL skllave." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13787,13 +13763,13 @@ msgstr "" "Numri i përgjithshëm (që nga fillimi) i herëve që replikimi skllav rrjedhë " "SQL, ka riprovuar transaksionet." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Kjo është ON (po), nëse ky server është një skllav (slave), që është lidhur " "me një master." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -13801,12 +13777,12 @@ msgstr "" "Numri i rrjedhave që kanë marrë më shumë se slow_launch_time sekonda për të " "krijuar." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Numri i pyetsorëve që kanë marrë më shumë se long_query_time sekonda." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13816,23 +13792,23 @@ msgstr "" "kjo vlerë është e madhe, duhet të konsideroni rritjen e vlerës së variablit " "të sistemit sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "Numri i klasifikimeve, që janë bërë me normat." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "Numri i radhëve të klasifikuara." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "Numri i klasifikimeve, që janë bërë nga skanimi tabelës." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "Numri i herëve, që një kyç tabele është siguruar menjëherë." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13844,7 +13820,7 @@ msgstr "" "performancën, duhet së pari të optimizoni pyetsorët tuaj dhe pastaj të ndani " "tabelën ose tabelat, ose të përdorni replikim (përsëritje)." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13854,11 +13830,11 @@ msgstr "" "llogaritet si Threads_created/Lidhjet. Nëse kjo vlerë është e kuqe, duhet të " "ngrini thread_cache_size tuaj." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "Numri i lidhjeve të hapura aktualisht." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13870,11 +13846,11 @@ msgstr "" "kjo nuk do të japë një përmirësim të dukshëm të performancës, nëse keni " "zbatim të mirë të rrjedhave.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "Shkalla e goditjes së cache të rrjedhës (vlera e llogaritur)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "Numri i rrjedhave, që nuk janë duke fjetur." @@ -13883,57 +13859,57 @@ msgstr "Numri i rrjedhave, që nuk janë duke fjetur." msgid "Users of '%s' user group" msgstr "Përdorues të grupit '%s' të përdorimit" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "Nuk gjenden përdorues, që i përkasin këtij grupi të përdoruesve." -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "Grupet e përdoruesve" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "Tabelat e nivelit të serverit" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "Tabelorët e nivelit të databazës" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "Tabelori i nivelit të tabelës" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "Shfaq përdoruesit" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "Shto grup përdoruesish" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "Korrigjo grupin e përdoruesit: '%s'" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "Meny e detyrave të grupi të përdoruesit" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "Emri i grupit:" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "Tabelat e nivelit të serverit" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "Tabelorët e nivelit të databazës" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "Tabelori i nivelit të tabelës" @@ -13993,21 +13969,17 @@ msgstr "Pritet një kllapë e mbylljes." msgid "Unrecognized data type." msgstr "Tip të dhënash i panjohur." -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "Kllapë e mbylljes e papritur." - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "Një pseudonim është gjetur më përpara." -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "Pikë (dot) e papritur." -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 msgid "An alias was expected." msgstr "Pritet një alias (pseudonim)." @@ -14063,107 +14035,107 @@ msgstr "Pritet thonjëza e fundit %1$s." msgid "Variable name was expected." msgstr "Pritet emri i variablit." -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 msgid "Unexpected beginning of statement." msgstr "Fillim i papritur i deklaratës." -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "Tip deklarate i panjohur." -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "Nuk ka filluar ndonjë transaksion më parë." -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "Shenjë e papritur." -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "Ky tip i klauzolës është parsuar më parë." -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" "Një deklaratë e re është gjetur, por nuk ka delimiter ndërmjet asaj dhe " "tjetrës më përpara." -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "Fjalë kyçe e panjohur." -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "Pritet emri i entitetit." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 msgid "At least one column definition was expected." msgstr "Pritet së paku një përcaktim kolone." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "Pritet një fjalë kyçe \"RETURNS\"." -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "Profili i detajuar" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "Renditja" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "Gjendja" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "Përmbledhje sipas gjendjes" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "Koha gjithsejt" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "% Koha" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "Thirrje" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "ø Koha" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Faqeruaj këtë pyetsor SQL" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "Etiketa:" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Lejo çdo përdorues të hyjë në këtë faqeruajtës" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "Faqeruajtësi nuk është krijuar!" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Përdorimi i faqerojtësit \"%s\" si shfletues pyetsori standard." -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "Shfaqën si kod PHP" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " @@ -14172,7 +14144,7 @@ msgstr "" "Zgjedhja aktuale nuk përmban një kolonë unike. Tiparet korrigjo rrjetën, " "kuti kontrolli, Kopjo dhe Fshij nuk janë në vlefshme. %s" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " @@ -14181,7 +14153,7 @@ msgstr "" "Zgjedhja aktuale nuk përmban një kolonë unike. Tiparet korrigjo rrjetën, " "Korrigjo, Kopjo dhe Fshij mund të rezultojnë në sjellje të padëshiruar. %s" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemet me indekset e tabelës `%s`" @@ -14209,27 +14181,27 @@ msgstr "Merr pyetsorin e auto-ruajtur" msgid "Bind parameters" msgstr "Parametrat e lidhur" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "Faqeruaj këtë pyetsor SQL:" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Zëvendëso faqeruajtësin ekzistues me të njëjtin emër" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Delimitër" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Shfaq këtë pyetsor përsëri këtu" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "Rikthe kur të përfundosh" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Shfaq vetëm" @@ -14273,112 +14245,112 @@ msgstr "Pasivizo gjurmimin për %s" msgid "Deactivate now" msgstr "Pasivizo tani" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Krijuar" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Aktualizuar" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 msgid "Delete version" msgstr "Fshij versionin" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Raport gjurmimi" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Struktura foto e çastit" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "aktive" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "jo aktive" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "Deklaratë gjurmimi" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "Fshij gjurmimin e të dhënave për këtë raport" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "Nuk ka të dhëna" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Shfaq %1$s me datat nga %2$s në %3$s nga përdoruesi %4$s %5$s" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "SQL zbraz (shkarkim fili)" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "SQL zbraz" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "Ky opsion do të zëvendësojë tabelën tuaj dhe të dhënat që përmban." -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "SQL ekzekutim" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "Eksport si %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "Deklaratë e manipulimit të të dhënave" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "Deklaratë e përcaktimit të të dhënave" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Data" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Emri i përdoruesit" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Versioni %s snapshot (imazh ekrani) (kodi SQL)" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Asnjë" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "Gjurmimi i përcaktimit të të dhënave u fshi me sukses" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "Gjurmimi i manipulimit të të dhënave u fshi me sukses" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14386,62 +14358,62 @@ msgstr "" "Mund të ekzekutoni zbrazjen (dump), duke krijuar dhe përdorur një databazë " "të përkohshme. Ju lutem, sigurohuni që të keni privilegje për ta bërë këtë." -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "Komenti nga këto dy linja, nëse nuk keni nevojë për to." -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "SQL deklarata të eksportuara. Ju lutem, kopjo zbrazjen ose ekzekutoje atë." -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "Raporti i gjurmimit për tabelën `%s`" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Gjurmimi për %1$s u aktivizua në versionin %2$s." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Gjurmimi për %1$s u pasivizua në versionin %2$s." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Versioni %1$s nga %2$s u fshi." -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versioni %1$s u krijua, gjurmimi për %2$s është aktiv." -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Tabelat e pashkelura" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Gjurmo tabelën" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Tabelat e gjurmuara" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Versioni i fundit" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "Fshij gjurmimin" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Versionet" @@ -14449,11 +14421,11 @@ msgstr "Versionet" msgid "Manage your settings" msgstr "Menaxho rregullimet" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "Konfigurimi është ruajtur." -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14558,7 +14530,7 @@ msgstr "Nuk ka databaza" msgid "View dump (schema) of databases" msgstr "Shfaq zbrazjen (skema) e databazave" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14585,7 +14557,7 @@ msgstr "" "phpMyAdmin nuk ishte në gjendje ta vriste rrjedhën %s. Kjo ka mundësi tashmë " "të jetë mbyllur." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" "Nuk ka privilegje të mjaftueshme për të shfaqur statistikat e pyetsorit." @@ -15441,43 +15413,49 @@ msgstr "Shpërndaj" msgid "Stacked" msgstr "Grumbulluar" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "Titull grafiku" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "X-Aksi:" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "Seritë:" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "X-aksi etiketa:" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "X vlerat" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "Y-aksi etiketa:" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Y vlerat" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "Emrat e serive janë në një kolonë" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "Kolona e serive:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 msgid "Value Column:" msgstr "Vlera e kolonës:" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "Ruaj grafikun si imazh" @@ -15531,15 +15509,43 @@ msgstr "Komenti:" msgid "Drag to reorder" msgstr "Tërhiq për të ri-renditur" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +msgid "Foreign key constraints" +msgstr "Detyrimet e çelësit të huaj" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "Veprime" + +#: templates/table/relation/common_form.phtml:10 +msgid "Constraint properties" +msgstr "Vetitë e detyrimit" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" +"Vetëm kolonat me indeks do të shfaqet. Ju mund të përcaktoni një indeks më " +"poshtë." + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "Kufizo çelësin e huaj" + +#: templates/table/relation/common_form.phtml:60 +msgid "+ Add constraint" +msgstr "+ Shto detyrim" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "Relacion i brendshëm" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "Relacion i brendshëm" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15547,34 +15553,7 @@ msgstr "" "Një relacion i brendshëm nuk është i nevojshëm kur ekziston një relacion " "korrespondues FOREIGN KEY (çelës i huaj)." -#: templates/table/relation/common_form.phtml:37 -msgid "Foreign key constraints" -msgstr "Detyrimet e çelësit të huaj" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "Veprime" - -#: templates/table/relation/common_form.phtml:41 -msgid "Constraint properties" -msgstr "Vetitë e detyrimit" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" -"Vetëm kolonat me indeks do të shfaqet. Ju mund të përcaktoni një indeks më " -"poshtë." - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "Kufizo çelësin e huaj" - -#: templates/table/relation/common_form.phtml:83 -msgid "+ Add constraint" -msgstr "+ Shto detyrim" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "Zgjedh kolonën për të shfaqur:" @@ -15702,7 +15681,7 @@ msgid "at beginning of table" msgstr "në fillim të tabelës" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 msgid "Partitions" msgstr "Pjesët" @@ -15741,7 +15720,7 @@ msgstr "Ndarë nga:" msgid "Edit partitioning" msgstr "Largo particionimin" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "Korrigjo pamjen" @@ -17172,6 +17151,39 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert është vendosur në 0" +#~ msgid "To filter all databases on server, press Enter after a search term" +#~ msgstr "" +#~ "Për të filtruar të gjitha databazat në server, shtyp Enter pas një termi " +#~ "kërkimi" + +#~ msgid "To filter all %s in database, press Enter after a search term" +#~ msgstr "" +#~ "Për të filtruar të gjitha %s në databazë, shtyp Enter pas një temi kërkimi" + +#~ msgid "tables" +#~ msgstr "tabelat" + +#~ msgid "views" +#~ msgstr "pamje" + +#~ msgid "procedures" +#~ msgstr "proçedurat" + +#~ msgid "events" +#~ msgstr "ngjarjet" + +#~ msgid "functions" +#~ msgstr "funksionet" + +#~ msgid "Filter databases by name or regex" +#~ msgstr "Filtro databazat sipas emrit ose regex" + +#~ msgid "Filter by name or regex" +#~ msgstr "Filtro sipas emrit ose regex" + +#~ msgid "Unexpected closing bracket." +#~ msgstr "Kllapë e mbylljes e papritur." + #~ msgid "Username and hostname didn't change." #~ msgstr "Emri i përdoruesit dhe emri i pritësit (hostname) nuk ndryshuan." diff --git a/po/sr.po b/po/sr.po index 41e2159a8b..38ff0be7cb 100644 --- a/po/sr.po +++ b/po/sr.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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:25+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Serbian =20) ? 1 : 2;\n" "X-Generator: Weblate 2.5-dev\n" -#: changelog.php:37 license.php:30 +#: changelog.php:37 license.php:33 #, php-format msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " @@ -39,7 +39,7 @@ msgstr "Кликните да би сте сортирали." msgid "Showing rows %1$s - %2$s." msgstr "Приказ записа" -#: db_create.php:61 +#: db_create.php:62 #, php-format msgid "Database %1$s has been created." msgstr "База %1$s је креирана." @@ -48,13 +48,13 @@ msgstr "База %1$s је креирана." msgid "Database comment" msgstr "Коментар базе" -#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:601 +#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:599 #: templates/columns_definitions/column_definitions_form.phtml:84 msgid "Table comments:" msgstr "Коментари табеле:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1568 +#: libraries/insert_edit.lib.php:1575 #: libraries/navigation/nodes/NodeColumn.php:34 #: libraries/plugins/export/ExportHtmlword.php:288 #: libraries/plugins/export/ExportHtmlword.php:384 @@ -64,13 +64,14 @@ msgstr "Коментари табеле:" #: libraries/plugins/export/ExportTexytext.php:282 #: libraries/plugins/export/ExportTexytext.php:373 #: libraries/plugins/export/PMA_ExportPdf.php:472 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:882 libraries/tracking.lib.php:978 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 +#: libraries/tracking.lib.php:892 libraries/tracking.lib.php:990 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:10 -#: templates/table/relation/common_form.phtml:43 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:27 +#: templates/table/relation/common_form.phtml:79 #: templates/table/relation/foreign_key_row.phtml:176 #: templates/table/relation/foreign_key_row.phtml:188 #: templates/table/relation/internal_relational_row.phtml:73 @@ -90,14 +91,14 @@ msgstr "Колона" #: libraries/plugins/export/ExportTexytext.php:283 #: libraries/plugins/export/ExportTexytext.php:374 #: libraries/plugins/export/PMA_ExportPdf.php:474 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 #: libraries/rte/rte_list.lib.php:78 libraries/rte/rte_list.lib.php:106 #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2606 libraries/tracking.lib.php:883 -#: libraries/tracking.lib.php:975 +#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -107,7 +108,7 @@ msgstr "Тип" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:709 -#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1577 +#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1584 #: libraries/plugins/export/ExportHtmlword.php:294 #: libraries/plugins/export/ExportHtmlword.php:390 #: libraries/plugins/export/ExportLatex.php:517 @@ -116,9 +117,9 @@ msgstr "Тип" #: libraries/plugins/export/ExportTexytext.php:284 #: libraries/plugins/export/ExportTexytext.php:375 #: libraries/plugins/export/PMA_ExportPdf.php:476 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 -#: libraries/tracking.lib.php:885 libraries/tracking.lib.php:981 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/tracking.lib.php:895 libraries/tracking.lib.php:993 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 @@ -135,9 +136,9 @@ msgstr "Null" #: libraries/plugins/export/ExportTexytext.php:285 #: libraries/plugins/export/ExportTexytext.php:376 #: libraries/plugins/export/PMA_ExportPdf.php:478 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 -#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:886 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:896 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 @@ -149,8 +150,8 @@ msgstr "Подразумевано" #: libraries/plugins/export/ExportOdt.php:488 #: libraries/plugins/export/ExportTexytext.php:378 #: libraries/plugins/export/PMA_ExportPdf.php:487 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:640 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:663 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 msgid "Links to" msgstr "Везе ка" @@ -161,37 +162,38 @@ msgstr "Везе ка" #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:381 #: libraries/plugins/export/PMA_ExportPdf.php:494 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:651 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:664 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:649 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 #: templates/columns_definitions/table_fields_definitions.phtml:65 msgid "Comments" msgstr "Коментари" -#: db_datadict.php:155 libraries/controllers/TableStructureController.php:1189 -#: libraries/controllers/TableStructureController.php:1194 -#: libraries/tracking.lib.php:925 +#: db_datadict.php:155 +#: libraries/controllers/table/TableStructureController.php:1197 +#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:79 +#: templates/table/structure/display_structure.phtml:80 msgid "Primary" msgstr "Примарни" -#: db_datadict.php:165 js/messages.php:370 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:371 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 -#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:403 -#: libraries/mult_submits.lib.php:417 +#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:408 +#: libraries/mult_submits.lib.php:422 #: libraries/plugins/export/ExportHtmlword.php:654 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:710 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2971 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3620 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1013 libraries/tracking.lib.php:1018 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2973 +#: libraries/server_privileges.lib.php:2993 +#: libraries/server_privileges.lib.php:3631 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -200,32 +202,32 @@ msgstr "Примарни" msgid "No" msgstr "Не" -#: db_datadict.php:165 js/messages.php:515 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:516 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 #: libraries/config/FormDisplay.tpl.php:280 -#: libraries/controllers/TableStructureController.php:770 -#: libraries/controllers/TableStructureController.php:1440 -#: libraries/controllers/TableStructureController.php:1449 -#: libraries/controllers/TableStructureController.php:1454 -#: libraries/controllers/TableStructureController.php:1459 -#: libraries/controllers/TableStructureController.php:1464 -#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:199 -#: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 -#: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 +#: libraries/controllers/table/TableStructureController.php:771 +#: libraries/controllers/table/TableStructureController.php:1448 +#: libraries/controllers/table/TableStructureController.php:1457 +#: libraries/controllers/table/TableStructureController.php:1462 +#: libraries/controllers/table/TableStructureController.php:1467 +#: libraries/controllers/table/TableStructureController.php:1472 +#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:200 +#: libraries/mult_submits.lib.php:344 libraries/mult_submits.lib.php:377 +#: libraries/mult_submits.lib.php:406 libraries/mult_submits.lib.php:420 #: libraries/plugins/export/ExportHtmlword.php:655 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:788 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:711 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2968 -#: libraries/server_privileges.lib.php:2989 -#: libraries/server_privileges.lib.php:3617 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1011 libraries/tracking.lib.php:1016 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2970 +#: libraries/server_privileges.lib.php:2991 +#: libraries/server_privileges.lib.php:3628 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -238,8 +240,8 @@ msgstr "Да" msgid "View dump (schema) of database" msgstr "Прикажи садржај (схему) базе" -#: db_export.php:51 db_tracking.php:102 export.php:382 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:176 +#: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 +#: libraries/controllers/DatabaseStructureController.php:157 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "Табеле нису пронађене у бази." @@ -256,7 +258,7 @@ msgstr "Табеле" #: db_export.php:66 libraries/Menu.php:320 libraries/Menu.php:427 #: libraries/Util.php:3407 libraries/Util.php:3417 libraries/Util.php:3423 -#: libraries/Util.php:3702 libraries/Util.php:4339 libraries/Util.php:4356 +#: libraries/Util.php:3703 libraries/Util.php:4340 libraries/Util.php:4357 #: libraries/central_columns.lib.php:729 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:320 @@ -264,10 +266,10 @@ msgstr "Табеле" #: libraries/config/user_preferences.forms.php:218 #: libraries/config/user_preferences.forms.php:259 #: libraries/config/user_preferences.forms.php:285 -#: libraries/import.lib.php:1299 libraries/navigation/nodes/NodeColumn.php:44 +#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:44 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 -#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:877 +#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:887 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -319,13 +321,13 @@ msgstr "" "Додатне могућности за рад са повезаним табелама су искључене. Да бисте " "сазнали зашто, кликните %sовде%s." -#: db_qbe.php:135 +#: db_qbe.php:136 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to choose at least one column to display!" msgstr "Морате изабрати бар једну колону за приказ" -#: db_qbe.php:152 +#: db_qbe.php:154 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" @@ -355,7 +357,7 @@ msgstr "" msgid "No tables selected." msgstr "Није изабрана ни једна база." -#: db_tracking.php:146 +#: db_tracking.php:149 #, fuzzy msgid "Database Log" msgstr "База података" @@ -388,7 +390,7 @@ msgstr "" msgid "Bad type!" msgstr "Погрешан тип!" -#: export.php:276 +#: export.php:278 msgid "Bad parameters!" msgstr "Погрешни параметри!" @@ -396,108 +398,108 @@ msgstr "Погрешни параметри!" msgid "Invalid export type" msgstr "Погрешан тип извоза" -#: gis_data_editor.php:119 +#: gis_data_editor.php:117 #, php-format msgid "Value for the column \"%s\"" msgstr "Вредност за колону %s" -#: gis_data_editor.php:147 +#: gis_data_editor.php:145 #: templates/table/gis_visualization/gis_visualization.phtml:37 msgid "Use OpenStreetMaps as Base Layer" msgstr "Искористи OpenStreetMaps као основни слој" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:169 +#: gis_data_editor.php:167 msgid "SRID:" msgstr "" -#: gis_data_editor.php:192 +#: gis_data_editor.php:190 #, php-format msgid "Geometry %d:" msgstr "" -#: gis_data_editor.php:214 +#: gis_data_editor.php:212 msgid "Point:" msgstr "" -#: gis_data_editor.php:215 gis_data_editor.php:242 gis_data_editor.php:298 -#: gis_data_editor.php:371 js/messages.php:504 +#: gis_data_editor.php:213 gis_data_editor.php:240 gis_data_editor.php:296 +#: gis_data_editor.php:369 js/messages.php:505 msgid "X" msgstr "" -#: gis_data_editor.php:218 gis_data_editor.php:246 gis_data_editor.php:302 -#: gis_data_editor.php:377 js/messages.php:505 +#: gis_data_editor.php:216 gis_data_editor.php:244 gis_data_editor.php:300 +#: gis_data_editor.php:375 js/messages.php:506 msgid "Y" msgstr "" -#: gis_data_editor.php:240 gis_data_editor.php:296 gis_data_editor.php:369 -#: js/messages.php:507 +#: gis_data_editor.php:238 gis_data_editor.php:294 gis_data_editor.php:367 +#: js/messages.php:508 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:253 gis_data_editor.php:309 gis_data_editor.php:387 -#: js/messages.php:513 +#: gis_data_editor.php:251 gis_data_editor.php:307 gis_data_editor.php:385 +#: js/messages.php:514 #, fuzzy #| msgid "Add new field" msgid "Add a point" msgstr "Додај ново поље" -#: gis_data_editor.php:270 +#: gis_data_editor.php:268 #, fuzzy, php-format #| msgid "Lines terminated by" msgid "Linestring %d:" msgstr "Линије се завршавају са" -#: gis_data_editor.php:273 gis_data_editor.php:350 +#: gis_data_editor.php:271 gis_data_editor.php:348 msgid "Outer ring:" msgstr "" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:273 gis_data_editor.php:350 #, php-format msgid "Inner ring %d:" msgstr "" -#: gis_data_editor.php:312 +#: gis_data_editor.php:310 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Додај новог корисника" -#: gis_data_editor.php:313 gis_data_editor.php:392 js/messages.php:514 +#: gis_data_editor.php:311 gis_data_editor.php:390 js/messages.php:515 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Додај новог корисника" -#: gis_data_editor.php:334 +#: gis_data_editor.php:332 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Polygon %d:" msgstr "Додај %s поља" -#: gis_data_editor.php:398 +#: gis_data_editor.php:396 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" msgstr "Додај %s поља" -#: gis_data_editor.php:404 +#: gis_data_editor.php:402 msgid "Add geometry" msgstr "Додај геометрију" -#: gis_data_editor.php:410 js/messages.php:345 libraries/DbSearch.php:462 -#: libraries/DisplayResults.php:1783 libraries/browse_foreigners.lib.php:142 +#: gis_data_editor.php:408 js/messages.php:346 libraries/DbSearch.php:462 +#: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:151 #: libraries/display_export.lib.php:404 libraries/display_export.lib.php:410 -#: libraries/display_import.lib.php:403 libraries/index.lib.php:42 -#: libraries/insert_edit.lib.php:1547 libraries/insert_edit.lib.php:1584 +#: libraries/display_import.lib.php:403 libraries/index.lib.php:45 +#: libraries/insert_edit.lib.php:1554 libraries/insert_edit.lib.php:1591 #: libraries/normalization.lib.php:168 libraries/normalization.lib.php:825 #: libraries/operations.lib.php:47 libraries/operations.lib.php:114 #: libraries/operations.lib.php:266 libraries/operations.lib.php:309 #: libraries/operations.lib.php:806 libraries/operations.lib.php:877 -#: libraries/operations.lib.php:926 libraries/operations.lib.php:1336 -#: libraries/operations.lib.php:1653 +#: libraries/operations.lib.php:926 libraries/operations.lib.php:1339 +#: libraries/operations.lib.php:1656 #: libraries/plugins/auth/AuthenticationCookie.php:239 #: libraries/replication_gui.lib.php:124 libraries/replication_gui.lib.php:163 #: libraries/replication_gui.lib.php:328 libraries/replication_gui.lib.php:465 @@ -506,12 +508,12 @@ msgstr "Додај геометрију" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2343 -#: libraries/server_privileges.lib.php:3114 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_user_groups.lib.php:285 -#: libraries/sql_query_form.lib.php:369 libraries/sql_query_form.lib.php:429 -#: libraries/tracking.lib.php:536 libraries/tracking.lib.php:656 +#: libraries/server_privileges.lib.php:2345 +#: libraries/server_privileges.lib.php:3116 +#: libraries/server_privileges.lib.php:3735 +#: libraries/server_user_groups.lib.php:290 +#: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 +#: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 #: prefs_manage.php:280 prefs_manage.php:358 #: templates/columns_definitions/column_definitions_form.phtml:64 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 @@ -524,11 +526,11 @@ msgstr "Додај геометрију" msgid "Go" msgstr "Крени" -#: gis_data_editor.php:413 +#: gis_data_editor.php:411 msgid "Output" msgstr "" -#: gis_data_editor.php:416 +#: gis_data_editor.php:414 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -540,7 +542,7 @@ msgstr "" msgid "Succeeded" msgstr "Приступ одбијен!" -#: import.php:59 js/messages.php:588 +#: import.php:59 js/messages.php:589 msgid "Failed" msgstr "" @@ -607,7 +609,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "Не могу да учитам додатке за увоз, молим проверите своју инсталацију!" -#: import.php:669 libraries/sql.lib.php:744 libraries/sql.lib.php:1468 +#: import.php:669 libraries/sql.lib.php:754 libraries/sql.lib.php:1485 #, fuzzy, php-format #| msgid "Bookmark %s created" msgid "Bookmark %s has been created." @@ -643,7 +645,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "" -#: import_status.php:111 js/messages.php:444 libraries/Util.php:797 +#: import_status.php:111 js/messages.php:445 libraries/Util.php:797 #: libraries/export.lib.php:523 #: libraries/plugins/schema/ExportRelationSchema.php:301 user_password.php:268 msgid "Back" @@ -668,7 +670,7 @@ msgstr "" msgid "General settings" msgstr "Опште особине релација" -#: index.php:191 js/messages.php:617 +#: index.php:191 js/messages.php:618 #: libraries/display_change_password.lib.php:54 #: libraries/display_change_password.lib.php:57 user_password.php:262 msgid "Change password" @@ -794,7 +796,11 @@ msgstr "" msgid "List of changes" msgstr "Нема измена" -#: index.php:453 +#: index.php:438 libraries/server_plugins.lib.php:83 +msgid "License" +msgstr "" + +#: index.php:460 #, fuzzy #| msgid "" #| "Your configuration file contains settings (root with no password) that " @@ -812,7 +818,7 @@ msgstr "" "овим подешавањима, отворен је за упаде, и заиста треба да исправите овај " "сигурносни ризик." -#: index.php:470 +#: index.php:477 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -821,7 +827,7 @@ msgstr "" "У PHP подешавањима Вам је укључена mbstring.func_overload опција. Ова опција " "је некомпатибилна са phpMyAdmin и може довести до грешака у неким подацима!" -#: index.php:485 +#: index.php:492 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -831,7 +837,7 @@ msgstr "" "скуп знакова. Без екстензије mbstring phpMyAdmin не може исправно да " "раздваја стрингове и то може довести до неочекиваних резултата." -#: index.php:502 +#: index.php:509 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than " @@ -839,17 +845,17 @@ msgid "" "expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:521 +#: index.php:528 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:537 +#: index.php:544 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Конфигурациона датотека захтева тајну лозинку (blowfish_secret)." -#: index.php:550 +#: index.php:557 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. It is strongly recommended to remove it " @@ -857,7 +863,7 @@ msgid "" "may be compromised by unauthorized people downloading your configuration." msgstr "" -#: index.php:566 +#: index.php:573 #, fuzzy, php-format #| msgid "" #| "ditional features for working with linked tables have been ctivated. To d " @@ -869,12 +875,12 @@ msgstr "" "Додатне могућности за рад са повезаним табелама су искључене. Да бисте " "сазнали зашто, кликните %sовде%s." -#: index.php:573 +#: index.php:580 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" -#: index.php:619 +#: index.php:626 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -883,7 +889,7 @@ msgstr "" "Верзија ваше PHP MySQL библиотеке %s се разликује од верзије вашег MySQL " "сервера %s. Ово може довести до непредвидљивог понашања." -#: index.php:647 +#: index.php:654 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -904,7 +910,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "Да ли стварно хоћете да " -#: js/messages.php:45 libraries/mult_submits.lib.php:397 +#: js/messages.php:45 libraries/mult_submits.lib.php:402 msgid "You are about to DESTROY a complete database!" msgstr "Овим ћете УНИШТИТИ комплетну базу података!" @@ -1068,7 +1074,7 @@ msgid "Save & close" msgstr "Сачувај као датотеку" #: js/messages.php:109 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1551 prefs_manage.php:364 +#: libraries/insert_edit.lib.php:1558 prefs_manage.php:364 #: prefs_manage.php:375 msgid "Reset" msgstr "Поништи" @@ -1149,10 +1155,10 @@ msgstr "Додај %s поља" msgid "You have to add at least one column." msgstr "Морате додати барем једно поље." -#: js/messages.php:129 libraries/insert_edit.lib.php:1549 +#: js/messages.php:129 libraries/insert_edit.lib.php:1556 #: templates/columns_definitions/column_definitions_form.phtml:159 #: templates/table/index_form.phtml:237 -#: templates/table/relation/common_form.phtml:108 +#: templates/table/relation/common_form.phtml:127 msgid "Preview SQL" msgstr "" @@ -1205,8 +1211,8 @@ msgstr "Лозинке нису идентичне!" msgid "Removing Selected Users" msgstr "Уклони изабране кориснике" -#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:461 -#: libraries/tracking.lib.php:831 +#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:471 +#: libraries/tracking.lib.php:841 msgid "Close" msgstr "" @@ -1234,7 +1240,7 @@ msgstr "Ред је обрисан" #. l10n: Other, small valued, queries #: js/messages.php:155 libraries/ServerStatusData.php:130 -#: libraries/server_status_queries.lib.php:148 +#: libraries/server_status_queries.lib.php:150 msgid "Other" msgstr "" @@ -1423,7 +1429,7 @@ msgstr "Персијски" msgid "Traffic" msgstr "Саобраћај" -#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4330 +#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4331 #: libraries/server_status_monitor.lib.php:258 #, fuzzy #| msgid "General relation features" @@ -1440,9 +1446,9 @@ msgstr "Држи се мреже" msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:216 libraries/DisplayResults.php:1477 +#: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1559,7 +1565,7 @@ msgstr "Опште особине релација" msgid "Current settings" msgstr "Опште особине релација" -#: js/messages.php:253 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:253 #, fuzzy #| msgid "Report title" msgid "Chart title" @@ -1649,21 +1655,21 @@ msgstr "" msgid "Explain output" msgstr "Објасни SQL" -#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4326 +#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4327 #: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:396 #: libraries/rte/rte_list.lib.php:104 -#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:282 -#: libraries/tracking.lib.php:1623 +#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:284 +#: libraries/tracking.lib.php:1639 msgid "Status" msgstr "Статус" -#: js/messages.php:289 js/messages.php:870 +#: js/messages.php:289 js/messages.php:862 #: libraries/plugins/export/ExportHtmlword.php:484 #: libraries/plugins/export/ExportOdt.php:600 #: libraries/plugins/export/ExportTexytext.php:445 #: libraries/plugins/export/PMA_ExportPdf.php:314 #: libraries/rte/rte_list.lib.php:93 -#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:239 +#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:243 msgid "Time" msgstr "Време" @@ -1759,10 +1765,10 @@ msgid "" msgstr "" #: js/messages.php:322 libraries/Menu.php:355 libraries/Menu.php:457 -#: libraries/Menu.php:578 libraries/Util.php:4329 libraries/Util.php:4344 -#: libraries/Util.php:4361 libraries/config/messages.inc.php:260 +#: libraries/Menu.php:578 libraries/Util.php:4330 libraries/Util.php:4345 +#: libraries/Util.php:4362 libraries/config/messages.inc.php:260 #: libraries/display_import.lib.php:108 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:241 +#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:241 #: setup/frames/menu.inc.php:26 msgid "Import" msgstr "Увоз" @@ -1829,7 +1835,13 @@ msgstr "" msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 libraries/server_variables.lib.php:159 +#: js/messages.php:343 +#, fuzzy +#| msgid "Bad parameters!" +msgid "No parameters found!" +msgstr "Погрешни параметри!" + +#: js/messages.php:347 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 @@ -1840,72 +1852,72 @@ msgstr "" msgid "Cancel" msgstr "Откажи" -#: js/messages.php:349 libraries/Header.php:457 +#: js/messages.php:350 libraries/Header.php:457 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" msgstr "Опште особине релација" -#: js/messages.php:350 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:351 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:353 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:354 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:124 #, fuzzy msgid "Loading…" msgstr "Локални" -#: js/messages.php:354 +#: js/messages.php:355 msgid "Request aborted!!" msgstr "" -#: js/messages.php:355 +#: js/messages.php:356 #, fuzzy #| msgid "Processes" msgid "Processing request" msgstr "Процеси" -#: js/messages.php:356 +#: js/messages.php:357 #, fuzzy #| msgid "Query cache" msgid "Request failed!!" msgstr "Кеш упита" -#: js/messages.php:357 +#: js/messages.php:358 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Процеси" -#: js/messages.php:358 +#: js/messages.php:359 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:359 +#: js/messages.php:360 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:360 libraries/db_common.inc.php:73 +#: js/messages.php:361 libraries/db_common.inc.php:73 #: libraries/db_table_exists.lib.php:33 libraries/server_databases.lib.php:462 msgid "No databases selected." msgstr "Није изабрана ни једна база." -#: js/messages.php:361 +#: js/messages.php:362 #, fuzzy #| msgid "Dropping Procedure" msgid "Dropping column" msgstr "Процедуре" -#: js/messages.php:362 +#: js/messages.php:363 #, fuzzy #| msgid "Add %s field(s)" msgid "Adding primary key" msgstr "Додај %s поља" -#: js/messages.php:363 +#: js/messages.php:364 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1915,238 +1927,238 @@ msgstr "Додај %s поља" msgid "OK" msgstr "У реду" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:367 +#: js/messages.php:368 #, fuzzy #| msgid "Rename database to" msgid "Renaming databases" msgstr "Преименуј базу у" -#: js/messages.php:368 +#: js/messages.php:369 #, fuzzy #| msgid "Copy database to" msgid "Copying database" msgstr "Копирај базу у" -#: js/messages.php:369 +#: js/messages.php:370 #, fuzzy #| msgid "Charset" msgid "Changing charset" msgstr "Карактер сет" -#: js/messages.php:373 libraries/Util.php:3289 +#: js/messages.php:374 libraries/Util.php:3289 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Искључи провере страних кључева" -#: js/messages.php:376 +#: js/messages.php:377 #, fuzzy #| msgid "Failed to fetch headers" msgid "Failed to get real row count." msgstr "Неуспело преузимање заглавља." -#: js/messages.php:379 +#: js/messages.php:380 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Претраживање" -#: js/messages.php:380 +#: js/messages.php:381 #, fuzzy msgid "Hide search results" msgstr "SQL упит" -#: js/messages.php:381 +#: js/messages.php:382 #, fuzzy msgid "Show search results" msgstr "SQL упит" -#: js/messages.php:382 +#: js/messages.php:383 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Преглед" -#: js/messages.php:383 +#: js/messages.php:384 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Бришем %s" -#: js/messages.php:387 +#: js/messages.php:388 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:388 libraries/DisplayResults.php:4832 -#: libraries/DisplayResults.php:5091 libraries/Menu.php:347 -#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3709 -#: libraries/Util.php:3710 libraries/Util.php:4328 libraries/Util.php:4343 -#: libraries/Util.php:4360 libraries/config/messages.inc.php:254 +#: js/messages.php:389 libraries/DisplayResults.php:4850 +#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 +#: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 +#: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2448 -#: libraries/server_privileges.lib.php:2527 -#: libraries/server_privileges.lib.php:2873 -#: libraries/server_privileges.lib.php:3532 -#: libraries/server_status_monitor.lib.php:321 prefs_manage.php:306 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2875 +#: libraries/server_privileges.lib.php:3543 +#: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 msgid "Export" msgstr "Извоз" -#: js/messages.php:391 libraries/rte/rte_routines.lib.php:742 +#: js/messages.php:392 libraries/rte/rte_routines.lib.php:742 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:392 +#: js/messages.php:393 #, fuzzy, php-format #| msgid "Number of fields" msgid "Values for column %s" msgstr "Број поља" -#: js/messages.php:393 +#: js/messages.php:394 msgid "Values for a new column" msgstr "" -#: js/messages.php:394 +#: js/messages.php:395 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:395 +#: js/messages.php:396 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Додај новог корисника" -#: js/messages.php:399 +#: js/messages.php:400 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:403 +#: js/messages.php:404 #, fuzzy msgid "Hide query box" msgstr "SQL упит" -#: js/messages.php:404 +#: js/messages.php:405 #, fuzzy msgid "Show query box" msgstr "SQL упит" -#: js/messages.php:405 libraries/Console.php:88 libraries/Console.php:217 -#: libraries/DisplayResults.php:3457 libraries/DisplayResults.php:4816 +#: js/messages.php:406 libraries/Console.php:88 libraries/Console.php:217 +#: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4834 #: libraries/Index.php:721 libraries/Util.php:727 libraries/Util.php:1238 -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:119 +#: libraries/server_user_groups.lib.php:121 #: libraries/server_variables.lib.php:242 #: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 msgid "Edit" msgstr "Промени" -#: js/messages.php:406 libraries/Console.php:89 libraries/DbSearch.php:360 -#: libraries/DisplayResults.php:3526 libraries/DisplayResults.php:4800 +#: js/messages.php:407 libraries/Console.php:89 libraries/DbSearch.php:360 +#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4818 #: libraries/central_columns.lib.php:854 #: libraries/central_columns.lib.php:1200 libraries/display_export.lib.php:227 -#: libraries/server_user_groups.lib.php:129 -#: libraries/sql_query_form.lib.php:416 libraries/tracking.lib.php:480 +#: libraries/server_user_groups.lib.php:131 +#: libraries/sql_query_form.lib.php:417 libraries/tracking.lib.php:490 #: setup/frames/index.inc.php:187 setup/frames/index.inc.php:295 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Обриши" -#: js/messages.php:407 libraries/DisplayResults.php:915 -#: libraries/DisplayResults.php:923 +#: js/messages.php:408 libraries/DisplayResults.php:919 +#: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d није исправан број реда." -#: js/messages.php:408 -#: libraries/controllers/table/TableSearchController.php:435 -#: libraries/controllers/table/TableSearchController.php:920 -#: libraries/sql.lib.php:193 tbl_change.php:159 +#: js/messages.php:409 +#: libraries/controllers/table/TableSearchController.php:432 +#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "Прегледај стране вредности" -#: js/messages.php:409 +#: js/messages.php:410 msgid "No auto-saved query" msgstr "" -#: js/messages.php:410 +#: js/messages.php:411 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Променљива" -#: js/messages.php:413 libraries/normalization.lib.php:889 +#: js/messages.php:414 libraries/normalization.lib.php:889 msgid "Pick" msgstr "" -#: js/messages.php:414 +#: js/messages.php:415 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "Нема одабраних редова" -#: js/messages.php:415 +#: js/messages.php:416 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Претраживање базе" -#: js/messages.php:417 +#: js/messages.php:418 #, 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:420 +#: js/messages.php:421 msgid "See more" msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Are you sure?" msgstr "" -#: js/messages.php:423 +#: js/messages.php:424 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Атрибути" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Примарни кључ је управо додат %s." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 #, fuzzy #| msgid "Change" msgid "Taking you to next step…" msgstr "Промени" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 #, fuzzy @@ -2154,560 +2166,521 @@ msgstr "" msgid "End of step" msgstr "На крају табеле" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 #, fuzzy msgid "Done" msgstr "Подаци" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Није изабрана ни једна база." -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Додај привилегије на следећој табели" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Није изабрана ни једна база." -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Сачувај" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy msgid "Hide search criteria" msgstr "SQL упит" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy msgid "Show search criteria" msgstr "SQL упит" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Претраживање" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Имена колона" -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Имена колона" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 #, fuzzy msgid "Maximum value:" msgstr "База не постоји" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy msgid "Hide find and replace criteria" msgstr "SQL упит" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy msgid "Show find and replace criteria" msgstr "SQL упит" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Додај/обриши колону" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Величина показивача података" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Игнориши" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Копирај" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "" -#: js/messages.php:508 +#: js/messages.php:509 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Линије се завршавају са" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Add a new User" msgid "Inner ring" msgstr "Додај новог корисника" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Линије се завршавају са" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Изаберите референцирани кључ" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Изабери страни кључ" -#: js/messages.php:529 +#: js/messages.php:530 #, 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:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Број стране:" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 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:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 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:539 +#: js/messages.php:540 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "Изабери све" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Изаберите страну коју мењате" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid page name" msgstr "%d није исправан број реда." -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Уреди или извези релациону схему" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Измене су сачуване" -#: js/messages.php:550 +#: js/messages.php:551 #, fuzzy, php-format #| msgid "Number of fields" msgid "Add an option for column \"%s\"." msgstr "Број поља" -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Пошаљи" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Имена колона" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Прикажи све" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Оригинална позиција" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Откажи" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Прекинуто" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 #, fuzzy msgid "Import status" msgstr "Увоз датотека" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Изабери табеле" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 #, fuzzy msgid "Go to link:" msgstr "База не постоји" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Имена колона" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Направи лозинку" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Направи" -#: js/messages.php:620 +#: js/messages.php:621 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Пон" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Прикажи све" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "Додај ново поље" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Прикажи мрежу" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 #, fuzzy msgid "Link with main panel" msgstr "Опције за извоз базе" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 #, fuzzy msgid "Unlink from main panel" msgstr "Опције за извоз базе" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 #, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "Табеле" - -#: js/messages.php:633 -#, fuzzy -#| msgid "View" -msgid "views" -msgstr "Поглед" - -#: js/messages.php:634 -#, fuzzy -#| msgid "Procedures" -msgid "procedures" -msgstr "Процедуре" - -#: js/messages.php:635 -#, fuzzy -#| msgid "Event" -msgid "events" -msgstr "Догађаји" - -#: js/messages.php:636 -#, fuzzy -#| msgid "Functions" -msgid "functions" -msgstr "Функције" - -#: js/messages.php:640 -#, 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:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2715,137 +2688,137 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 #, fuzzy msgid ", latest stable version:" msgstr "Направи релацију" -#: js/messages.php:649 +#: js/messages.php:641 #, fuzzy msgid "up to date" msgstr "База не постоји" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 #, fuzzy msgid "Create view" msgstr "Направи релацију" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy msgid "Send error report" msgstr "ИД сервера" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy msgid "Submit error report" msgstr "ИД сервера" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Опште особине релација" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Прикажи отворене табеле" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Игнориши" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Прикажи поново овај упит" -#: js/messages.php:701 +#: js/messages.php:693 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Да ли стварно хоћете да " -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Коментари табеле" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy msgid "Hide arguments" msgstr "SQL упит" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Претходна" -#: js/messages.php:748 +#: js/messages.php:740 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2853,96 +2826,96 @@ msgid "Next" msgstr "Следећи" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Укупно" -#: js/messages.php:755 +#: js/messages.php:747 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Бинарни" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:749 #, fuzzy #| msgid "Mar" msgid "March" msgstr "мар" -#: js/messages.php:758 +#: js/messages.php:750 #, fuzzy #| msgid "Apr" msgid "April" msgstr "апр" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "мај" -#: js/messages.php:760 +#: js/messages.php:752 #, fuzzy #| msgid "Jun" msgid "June" msgstr "јун" -#: js/messages.php:761 +#: js/messages.php:753 #, fuzzy #| msgid "Jul" msgid "July" msgstr "јул" -#: js/messages.php:762 +#: js/messages.php:754 #, fuzzy #| msgid "Aug" msgid "August" msgstr "авг" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:756 #, fuzzy #| msgid "Oct" msgid "October" msgstr "окт" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "јан" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "феб" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "мар" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2950,78 +2923,78 @@ msgid "May" msgstr "мај" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "јун" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "јул" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "сеп" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "нов" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "дец" -#: js/messages.php:801 +#: js/messages.php:793 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Нед" -#: js/messages.php:802 +#: js/messages.php:794 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пон" -#: js/messages.php:803 +#: js/messages.php:795 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Уто" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:798 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пет" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3029,167 +3002,167 @@ msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Уто" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Сре" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Чет" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Пет" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Суб" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Нед" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пон" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Уто" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Сре" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Чет" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пет" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Суб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "нема" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:864 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "се користи" -#: js/messages.php:873 +#: js/messages.php:865 #, fuzzy #| msgid "per second" msgid "Second" msgstr "у секунди" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Користи текст поље" -#: js/messages.php:886 +#: js/messages.php:878 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid email address" msgstr "%d није исправан број реда." -#: js/messages.php:887 +#: js/messages.php:879 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid URL" msgstr "%d није исправан број реда." -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date" msgstr "%d није исправан број реда." -#: js/messages.php:889 +#: js/messages.php:883 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date ( ISO )" msgstr "%d није исправан број реда." -#: js/messages.php:890 +#: js/messages.php:885 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number" msgstr "%d није исправан број реда." -#: js/messages.php:891 +#: js/messages.php:888 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid credit card number" msgstr "%d није исправан број реда." -#: js/messages.php:892 +#: js/messages.php:890 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" @@ -3201,53 +3174,53 @@ msgstr "%d није исправан број реда." msgid "Please enter the same value again" msgstr "%d није исправан број реда." -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter at least {0} characters" msgstr "%d није исправан број реда." -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value between {0} and {1}" msgstr "%d није исправан број реда." -#: js/messages.php:898 +#: js/messages.php:917 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value less than or equal to {0}" msgstr "%d није исправан број реда." -#: js/messages.php:899 +#: js/messages.php:922 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value greater than or equal to {0}" msgstr "%d није исправан број реда." -#: js/messages.php:901 +#: js/messages.php:928 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date or time" msgstr "%d није исправан број реда." -#: js/messages.php:902 +#: js/messages.php:933 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid HEX input" msgstr "%d није исправан број реда." -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Грешка" @@ -3335,11 +3308,12 @@ msgstr "у упиту" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3388,7 +3362,7 @@ msgstr "" msgid "Explain" msgstr "Објасни SQL" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Профилисање" @@ -3430,8 +3404,8 @@ msgid "History" msgstr "SQL историјат" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3608,7 +3582,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Пређи на копирану табелу" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 #, fuzzy #| msgid " the local MySQL server's socket is not correctly configured)" msgid "" @@ -3616,28 +3590,28 @@ msgid "" "configured)." msgstr "(или прикључак локалног MySQL сервера није исправно подешен)" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Сервер не одговара" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Конекција за controluser-а, онако како је дефинисана у вашој конфигурацији, " "није успела." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3647,8 +3621,8 @@ msgstr "" msgid "Ascending" msgstr "Растући" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3819,8 +3793,8 @@ msgstr[1] "%s погодака унутар табеле %s" msgstr[2] "%s погодака унутар табеле %s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3871,29 +3845,29 @@ msgstr "ништа" msgid "Inside column:" msgstr "Унутар табела:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 #, fuzzy msgid "Save edited data" msgstr "Основни директоријум података" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "Додај/обриши колону" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 #, fuzzy msgid "Filter rows" msgstr "Датотеке" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Search in database" msgid "Search this table" msgstr "Претраживање базе" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 #, fuzzy #| msgid "Begin" @@ -3901,7 +3875,7 @@ msgctxt "First page" msgid "Begin" msgstr "Почетак" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 #, fuzzy @@ -3910,7 +3884,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Претходна" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 #, fuzzy @@ -3919,7 +3893,7 @@ msgctxt "Next page" msgid "Next" msgstr "Следећи" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 #, fuzzy #| msgid "End" @@ -3927,86 +3901,86 @@ msgctxt "Last page" msgid "End" msgstr "Крај" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Све" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of fields" msgid "Number of rows:" msgstr "Број поља" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Сортирај по кључу" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Део текста" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Пун текст" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 #, fuzzy msgid "Relational key" msgstr "Релациона схема" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Disable foreign key checks" msgid "Display column for relations" msgstr "Искључи провере страних кључева" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Транформације читача" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Ред је обрисан" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Обустави" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Може бити приближно. Видите [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -4014,50 +3988,51 @@ msgstr "Може бити приближно. Видите [doc@faq3-11]FAQ 3.11 msgid "Your SQL query has been executed successfully." msgstr "Ваш SQL упит је успешно извршен" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Приказ записа" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "укупно" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "Упит је трајао %01.4f секунди" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Означено:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -4065,27 +4040,27 @@ msgstr "Означено:" msgid "Check all" msgstr "Означи све" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "За штампу" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Операције на резултатима упита" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Прикажи PDF схему" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 #, fuzzy #| msgid "Link not found" msgid "Link not found!" @@ -4194,19 +4169,19 @@ msgstr "Кључ није дефинисан!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Кључеви" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -4215,24 +4190,24 @@ msgid "Action" msgstr "Акција" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Име кључа" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Јединствени" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Кардиналност" @@ -4240,8 +4215,8 @@ msgstr "Кардиналност" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -4251,8 +4226,8 @@ msgid "Collation" msgstr "Сортирање" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -4269,15 +4244,15 @@ msgstr "Примарни кључ је обрисан." msgid "Index %s has been dropped." msgstr "Кључ %s је обрисан." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Одбаци" @@ -4314,12 +4289,13 @@ msgstr "Поглед" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4327,7 +4303,7 @@ msgstr "Табела" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4336,8 +4312,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4345,41 +4321,41 @@ msgid "Search" msgstr "Претраживање" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Нови запис" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Привилегије" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Операције" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4390,16 +4366,16 @@ msgstr "Окидачи" msgid "Database seems to be empty!" msgstr "База је изгледа празна!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Упит по примеру" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Рутине" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4408,22 +4384,22 @@ msgstr "Рутине" msgid "Events" msgstr "Догађаји" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Дизајнер" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Додај/обриши колону" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Базе" @@ -4434,33 +4410,33 @@ msgid "User accounts" msgstr "Корисник" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Бинарни дневник" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Репликација" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Променљиве" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Кодне стране" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Складиштења" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4790,7 +4766,7 @@ msgstr "Не могу да променим кључ у PRIMARY (примарн msgid "No index parts defined!" msgstr "Делови кључа нису дефинисани!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5218,39 +5194,39 @@ msgstr "Ова функционалност %s је погођена позна msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "директоријум за слање веб сервера " -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Директоријум који сте изабрали за слање није доступан." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 #, fuzzy msgid "There are no files to upload!" msgstr "Провери табелу" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Испразни" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Штампај" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 #, fuzzy #| msgid "User" msgid "Users" @@ -5432,8 +5408,8 @@ msgid "Add new column" msgstr "Додај %s поља" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5503,19 +5479,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "Требало би да унапредите ваш %s сервер на верзију %s или новију." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -6354,7 +6330,7 @@ msgid "Remember file name template" msgstr "Шаблон имена датотеке" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Додај AUTO_INCREMENT вредност" @@ -6397,7 +6373,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Додај %s" @@ -8110,7 +8086,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 #, fuzzy msgid "Retain query box" msgstr "SQL упит" @@ -8399,112 +8375,35 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Open Document Text" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Табела %s је испражњена." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "Поглед %s је одбачен" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "Табела %s је одбачена" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "непознат" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: libraries/controllers/TableStructureController.php:250 -#, fuzzy -#| msgid "No rows selected" -msgid "No column selected." -msgstr "Нема одабраних редова" - -#: libraries/controllers/TableStructureController.php:484 -#, fuzzy -#| msgid "The selected users have been deleted successfully." -msgid "The columns have been moved successfully." -msgstr "Изабрани корисници су успешно обрисани." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, fuzzy, php-format -msgid "Table %1$s has been altered successfully." -msgstr "Изабрани корисници су успешно обрисани." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -#, fuzzy -#| msgid "Query type" -msgid "Query error" -msgstr "Врста упита" - -#: libraries/controllers/TableStructureController.php:967 -#, fuzzy, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "Изабрани корисници су успешно обрисани." - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Промени" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Кључ" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Текст кључ" - -#: libraries/controllers/TableStructureController.php:1201 -#, fuzzy -#| msgid "Browse distinct values" -msgid "Distinct values" -msgstr "Прегледај различите вредности" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8520,6 +8419,14 @@ msgstr "" msgid "No data to display" msgstr "База не постоји" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, fuzzy, php-format +msgid "Table %1$s has been altered successfully." +msgstr "Изабрани корисници су успешно обрисани." + #: libraries/controllers/table/TableRelationController.php:212 #, fuzzy #| msgid "Thread %s was successfully killed." @@ -8532,24 +8439,93 @@ msgstr "Процес %s је успешно прекинут." msgid "Internal relations were successfully updated." msgstr "Додата интерна релација" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Search" msgid "Table search" msgstr "Претраживање" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Search" msgid "Zoom search" msgstr "Претраживање" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy msgid "Find and replace" msgstr "SQL упит" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: libraries/controllers/table/TableStructureController.php:251 +#, fuzzy +#| msgid "No rows selected" +msgid "No column selected." +msgstr "Нема одабраних редова" + +#: libraries/controllers/table/TableStructureController.php:485 +#, fuzzy +#| msgid "The selected users have been deleted successfully." +msgid "The columns have been moved successfully." +msgstr "Изабрани корисници су успешно обрисани." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +#, fuzzy +#| msgid "Query type" +msgid "Query error" +msgstr "Врста упита" + +#: libraries/controllers/table/TableStructureController.php:975 +#, fuzzy, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "Изабрани корисници су успешно обрисани." + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Промени" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Кључ" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Текст кључ" + +#: libraries/controllers/table/TableStructureController.php:1209 +#, fuzzy +#| msgid "Browse distinct values" +msgid "Distinct values" +msgstr "Прегледај различите вредности" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8559,7 +8535,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Нема измена" @@ -8634,7 +8610,7 @@ msgstr "Направи" msgid "Create database:" msgstr "Направи нову базу података" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Нема привилегија" @@ -9409,70 +9385,70 @@ msgid "Dump has been saved to file %s." msgstr "Садржај базе је сачуван у датотеку %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL је вратио празан резултат (нула редова)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, fuzzy, php-format msgid "Go to database: %s" msgstr "База не постоји" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, fuzzy, php-format msgid "Go to table: %s" msgstr "База не постоји" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Само структура" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" @@ -9496,74 +9472,74 @@ msgstr "Функција" msgid "Binary" msgstr "Бинарни" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 #, fuzzy #| msgid "ause of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "Због њехове величине, поље
можда нећете моћи да измените" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Бинарни - не мењај" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "или" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "директоријум за слање веб сервера" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Нови запис" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Поново покрени уношење са %s редова" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "и онда" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Унеси као нови ред" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 #, fuzzy msgid "Show insert query" msgstr "Приказ као SQL упит" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Назад на претходну страну" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Додај још један нови ред" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Врати се на ову страну" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Уреди следећи ред" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9573,7 +9549,7 @@ msgstr "" "Користите TAB тастер за померање од поља до поља, или CTRL+стрелице за " "слободно померање" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9585,11 +9561,11 @@ msgstr "" msgid "Value" msgstr "Вредност" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "Приказ као SQL упит" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9607,45 +9583,45 @@ msgstr "нема" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix:" msgstr "Замени податке у табели са подацима из датотеке" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix:" msgstr "Замени податке у табели са подацима из датотеке" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Пет" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Add new field" msgid "Add table prefix:" msgstr "Додај ново поље" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 #, fuzzy #| msgid "Add new field" msgid "Add prefix" msgstr "Додај ново поље" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -9876,8 +9852,8 @@ msgstr "Процедуре" msgid "Views:" msgstr "Поглед" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Прикажи" @@ -9918,10 +9894,9 @@ msgstr[1] "" msgstr[2] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "table name" -msgid "Filter databases by name or regex" -msgstr "назив табеле" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -9930,12 +9905,6 @@ msgstr "назив табеле" msgid "Clear fast filter" msgstr "Сачувај као датотеку" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "table name" -msgid "Filter by name or regex" -msgstr "назив табеле" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -10341,7 +10310,7 @@ msgstr "Преименуј базу у" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10352,7 +10321,7 @@ msgstr "Није Вам дозвољено да будете овде!" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -10372,18 +10341,18 @@ msgstr "Уклони базу" msgid "Drop the database (DROP)" msgstr "Одбаци базу (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Само структура" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Структура и подаци" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Само подаци" @@ -10397,7 +10366,7 @@ msgstr "Копирај базу у" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE пре копирања" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Додај ограничења" @@ -10437,63 +10406,63 @@ msgstr "Погон складиштења" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Копирај табелу у (база.табела)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Пређи на копирану табелу" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Радње на табели" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Анализирај табелу" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Провери табелу" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Провери табелу" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Дефрагментирај табелу" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "Табела %s је освежена." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Освежи табелу (\"FLUSH\")" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Оптимизуј табелу" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Поправи табелу" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 #, fuzzy @@ -10501,106 +10470,106 @@ msgstr "Поправи табелу" msgid "Delete data or table" msgstr "Приказ података табеле" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 #, fuzzy msgid "Delete the table (DROP)" msgstr "База не постоји" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 #, fuzzy msgid "Check" msgstr "Чешки" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 #, fuzzy msgid "Repair" msgstr "Поправи табелу" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy msgid "Coalesce" msgstr "Нема табела" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 #, fuzzy msgid "Partition maintenance" msgstr "Радње на табели" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Провери референцијални интегритет:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Не могу да преместим табелу у саму себе!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Не могу да копирам табелу у саму себе!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Табела %s је померена у %s." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Табела %s је копирана у %s." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "Табела %s је померена у %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "Табела %s је копирана у %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Има табеле је празно!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10790,7 +10759,7 @@ msgstr "Опције за извоз базе" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Приказ података табеле" @@ -10816,21 +10785,21 @@ msgstr "Опис" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Структура табеле" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Структура за поглед (view)" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Структура која замењује поглед" @@ -10948,7 +10917,7 @@ msgid "Database:" msgstr "База података" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11064,7 +11033,7 @@ msgid "Data creation options" msgstr "Опције трансформације" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -11133,8 +11102,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11142,98 +11111,98 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Export type" msgid "Metadata" msgstr "Тип извоза" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 #, fuzzy #| msgid "Creation" msgid "Creation:" msgstr "Направљено" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 #, fuzzy #| msgid "Last update" msgid "Last update:" msgstr "Последња измена" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 #, fuzzy #| msgid "Last check" msgid "Last check:" msgstr "Последња провера" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "се користи" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Ограничења за извезене табеле" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Ограничења за табеле" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Ограничења за извезене табеле" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "Унутар табела:" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Додај AUTO_INCREMENT вредност" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Додај AUTO_INCREMENT вредност" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "MIME ТИПОВИ ЗА ТАБЕЛУ" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "РЕЛАЦИЈЕ ТАБЕЛЕ" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Структура за поглед (view)" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11491,9 +11460,9 @@ msgstr "Релациона схема" msgid "Table of contents" msgstr "Садржај" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Додатно" @@ -11735,63 +11704,63 @@ msgstr "Форматира текст као SQL упит са обележав msgid "Formats text as XML with syntax highlighting." msgstr "Форматира текст као SQL упит са обележавањем синтаксе." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Грешка: релација већ постоји." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been added." msgstr "Измене су сачуване" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Грешка: релација није додата." -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Relational features are disabled!" msgstr "Грешка: релација није додата." -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "Додата интерна релација" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "Грешка: релација није додата." -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been removed." msgstr "Измене су сачуване" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Грешка: релација није додата." -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "Грешка: релација није додата." -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11848,108 +11817,108 @@ msgid "Please see the documentation on how to update your column_info table. " msgstr "" "Молимо погледајте у документацији како се ажурира табела Column_comments." -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Запамћен SQL-упит" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL историјат" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy msgid "Persistent favorite tables" msgstr "Провери табелу" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Modifications have been saved" msgid "Configurable menus" msgstr "Измене су сачуване" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Rename table to" msgid "Remembering Designer Settings" msgstr "Промени име табеле у " -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy msgid "Saving export templates" msgstr "Тип извоза" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "нема описа" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -12132,8 +12101,8 @@ msgstr "Име корисника" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Име корисника" @@ -12141,7 +12110,7 @@ msgstr "Име корисника" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Лозинка" @@ -12853,7 +12822,7 @@ msgstr[2] "%s база је успешно одбачено." msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 #, fuzzy msgid "Version" msgstr "Персијски" @@ -12862,101 +12831,97 @@ msgstr "Персијски" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Онемогућено" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Нема привилегија." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Укључује све привилегије осим GRANT." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Дозвољава читање података." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Дозвољава уметање и замену података." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Дозвољава измену података." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Дозвољава брисање података." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Дозвољава креирање нових база и табела." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Дозвољава одбацивање база и табела." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Дозвољава поновно учитавање подешавања сервера и пражњење кеша сервера." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Дозвољава гашење сервера." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "Дозвољава увоз података и њихов извоз у датотеке." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "Нема ефекта у овој верзији MySQL-a." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Дозвољава креирање и брисање кључева." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Дозвољава измену структура постојећих табела." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Даје приступ комплетној листи база." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12967,68 +12932,68 @@ msgstr "" "променљивих или прекидање процеса осталих корисника." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Дозвољава креирање привремених табела.." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Дозвољава закључавање табела текућим процесима." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Потребно због помоћних сервера за репликацију." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "Даје право кориснику да пита где су главни/помоћни сервери." #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Дозволи креирање нових погледа." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 #, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Allows to set up events for the event scheduler." msgstr "Дозвољава закључавање табела текућим процесима." #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 #, fuzzy msgid "Allows creating and dropping triggers." msgstr "Дозвољава креирање и брисање кључева." #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Дозвољава извршавање SHOW CREATE VIEW упита." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Дозвољава прављење сачуваних рутина." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Дозвољава измену и одбацивање сачуваних рутина." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "Дозвољава прављење, одбацивање и преименовање корисничких налога." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Дозвољава извршавање сачуваних рутина." @@ -13042,8 +13007,8 @@ msgstr "нема" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -13087,12 +13052,12 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Напомена: Постављање ових опција на 0 (нулу) уклања ограничења." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Ограничава број упита које корисник може да упути серверу за сат." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -13101,19 +13066,19 @@ msgstr "" "изврши на сат." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "Ограничава број нових конекција које корисник може та отвори на сат." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "Ограничава број истовремених конекција које корисник може да има." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -13121,7 +13086,7 @@ msgid "Routine" msgstr "Рутине" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -13142,14 +13107,14 @@ msgstr "Дозвољава извршавање сачуваних рутина. #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Привилегије везане за табеле" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -13161,7 +13126,7 @@ msgid "Administration" msgstr "Администрација" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Глобалне привилегије" @@ -13172,15 +13137,15 @@ msgid "Global" msgstr "глобално" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Привилегије везане за базу" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Дозвољава креирање нових табела." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Дозвољава одбацивање табела." @@ -13203,7 +13168,7 @@ msgid "Native MySQL Authentication" msgstr "Документација" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Подаци о пријави" @@ -13228,8 +13193,8 @@ msgstr "Име корисника" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Log name" msgid "Host name" @@ -13251,245 +13216,245 @@ msgstr "Документација" msgid "Password Hashing Method" msgstr "Хеширање лозинке" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "Лозинка за %s је успешно промењена." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Забранили сте привилегије за %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Било који корисник" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "База за корисника" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "Направи базу са истим именом и додај све привилегије." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Дај све привилегије на имену са џокерима (корисничко_име\\_%)." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, fuzzy, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Провери привилегије за базу \"%s\"." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Корисници који имају приступ \"%s\"" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Поглед %s је одбачен" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Омогући" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Корисник није нађен." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Било који" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "глобално" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "Специфично за базу" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "џокер" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Специфично за базу" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Промени привилегије" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Забрани" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "Уреди следећи ред" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… сачувај старе." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… обриши старе из табела корисника." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… обустави све привилегије старог корисника и затим га обриши." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… обриши старог из табеле корисника и затим поново учитај привилегије." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Промени информације о пријави / Копирај корисника" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Направи новог корисника са истим привилегијама и …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Привилегије везане за колоне" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Уклони изабране кориснике" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Обустави све активне привилегије корисника и затим их обриши." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "Одбаци базе које се зову исто као корисници." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "Ниједан корисник није одабран за брисање!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Поново учитавам привилегије" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Изабрани корисници су успешно обрисани." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Ажурирали сте привилегије за %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "Бришем %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Привилегије су успешно поново учитане." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "Корисник %s већ постоји!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Привилегије" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Корисник" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Промени привилегије" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "User" msgid "User account" msgstr "Корисник" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Преглед корисника" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13502,7 +13467,7 @@ msgstr "" "сервер користи ако су вршене ручне измене. У том случају %sпоново учитајте " "привилегије%s пре него што наставите." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13521,11 +13486,11 @@ msgstr "" "сервер користи ако су вршене ручне измене. У том случају %sпоново учитајте " "привилегије%s пре него што наставите." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "Изабрани корисник није пронађен у табели привилегија." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Додали сте новог корисника." @@ -13773,33 +13738,33 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 #, fuzzy msgid "Refresh rate" msgstr "Освежи" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Додај/обриши колону" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -13868,7 +13833,7 @@ msgid "Statements" msgstr "Име" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -13901,19 +13866,19 @@ msgstr "Прикажи отворене табеле" msgid "Related links:" msgstr "Релације" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Број fsyncs уписа начињених у датотеку дневника." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13923,16 +13888,16 @@ msgstr "" "превазишле вредност у binlog_cache_size и користиле привремену датотеку да " "сместе изразе из трансакције." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "Број трансакција које су користиле кеш привременог бинарног дневника." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13944,11 +13909,11 @@ msgstr "" "повећате вредност tmp_table_size како би учинили да привремене табеле буду " "базиране у меморији уместо на диску." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "Колико привремених датотека је mysqld направио." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13956,7 +13921,7 @@ msgstr "" "Број привремених табела које је сервер аутоматски креирао у меморији док је " "извршавао изразе." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13964,7 +13929,7 @@ msgstr "" "Број редова уписаних са INSERT DELAYED за које је јављена нека грешка " "(вероватно дуплирани кључ)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13972,23 +13937,23 @@ msgstr "" "Број INSERT DELAYED руковалачких нити у употреби. Свака посебна табела над " "којом се користи INSERT DELAYED добија своју нит." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "Број уписаних INSERT DELAYED редова." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "Број извршених FLUSH израза." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "Број интерних COMMIT израза." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "Број брисања неког реда табеле." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13998,7 +13963,7 @@ msgstr "" "одређеног имена. То се назива откривањем (discovery). Handler_discover " "означава број пута када је откривена табела." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -14008,7 +13973,7 @@ msgstr "" "може значити да сервер ради пуно пуних скенирања индекса; на пример SELECT " "кол1 FROM нешто, под претпоставком да је кол1 индексирано." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -14016,7 +13981,7 @@ msgstr "" "Број захтева за читање реда заснованих на кључу. Ако је овај број висок, то " "је добар показатељ да су ваши упити и табеле прописно индексирани." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -14026,7 +13991,7 @@ msgstr "" "када радите упит по колони индекса са ограничењем опсега или ако радите " "скенирање индекса." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -14034,7 +13999,7 @@ msgstr "" "Број захтева за читањем претходног реда у поретку кључева. Ова метода читања " "се углавном користи за оптимизацију ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -14046,7 +14011,7 @@ msgstr "" "много упита који захтевају да MySQL скенира целе табеле или имате спојеве " "који не користе кључеве прописно." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -14058,35 +14023,35 @@ msgstr "" "прописно индексиране или да ваши упити нису написани да искористе већ " "постојеће индексе." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "Број интерних ROLLBACK израза." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "Број захтева за ажурирање реда у табели." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "Број захтева за уписивање реда у табелу." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "Број страна које садрже податке (чистих или прљавих)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "Број страна које су тренутно прљаве." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Број страна у остави бафера за које је тражено да буду очишћене." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "Број слободних страна." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -14096,7 +14061,7 @@ msgstr "" "чита или се у њих уписује или из неког другог разлога не могу бити очишћене " "нити уклоњене." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -14108,11 +14073,11 @@ msgstr "" "такође може израчунати и на следећи начин Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "Пуна величина оставе бафера, у странама." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -14120,7 +14085,7 @@ msgstr "" "Број „насумичних“ пред-читања која је InnoDB покренуо. Ово се дешава када " "упит треба да скенира велики део табеле али насумичним редоследом." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -14128,11 +14093,11 @@ msgstr "" "Број секвенцијалних пред-читања која је InnoDB покренуо. Ово се дешава када " "InnoDB ради секвенцијално скенирање целе табеле." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "Број логичких захтева за читање које је InnoDB урадио." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -14140,7 +14105,7 @@ msgstr "" "Број логичких читања која InnoDB није могао да задовољи из оставе бафера те " "је морао да ради читање појединачне стране." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -14154,55 +14119,55 @@ msgstr "" "дешавања ових чекања. Ако је величина оставе бафера постављена како треба, " "ова вредност ви требало да је ниска." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "Број уписа учињених у InnoDB оставу бафера." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "Број fsync() операција до сада." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "Тренутни број fsync() операција на чекању." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "Тренутни број читања на чекању." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "Тренутни број уписа на чекању." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "Количина података прочитаних до сада, у бајтовима." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "Укупан број читања података." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "Укупан број уписа података." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "Количина података уписаних до сада, у бајтовима." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Број извршених двоуписних (doublewrite) уписа и број страна које су уписане " "у ову сврху." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" "Број извршених двоуписних (doublewrite) уписа и број страна које су уписане " "у ову сврху." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -14210,35 +14175,35 @@ msgstr "" "Број чекања која смо имали зато што је бафер дневника био премали те смо " "морали да сачекамо да буде очишћен пре наставка." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "Број захтева за упис у дневник." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "Број физичких уписа у датотеку дневника." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "Број fsyncs уписа начињених у датотеку дневника." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "Број fsync-ова за датотеку дневника на чекању." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "Број уписа у датотеку дневника на чекању." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "Број бајтова уписаних у датотеку дневника." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "Број направљених страна." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -14247,51 +14212,51 @@ msgstr "" "вредности се рачунају у странама; величина стране омогућава да се оне лако " "конвертују у бајтове." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "Број прочитаних страна." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "Број записаних страна." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "Број брава за редове које се тренутно чекају." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Просечно време за добављање браве за ред, у милисекундама." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Укупно времена проведено у добављању брава за редове, у милисекундама." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Најдуже време за добављање браве за ред, у милисекундама." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "Број пута када се морала чекати брава за ред." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "Број редова обрисаних из InnoDB табела." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "Број редова уметнутих у InnoDB табеле." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "Број редова прочитаних из InnoDB табела." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "Број редова ажурираних у InnoDB табелама." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -14299,7 +14264,7 @@ msgstr "" "Број блокова кључева у кешу кључева који су измењени али још нису послати на " "диск. Ово је раније било познато као Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -14307,7 +14272,7 @@ msgstr "" "Број неискоришћених блокова у кешу кључева. Ову вредност можете да користите " "да утврдите колики део кеша кључева је у употреби." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -14317,17 +14282,17 @@ msgstr "" "водостаја“ која показује највећи икада број блокова који је био у употреби у " "исто време." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Формат датотека за увоз" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "Број захтева за читање блока кључева из кеша." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -14337,26 +14302,26 @@ msgstr "" "је ваша вредност за key_buffer_size вероватно премала. Степен промашаја кеша " "се може израчунати као Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "Број захтева за уписивање блока кључева у кеш." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "Број физичких уписа блока кључева на диск." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -14366,17 +14331,17 @@ msgstr "" "упита. Корисно за упоређивање цене различитих планова упита за исти упит. " "Подразумевана вредност 0 значи да још није био компајлиран ниједан упит." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Број редова у INSERT DELAYED редовима чекања који чекају уписивање." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -14384,39 +14349,39 @@ msgstr "" "Број табела које су биле отваране. Ако је број велики, ваш кеш табела је " "вероватно премали." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "Број отворених датотека." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Број отворених токова (користи се првенствено за вођење дневника (logging))." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "Број отворених табела." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "Количина слободне меморије за кеш упита." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "Број погодака из кеша." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "Број упита додатих у кеш." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14428,7 +14393,7 @@ msgstr "" "упите. Кеш за упите користи стратегију најдуже некоришћеног (en: least " "recently used , LRU) да би одлучио које упите да уклони из кеша." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -14436,19 +14401,19 @@ msgstr "" "Број некешираних упита (који се не могу кеширати или нису кеширани због " "подешавања query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "Број упита регистрованих у кешу." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "Укупан број блокова у кешу за упите." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "Статус репликације отпорне на грешке (није још имплементирано)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -14456,11 +14421,11 @@ msgstr "" "Број спојева који не користе индексте. Ако ова вредност није 0, требало би " "пажљиво да проверите индексе ваших табела." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "Број спојева који су користили претрагу опсега на референтној табели." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -14468,7 +14433,7 @@ msgstr "" "Број спојева без кључева који проверавају употребу кључа после сваког реда. " "(Ако ово није 0, требало би пажљиво да проверите индексе ваших табела.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -14476,15 +14441,15 @@ msgstr "" "Број спојева који су користили опсеге на првој табели. (Обично није критично " "чак ни када је ово велико)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "Број спојева који су урадили пуно скенирање прве табеле." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Број привремених табела тренутно отворених од стране помоћне SQL нити." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -14492,11 +14457,11 @@ msgstr "" "Укупан број пута (од покретања) када је помоћна SQL нит за репликацију " "покушала трансакције." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ово је ON ако је овај сервер помоћни који је повезан на главни." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -14504,12 +14469,12 @@ msgstr "" "Број нити за које је требало више од slow_launch_time секудни да би биле " "покренуте." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Број упита за које је требало више од long_query_time секудни." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -14519,23 +14484,23 @@ msgstr "" "је ова вредност велика, требало би да размислите о повећању вредности " "системске променљиве sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "Број сортирања која су урађена са опсегом." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "Број сортираних редова." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "Број сортирања до којих је дошло скенирањем табеле." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "Број пута када је брава за табелу одмах добављена." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14547,7 +14512,7 @@ msgstr "" "би требало да оптимизујете своје упите а потом да или поделите табелу или " "табеле или да користите репликацију." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -14557,11 +14522,11 @@ msgstr "" "Threads_created/Конекције. Ако је ова вредност црвена требало би да повећате " "ваш thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "Број тренутно отворених веза." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14573,13 +14538,13 @@ msgstr "" "имплементацију нити, ово обично не доноси приметна побољшања у " "перформансама.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Кеш кључева" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "Број нити које нису успаване." @@ -14588,77 +14553,77 @@ msgstr "Број нити које нису успаване." msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 #, fuzzy #| msgid "User" msgid "User groups" msgstr "Корисник" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "Верзија сервера" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Database for user" msgid "Database level tabs" msgstr "База за корисника" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table comments" msgid "Table level tabs" msgstr "Коментари табеле" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy #| msgid "View" msgid "View users" msgstr "Поглед" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Any user" msgid "Add user group" msgstr "Било који корисник" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Нема привилегија." -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "Имена колона" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Верзија сервера" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Database for user" msgid "Database-level tabs" msgstr "База за корисника" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14722,21 +14687,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14803,138 +14764,138 @@ msgstr "Табела %s је одбачена" msgid "Variable name was expected." msgstr "Шаблон имена датотеке" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "На почетку табеле" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 #, fuzzy #| msgid "The number of tables that are open." msgid "The name of the entity was expected." msgstr "Број отворених табела." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Ред је обрисан" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "Датотеке са подацима" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy msgid "State" msgstr "Статус" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Укупно" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Време" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Време" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Запамти SQL-упит" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Label" msgid "Label:" msgstr "Назив" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Дозволи сваком кориснику да приступа овом упамћеном упиту" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created!" msgstr "Направљен маркер %s" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "Приказ као PHP код" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем при индексирању табеле `%s`" @@ -14965,29 +14926,29 @@ msgstr "" msgid "Bind parameters" msgstr "Додај ново поље" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 #, fuzzy #| msgid "Bookmark this SQL query" msgid "Bookmark this SQL query:" msgstr "Запамти SQL-упит" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Замени постојеће запамћене упите истог имена" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Граничник" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Прикажи поново овај упит" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Види само" @@ -15032,106 +14993,106 @@ msgstr "" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 #, fuzzy msgid "Created" msgstr "Направи" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Ажурирано" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy msgid "Delete version" msgstr "Направи релацију" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Извештај о праћењу" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Снимак структуре" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "активно" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "неактивно" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Дозвољава уметање и замену података." -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "База не постоји" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, fuzzy, php-format msgid "Export as %s" msgstr "Тип извоза" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 #, fuzzy msgid "Date" msgstr "Подаци" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 #, fuzzy msgid "Username" msgstr "Корисничко име:" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -15139,80 +15100,80 @@ msgctxt "None for default" msgid "None" msgstr "нема" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Направи релацију" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 #, fuzzy msgid "Untracked tables" msgstr "Провери табелу" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Прати табелу" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 #, fuzzy msgid "Tracked tables" msgstr "Провери табелу" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 #, fuzzy msgid "Last version" msgstr "Направи релацију" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking" msgstr "Дозвољава уметање и замену података." -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Верзије" @@ -15222,13 +15183,13 @@ msgstr "Верзије" msgid "Manage your settings" msgstr "Опште особине релација" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." msgstr "Измене су сачуване" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -15333,7 +15294,7 @@ msgstr "База не постоји" msgid "View dump (schema) of databases" msgstr "Прикажи садржај (схему) базе" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -15358,7 +15319,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin није могао да прекине процес %s. Вероватно је већ затворен." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -16310,52 +16271,58 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Report title" +msgid "Chart title:" +msgstr "Наслов извештаја" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 #, fuzzy msgid "Series:" msgstr "SQL упит" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Вредност" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Вредност" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside table(s):" msgid "Series column:" msgstr "Унутар табела:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Number of fields" msgid "Value Column:" msgstr "Број поља" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -16419,56 +16386,57 @@ msgstr "Коментари" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 -msgid "Internal relations" -msgstr "Унутрашње релације" - -#: templates/table/relation/common_form.phtml:11 -#, fuzzy -#| msgid "Internal relations" -msgid "Internal relation" -msgstr "Унутрашње релације" - -#: templates/table/relation/common_form.phtml:14 -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "" - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key constraints" msgstr "Искључи провере страних кључева" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 #, fuzzy #| msgid "Action" msgid "Actions" msgstr "Акција" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 #, fuzzy #| msgid "Constraints for table" msgid "Constraint properties" msgstr "Ограничења за табеле" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Додај ограничења" -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +msgid "Internal relations" +msgstr "Унутрашње релације" + +#: templates/table/relation/common_form.phtml:80 +#, fuzzy +#| msgid "Internal relations" +msgid "Internal relation" +msgstr "Унутрашње релације" + +#: templates/table/relation/common_form.phtml:83 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "" + +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -16628,7 +16596,7 @@ msgid "at beginning of table" msgstr "На почетку табеле" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16673,7 +16641,7 @@ msgstr "Позиција" msgid "Edit partitioning" msgstr "Додај ново поље" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -17996,6 +17964,41 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "макс. истовремених веза" +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "Табеле" + +#, fuzzy +#~| msgid "View" +#~ msgid "views" +#~ msgstr "Поглед" + +#, fuzzy +#~| msgid "Procedures" +#~ msgid "procedures" +#~ msgstr "Процедуре" + +#, fuzzy +#~| msgid "Event" +#~ msgid "events" +#~ msgstr "Догађаји" + +#, fuzzy +#~| msgid "Functions" +#~ msgid "functions" +#~ msgstr "Функције" + +#, fuzzy +#~| msgid "table name" +#~ msgid "Filter databases by name or regex" +#~ msgstr "назив табеле" + +#, fuzzy +#~| msgid "table name" +#~ msgid "Filter by name or regex" +#~ msgstr "назив табеле" + #, fuzzy #~| msgid "Change" #~ msgid "Taking you to %s." diff --git a/po/sr@latin.po b/po/sr@latin.po index 2fc7962459..a044e36911 100644 --- a/po/sr@latin.po +++ b/po/sr@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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:24+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Serbian (latin) =20) ? 1 : 2;\n" "X-Generator: Weblate 2.5-dev\n" -#: changelog.php:37 license.php:30 +#: changelog.php:37 license.php:33 #, php-format msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " @@ -41,7 +41,7 @@ msgstr "Kliknite da bi ste sortirali" msgid "Showing rows %1$s - %2$s." msgstr "Prikaz zapisa" -#: db_create.php:61 +#: db_create.php:62 #, php-format msgid "Database %1$s has been created." msgstr "Baza %1$s je kreirana." @@ -50,7 +50,7 @@ msgstr "Baza %1$s je kreirana." msgid "Database comment" msgstr "Komentar baze" -#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:601 +#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:599 #: templates/columns_definitions/column_definitions_form.phtml:84 #, fuzzy #| msgid "Table comments" @@ -58,7 +58,7 @@ msgid "Table comments:" msgstr "Komentari tabele" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1568 +#: libraries/insert_edit.lib.php:1575 #: libraries/navigation/nodes/NodeColumn.php:34 #: libraries/plugins/export/ExportHtmlword.php:288 #: libraries/plugins/export/ExportHtmlword.php:384 @@ -68,13 +68,14 @@ msgstr "Komentari tabele" #: libraries/plugins/export/ExportTexytext.php:282 #: libraries/plugins/export/ExportTexytext.php:373 #: libraries/plugins/export/PMA_ExportPdf.php:472 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:882 libraries/tracking.lib.php:978 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 +#: libraries/tracking.lib.php:892 libraries/tracking.lib.php:990 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:10 -#: templates/table/relation/common_form.phtml:43 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:27 +#: templates/table/relation/common_form.phtml:79 #: templates/table/relation/foreign_key_row.phtml:176 #: templates/table/relation/foreign_key_row.phtml:188 #: templates/table/relation/internal_relational_row.phtml:73 @@ -94,14 +95,14 @@ msgstr "Kolona" #: libraries/plugins/export/ExportTexytext.php:283 #: libraries/plugins/export/ExportTexytext.php:374 #: libraries/plugins/export/PMA_ExportPdf.php:474 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 #: libraries/rte/rte_list.lib.php:78 libraries/rte/rte_list.lib.php:106 #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2606 libraries/tracking.lib.php:883 -#: libraries/tracking.lib.php:975 +#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -111,7 +112,7 @@ msgstr "Tip" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:709 -#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1577 +#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1584 #: libraries/plugins/export/ExportHtmlword.php:294 #: libraries/plugins/export/ExportHtmlword.php:390 #: libraries/plugins/export/ExportLatex.php:517 @@ -120,9 +121,9 @@ msgstr "Tip" #: libraries/plugins/export/ExportTexytext.php:284 #: libraries/plugins/export/ExportTexytext.php:375 #: libraries/plugins/export/PMA_ExportPdf.php:476 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 -#: libraries/tracking.lib.php:885 libraries/tracking.lib.php:981 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/tracking.lib.php:895 libraries/tracking.lib.php:993 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 @@ -139,9 +140,9 @@ msgstr "Null" #: libraries/plugins/export/ExportTexytext.php:285 #: libraries/plugins/export/ExportTexytext.php:376 #: libraries/plugins/export/PMA_ExportPdf.php:478 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 -#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:886 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:896 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 @@ -153,8 +154,8 @@ msgstr "Podrazumevano" #: libraries/plugins/export/ExportOdt.php:488 #: libraries/plugins/export/ExportTexytext.php:378 #: libraries/plugins/export/PMA_ExportPdf.php:487 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:640 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:663 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 msgid "Links to" msgstr "Veze ka" @@ -165,37 +166,38 @@ msgstr "Veze ka" #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:381 #: libraries/plugins/export/PMA_ExportPdf.php:494 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:651 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:664 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:649 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 #: templates/columns_definitions/table_fields_definitions.phtml:65 msgid "Comments" msgstr "Komentari" -#: db_datadict.php:155 libraries/controllers/TableStructureController.php:1189 -#: libraries/controllers/TableStructureController.php:1194 -#: libraries/tracking.lib.php:925 +#: db_datadict.php:155 +#: libraries/controllers/table/TableStructureController.php:1197 +#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:79 +#: templates/table/structure/display_structure.phtml:80 msgid "Primary" msgstr "Primarni" -#: db_datadict.php:165 js/messages.php:370 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:371 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 -#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:403 -#: libraries/mult_submits.lib.php:417 +#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:408 +#: libraries/mult_submits.lib.php:422 #: libraries/plugins/export/ExportHtmlword.php:654 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:710 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2971 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3620 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1013 libraries/tracking.lib.php:1018 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2973 +#: libraries/server_privileges.lib.php:2993 +#: libraries/server_privileges.lib.php:3631 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -204,32 +206,32 @@ msgstr "Primarni" msgid "No" msgstr "Ne" -#: db_datadict.php:165 js/messages.php:515 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:516 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 #: libraries/config/FormDisplay.tpl.php:280 -#: libraries/controllers/TableStructureController.php:770 -#: libraries/controllers/TableStructureController.php:1440 -#: libraries/controllers/TableStructureController.php:1449 -#: libraries/controllers/TableStructureController.php:1454 -#: libraries/controllers/TableStructureController.php:1459 -#: libraries/controllers/TableStructureController.php:1464 -#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:199 -#: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 -#: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 +#: libraries/controllers/table/TableStructureController.php:771 +#: libraries/controllers/table/TableStructureController.php:1448 +#: libraries/controllers/table/TableStructureController.php:1457 +#: libraries/controllers/table/TableStructureController.php:1462 +#: libraries/controllers/table/TableStructureController.php:1467 +#: libraries/controllers/table/TableStructureController.php:1472 +#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:200 +#: libraries/mult_submits.lib.php:344 libraries/mult_submits.lib.php:377 +#: libraries/mult_submits.lib.php:406 libraries/mult_submits.lib.php:420 #: libraries/plugins/export/ExportHtmlword.php:655 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:788 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:711 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2968 -#: libraries/server_privileges.lib.php:2989 -#: libraries/server_privileges.lib.php:3617 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1011 libraries/tracking.lib.php:1016 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2970 +#: libraries/server_privileges.lib.php:2991 +#: libraries/server_privileges.lib.php:3628 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -242,8 +244,8 @@ msgstr "Da" msgid "View dump (schema) of database" msgstr "Prikaži sadržaj (shemu) baze" -#: db_export.php:51 db_tracking.php:102 export.php:382 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:176 +#: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 +#: libraries/controllers/DatabaseStructureController.php:157 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "Tabele nisu pronađene u bazi." @@ -260,7 +262,7 @@ msgstr "Tabele" #: db_export.php:66 libraries/Menu.php:320 libraries/Menu.php:427 #: libraries/Util.php:3407 libraries/Util.php:3417 libraries/Util.php:3423 -#: libraries/Util.php:3702 libraries/Util.php:4339 libraries/Util.php:4356 +#: libraries/Util.php:3703 libraries/Util.php:4340 libraries/Util.php:4357 #: libraries/central_columns.lib.php:729 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:320 @@ -268,10 +270,10 @@ msgstr "Tabele" #: libraries/config/user_preferences.forms.php:218 #: libraries/config/user_preferences.forms.php:259 #: libraries/config/user_preferences.forms.php:285 -#: libraries/import.lib.php:1299 libraries/navigation/nodes/NodeColumn.php:44 +#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:44 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 -#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:877 +#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:887 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -323,13 +325,13 @@ msgstr "" "Konfiguraciono skladište phpMyAmin-a je deaktivirano. Da biste saznali " "zašto, kliknite %sovde%s." -#: db_qbe.php:135 +#: db_qbe.php:136 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to choose at least one column to display!" msgstr "Morate izabrati bar jednu kolonu za prikaz" -#: db_qbe.php:152 +#: db_qbe.php:154 #, php-format msgid "Switch to %svisual builder%s" msgstr "Pređi na %svizuelnu izradu%s" @@ -359,7 +361,7 @@ msgstr "" msgid "No tables selected." msgstr "Nije izabrana ni jedna baza." -#: db_tracking.php:146 +#: db_tracking.php:149 msgid "Database Log" msgstr "Log baze podataka" @@ -391,7 +393,7 @@ msgstr "" msgid "Bad type!" msgstr "Pogrešan tip!" -#: export.php:276 +#: export.php:278 msgid "Bad parameters!" msgstr "Pogrešni parametri!" @@ -399,108 +401,108 @@ msgstr "Pogrešni parametri!" msgid "Invalid export type" msgstr "Pogrešan tip izvoza" -#: gis_data_editor.php:119 +#: gis_data_editor.php:117 #, php-format msgid "Value for the column \"%s\"" msgstr "Vrednost za kolonu %s" -#: gis_data_editor.php:147 +#: gis_data_editor.php:145 #: templates/table/gis_visualization/gis_visualization.phtml:37 msgid "Use OpenStreetMaps as Base Layer" msgstr "Iskoristi OpenStreetMaps kao osnovni sloj" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:169 +#: gis_data_editor.php:167 #, fuzzy #| msgid "SRID" msgid "SRID:" msgstr "SRID" -#: gis_data_editor.php:192 +#: gis_data_editor.php:190 #, fuzzy, php-format #| msgid "Geometry" msgid "Geometry %d:" msgstr "Geometrija" -#: gis_data_editor.php:214 +#: gis_data_editor.php:212 #, fuzzy #| msgid "Point" msgid "Point:" msgstr "Tačka" -#: gis_data_editor.php:215 gis_data_editor.php:242 gis_data_editor.php:298 -#: gis_data_editor.php:371 js/messages.php:504 +#: gis_data_editor.php:213 gis_data_editor.php:240 gis_data_editor.php:296 +#: gis_data_editor.php:369 js/messages.php:505 msgid "X" msgstr "X" -#: gis_data_editor.php:218 gis_data_editor.php:246 gis_data_editor.php:302 -#: gis_data_editor.php:377 js/messages.php:505 +#: gis_data_editor.php:216 gis_data_editor.php:244 gis_data_editor.php:300 +#: gis_data_editor.php:375 js/messages.php:506 msgid "Y" msgstr "Y" -#: gis_data_editor.php:240 gis_data_editor.php:296 gis_data_editor.php:369 -#: js/messages.php:507 +#: gis_data_editor.php:238 gis_data_editor.php:294 gis_data_editor.php:367 +#: js/messages.php:508 #, php-format msgid "Point %d" msgstr "Tačka %d" -#: gis_data_editor.php:253 gis_data_editor.php:309 gis_data_editor.php:387 -#: js/messages.php:513 +#: gis_data_editor.php:251 gis_data_editor.php:307 gis_data_editor.php:385 +#: js/messages.php:514 msgid "Add a point" msgstr "Dodaj tačku" -#: gis_data_editor.php:270 +#: gis_data_editor.php:268 #, fuzzy, php-format #| msgid "Linestring" msgid "Linestring %d:" msgstr "Linija teksta" -#: gis_data_editor.php:273 gis_data_editor.php:350 +#: gis_data_editor.php:271 gis_data_editor.php:348 #, fuzzy #| msgid "Outer Ring" msgid "Outer ring:" msgstr "Spoljni prsten" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:273 gis_data_editor.php:350 #, fuzzy, php-format #| msgid "Inner Ring" msgid "Inner ring %d:" msgstr "Unutrašnji prsten" -#: gis_data_editor.php:312 +#: gis_data_editor.php:310 msgid "Add a linestring" msgstr "Dodaj novu liniju teksta" -#: gis_data_editor.php:313 gis_data_editor.php:392 js/messages.php:514 +#: gis_data_editor.php:311 gis_data_editor.php:390 js/messages.php:515 msgid "Add an inner ring" msgstr "Dodaj unutrašnji prsten" -#: gis_data_editor.php:334 +#: gis_data_editor.php:332 #, fuzzy, php-format #| msgid "Polygon" msgid "Polygon %d:" msgstr "Poligon" -#: gis_data_editor.php:398 +#: gis_data_editor.php:396 msgid "Add a polygon" msgstr "Dodaj poligon" -#: gis_data_editor.php:404 +#: gis_data_editor.php:402 msgid "Add geometry" msgstr "Dodaj geometriju" -#: gis_data_editor.php:410 js/messages.php:345 libraries/DbSearch.php:462 -#: libraries/DisplayResults.php:1783 libraries/browse_foreigners.lib.php:142 +#: gis_data_editor.php:408 js/messages.php:346 libraries/DbSearch.php:462 +#: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:151 #: libraries/display_export.lib.php:404 libraries/display_export.lib.php:410 -#: libraries/display_import.lib.php:403 libraries/index.lib.php:42 -#: libraries/insert_edit.lib.php:1547 libraries/insert_edit.lib.php:1584 +#: libraries/display_import.lib.php:403 libraries/index.lib.php:45 +#: libraries/insert_edit.lib.php:1554 libraries/insert_edit.lib.php:1591 #: libraries/normalization.lib.php:168 libraries/normalization.lib.php:825 #: libraries/operations.lib.php:47 libraries/operations.lib.php:114 #: libraries/operations.lib.php:266 libraries/operations.lib.php:309 #: libraries/operations.lib.php:806 libraries/operations.lib.php:877 -#: libraries/operations.lib.php:926 libraries/operations.lib.php:1336 -#: libraries/operations.lib.php:1653 +#: libraries/operations.lib.php:926 libraries/operations.lib.php:1339 +#: libraries/operations.lib.php:1656 #: libraries/plugins/auth/AuthenticationCookie.php:239 #: libraries/replication_gui.lib.php:124 libraries/replication_gui.lib.php:163 #: libraries/replication_gui.lib.php:328 libraries/replication_gui.lib.php:465 @@ -509,12 +511,12 @@ msgstr "Dodaj geometriju" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2343 -#: libraries/server_privileges.lib.php:3114 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_user_groups.lib.php:285 -#: libraries/sql_query_form.lib.php:369 libraries/sql_query_form.lib.php:429 -#: libraries/tracking.lib.php:536 libraries/tracking.lib.php:656 +#: libraries/server_privileges.lib.php:2345 +#: libraries/server_privileges.lib.php:3116 +#: libraries/server_privileges.lib.php:3735 +#: libraries/server_user_groups.lib.php:290 +#: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 +#: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 #: prefs_manage.php:280 prefs_manage.php:358 #: templates/columns_definitions/column_definitions_form.phtml:64 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 @@ -527,11 +529,11 @@ msgstr "Dodaj geometriju" msgid "Go" msgstr "Kreni" -#: gis_data_editor.php:413 +#: gis_data_editor.php:411 msgid "Output" msgstr "Izlaz" -#: gis_data_editor.php:416 +#: gis_data_editor.php:414 #, fuzzy #| msgid "" #| "Choose \"GeomFromText\" from the \"Function\" column and paste the string " @@ -549,7 +551,7 @@ msgstr "" msgid "Succeeded" msgstr "Pristup odbijen!" -#: import.php:59 js/messages.php:588 +#: import.php:59 js/messages.php:589 msgid "Failed" msgstr "" @@ -616,7 +618,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "Ne mogu da učitam dodatke za uvoz, molim proverite svoju instalaciju!" -#: import.php:669 libraries/sql.lib.php:744 libraries/sql.lib.php:1468 +#: import.php:669 libraries/sql.lib.php:754 libraries/sql.lib.php:1485 #, fuzzy, php-format #| msgid "Bookmark %s created" msgid "Bookmark %s has been created." @@ -652,7 +654,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "" -#: import_status.php:111 js/messages.php:444 libraries/Util.php:797 +#: import_status.php:111 js/messages.php:445 libraries/Util.php:797 #: libraries/export.lib.php:523 #: libraries/plugins/schema/ExportRelationSchema.php:301 user_password.php:268 msgid "Back" @@ -678,7 +680,7 @@ msgstr "" msgid "General settings" msgstr "Opšta podešavanja" -#: index.php:191 js/messages.php:617 +#: index.php:191 js/messages.php:618 #: libraries/display_change_password.lib.php:54 #: libraries/display_change_password.lib.php:57 user_password.php:262 msgid "Change password" @@ -798,7 +800,11 @@ msgstr "" msgid "List of changes" msgstr "Lista izmena" -#: index.php:453 +#: index.php:438 libraries/server_plugins.lib.php:83 +msgid "License" +msgstr "" + +#: index.php:460 #, fuzzy #| msgid "" #| "Your configuration file contains settings (root with no password) that " @@ -816,7 +822,7 @@ msgstr "" "ovim podešavanjima, otvoren je za upade, i zaista treba da ispravite ovaj " "sigurnosni rizik." -#: index.php:470 +#: index.php:477 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -826,7 +832,7 @@ msgstr "" "opcija je nekompatibilna sa phpMyAdmin i može dovesti do grešaka u nekim " "podacima!" -#: index.php:485 +#: index.php:492 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -836,7 +842,7 @@ msgstr "" "skup znakova. Bez ekstenzije mbstring phpMyAdmin ne može ispravno da " "razdvaja stringove i to može dovesti do neočekivanih rezultata." -#: index.php:502 +#: index.php:509 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than " @@ -844,17 +850,17 @@ msgid "" "expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:521 +#: index.php:528 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: index.php:537 +#: index.php:544 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Konfiguraciona datoteka zahteva tajnu lozinku (blowfish_secret)." -#: index.php:550 +#: index.php:557 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. It is strongly recommended to remove it " @@ -862,7 +868,7 @@ msgid "" "may be compromised by unauthorized people downloading your configuration." msgstr "" -#: index.php:566 +#: index.php:573 #, fuzzy, php-format #| msgid "" #| "The phpMyAdmin configuration storage is not completely configured, some " @@ -875,12 +881,12 @@ msgstr "" "dodatne mogućnosti su deaktivirane. Da bi ste saznali zašto kliknite %sovde" "%s." -#: index.php:573 +#: index.php:580 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" -#: index.php:619 +#: index.php:626 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -889,7 +895,7 @@ msgstr "" "Verzija vaše PHP MySQL biblioteke %s se razlikuje od verzije vašeg MySQL " "servera %s. Ovo može dovesti do nepredvidljivog ponašanja." -#: index.php:647 +#: index.php:654 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -909,7 +915,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "Da li stvarno hoćete da izvršite \"%s\"?" -#: js/messages.php:45 libraries/mult_submits.lib.php:397 +#: js/messages.php:45 libraries/mult_submits.lib.php:402 msgid "You are about to DESTROY a complete database!" msgstr "Ovim ćete UNIŠTITI kompletnu bazu podataka!" @@ -1073,7 +1079,7 @@ msgid "Save & close" msgstr "Sačuvaj kao datoteku" #: js/messages.php:109 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1551 prefs_manage.php:364 +#: libraries/insert_edit.lib.php:1558 prefs_manage.php:364 #: prefs_manage.php:375 msgid "Reset" msgstr "Poništi" @@ -1152,10 +1158,10 @@ msgstr "Dodaj %d kolona u indeks" msgid "You have to add at least one column." msgstr "Morate dodati barem jednu kolonu." -#: js/messages.php:129 libraries/insert_edit.lib.php:1549 +#: js/messages.php:129 libraries/insert_edit.lib.php:1556 #: templates/columns_definitions/column_definitions_form.phtml:159 #: templates/table/index_form.phtml:237 -#: templates/table/relation/common_form.phtml:108 +#: templates/table/relation/common_form.phtml:127 msgid "Preview SQL" msgstr "" @@ -1206,8 +1212,8 @@ msgstr "Lozinke nisu identične!" msgid "Removing Selected Users" msgstr "Uklanjanje izabranih korisnika" -#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:461 -#: libraries/tracking.lib.php:831 +#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:471 +#: libraries/tracking.lib.php:841 msgid "Close" msgstr "Zatvori" @@ -1235,7 +1241,7 @@ msgstr "Red je obrisan" #. l10n: Other, small valued, queries #: js/messages.php:155 libraries/ServerStatusData.php:130 -#: libraries/server_status_queries.lib.php:148 +#: libraries/server_status_queries.lib.php:150 msgid "Other" msgstr "Ostalo" @@ -1415,7 +1421,7 @@ msgstr "Pitanja" msgid "Traffic" msgstr "Saobraćaj" -#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4330 +#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4331 #: libraries/server_status_monitor.lib.php:258 msgid "Settings" msgstr "Podešavanja" @@ -1430,9 +1436,9 @@ msgstr "Dodaj grafikon na grid" msgid "Please add at least one variable to the series!" msgstr "Molimo vas da dodate bar jednu promenljivu u seriju podataka" -#: js/messages.php:216 libraries/DisplayResults.php:1477 +#: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1549,7 +1555,7 @@ msgstr "Izmeni podešavanja" msgid "Current settings" msgstr "Trenutna podešavanja" -#: js/messages.php:253 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:253 msgid "Chart title" msgstr "Naslov grafikona" @@ -1635,21 +1641,21 @@ msgstr "Aniliziram…" msgid "Explain output" msgstr "Objasni izlaz" -#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4326 +#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4327 #: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:396 #: libraries/rte/rte_list.lib.php:104 -#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:282 -#: libraries/tracking.lib.php:1623 +#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:284 +#: libraries/tracking.lib.php:1639 msgid "Status" msgstr "Status" -#: js/messages.php:289 js/messages.php:870 +#: js/messages.php:289 js/messages.php:862 #: libraries/plugins/export/ExportHtmlword.php:484 #: libraries/plugins/export/ExportOdt.php:600 #: libraries/plugins/export/ExportTexytext.php:445 #: libraries/plugins/export/PMA_ExportPdf.php:314 #: libraries/rte/rte_list.lib.php:93 -#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:239 +#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:243 msgid "Time" msgstr "Vreme" @@ -1736,10 +1742,10 @@ msgstr "" "podrazumevanu konfiguraciju…" #: js/messages.php:322 libraries/Menu.php:355 libraries/Menu.php:457 -#: libraries/Menu.php:578 libraries/Util.php:4329 libraries/Util.php:4344 -#: libraries/Util.php:4361 libraries/config/messages.inc.php:260 +#: libraries/Menu.php:578 libraries/Util.php:4330 libraries/Util.php:4345 +#: libraries/Util.php:4362 libraries/config/messages.inc.php:260 #: libraries/display_import.lib.php:108 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:241 +#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:241 #: setup/frames/menu.inc.php:26 msgid "Import" msgstr "Uvoz" @@ -1800,7 +1806,13 @@ msgstr "Test" msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 libraries/server_variables.lib.php:159 +#: js/messages.php:343 +#, fuzzy +#| msgid "Bad parameters!" +msgid "No parameters found!" +msgstr "Pogrešni parametri!" + +#: js/messages.php:347 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 @@ -1811,71 +1823,71 @@ msgstr "" msgid "Cancel" msgstr "Otkaži" -#: js/messages.php:349 libraries/Header.php:457 +#: js/messages.php:350 libraries/Header.php:457 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "Izmeni podešavanja" -#: js/messages.php:350 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:351 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:353 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:354 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:124 msgid "Loading…" msgstr "Učitavanje…" -#: js/messages.php:354 +#: js/messages.php:355 msgid "Request aborted!!" msgstr "" -#: js/messages.php:355 +#: js/messages.php:356 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "Obrada zahteva" -#: js/messages.php:356 +#: js/messages.php:357 #, fuzzy #| msgid "Query cache" msgid "Request failed!!" msgstr "Keš upita" -#: js/messages.php:357 +#: js/messages.php:358 #, fuzzy #| msgid "Error in processing request" msgid "Error in processing request" msgstr "Greška u procesiranju zahteva" -#: js/messages.php:358 +#: js/messages.php:359 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:359 +#: js/messages.php:360 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:360 libraries/db_common.inc.php:73 +#: js/messages.php:361 libraries/db_common.inc.php:73 #: libraries/db_table_exists.lib.php:33 libraries/server_databases.lib.php:462 msgid "No databases selected." msgstr "Nije izabrana ni jedna baza." -#: js/messages.php:361 +#: js/messages.php:362 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "Brisanje kolone" -#: js/messages.php:362 +#: js/messages.php:363 #, fuzzy #| msgid "Adding Primary Key" msgid "Adding primary key" msgstr "Dodavanje primarnog ključa" -#: js/messages.php:363 +#: js/messages.php:364 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1885,232 +1897,232 @@ msgstr "Dodavanje primarnog ključa" msgid "OK" msgstr "U redu" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Click to dismiss this notification" msgstr "Kliknite da bi ste zatvorili ovo obaveštenje" -#: js/messages.php:367 +#: js/messages.php:368 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "Preimenovanje baza podataka" -#: js/messages.php:368 +#: js/messages.php:369 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "Kopiranje baze" -#: js/messages.php:369 +#: js/messages.php:370 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "Izmena seta znakova" -#: js/messages.php:373 libraries/Util.php:3289 +#: js/messages.php:374 libraries/Util.php:3289 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Isključi provere stranih ključeva" -#: js/messages.php:376 +#: js/messages.php:377 #, fuzzy msgid "Failed to get real row count." msgstr "Neuspelo upisivanje datoteke na disk." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Searching" msgstr "Pretraga" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide search results" msgstr "Sakrij tezultate pretrage" -#: js/messages.php:381 +#: js/messages.php:382 msgid "Show search results" msgstr "Prikaži rezultate pretrage" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Browsing" msgstr "Pregledanje" -#: js/messages.php:383 +#: js/messages.php:384 msgid "Deleting" msgstr "Brisanje" -#: js/messages.php:387 +#: js/messages.php:388 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Definicija uskladištene funkcije mora imati RETURN iskaz!" -#: js/messages.php:388 libraries/DisplayResults.php:4832 -#: libraries/DisplayResults.php:5091 libraries/Menu.php:347 -#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3709 -#: libraries/Util.php:3710 libraries/Util.php:4328 libraries/Util.php:4343 -#: libraries/Util.php:4360 libraries/config/messages.inc.php:254 +#: js/messages.php:389 libraries/DisplayResults.php:4850 +#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 +#: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 +#: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2448 -#: libraries/server_privileges.lib.php:2527 -#: libraries/server_privileges.lib.php:2873 -#: libraries/server_privileges.lib.php:3532 -#: libraries/server_status_monitor.lib.php:321 prefs_manage.php:306 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2875 +#: libraries/server_privileges.lib.php:3543 +#: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 msgid "Export" msgstr "Izvoz" -#: js/messages.php:391 libraries/rte/rte_routines.lib.php:742 +#: js/messages.php:392 libraries/rte/rte_routines.lib.php:742 msgid "ENUM/SET editor" msgstr "ENUM/SET uređivač" -#: js/messages.php:392 +#: js/messages.php:393 #, php-format msgid "Values for column %s" msgstr "Vrednosti za kolonu %s" -#: js/messages.php:393 +#: js/messages.php:394 msgid "Values for a new column" msgstr "Vrednosti za novu kolonu" -#: js/messages.php:394 +#: js/messages.php:395 #, fuzzy #| msgid "Enter each value in a separate field" msgid "Enter each value in a separate field." msgstr "Unesi svaku vrednost u posebno polje" -#: js/messages.php:395 +#: js/messages.php:396 #, php-format msgid "Add %d value(s)" msgstr "Dodaj %d vrednost(i)" -#: js/messages.php:399 +#: js/messages.php:400 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Imajte u vidu: Ako datoteka sadrži više tabela, one će biti kombinovane u " "jednu." -#: js/messages.php:403 +#: js/messages.php:404 msgid "Hide query box" msgstr "Sakrij okvir sa upitima" -#: js/messages.php:404 +#: js/messages.php:405 msgid "Show query box" msgstr "Prikažiokvir sa upitima" -#: js/messages.php:405 libraries/Console.php:88 libraries/Console.php:217 -#: libraries/DisplayResults.php:3457 libraries/DisplayResults.php:4816 +#: js/messages.php:406 libraries/Console.php:88 libraries/Console.php:217 +#: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4834 #: libraries/Index.php:721 libraries/Util.php:727 libraries/Util.php:1238 -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:119 +#: libraries/server_user_groups.lib.php:121 #: libraries/server_variables.lib.php:242 #: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 msgid "Edit" msgstr "Promeni" -#: js/messages.php:406 libraries/Console.php:89 libraries/DbSearch.php:360 -#: libraries/DisplayResults.php:3526 libraries/DisplayResults.php:4800 +#: js/messages.php:407 libraries/Console.php:89 libraries/DbSearch.php:360 +#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4818 #: libraries/central_columns.lib.php:854 #: libraries/central_columns.lib.php:1200 libraries/display_export.lib.php:227 -#: libraries/server_user_groups.lib.php:129 -#: libraries/sql_query_form.lib.php:416 libraries/tracking.lib.php:480 +#: libraries/server_user_groups.lib.php:131 +#: libraries/sql_query_form.lib.php:417 libraries/tracking.lib.php:490 #: setup/frames/index.inc.php:187 setup/frames/index.inc.php:295 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Obriši" -#: js/messages.php:407 libraries/DisplayResults.php:915 -#: libraries/DisplayResults.php:923 +#: js/messages.php:408 libraries/DisplayResults.php:919 +#: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d nije ispravan broj reda." -#: js/messages.php:408 -#: libraries/controllers/table/TableSearchController.php:435 -#: libraries/controllers/table/TableSearchController.php:920 -#: libraries/sql.lib.php:193 tbl_change.php:159 +#: js/messages.php:409 +#: libraries/controllers/table/TableSearchController.php:432 +#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "Pregledaj strane vrednosti" -#: js/messages.php:409 +#: js/messages.php:410 msgid "No auto-saved query" msgstr "" -#: js/messages.php:410 +#: js/messages.php:411 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Promenljiva" -#: js/messages.php:413 libraries/normalization.lib.php:889 +#: js/messages.php:414 libraries/normalization.lib.php:889 msgid "Pick" msgstr "" -#: js/messages.php:414 +#: js/messages.php:415 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "Nema odabranih redova" -#: js/messages.php:415 +#: js/messages.php:416 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Pretraživanje baze" -#: js/messages.php:417 +#: js/messages.php:418 #, 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:420 +#: js/messages.php:421 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "Slobodna memorija" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Are you sure?" msgstr "" -#: js/messages.php:423 +#: js/messages.php:424 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "Doprinesi" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Primarni ključ je upravo dodat %s." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Izveštaj o praćenju" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 #, fuzzy @@ -2118,258 +2130,258 @@ msgstr "" msgid "End of step" msgstr "Na kraju tabele" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Gotovo" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Nije izabrana ni jedna baza." -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Dodaj privilegije na sledećoj tabeli" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Nije izabrana ni jedna baza." -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Sačuvaj" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Sakrij kriterijume za pretragu" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Prikaži kriterijume za pretragu" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Table Search" msgid "Range search" msgstr "Pretraga tabele" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Column names: " msgid "Column maximum:" msgstr "Imena kolona: " -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Column names: " msgid "Column minimum:" msgstr "Imena kolona: " -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "Maksimalan broj tabela" -#: js/messages.php:474 +#: js/messages.php:475 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "Maksimalan broj tabela" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "Sakrij kriterijume za pretragu" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "Prikaži kriterijume za pretragu" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "Svaka tačka pretsavlja jedan red podataka." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "Ako zadržite kursor miša iznad tačke biće prikazan opis." -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Da bi ste uvećali prikaz, izaberite deo prikaza sa mišem." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Klikni na tačku sa podacima da bi video ili eventualno izmenio red podataka." -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Veličina prikaza može da se promeni ako ga uhvatite i povučete mišem u " "donjem desnom uglu." -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "Izaberi dve kolone" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "Izaberite dve različite kolone" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "Sadržaj tačke podataka" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignoriši" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Kopiraj" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Tačka" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Linija teksta" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Poligon" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometrija" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Unutrašnji prsten" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Outer Ring" msgid "Outer ring" msgstr "Spoljni prsten" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Izaberite referencirani ključ" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Izaberi strani ključ" -#: js/messages.php:529 +#: js/messages.php:530 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the primary key or a unique key!" msgstr "Molimo izaberite primarni ili jedinstveni ključ" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Izaberi kolonu za prikaz" -#: js/messages.php:532 +#: js/messages.php:533 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?" @@ -2377,96 +2389,96 @@ msgstr "" "Niste snimili izmene u raspored. Biće izgubljene ako ih ne snimite. Da li " "želite da nastavite?" -#: js/messages.php:535 +#: js/messages.php:536 msgid "Page name" msgstr "Ime strane" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select page" msgid "Save page" msgstr "Izaberi stranu" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select page" msgid "Save page as" msgstr "Izaberi stranu" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "Slobodne strane" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy #| msgid "Select page" msgid "Delete page" msgstr "Izaberi stranu" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "Jedinica" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Izaberite stranu koju menjate" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "Nije ispravan broj porta" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Uredi ili izvezi relacionu shemu" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Izmene su sačuvane" -#: js/messages.php:550 +#: js/messages.php:551 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "Dodaj opciju za kolonu " -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Pošalji" -#: js/messages.php:555 +#: js/messages.php:556 #, fuzzy #| msgid "Press escape to cancel editing" msgid "Press escape to cancel editing." msgstr "Prtisni escape da otkažeš uređivanje" -#: js/messages.php:557 +#: js/messages.php:558 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?" @@ -2474,49 +2486,49 @@ msgstr "" "Izmenili ste neke podatke i izmene nisu sačuvane. Da li ste sigurni da " "želite da napustite ovu stranu pre nego što snimite podatke?" -#: js/messages.php:560 +#: js/messages.php:561 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder." msgstr "Povucite da bi ste promenili redosled" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "Kliknite da postavite/skinete oznaku" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy #| msgid "Copy column name" msgid "Double-click to copy column name." msgstr "Kopiraj ime kolone" -#: js/messages.php:570 +#: js/messages.php:571 #, fuzzy #| msgid "Click the drop-down arrow
to toggle column's visibility" msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Kliknite strelici na dole
da bi ste izmenili vidljivost kolone" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Prikaži sve" -#: js/messages.php:574 +#: js/messages.php:575 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." @@ -2525,53 +2537,53 @@ msgstr "" "izmene u gridu, checkbox, Edit, Copy i Delete linkovi može da se desi da ne " "rade nakon snimanja." -#: js/messages.php:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Originalna pozicija" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Otkaži" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Prekinuto" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "Podrazumevane opcije uvoza" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Izaberi tabele" -#: js/messages.php:598 +#: js/messages.php:599 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -2580,7 +2592,7 @@ msgstr "" "Možete izmeniti većinu kolona
tako što kliknete direktno na njen " "sadržaj." -#: js/messages.php:603 +#: js/messages.php:604 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -2589,111 +2601,72 @@ msgstr "" "Možete izmeniti većinu kolona
tako što kliknete direktno na njen " "sadržaj." -#: js/messages.php:609 +#: js/messages.php:610 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "Idi na link" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Copy column name" msgid "Copy column name." msgstr "Kopiraj ime kolone" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Generiši lozinku" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Generiši" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "Još" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Prikaži sve" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Hide indexes" msgid "Hide panel" msgstr "Sakrij indekse" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "Prikaži logo u levom okviru" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "Prilagođavanje glavnog okvira" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "Prilagođavanje glavnog okvira" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 #, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "Tabele" - -#: js/messages.php:633 -#, fuzzy -#| msgid "Views" -msgid "views" -msgstr "Pogledi" - -#: js/messages.php:634 -#, fuzzy -#| msgid "Procedures" -msgid "procedures" -msgstr "Procedure" - -#: js/messages.php:635 -#, fuzzy -#| msgid "event" -msgid "events" -msgstr "događaj" - -#: js/messages.php:636 -#, fuzzy -#| msgid "Functions" -msgid "functions" -msgstr "Funkcije" - -#: js/messages.php:640 -#, 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:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2703,429 +2676,429 @@ msgstr "" "nadogradnji. Najnovije verzija je %s, objavljena %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", poslednja stabilna verzija:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "Ažurno" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "Napravi pogled" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Port na serveru" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "Port na serveru" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "Izmeni podešavanja" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Prikaži otvorene tabele" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignoriši" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Prikaži ponovo ovaj upit" -#: js/messages.php:701 +#: js/messages.php:693 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "Da li stvarno hoćete da izvršite \"%s\"?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, fuzzy, php-format #| msgid "Executed queries" msgid "%s queries executed %s times in %s seconds." msgstr "Izvršeni upiti" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Komentari tabele" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Sakrij tezultate pretrage" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "Prethodni" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "Sledeći" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Danas" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "Januar" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "Februar" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "Mart" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "April" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Maj" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "Jun" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "Jul" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "Avgust" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "Septembar" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "Oktobar" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "Novembar" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "Decembar" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Avg" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Dec" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "Nedelja" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "Ponedeljak" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "Utorak" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "Sreda" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "Četvrtak" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "Petak" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "Subota" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Sre" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "Ne" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "Po" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "Ut" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "Sr" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "Če" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "Pe" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "Su" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "Vk" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "kalendar-mesec-godina" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "nema" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Čas" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Minut" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Sekund" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Koristi tekst polje" -#: js/messages.php:886 +#: js/messages.php:878 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "Nije ispravan broj porta" -#: js/messages.php:887 +#: js/messages.php:879 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "Nije ispravan broj porta" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "Nije ispravan broj porta" -#: js/messages.php:889 +#: js/messages.php:883 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "Nije ispravan broj porta" -#: js/messages.php:890 +#: js/messages.php:885 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "Nije ispravan broj porta" -#: js/messages.php:891 +#: js/messages.php:888 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "Nije ispravan broj porta" -#: js/messages.php:892 +#: js/messages.php:890 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" @@ -3137,53 +3110,53 @@ msgstr "Nije ispravan broj porta" msgid "Please enter the same value again" msgstr "Nije ispravan broj porta" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "Nije ispravan broj porta" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "Nije ispravan broj porta" -#: js/messages.php:898 +#: js/messages.php:917 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "Nije ispravan broj porta" -#: js/messages.php:899 +#: js/messages.php:922 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "Nije ispravan broj porta" -#: js/messages.php:901 +#: js/messages.php:928 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "Nije ispravan broj porta" -#: js/messages.php:902 +#: js/messages.php:933 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "Nije ispravan broj porta" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Greška" @@ -3273,11 +3246,12 @@ msgstr "podupit" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3326,7 +3300,7 @@ msgstr "" msgid "Explain" msgstr "Objasni SQL" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Profilisanje" @@ -3370,8 +3344,8 @@ msgid "History" msgstr "SQL istorijat" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3558,7 +3532,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Pređi na kopiranu tabelu" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3566,26 +3540,26 @@ msgstr "" "Nema odgovora sa servera (ili priključak lokalnog servera nije ispravno " "podešen)." -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "Server ne odgovara." -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Konekcija za controluser-a, onako kako je definisana u vašoj konfiguraciji, " "nije uspela." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3595,8 +3569,8 @@ msgstr "" msgid "Ascending" msgstr "Rastući" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3766,8 +3740,8 @@ msgstr[1] "%s pogodaka unutar tabele %s" msgstr[2] "%s pogodaka unutar tabele %s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3811,123 +3785,123 @@ msgstr "ništa" msgid "Inside column:" msgstr "Unutar kolone::" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "Snimi izmenjene podatke" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "Vrati redosled kolone" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 #, fuzzy #| msgid "Filters" msgid "Filter rows" msgstr "Filteri" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Search in database" msgid "Search this table" msgstr "Pretraživanje baze" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "Početak" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "Prethodna" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "Sledeća" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "Kraj" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Sve" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Broj redova:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Sortiraj po ključu" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "Parcijalni tekstovi" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "Potpuni tekstovi" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Relacioni ključ" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Display foreign key relationships" msgid "Display column for relations" msgstr "Prikaži relacije stranih ključeva" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "Sakrij transformacije pregledača" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Red je obrisan" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Obustavi" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Može biti približno. Vidite [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -3935,7 +3909,8 @@ msgstr "Može biti približno. Vidite [doc@faq3-11]FAQ 3.11[/doc]" msgid "Your SQL query has been executed successfully." msgstr "Vaš SQL upit je uspešno izvršen" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3944,43 +3919,43 @@ msgstr "" "Ovaj pogled ima najmanje ovaj broj redova. Molimo vas pogledajte " "%sdokumentaciju%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Prikaz zapisa" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "ukupno" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "Upit je trajao %01.4f sekundi" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Označeno:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3988,25 +3963,25 @@ msgstr "Označeno:" msgid "Check all" msgstr "Označi sve" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Za štampu" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Operacije na rezultatima upita" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Prikaži grafikon" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 #, fuzzy #| msgid "Link not found" msgid "Link not found!" @@ -4118,19 +4093,19 @@ msgstr "Indeks nije definisan!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Indeksi" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -4139,24 +4114,24 @@ msgid "Action" msgstr "Akcija" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Ime ključa" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Jedinstveni" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Pakovano" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Kardinalnost" @@ -4164,8 +4139,8 @@ msgstr "Kardinalnost" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -4175,8 +4150,8 @@ msgid "Collation" msgstr "Sortiranje" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -4192,15 +4167,15 @@ msgstr "Primarni ključ je obrisan." msgid "Index %s has been dropped." msgstr "Indeks %s je obrisan." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Odbaci" @@ -4239,12 +4214,13 @@ msgstr "Pogled" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4252,7 +4228,7 @@ msgstr "Tabela" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4261,8 +4237,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4270,41 +4246,41 @@ msgid "Search" msgstr "Pretraživanje" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Novi zapis" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilegije" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Operacije" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4315,16 +4291,16 @@ msgstr "Okidači" msgid "Database seems to be empty!" msgstr "Baza je izgleda prazna!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Upit po primeru" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rutine" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4332,22 +4308,22 @@ msgstr "Rutine" msgid "Events" msgstr "Događaji" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Dizajner" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "Textarea columns" msgid "Central columns" msgstr "Kolone tekstulanih polja" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Baze" @@ -4358,33 +4334,33 @@ msgid "User accounts" msgstr "Korisnici" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Binarni dnevnik" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikacija" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Promenljive" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Kodne strane" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Skladištenja" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4718,7 +4694,7 @@ msgstr "Ne mogu da promenim ključ u PRIMARY (primarni) !" msgid "No index parts defined!" msgstr "Delovi ključa nisu definisani!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5148,40 +5124,40 @@ msgstr "Ova funkcionalnost %s je pogođena poznatom greškom, vidite %s" msgid "Click to toggle" msgstr "Kliknite da biste zamenili" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Pretražite vaš kompjuter:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" "Izaberi iz direkorijuma otpremljenih datoteka %s na web serveru:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Direktorijum koji ste izabrali za slanje nije dostupan." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 #, fuzzy #| msgid "There are no files to upload" msgid "There are no files to upload!" msgstr "Nema datoteka za otpremanje" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Isprazni" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "Izvrši" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Štampaj" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "Korisnici" @@ -5356,8 +5332,8 @@ msgid "Add new column" msgstr "Dodaj kolonu" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5427,19 +5403,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "Trebalo bi da unapredite vaš %s server na verziju %s ili noviju." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "moguća zloupotreba" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "otkriven numerički ključ" @@ -6344,7 +6320,7 @@ msgid "Remember file name template" msgstr "Zapamti šablon imena datoteke" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj AUTO_INCREMENT vrednost" @@ -6387,7 +6363,7 @@ msgstr "Nedostaju phpMyAdmin skladišne tabele" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Dodaj %s" @@ -8214,7 +8190,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "Zadrži okvir za upite" @@ -8520,111 +8496,35 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Open Document Text" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Tabela %s je ispražnjena." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "Pogled %s je odbačen" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "Tabela %s je odbačena" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "nepoznat" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: libraries/controllers/TableStructureController.php:250 -#, fuzzy -#| msgid "No rows selected" -msgid "No column selected." -msgstr "Nema odabranih redova" - -#: libraries/controllers/TableStructureController.php:484 -#, fuzzy -#| msgid "The selected users have been deleted successfully." -msgid "The columns have been moved successfully." -msgstr "Izabrani korisnici su uspešno obrisani." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "Tabela %1$s je uspešno izmenjena." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "Greška u upitu" - -#: libraries/controllers/TableStructureController.php:967 -#, fuzzy, php-format -#| msgid "Table %1$s has been altered successfully." -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "Tabela %1$s je uspešno izmenjena." - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Promeni" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Ključ" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Tekst ključ" - -#: libraries/controllers/TableStructureController.php:1201 -#, fuzzy -#| msgid "Browse distinct values" -msgid "Distinct values" -msgstr "Pregledaj različite vrednosti" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8640,6 +8540,14 @@ msgstr "" msgid "No data to display" msgstr "Nema podataka" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "Tabela %1$s je uspešno izmenjena." + #: libraries/controllers/table/TableRelationController.php:212 #, fuzzy #| msgid "Thread %s was successfully killed." @@ -8652,25 +8560,93 @@ msgstr "Proces %s je uspešno prekinut." msgid "Internal relations were successfully updated." msgstr "Dodata interna relacija" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Table Search" msgid "Table search" msgstr "Pretraga tabele" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Zoom Search" msgid "Zoom search" msgstr "Uvećaj polje za pretragu" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "Hide search criteria" msgid "Find and replace" msgstr "Sakrij kriterijume za pretragu" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: libraries/controllers/table/TableStructureController.php:251 +#, fuzzy +#| msgid "No rows selected" +msgid "No column selected." +msgstr "Nema odabranih redova" + +#: libraries/controllers/table/TableStructureController.php:485 +#, fuzzy +#| msgid "The selected users have been deleted successfully." +msgid "The columns have been moved successfully." +msgstr "Izabrani korisnici su uspešno obrisani." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "Greška u upitu" + +#: libraries/controllers/table/TableStructureController.php:975 +#, fuzzy, php-format +#| msgid "Table %1$s has been altered successfully." +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "Tabela %1$s je uspešno izmenjena." + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Promeni" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Ključ" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Tekst ključ" + +#: libraries/controllers/table/TableStructureController.php:1209 +#, fuzzy +#| msgid "Browse distinct values" +msgid "Distinct values" +msgstr "Pregledaj različite vrednosti" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8680,7 +8656,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Nema izmena" @@ -8753,7 +8729,7 @@ msgstr "Napravi" msgid "Create database:" msgstr "Napravi bazu" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Nema privilegija" @@ -9495,69 +9471,69 @@ msgid "Dump has been saved to file %s." msgstr "Sadržaj baze je sačuvan u datoteku %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan rezultat (nula redova)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "Idi na bazu: %s" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "Idi na tabelu: %s" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "Struktura %s" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "Kreiraj indeks na  %s kolonama" @@ -9580,70 +9556,70 @@ msgstr "Funkcija" msgid "Binary" msgstr "Binarni" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 #, fuzzy #| msgid "Because of its length,
this column might not be editable" msgid "Because of its length,
this column might not be editable." msgstr "Zbog njene veličine,
ova kolona možda neće moći da se izmeni" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Binarni - ne menjaj" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "ili" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "direktorijum za slanje veb servera" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "Uredi/Umetni" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "Nastavi umetanje sa %s redova" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "i onda" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Unesi kao novi red" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "Prikaži insert upit" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Nazad na prethodnu stranu" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Dodaj još jedan novi red" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Vrati se na ovu stranu" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Uredi sledeći red" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9653,7 +9629,7 @@ msgstr "" "Koristite TAB taster za pomeranje od polja do polja, ili CTRL+strelice za " "slobodno pomeranje" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9665,11 +9641,11 @@ msgstr "" msgid "Value" msgstr "Vrednost" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "Prikaz kao SQL upit" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9685,41 +9661,41 @@ msgstr "Nema" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table prefix:" msgstr "Zameni prefix tabele" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Copy table with prefix" msgid "Copy table with prefix:" msgstr "Kopiraj tabelu sa prefiksom" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "Iz" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Replace table prefix" msgid "Add table prefix:" msgstr "Zameni prefix tabele" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -9951,8 +9927,8 @@ msgstr "Procedure" msgid "Views:" msgstr "Pogledi" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Prikaži" @@ -9995,10 +9971,9 @@ msgstr[1] "" msgstr[2] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "table name" -msgid "Filter databases by name or regex" -msgstr "naziv tabele" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -10007,12 +9982,6 @@ msgstr "naziv tabele" msgid "Clear fast filter" msgstr "Sačuvaj kao datoteku" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "Filter tables by name" -msgid "Filter by name or regex" -msgstr "Filtriraj tabele po imenu" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -10415,7 +10384,7 @@ msgstr "Preimenuj bazu u" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10426,7 +10395,7 @@ msgstr "Nije Vam dozvoljeno da budete ovde!" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -10446,18 +10415,18 @@ msgstr "Ukloni bazu" msgid "Drop the database (DROP)" msgstr "Ukloni bazu i njen sadržaj" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Samo struktura" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Struktura i podaci" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Samo podaci" @@ -10471,7 +10440,7 @@ msgstr "Kopiraj bazu u" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE pre kopiranja" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Dodaj ograničenja" @@ -10511,163 +10480,163 @@ msgstr "Pogon skladištenja" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Kopiraj tabelu u (baza.tabela)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Pređi na kopiranu tabelu" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Radnje na tabeli" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Analiziraj tabelu" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Proveri tabelu" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Proveri tabelu" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Defragmentiraj tabelu" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "Tabela %s je osvežena." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "Snimi sve baferovane izmene nad tabelom (FLUSH)" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Optimizuj tabelu" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Popravi tabelu" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "Brisanje podataka ili tabele" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "Brisanje tabele (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Provera" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Popravi" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "Zatvori" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "Održavanje particija" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Proveri referencijalni integritet:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Ne mogu da premestim tabelu u samu sebe!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Ne mogu da kopiram tabelu u samu sebe!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabela %s je pomerena u %s." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabela %s je kopirana u %s." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabela %s je pomerena u %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s je kopirana u %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Ima tabele je prazno!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "Ovaj format nema opcije" @@ -10844,7 +10813,7 @@ msgstr "Opcije za izvoz podataka" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Prikaz podataka tabele" @@ -10868,21 +10837,21 @@ msgstr "Definicija" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Struktura tabele" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Struktura za pogled (view)" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Struktura koja zamenjuje pogled" @@ -10988,7 +10957,7 @@ msgid "Database:" msgstr "Baza podataka" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11098,7 +11067,7 @@ msgid "Data creation options" msgstr "Opcije transformacije" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -11167,8 +11136,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11176,99 +11145,99 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Missing data for %s" msgid "Metadata" msgstr "Nedostaju podaci za %s" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Metadata for %s" msgstr "Nedostaju podaci za %s" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 #, fuzzy #| msgid "Creation" msgid "Creation:" msgstr "Napravljeno" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 #, fuzzy #| msgid "Last update" msgid "Last update:" msgstr "Poslednja izmena" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 #, fuzzy #| msgid "Last check" msgid "Last check:" msgstr "Poslednja provera" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "se koristi" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Ograničenja za izvezene tabele" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Ograničenja za tabele" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Ograničenja za izvezene tabele" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Unutar tabela:" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "Ne koristi AUTO_INCREMENT za nulte vrednosti" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Dodaj AUTO_INCREMENT vrednost" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "MIME TIPOVI ZA TABELU" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "RELACIJE TABELE" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Struktura za pogled (view)" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "Greška kod čitanja podataka:" @@ -11517,9 +11486,9 @@ msgstr "Relaciona shema" msgid "Table of contents" msgstr "Sadržaj" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Dodatno" @@ -11734,63 +11703,63 @@ msgstr "Formatira tekst kao SQL upit sa obeležavanjem sintakse." msgid "Formats text as XML with syntax highlighting." msgstr "Formatira tekst kao SQL upit sa obeležavanjem sintakse." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Greška: relacija već postoji." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "Configuration has been saved." msgid "FOREIGN KEY relation has been added." msgstr "Konfiguracija je sačuvana" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Greška: relacija nije dodata." -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Relational features are disabled!" msgstr "Greška: relacija nije dodata." -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "Dodata interna relacija" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "Greška: relacija nije dodata." -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "Configuration has been saved." msgid "FOREIGN KEY relation has been removed." msgstr "Konfiguracija je sačuvana" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Greška: relacija nije dodata." -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "Greška: relacija nije dodata." -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11847,97 +11816,97 @@ msgid "Please see the documentation on how to update your column_info table. " msgstr "" "Molimo pogledajte u dokumentaciji kako se ažurira tabela Column_comments." -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Zapamćen SQL-upit" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL istorijat" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "There are no recent tables" msgid "Persistent favorite tables" msgstr "Nema skorašnje pristupanih tabela" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Configuration: %s" msgid "Configurable menus" msgstr "Konfiguracija: %s" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Remember table's sorting" msgid "Remembering Designer Settings" msgstr "Zapamti način sortiranja u tabeli" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "Pogrešan tip izvoza" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "nema opisa" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11945,14 +11914,14 @@ msgid "" "configuration storage there." msgstr "Nedostaju phpMyAdmin skladišne tabele" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Nedostaju phpMyAdmin skladišne tabele" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -12129,8 +12098,8 @@ msgstr "Ime korisnika" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Ime korisnika" @@ -12138,7 +12107,7 @@ msgstr "Ime korisnika" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Lozinka" @@ -12789,7 +12758,7 @@ msgstr[2] "%s baza je uspešno odbačeno." msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Verzija" @@ -12797,99 +12766,95 @@ msgstr "Verzija" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "onemogućeno" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Nema privilegija." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Uključuje sve privilegije osim GRANT." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Dozvoljava čitanje podataka." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Dozvoljava umetanje i zamenu podataka." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Dozvoljava izmenu podataka." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Dozvoljava brisanje podataka." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Dozvoljava kreiranje novih baza i tabela." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Dozvoljava odbacivanje baza i tabela." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Dozvoljava ponovno učitavanje podešavanja servera i pražnjenje keša servera." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Dozvoljava gašenje servera." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "Dozvoljava uvoz podataka i njihov izvoz u datoteke." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "Nema efekta u ovoj verziji MySQL-a." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Dozvoljava kreiranje i brisanje ključeva." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Dozvoljava izmenu struktura postojećih tabela." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Daje pristup kompletnoj listi baza." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12900,41 +12865,41 @@ msgstr "" "promenljivih ili prekidanje procesa ostalih korisnika." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Dozvoljava kreiranje privremenih tabela.." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Dozvoljava zaključavanje tabela tekućim procesima." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Potrebno zbog pomoćnih servera za replikaciju." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "Daje pravo korisniku da pita gde su glavni/pomoćni serveri." #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Dozvoli kreiranje novih pogleda." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 #, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Allows to set up events for the event scheduler." msgstr "Dozvoljava zaključavanje tabela tekućim procesima." #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 #, fuzzy #| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." @@ -12942,27 +12907,27 @@ msgstr "Omogućava kreiranje i brisanje okidača" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Dozvoljava izvršavanje SHOW CREATE VIEW upita." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Dozvoljava pravljenje sačuvanih rutina." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Dozvoljava izmenu i odbacivanje sačuvanih rutina." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "Dozvoljava pravljenje, odbacivanje i preimenovanje korisničkih naloga." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Dozvoljava izvršavanje sačuvanih rutina." @@ -12974,8 +12939,8 @@ msgstr "Nema" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -13019,12 +12984,12 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Napomena: Postavljanje ovih opcija na 0 (nulu) uklanja ograničenja." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Ograničava broj upita koje korisnik može da uputi serveru za sat." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -13033,19 +12998,19 @@ msgstr "" "izvrši na sat." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "Ograničava broj istovremenih konekcija koje korisnik može da ima." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -13053,7 +13018,7 @@ msgid "Routine" msgstr "Rutine" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -13074,14 +13039,14 @@ msgstr "Dozvoljava izvršavanje sačuvanih rutina." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Privilegije vezane za tabele" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -13093,7 +13058,7 @@ msgid "Administration" msgstr "Administracija" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Globalne privilegije" @@ -13104,15 +13069,15 @@ msgid "Global" msgstr "globalno" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Privilegije vezane za bazu" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Dozvoljava kreiranje novih tabela." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Dozvoljava odbacivanje tabela." @@ -13135,7 +13100,7 @@ msgid "Native MySQL Authentication" msgstr "Autentikacija" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Podaci o prijavi" @@ -13160,8 +13125,8 @@ msgstr "Ime korisnika" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Log name" msgid "Host name" @@ -13183,241 +13148,241 @@ msgstr "Autentikacija" msgid "Password Hashing Method" msgstr "Heširanje lozinke" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "Lozinka za %s je uspešno promenjena." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Zabranili ste privilegije za %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Dodaj korisnika" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Baza za korisnika" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "Napravi bazu sa istim imenom i dodaj sve privilegije." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Daj sve privilegije na imenu sa džokerima (korisničko_ime\\_%)." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Dodeli sva prava pristupa za bazu \"%s\"." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Korisnici koji imaju pristup \"%s\"" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "Korisnik je dodat." -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Omogući" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "Ni jedan korisnik nije pronađen." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Bilo koji" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "globalno" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "Specifično za bazu" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "džoker" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Specifično za bazu" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Promeni privilegije" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Zabrani" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "Uredi sledeći red" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… sačuvaj stare." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… obriši stare iz tabela korisnika." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… obustavi sve privilegije starog korisnika i zatim ga obriši." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… obriši starog iz tabele korisnika i zatim ponovo učitaj privilegije." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Promeni informacije o prijavi / Kopiraj korisnika" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Napravi novog korisnika sa istim privilegijama i …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Privilegije vezane za kolone" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Ukloni izabrane korisnike" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Obustavi sve aktivne privilegije korisnika i zatim ih obriši." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "Odbaci baze koje se zovu isto kao korisnici." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "Nijedan korisnik nije odabran za brisanje!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Ponovo učitavam privilegije" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Izabrani korisnici su uspešno obrisani." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Ažurirali ste privilegije za %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "Brišem %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspešno ponovo učitane." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "Korisnik %s već postoji!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilegije" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Korisnik" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Promeni privilegije" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "Users" msgid "User account" msgstr "Korisnici" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "Pregled korisnika" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13430,7 +13395,7 @@ msgstr "" "server koristi ako su vršene ručne izmene. U tom slučaju %sponovo učitajte " "privilegije%s pre nego što nastavite." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13449,11 +13414,11 @@ msgstr "" "server koristi ako su vršene ručne izmene. U tom slučaju %sponovo učitajte " "privilegije%s pre nego što nastavite." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Dodali ste novog korisnika." @@ -13681,32 +13646,32 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 #, fuzzy #| msgid "Enable highlighting" msgid "Enable charts dragging" msgstr "Omogući naglašavanje" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "Interval osvežavanja" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "Kolone grafikona" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -13774,7 +13739,7 @@ msgid "Statements" msgstr "Ime" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -13799,17 +13764,17 @@ msgstr "Prikaži neformatirane vrednosti" msgid "Related links:" msgstr "ovezani linkovi:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Broj neuspelih pokušaja povezivanja na MySQL server." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13819,16 +13784,16 @@ msgstr "" "prevazišle vrednost u binlog_cache_size i koristile privremenu datoteku da " "smeste izraze iz transakcije." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "Broj transakcija koje su koristile keš privremenog binarnog dnevnika." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13840,11 +13805,11 @@ msgstr "" "povećate vrednost tmp_table_size kako bi učinili da privremene tabele budu " "bazirane u memoriji umesto na disku." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "Koliko privremenih datoteka je mysqld napravio." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13852,7 +13817,7 @@ msgstr "" "Broj privremenih tabela koje je server automatski kreirao u memoriji dok je " "izvršavao izraze." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13860,7 +13825,7 @@ msgstr "" "Broj redova upisanih sa INSERT DELAYED za koje je javljena neka greška " "(verovatno duplirani ključ)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13868,23 +13833,23 @@ msgstr "" "Broj INSERT DELAYED rukovalačkih niti u upotrebi. Svaka posebna tabela nad " "kojom se koristi INSERT DELAYED dobija svoju nit." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "Broj upisanih INSERT DELAYED redova." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "Broj izvršenih FLUSH izraza." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "Broj internih COMMIT izraza." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "Broj brisanja nekog reda tabele." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13894,7 +13859,7 @@ msgstr "" "tabelu određenog imena. To se naziva otkrivanjem (discovery). " "Handler_discover označava broj puta kada je otkrivena tabela." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13904,7 +13869,7 @@ msgstr "" "može značiti da server radi puno punih skeniranja indeksa; na primer SELECT " "kol1 FROM nešto, pod pretpostavkom da je kol1 indeksirano." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -13912,7 +13877,7 @@ msgstr "" "Broj zahteva za čitanje reda zasnovanih na ključu. Ako je ovaj broj visok, " "to je dobar pokazatelj da su vaši upiti i tabele propisno indeksirani." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13922,7 +13887,7 @@ msgstr "" "kada radite upit po koloni indeksa sa ograničenjem opsega ili ako radite " "skeniranje indeksa." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13930,7 +13895,7 @@ msgstr "" "Broj zahteva za čitanjem prethodnog reda u poretku ključeva. Ova metoda " "čitanja se uglavnom koristi za optimizaciju ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13942,7 +13907,7 @@ msgstr "" "mnogo upita koji zahtevaju da MySQL skenira cele tabele ili imate spojeve " "koji ne koriste ključeve propisno." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13954,35 +13919,35 @@ msgstr "" "nisu propisno indeksirane ili da vaši upiti nisu napisani da iskoriste već " "postojeće indekse." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "Broj internih ROLLBACK izraza." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "Broj zahteva za ažuriranje reda u tabeli." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "Broj zahteva za upisivanje reda u tabelu." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "Broj strana koje sadrže podatke (čistih ili prljavih)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "Broj strana koje su trenutno prljave." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Broj strana u ostavi bafera za koje je traženo da budu očišćene." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "Broj slobodnih strana." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13992,7 +13957,7 @@ msgstr "" "čita ili se u njih upisuje ili iz nekog drugog razloga ne mogu biti očišćene " "niti uklonjene." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -14004,11 +13969,11 @@ msgstr "" "se takođe može izračunati i na sledeći način Innodb_buffer_pool_pages_total " "- Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "Puna veličina ostave bafera, u stranama." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -14016,7 +13981,7 @@ msgstr "" "Broj „nasumičnih“ pred-čitanja koja je InnoDB pokrenuo. Ovo se dešava kada " "upit treba da skenira veliki deo tabele ali nasumičnim redosledom." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -14024,11 +13989,11 @@ msgstr "" "Broj sekvencijalnih pred-čitanja koja je InnoDB pokrenuo. Ovo se dešava kada " "InnoDB radi sekvencijalno skeniranje cele tabele." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "Broj logičkih zahteva za čitanje koje je InnoDB uradio." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -14036,7 +14001,7 @@ msgstr "" "Broj logičkih čitanja koja InnoDB nije mogao da zadovolji iz ostave bafera " "te je morao da radi čitanje pojedinačne strane." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -14050,55 +14015,55 @@ msgstr "" "dešavanja ovih čekanja. Ako je veličina ostave bafera postavljena kako " "treba, ova vrednost vi trebalo da je niska." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "Broj upisa učinjenih u InnoDB ostavu bafera." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "Broj fsync() operacija do sada." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "Trenutni broj fsync() operacija na čekanju." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "Trenutni broj čitanja na čekanju." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "Trenutni broj upisa na čekanju." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "Količina podataka pročitanih do sada, u bajtovima." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "Ukupan broj čitanja podataka." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "Ukupan broj upisa podataka." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "Količina podataka upisanih do sada, u bajtovima." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Broj izvršenih dvoupisnih (doublewrite) upisa i broj strana koje su upisane " "u ovu svrhu." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" "Broj izvršenih dvoupisnih (doublewrite) upisa i broj strana koje su upisane " "u ovu svrhu." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -14106,35 +14071,35 @@ msgstr "" "Broj čekanja koja smo imali zato što je bafer dnevnika bio premali te smo " "morali da sačekamo da bude očišćen pre nastavka." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "Broj zahteva za upis u dnevnik." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "Broj fizičkih upisa u datoteku dnevnika." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "Broj fsyncs upisa načinjenih u datoteku dnevnika." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "Broj fsync-ova za datoteku dnevnika na čekanju." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "Broj upisa u datoteku dnevnika na čekanju." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "Broj bajtova upisanih u datoteku dnevnika." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "Broj napravljenih strana." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -14143,52 +14108,52 @@ msgstr "" "vrednosti se računaju u stranama; veličina strane omogućava da se one lako " "konvertuju u bajtove." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "Broj pročitanih strana." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "Broj zapisanih strana." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "Broj brava za redove koje se trenutno čekaju." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Prosečno vreme za dobavljanje brave za red, u milisekundama." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Ukupno vremena provedeno u dobavljanju brava za redove, u milisekundama." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Najduže vreme za dobavljanje brave za red, u milisekundama." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "Broj puta kada se morala čekati brava za red." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "Broj redova obrisanih iz InnoDB tabela." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "Broj redova umetnutih u InnoDB tabele." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "Broj redova pročitanih iz InnoDB tabela." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "Broj redova ažuriranih u InnoDB tabelama." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -14196,7 +14161,7 @@ msgstr "" "Broj blokova ključeva u kešu ključeva koji su izmenjeni ali još nisu poslati " "na disk. Ovo je ranije bilo poznato kao Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -14204,7 +14169,7 @@ msgstr "" "Broj neiskorišćenih blokova u kešu ključeva. Ovu vrednost možete da " "koristite da utvrdite koliki deo keša ključeva je u upotrebi." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -14214,17 +14179,17 @@ msgstr "" "vodostaja“ koja pokazuje najveći ikada broj blokova koji je bio u upotrebi u " "isto vreme." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Format datoteka za uvoz" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "Broj zahteva za čitanje bloka ključeva iz keša." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -14234,26 +14199,26 @@ msgstr "" "je vaša vrednost za key_buffer_size verovatno premala. Stepen promašaja keša " "se može izračunati kao Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "Broj zahteva za upisivanje bloka ključeva u keš." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "Broj fizičkih upisa bloka ključeva na disk." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -14263,17 +14228,17 @@ msgstr "" "upita. Korisno za upoređivanje cene različitih planova upita za isti upit. " "Podrazumevana vrednost 0 znači da još nije bio kompajliran nijedan upit." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Broj redova u INSERT DELAYED redovima čekanja koji čekaju upisivanje." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -14281,39 +14246,39 @@ msgstr "" "Broj tabela koje su bile otvarane. Ako je broj veliki, vaš keš tabela je " "verovatno premali." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "Broj otvorenih datoteka." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Broj otvorenih tokova (koristi se prvenstveno za vođenje dnevnika (logging))." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "Broj otvorenih tabela." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "Količina slobodne memorije za keš upita." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "Broj pogodaka iz keša." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "Broj upita dodatih u keš." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14325,7 +14290,7 @@ msgstr "" "keša za upite. Keš za upite koristi strategiju najduže nekorišćenog (en: " "least recently used , LRU) da bi odlučio koje upite da ukloni iz keša." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -14333,19 +14298,19 @@ msgstr "" "Broj nekeširanih upita (koji se ne mogu keširati ili nisu keširani zbog " "podešavanja query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "Broj upita registrovanih u kešu." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "Ukupan broj blokova u kešu za upite." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "Status replikacije otporne na greške (nije još implementirano)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -14353,11 +14318,11 @@ msgstr "" "Broj spojeva koji ne koriste indekste. Ako ova vrednost nije 0, trebalo bi " "pažljivo da proverite indekse vaših tabela." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "Broj spojeva koji su koristili pretragu opsega na referentnoj tabeli." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -14366,7 +14331,7 @@ msgstr "" "reda. (Ako ovo nije 0, trebalo bi pažljivo da proverite indekse vaših " "tabela.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -14374,15 +14339,15 @@ msgstr "" "Broj spojeva koji su koristili opsege na prvoj tabeli. (Obično nije kritično " "čak ni kada je ovo veliko)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "Broj spojeva koji su uradili puno skeniranje prve tabele." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Broj privremenih tabela trenutno otvorenih od strane pomoćne SQL niti." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -14390,11 +14355,11 @@ msgstr "" "Ukupan broj puta (od pokretanja) kada je pomoćna SQL nit za replikaciju " "pokušala transakcije." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ovo je ON ako je ovaj server pomoćni koji je povezan na glavni." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -14402,12 +14367,12 @@ msgstr "" "Broj niti za koje je trebalo više od slow_launch_time sekudni da bi bile " "pokrenute." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Broj upita za koje je trebalo više od long_query_time sekudni." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -14417,23 +14382,23 @@ msgstr "" "Ako je ova vrednost velika, trebalo bi da razmislite o povećanju vrednosti " "sistemske promenljive sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "Broj sortiranja koja su urađena sa opsegom." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "Broj sortiranih redova." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "Broj sortiranja do kojih je došlo skeniranjem tabele." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "Broj puta kada je brava za tabelu odmah dobavljena." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14445,7 +14410,7 @@ msgstr "" "bi trebalo da optimizujete svoje upite a potom da ili podelite tabelu ili " "tabele ili da koristite replikaciju." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -14455,11 +14420,11 @@ msgstr "" "Threads_created/Konekcije. Ako je ova vrednost crvena trebalo bi da povećate " "vaš thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "Broj trenutno otvorenih veza." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14471,13 +14436,13 @@ msgstr "" "implementaciju niti, ovo obično ne donosi primetna poboljšanja u " "performansama.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Praćenje nije aktivno." -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "Broj niti koje nisu uspavane." @@ -14486,77 +14451,77 @@ msgstr "Broj niti koje nisu uspavane." msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 #, fuzzy #| msgid "Users" msgid "User groups" msgstr "Korisnici" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "Verzija servera" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Database server" msgid "Database level tabs" msgstr "Server baze podataka" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table comments" msgid "Table level tabs" msgstr "Komentari tabele" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy #| msgid "Views" msgid "View users" msgstr "Pogledi" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "Dodaj korisnika" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Nema privilegija." -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Column names: " msgid "Group name:" msgstr "Imena kolona: " -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Verzija servera" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "Server baze podataka" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14620,21 +14585,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14703,130 +14664,130 @@ msgstr "Događaj %1$s je kreiran." msgid "Variable name was expected." msgstr "Šablon imena tabele" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Na početku tabele" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 #, fuzzy #| msgid "The number of tables that are open." msgid "The name of the entity was expected." msgstr "Broj otvorenih tabela." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Red je obrisan" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "Datoteke sa podacima" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Ostalo" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "Početak" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Ukupno vreme:" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Vreme" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Zatvori" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Vreme" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Zapamti SQL-upit" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Label" msgid "Label:" msgstr "Naziv" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Dozvoli svakom korisniku da pristupa ovom upamćenom upitu" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created!" msgstr "Napravljen marker %s" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "Prikaz kao PHP kod" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -14839,7 +14800,7 @@ msgstr "" "izmene u gridu, checkbox, Edit, Copy i Delete linkovi može da se desi da ne " "rade nakon snimanja." -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -14852,7 +14813,7 @@ msgstr "" "izmene u gridu, checkbox, Edit, Copy i Delete linkovi može da se desi da ne " "rade nakon snimanja." -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problem pri indeksiranju tabele `%s`" @@ -14883,29 +14844,29 @@ msgstr "" msgid "Bind parameters" msgstr "Pogrešni parametri!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 #, fuzzy #| msgid "Bookmark this SQL query" msgid "Bookmark this SQL query:" msgstr "Zapamti SQL-upit" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Zameni postojeće zapamćene upite istog imena" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Graničnik" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Prikaži ponovo ovaj upit" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Vidi samo" @@ -14950,178 +14911,178 @@ msgstr "" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Kreirano" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Ažurirano" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "Kreiraj verziju" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Izveštaj o praćenju" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Snimak strukture" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "aktivno" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "neaktivno" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "Obriši red sa podacima o praćenju iz izveštaja" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "Nema podataka" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "Izvezi kao %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Datum" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Korisničko ime" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Ništa" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Praćenje je aktivno." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Praćenje je aktivno." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Napravi relaciju" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Nepraćene tabele" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Prati tabelu" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Praćene tabele" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Poslednja verzija" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "Brisanje podataka o praćenju" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Verzije" @@ -15129,11 +15090,11 @@ msgstr "Verzije" msgid "Manage your settings" msgstr "Upravljanje podešavanjima" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "Konfiguracija je sačuvana." -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -15232,7 +15193,7 @@ msgstr "Baza ne postoji" msgid "View dump (schema) of databases" msgstr "Prikaži sadržaj (shemu) baze" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -15257,7 +15218,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin nije mogao da prekine proces %s. Verovatno je već zatvoren." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -16159,47 +16120,53 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "Naslov grafikona" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "Serije podataka:" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "X vrednosti" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Y vrednosti" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside column:" msgid "Series column:" msgstr "Unutar kolone::" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Values for column %s" msgid "Value Column:" msgstr "Vrednosti za kolonu %s" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -16262,54 +16229,55 @@ msgstr "Komentar" msgid "Drag to reorder" msgstr "Povucite da bi ste promenili redosled" -#: templates/table/relation/common_form.phtml:7 -msgid "Internal relations" -msgstr "Unutrašnje relacije" - -#: templates/table/relation/common_form.phtml:11 -msgid "Internal relation" -msgstr "Unutrašnja relacija" - -#: templates/table/relation/common_form.phtml:14 -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "" - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 #, fuzzy #| msgid "Foreign key limit" msgid "Foreign key constraints" msgstr "Ograničenje stranog ključa" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 #, fuzzy #| msgid "Action" msgid "Actions" msgstr "Akcija" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 #, fuzzy #| msgid "Constraints for table" msgid "Constraint properties" msgstr "Ograničenja za tabele" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Dodaj ograničenja" -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +msgid "Internal relations" +msgstr "Unutrašnje relacije" + +#: templates/table/relation/common_form.phtml:80 +msgid "Internal relation" +msgstr "Unutrašnja relacija" + +#: templates/table/relation/common_form.phtml:83 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "" + +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16460,7 +16428,7 @@ msgid "at beginning of table" msgstr "Na početku tabele" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16505,7 +16473,7 @@ msgstr "Pozicija" msgid "Edit partitioning" msgstr "Uredi indeks" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "Uredi pogled" @@ -17758,6 +17726,41 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert je postavljeno na 0" +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "Tabele" + +#, fuzzy +#~| msgid "Views" +#~ msgid "views" +#~ msgstr "Pogledi" + +#, fuzzy +#~| msgid "Procedures" +#~ msgid "procedures" +#~ msgstr "Procedure" + +#, fuzzy +#~| msgid "event" +#~ msgid "events" +#~ msgstr "događaj" + +#, fuzzy +#~| msgid "Functions" +#~ msgid "functions" +#~ msgstr "Funkcije" + +#, fuzzy +#~| msgid "table name" +#~ msgid "Filter databases by name or regex" +#~ msgstr "naziv tabele" + +#, fuzzy +#~| msgid "Filter tables by name" +#~ msgid "Filter by name or regex" +#~ msgstr "Filtriraj tabele po imenu" + #, fuzzy #~| msgid "Tracking report" #~ msgid "Taking you to %s." diff --git a/po/sv.po b/po/sv.po index 7ea6ab8aed..4a7a1732bc 100644 --- a/po/sv.po +++ b/po/sv.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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-11-12 10:41+0000\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Swedish " -"\n" +"Language-Team: Swedish \n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.5-dev\n" -#: changelog.php:37 license.php:30 +#: changelog.php:37 license.php:33 #, php-format msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " @@ -37,7 +37,7 @@ msgstr "Klicka för att sortera." msgid "Showing rows %1$s - %2$s." msgstr "Visar raderna %1$s - %2$s." -#: db_create.php:61 +#: db_create.php:62 #, php-format msgid "Database %1$s has been created." msgstr "Databas %1$s har skapats." @@ -46,13 +46,13 @@ msgstr "Databas %1$s har skapats." msgid "Database comment" msgstr "Databaskommentar" -#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:601 +#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:599 #: templates/columns_definitions/column_definitions_form.phtml:84 msgid "Table comments:" msgstr "Tabellkommentarer:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1568 +#: libraries/insert_edit.lib.php:1575 #: libraries/navigation/nodes/NodeColumn.php:34 #: libraries/plugins/export/ExportHtmlword.php:288 #: libraries/plugins/export/ExportHtmlword.php:384 @@ -62,13 +62,14 @@ msgstr "Tabellkommentarer:" #: libraries/plugins/export/ExportTexytext.php:282 #: libraries/plugins/export/ExportTexytext.php:373 #: libraries/plugins/export/PMA_ExportPdf.php:472 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:882 libraries/tracking.lib.php:978 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 +#: libraries/tracking.lib.php:892 libraries/tracking.lib.php:990 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:10 -#: templates/table/relation/common_form.phtml:43 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:27 +#: templates/table/relation/common_form.phtml:79 #: templates/table/relation/foreign_key_row.phtml:176 #: templates/table/relation/foreign_key_row.phtml:188 #: templates/table/relation/internal_relational_row.phtml:73 @@ -88,14 +89,14 @@ msgstr "Kolumn" #: libraries/plugins/export/ExportTexytext.php:283 #: libraries/plugins/export/ExportTexytext.php:374 #: libraries/plugins/export/PMA_ExportPdf.php:474 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 #: libraries/rte/rte_list.lib.php:78 libraries/rte/rte_list.lib.php:106 #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2606 libraries/tracking.lib.php:883 -#: libraries/tracking.lib.php:975 +#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -105,7 +106,7 @@ msgstr "Typ" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:709 -#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1577 +#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1584 #: libraries/plugins/export/ExportHtmlword.php:294 #: libraries/plugins/export/ExportHtmlword.php:390 #: libraries/plugins/export/ExportLatex.php:517 @@ -114,9 +115,9 @@ msgstr "Typ" #: libraries/plugins/export/ExportTexytext.php:284 #: libraries/plugins/export/ExportTexytext.php:375 #: libraries/plugins/export/PMA_ExportPdf.php:476 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 -#: libraries/tracking.lib.php:885 libraries/tracking.lib.php:981 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/tracking.lib.php:895 libraries/tracking.lib.php:993 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 @@ -133,9 +134,9 @@ msgstr "nolläge" #: libraries/plugins/export/ExportTexytext.php:285 #: libraries/plugins/export/ExportTexytext.php:376 #: libraries/plugins/export/PMA_ExportPdf.php:478 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 -#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:886 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:896 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 @@ -147,8 +148,8 @@ msgstr "Standardvärde" #: libraries/plugins/export/ExportOdt.php:488 #: libraries/plugins/export/ExportTexytext.php:378 #: libraries/plugins/export/PMA_ExportPdf.php:487 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:640 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:663 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 msgid "Links to" msgstr "Länkar till" @@ -159,37 +160,38 @@ msgstr "Länkar till" #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:381 #: libraries/plugins/export/PMA_ExportPdf.php:494 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:651 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:664 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:649 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 #: templates/columns_definitions/table_fields_definitions.phtml:65 msgid "Comments" msgstr "Kommentarer" -#: db_datadict.php:155 libraries/controllers/TableStructureController.php:1189 -#: libraries/controllers/TableStructureController.php:1194 -#: libraries/tracking.lib.php:925 +#: db_datadict.php:155 +#: libraries/controllers/table/TableStructureController.php:1197 +#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:79 +#: templates/table/structure/display_structure.phtml:80 msgid "Primary" msgstr "Primär" -#: db_datadict.php:165 js/messages.php:370 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:371 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 -#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:403 -#: libraries/mult_submits.lib.php:417 +#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:408 +#: libraries/mult_submits.lib.php:422 #: libraries/plugins/export/ExportHtmlword.php:654 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:710 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2971 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3620 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1013 libraries/tracking.lib.php:1018 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2973 +#: libraries/server_privileges.lib.php:2993 +#: libraries/server_privileges.lib.php:3631 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -198,32 +200,32 @@ msgstr "Primär" msgid "No" msgstr "Nej" -#: db_datadict.php:165 js/messages.php:515 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:516 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 #: libraries/config/FormDisplay.tpl.php:280 -#: libraries/controllers/TableStructureController.php:770 -#: libraries/controllers/TableStructureController.php:1440 -#: libraries/controllers/TableStructureController.php:1449 -#: libraries/controllers/TableStructureController.php:1454 -#: libraries/controllers/TableStructureController.php:1459 -#: libraries/controllers/TableStructureController.php:1464 -#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:199 -#: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 -#: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 +#: libraries/controllers/table/TableStructureController.php:771 +#: libraries/controllers/table/TableStructureController.php:1448 +#: libraries/controllers/table/TableStructureController.php:1457 +#: libraries/controllers/table/TableStructureController.php:1462 +#: libraries/controllers/table/TableStructureController.php:1467 +#: libraries/controllers/table/TableStructureController.php:1472 +#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:200 +#: libraries/mult_submits.lib.php:344 libraries/mult_submits.lib.php:377 +#: libraries/mult_submits.lib.php:406 libraries/mult_submits.lib.php:420 #: libraries/plugins/export/ExportHtmlword.php:655 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:788 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:711 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2968 -#: libraries/server_privileges.lib.php:2989 -#: libraries/server_privileges.lib.php:3617 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1011 libraries/tracking.lib.php:1016 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2970 +#: libraries/server_privileges.lib.php:2991 +#: libraries/server_privileges.lib.php:3628 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -236,8 +238,8 @@ msgstr "Ja" msgid "View dump (schema) of database" msgstr "Visa dumpschema från databasen" -#: db_export.php:51 db_tracking.php:102 export.php:382 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:176 +#: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 +#: libraries/controllers/DatabaseStructureController.php:157 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "Inga tabeller funna i databasen." @@ -254,7 +256,7 @@ msgstr "Tabeller" #: db_export.php:66 libraries/Menu.php:320 libraries/Menu.php:427 #: libraries/Util.php:3407 libraries/Util.php:3417 libraries/Util.php:3423 -#: libraries/Util.php:3702 libraries/Util.php:4339 libraries/Util.php:4356 +#: libraries/Util.php:3703 libraries/Util.php:4340 libraries/Util.php:4357 #: libraries/central_columns.lib.php:729 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:320 @@ -262,10 +264,10 @@ msgstr "Tabeller" #: libraries/config/user_preferences.forms.php:218 #: libraries/config/user_preferences.forms.php:259 #: libraries/config/user_preferences.forms.php:285 -#: libraries/import.lib.php:1299 libraries/navigation/nodes/NodeColumn.php:44 +#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:44 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 -#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:877 +#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:887 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -285,7 +287,6 @@ msgstr "Data" #: db_export.php:70 libraries/DbSearch.php:441 #: libraries/display_export.lib.php:46 libraries/replication_gui.lib.php:381 -#| msgid "Select All" msgid "Select all" msgstr "Välj alla" @@ -305,18 +306,16 @@ msgstr "Databasen %1$s har kopierats till %2$s." #: db_operations.php:285 #, php-format -#| msgid "" -#| "The phpMyAdmin configuration storage has been deactivated. To find out " -#| "why click %shere%s." msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." -msgstr "PhpMyAdmin konfiguration-lagring har inaktiverats. %sFind ut varför %s." +msgstr "" +"PhpMyAdmin konfiguration-lagring har inaktiverats. %sFind ut varför %s." -#: db_qbe.php:135 +#: db_qbe.php:136 msgid "You have to choose at least one column to display!" msgstr "Du måste välja minst en kolumn som ska visas!" -#: db_qbe.php:152 +#: db_qbe.php:154 #, php-format msgid "Switch to %svisual builder%s" msgstr "Växla till %sgrafisk modellerare%s" @@ -329,23 +328,20 @@ msgid "Access denied!" msgstr "Åtkomst nekad!" #: db_tracking.php:52 db_tracking.php:77 -#| msgid "Tracking data definition successfully deleted" msgid "Tracking data deleted successfully." msgstr "Radering av Spårningsdata lyckades." #: db_tracking.php:61 #, php-format -#| msgid "Version %1$s was created, tracking for %2$s is active." msgid "" "Version %1$s was created for selected tables, tracking is active for them." msgstr "Version %1$s är skapad, spårning är aktiverad." #: db_tracking.php:92 -#| msgid "No databases selected." msgid "No tables selected." msgstr "Inga tabeller markerade." -#: db_tracking.php:146 +#: db_tracking.php:149 msgid "Database Log" msgstr "Databas-logg" @@ -380,7 +376,7 @@ msgstr "Du kan vilja ladda om sidan." msgid "Bad type!" msgstr "Dålig typ!" -#: export.php:276 +#: export.php:278 msgid "Bad parameters!" msgstr "Felaktiga parametrar!" @@ -388,98 +384,98 @@ msgstr "Felaktiga parametrar!" msgid "Invalid export type" msgstr "Ogiltig export-typ" -#: gis_data_editor.php:119 +#: gis_data_editor.php:117 #, php-format msgid "Value for the column \"%s\"" msgstr "Värde för kolumn \"%s\"" -#: gis_data_editor.php:147 +#: gis_data_editor.php:145 #: templates/table/gis_visualization/gis_visualization.phtml:37 msgid "Use OpenStreetMaps as Base Layer" msgstr "Använd OpenStreetMaps som baslager" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:169 +#: gis_data_editor.php:167 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:192 +#: gis_data_editor.php:190 #, php-format msgid "Geometry %d:" msgstr "Geometri %d:" -#: gis_data_editor.php:214 +#: gis_data_editor.php:212 msgid "Point:" msgstr "Punkt:" -#: gis_data_editor.php:215 gis_data_editor.php:242 gis_data_editor.php:298 -#: gis_data_editor.php:371 js/messages.php:504 +#: gis_data_editor.php:213 gis_data_editor.php:240 gis_data_editor.php:296 +#: gis_data_editor.php:369 js/messages.php:505 msgid "X" msgstr "X" -#: gis_data_editor.php:218 gis_data_editor.php:246 gis_data_editor.php:302 -#: gis_data_editor.php:377 js/messages.php:505 +#: gis_data_editor.php:216 gis_data_editor.php:244 gis_data_editor.php:300 +#: gis_data_editor.php:375 js/messages.php:506 msgid "Y" msgstr "Y" -#: gis_data_editor.php:240 gis_data_editor.php:296 gis_data_editor.php:369 -#: js/messages.php:507 +#: gis_data_editor.php:238 gis_data_editor.php:294 gis_data_editor.php:367 +#: js/messages.php:508 #, php-format msgid "Point %d" msgstr "Punkt %d" -#: gis_data_editor.php:253 gis_data_editor.php:309 gis_data_editor.php:387 -#: js/messages.php:513 +#: gis_data_editor.php:251 gis_data_editor.php:307 gis_data_editor.php:385 +#: js/messages.php:514 msgid "Add a point" msgstr "Lägg till en punkt" -#: gis_data_editor.php:270 +#: gis_data_editor.php:268 #, php-format msgid "Linestring %d:" msgstr "Linjesträng %d:" -#: gis_data_editor.php:273 gis_data_editor.php:350 +#: gis_data_editor.php:271 gis_data_editor.php:348 msgid "Outer ring:" msgstr "Yttre ring:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:273 gis_data_editor.php:350 #, php-format msgid "Inner ring %d:" msgstr "Inre ring %d:" -#: gis_data_editor.php:312 +#: gis_data_editor.php:310 msgid "Add a linestring" msgstr "Lägg till ny linestring" -#: gis_data_editor.php:313 gis_data_editor.php:392 js/messages.php:514 +#: gis_data_editor.php:311 gis_data_editor.php:390 js/messages.php:515 msgid "Add an inner ring" msgstr "Lägg till ny inre ring" -#: gis_data_editor.php:334 +#: gis_data_editor.php:332 #, php-format msgid "Polygon %d:" msgstr "Polygon %d:" -#: gis_data_editor.php:398 +#: gis_data_editor.php:396 msgid "Add a polygon" msgstr "Addera polygon" -#: gis_data_editor.php:404 +#: gis_data_editor.php:402 msgid "Add geometry" msgstr "Addera geometri" -#: gis_data_editor.php:410 js/messages.php:345 libraries/DbSearch.php:462 -#: libraries/DisplayResults.php:1783 libraries/browse_foreigners.lib.php:142 +#: gis_data_editor.php:408 js/messages.php:346 libraries/DbSearch.php:462 +#: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:151 #: libraries/display_export.lib.php:404 libraries/display_export.lib.php:410 -#: libraries/display_import.lib.php:403 libraries/index.lib.php:42 -#: libraries/insert_edit.lib.php:1547 libraries/insert_edit.lib.php:1584 +#: libraries/display_import.lib.php:403 libraries/index.lib.php:45 +#: libraries/insert_edit.lib.php:1554 libraries/insert_edit.lib.php:1591 #: libraries/normalization.lib.php:168 libraries/normalization.lib.php:825 #: libraries/operations.lib.php:47 libraries/operations.lib.php:114 #: libraries/operations.lib.php:266 libraries/operations.lib.php:309 #: libraries/operations.lib.php:806 libraries/operations.lib.php:877 -#: libraries/operations.lib.php:926 libraries/operations.lib.php:1336 -#: libraries/operations.lib.php:1653 +#: libraries/operations.lib.php:926 libraries/operations.lib.php:1339 +#: libraries/operations.lib.php:1656 #: libraries/plugins/auth/AuthenticationCookie.php:239 #: libraries/replication_gui.lib.php:124 libraries/replication_gui.lib.php:163 #: libraries/replication_gui.lib.php:328 libraries/replication_gui.lib.php:465 @@ -488,12 +484,12 @@ msgstr "Addera geometri" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2343 -#: libraries/server_privileges.lib.php:3114 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_user_groups.lib.php:285 -#: libraries/sql_query_form.lib.php:369 libraries/sql_query_form.lib.php:429 -#: libraries/tracking.lib.php:536 libraries/tracking.lib.php:656 +#: libraries/server_privileges.lib.php:2345 +#: libraries/server_privileges.lib.php:3116 +#: libraries/server_privileges.lib.php:3735 +#: libraries/server_user_groups.lib.php:290 +#: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 +#: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 #: prefs_manage.php:280 prefs_manage.php:358 #: templates/columns_definitions/column_definitions_form.phtml:64 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 @@ -506,11 +502,11 @@ msgstr "Addera geometri" msgid "Go" msgstr "Kör" -#: gis_data_editor.php:413 +#: gis_data_editor.php:411 msgid "Output" msgstr "Utdata" -#: gis_data_editor.php:416 +#: gis_data_editor.php:414 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -519,16 +515,14 @@ msgstr "" "fältet \"Värde\"." #: import.php:55 -#| msgid "Success!" msgid "Succeeded" msgstr "Lyckades" -#: import.php:59 js/messages.php:588 +#: import.php:59 js/messages.php:589 msgid "Failed" msgstr "Misslyckades" #: import.php:63 -#| msgid "complete inserts" msgid "Incomplete params" msgstr "Ofullständig parametrar" @@ -587,7 +581,7 @@ msgid "Could not load import plugins, please check your installation!" msgstr "" "Kunde inte läsa in insticksprogram för import, kontrollera din installation!" -#: import.php:669 libraries/sql.lib.php:744 libraries/sql.lib.php:1468 +#: import.php:669 libraries/sql.lib.php:754 libraries/sql.lib.php:1485 #, php-format msgid "Bookmark %s has been created." msgstr "Bokmärket %s har skapats." @@ -599,9 +593,6 @@ msgstr "Importen har slutförts korrekt, %d frågor besvarade." #: import.php:706 #, php-format -#| msgid "" -#| "Script timeout passed, if you want to finish import, please resubmit same " -#| "file and import will resume." msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " "same file%s and import will resume." @@ -622,7 +613,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "Kunde inte läsa av status på import." -#: import_status.php:111 js/messages.php:444 libraries/Util.php:797 +#: import_status.php:111 js/messages.php:445 libraries/Util.php:797 #: libraries/export.lib.php:523 #: libraries/plugins/schema/ExportRelationSchema.php:301 user_password.php:268 msgid "Back" @@ -644,11 +635,10 @@ msgstr "" "på %s." #: index.php:161 -#| msgid "General Settings" msgid "General settings" msgstr "Generella inställningar" -#: index.php:191 js/messages.php:617 +#: index.php:191 js/messages.php:618 #: libraries/display_change_password.lib.php:54 #: libraries/display_change_password.lib.php:57 user_password.php:262 msgid "Change password" @@ -659,7 +649,6 @@ msgid "Server connection collation" msgstr "Serveranslutning kollationering" #: index.php:230 -#| msgid "Appearance Settings" msgid "Appearance settings" msgstr "Anpassa utseende" @@ -710,7 +699,6 @@ msgid "PHP extension:" msgstr "PHP-tillägg:" #: index.php:351 -#| msgid "PHP Version:" msgid "PHP version:" msgstr "PHP-version:" @@ -750,12 +738,11 @@ msgstr "Support" msgid "List of changes" msgstr "Lista över ändringar" -#: index.php:453 -#| msgid "" -#| "Your configuration file contains settings (root with no password) that " -#| "correspond to the default MySQL privileged account. Your MySQL server is " -#| "running with this default, is open to intrusion, and you really should " -#| "fix this security hole by setting a password for user 'root'." +#: index.php:438 libraries/server_plugins.lib.php:83 +msgid "License" +msgstr "Licens" + +#: index.php:460 msgid "" "You are connected as 'root' with no password, which corresponds to the " "default MySQL privileged account. Your MySQL server is running with this " @@ -766,7 +753,7 @@ msgstr "" "som motsvarar MySQL:s privilegierade standardkonto.Din MySQL-server körs på " "detta sätt som standard, ange ett lösenord för användare 'root'." -#: index.php:470 +#: index.php:477 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -776,7 +763,7 @@ msgstr "" "alternativ är inkompatibelt med phpMyAdmin och kan leda till att data kan " "skadas!" -#: index.php:485 +#: index.php:492 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -786,25 +773,19 @@ msgstr "" "flerbitars teckenuppsättning. phpMyAdmin kan inte dela upp strängar korrekt " "utan tillägget mbstring, vilket kan resultera i oväntade resultat." -#: index.php:502 -#| msgid "" -#| "Your PHP parameter [a@http://php.net/manual/en/session.configuration." -#| "php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower " -#| "than cookie validity configured in phpMyAdmin, because of this, your " -#| "login will expire sooner than configured in phpMyAdmin." +#: index.php:509 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than " "cookie validity configured in phpMyAdmin, because of this, your login might " "expire sooner than configured in phpMyAdmin." msgstr "" -"PHP-parametern " -"[a@http://php.net/manual/en/session.configuration.php#ini.session.gc-" -"maxlifetime@_blank]session.gc_maxlifetime[/a] är lägre än cookie-giltighet " -"konfigurerad i phpMyAdmin. På grund av detta kommer din inloggning upphöra " -"tidigare än vad som är konfigurerat i phpMyAdmin." +"PHP-parametern [a@http://php.net/manual/en/session.configuration.php#ini." +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] är lägre än cookie-" +"giltighet konfigurerad i phpMyAdmin. På grund av detta kommer din inloggning " +"upphöra tidigare än vad som är konfigurerat i phpMyAdmin." -#: index.php:521 +#: index.php:528 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -813,11 +794,11 @@ msgstr "" "phpMyAdmin, på grund av detta kommer dina inloggningsuppgifter upphöra att " "gälla tidigare än konfigurerats i phpMyAdmin." -#: index.php:537 +#: index.php:544 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Konfigurationsfilen behöver nu ett hemligt lösenord (blowfish_secret)." -#: index.php:550 +#: index.php:557 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. It is strongly recommended to remove it " @@ -829,11 +810,8 @@ msgstr "" "den när phpMyAdmin har konfigurerats. I annat fall kan din servers säkerhet " "hotas av obehöriga som laddar ner din konfiguration." -#: index.php:566 +#: index.php:573 #, php-format -#| msgid "" -#| "The phpMyAdmin configuration storage is not completely configured, some " -#| "extended features have been deactivated. To find out why click %shere%s." msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. %sFind out why%s. " @@ -841,14 +819,14 @@ msgstr "" "phpMyAdmin-konfigurationen är inte fullständigt konfigurerad, vissa utökade " "funktioner har inaktiverats. För att ta reda på varför klicka %shär%s. " -#: index.php:573 +#: index.php:580 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "Eller alternativt gå till \"Drift\" fliken i någon databas till sätta den " "upp där." -#: index.php:619 +#: index.php:626 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -857,7 +835,7 @@ msgstr "" "Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version " "%s. Detta kan orsaka oförutsägbara beteenden." -#: index.php:647 +#: index.php:654 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -877,7 +855,7 @@ msgstr "Bekräfta" msgid "Do you really want to execute \"%s\"?" msgstr "Vill du verkligen köra \"%s\"?" -#: js/messages.php:45 libraries/mult_submits.lib.php:397 +#: js/messages.php:45 libraries/mult_submits.lib.php:402 msgid "You are about to DESTROY a complete database!" msgstr "Du är på väg att RADERA en hel databas!" @@ -890,27 +868,22 @@ msgid "You are about to TRUNCATE a complete table!" msgstr "Du håller på att TRUNKERA en hel tabell!" #: js/messages.php:50 -#| msgid "Delete tracking data for this table" msgid "Delete tracking data for this table?" msgstr "Ta bort spårning för denna tabell?" #: js/messages.php:52 -#| msgid "Delete tracking data for this table" msgid "Delete tracking data for these tables?" msgstr "Ta bort uppföljningsdata för dessa tabeller?" #: js/messages.php:54 -#| msgid "Delete tracking data for this table" msgid "Delete tracking data for this version?" msgstr "Ta bort uppföljningsdata för denna version?" #: js/messages.php:56 -#| msgid "Delete tracking data for this table" msgid "Delete tracking data for these versions?" msgstr "Ta bort uppföljningsdata för dessa versioner?" #: js/messages.php:57 -#| msgid "Delete tracking data row from report" msgid "Delete entry from tracking report?" msgstr "Ta bort data från spårningsrapport?" @@ -923,7 +896,6 @@ msgid "Dropping Primary Key/Index" msgstr "Tar bort Primär Nyckel/Index" #: js/messages.php:60 -#| msgid "Is a foreign key." msgid "Dropping Foreign key." msgstr "Radera en främmande nyckel." @@ -948,17 +920,14 @@ msgstr "" "denna sidan utan att spara dessa?" #: js/messages.php:70 -#| msgid "Do you really want to delete the search \"%s\"?" msgid "Do you really want to revoke the selected user(s) ?" msgstr "Vill du verkligen radera markerade användare?" #: js/messages.php:72 -#| msgid "Do you really want to delete the search \"%s\"?" msgid "Do you really want to delete this central column?" msgstr "Vill du verkligen ta bort denna centrala kolumn?" #: js/messages.php:74 -#| msgid "Do you really want to delete the search \"%s\"?" msgid "Do you really want to delete the selected items?" msgstr "Vill du verkligen ta bort de markerade objekten?" @@ -971,7 +940,6 @@ msgstr "" "bort uppgifterna om den valda partitionen/partitionerna!" #: js/messages.php:80 -#| msgid "Do you really want to delete the search \"%s\"?" msgid "Do you really want to TRUNCATE the selected partition(s)?" msgstr "Vill du verkligen att TRUNKERA den valda partitionen/partitionerna?" @@ -982,7 +950,6 @@ msgid "Do you really want to remove partitioning?" msgstr "Vill du verkligen ta bort sökningen \"%s\"?" #: js/messages.php:83 -#| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to RESET SLAVE?" msgstr "Vill du verkligen att återställa sekundär partion ?" @@ -1027,18 +994,16 @@ msgstr "" "data?" #: js/messages.php:108 -#| msgid "Save as file" msgid "Save & close" msgstr "Avsluta och Spara" #: js/messages.php:109 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1551 prefs_manage.php:364 +#: libraries/insert_edit.lib.php:1558 prefs_manage.php:364 #: prefs_manage.php:375 msgid "Reset" msgstr "Återställ" #: js/messages.php:110 -#| msgid "Select All" msgid "Reset all" msgstr "Återställ alla" @@ -1063,7 +1028,6 @@ msgid "Add index" msgstr "Lägg till index" #: js/messages.php:118 -#| msgid "Edit Index" msgid "Edit index" msgstr "Redigera register" @@ -1073,22 +1037,18 @@ msgid "Add %s column(s) to index" msgstr "Lägg till %s kolumn(er) till index" #: js/messages.php:120 -#| msgid "Create routine" msgid "Create single-column index" msgstr "Skapa index för singelkolumn" #: js/messages.php:121 -#| msgid "Create routine" msgid "Create composite index" msgstr "Skapa sammansatta index" #: js/messages.php:122 -#| msgid "Columns enclosed with:" msgid "Composite with:" msgstr "Omges av:" #: js/messages.php:123 -#| msgid "Add %s column(s) to index" msgid "Please select column(s) for the index." msgstr "Välj kolumner för indexet." @@ -1096,20 +1056,18 @@ msgstr "Välj kolumner för indexet." msgid "You have to add at least one column." msgstr "Du måste lägga till åtminstone en kolumn." -#: js/messages.php:129 libraries/insert_edit.lib.php:1549 +#: js/messages.php:129 libraries/insert_edit.lib.php:1556 #: templates/columns_definitions/column_definitions_form.phtml:159 #: templates/table/index_form.phtml:237 -#: templates/table/relation/common_form.phtml:108 +#: templates/table/relation/common_form.phtml:127 msgid "Preview SQL" msgstr "Förhandsgranska SQL" #: js/messages.php:132 -#| msgid "in query" msgid "Simulate query" msgstr "Simulera körning" #: js/messages.php:133 -#| msgid "Affected rows:" msgid "Matched rows:" msgstr "Matchande rader:" @@ -1119,7 +1077,6 @@ msgstr "SQL-fråga:" #. l10n: Default label for the y-Axis of Charts #: js/messages.php:138 -#| msgid "Y Values" msgid "Y values" msgstr "Y-värden" @@ -1145,13 +1102,12 @@ msgstr "Lösenorden överensstämmer inte!" msgid "Removing Selected Users" msgstr "Tar bort valda användare" -#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:461 -#: libraries/tracking.lib.php:831 +#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:471 +#: libraries/tracking.lib.php:841 msgid "Close" msgstr "Stäng" #: js/messages.php:149 -#| msgid "The number of pages created." msgid "Template was created." msgstr "Mallen skapades." @@ -1160,18 +1116,16 @@ msgid "Template was loaded." msgstr "Mallen har lästs in." #: js/messages.php:151 -#| msgid "The profile has been updated." msgid "Template was updated." msgstr "Mallen uppdaterades." #: js/messages.php:152 -#| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Mallen har tagits bort." #. l10n: Other, small valued, queries #: js/messages.php:155 libraries/ServerStatusData.php:130 -#: libraries/server_status_queries.lib.php:148 +#: libraries/server_status_queries.lib.php:150 msgid "Other" msgstr "Annan" @@ -1218,7 +1172,6 @@ msgid "Query cache used" msgstr "Använd frågecache" #: js/messages.php:177 -#| msgid "System CPU Usage" msgid "System CPU usage" msgstr "Processoranvändning (CPU)" @@ -1255,22 +1208,18 @@ msgid "Used memory" msgstr "Använt minne" #: js/messages.php:188 -#| msgid "Total Swap" msgid "Total swap" msgstr "Totalt växlingsutrymme" #: js/messages.php:189 -#| msgid "Cached Swap" msgid "Cached swap" msgstr "Cachelagrade" #: js/messages.php:190 -#| msgid "Used Swap" msgid "Used swap" msgstr "Använt växlingsutrymme" #: js/messages.php:191 -#| msgid "Free Swap" msgid "Free swap" msgstr "Ledigt växlingsutrymme" @@ -1343,7 +1292,7 @@ msgstr "Frågor" msgid "Traffic" msgstr "Trafik" -#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4330 +#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4331 #: libraries/server_status_monitor.lib.php:258 msgid "Settings" msgstr "Inställningar" @@ -1356,9 +1305,9 @@ msgstr "Addera diagrammet till rutnätet" msgid "Please add at least one variable to the series!" msgstr "Lägg till minst en variabel till serien!" -#: js/messages.php:216 libraries/DisplayResults.php:1477 +#: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1474,7 +1423,7 @@ msgstr "Ändra inställningar" msgid "Current settings" msgstr "Nuvarande inställningar" -#: js/messages.php:253 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:253 msgid "Chart title" msgstr "Diagramtitel" @@ -1559,21 +1508,21 @@ msgstr "Analyserar…" msgid "Explain output" msgstr "Förklara utdata" -#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4326 +#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4327 #: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:396 #: libraries/rte/rte_list.lib.php:104 -#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:282 -#: libraries/tracking.lib.php:1623 +#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:284 +#: libraries/tracking.lib.php:1639 msgid "Status" msgstr "Status" -#: js/messages.php:289 js/messages.php:870 +#: js/messages.php:289 js/messages.php:862 #: libraries/plugins/export/ExportHtmlword.php:484 #: libraries/plugins/export/ExportOdt.php:600 #: libraries/plugins/export/ExportTexytext.php:445 #: libraries/plugins/export/PMA_ExportPdf.php:314 #: libraries/rte/rte_list.lib.php:93 -#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:239 +#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:243 msgid "Time" msgstr "Tid" @@ -1659,10 +1608,10 @@ msgstr "" "Återställer till ursprunglig konfiguration…" #: js/messages.php:322 libraries/Menu.php:355 libraries/Menu.php:457 -#: libraries/Menu.php:578 libraries/Util.php:4329 libraries/Util.php:4344 -#: libraries/Util.php:4361 libraries/config/messages.inc.php:260 +#: libraries/Menu.php:578 libraries/Util.php:4330 libraries/Util.php:4345 +#: libraries/Util.php:4362 libraries/config/messages.inc.php:260 #: libraries/display_import.lib.php:108 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:241 +#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:241 #: setup/frames/menu.inc.php:26 msgid "Import" msgstr "Importera" @@ -1680,7 +1629,6 @@ msgid "No files available on server for import!" msgstr "Inga filer tillgängliga för import på servern!" #: js/messages.php:328 -#| msgid "Analyse Query" msgid "Analyse query" msgstr "Analysera frågan" @@ -1720,7 +1668,13 @@ msgstr "Test" msgid "Formatting SQL…" msgstr "Formatering SQL…" -#: js/messages.php:346 libraries/server_variables.lib.php:159 +#: js/messages.php:343 +#, fuzzy +#| msgid "Bad parameters!" +msgid "No parameters found!" +msgstr "Felaktiga parametrar!" + +#: js/messages.php:347 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 @@ -1731,66 +1685,59 @@ msgstr "Formatering SQL…" msgid "Cancel" msgstr "Avbryt" -#: js/messages.php:349 libraries/Header.php:457 -#| msgid "Change settings" +#: js/messages.php:350 libraries/Header.php:457 msgid "Page-related settings" msgstr "Sida-relaterade inställningar" -#: js/messages.php:350 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:351 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Verkställ" -#: js/messages.php:353 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:354 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:124 msgid "Loading…" msgstr "Laddar…" -#: js/messages.php:354 -#| msgid "Request Aborted!!" +#: js/messages.php:355 msgid "Request aborted!!" msgstr "Begäran avbröts!" -#: js/messages.php:355 -#| msgid "Processing Request" +#: js/messages.php:356 msgid "Processing request" msgstr "Bearbetar begäran" -#: js/messages.php:356 -#| msgid "Request Aborted!!" +#: js/messages.php:357 msgid "Request failed!!" msgstr "Begäran misslyckades!" -#: js/messages.php:357 -#| msgid "Error in processing request:" +#: js/messages.php:358 msgid "Error in processing request" msgstr "Fel i processbegäran" -#: js/messages.php:358 +#: js/messages.php:359 #, php-format msgid "Error code: %s" msgstr "Felkod: %s" -#: js/messages.php:359 +#: js/messages.php:360 #, php-format msgid "Error text: %s" msgstr "Felmeddelande: %s" -#: js/messages.php:360 libraries/db_common.inc.php:73 +#: js/messages.php:361 libraries/db_common.inc.php:73 #: libraries/db_table_exists.lib.php:33 libraries/server_databases.lib.php:462 msgid "No databases selected." msgstr "Inga databaser markerade." -#: js/messages.php:361 -#| msgid "Dropping Column" +#: js/messages.php:362 msgid "Dropping column" msgstr "Tar bort kolumn" -#: js/messages.php:362 -#| msgid "Add primary key" +#: js/messages.php:363 msgid "Adding primary key" msgstr "Lägg till primär nyckel" -#: js/messages.php:363 +#: js/messages.php:364 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1800,172 +1747,165 @@ msgstr "Lägg till primär nyckel" msgid "OK" msgstr "OK" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Click to dismiss this notification" msgstr "Klicka för att ta bort detta meddelande" -#: js/messages.php:367 -#| msgid "Renaming Databases" +#: js/messages.php:368 msgid "Renaming databases" msgstr "Byta namn på databaser" -#: js/messages.php:368 -#| msgid "Copying Database" +#: js/messages.php:369 msgid "Copying database" msgstr "Kopiera databas" -#: js/messages.php:369 -#| msgid "Changing Charset" +#: js/messages.php:370 msgid "Changing charset" msgstr "Ändrar teckenuppsättning" -#: js/messages.php:373 libraries/Util.php:3289 -#| msgid "Disable foreign key checks" +#: js/messages.php:374 libraries/Util.php:3289 msgid "Enable foreign key checks" msgstr "Inaktivera kontroll av främmande nycklar" -#: js/messages.php:376 -#| msgid "Failed to fetch headers" +#: js/messages.php:377 msgid "Failed to get real row count." msgstr "Det gick inte att få riktiga radantal." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Searching" msgstr "Söker" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide search results" msgstr "Dölj sökresultat" -#: js/messages.php:381 +#: js/messages.php:382 msgid "Show search results" msgstr "Visa sökresultat" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Browsing" msgstr "Bläddrar bland" -#: js/messages.php:383 +#: js/messages.php:384 msgid "Deleting" msgstr "Raderar" -#: js/messages.php:387 +#: js/messages.php:388 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "Definitionen av en sparad funktion måste innehålla en RETURN-programsats!" -#: js/messages.php:388 libraries/DisplayResults.php:4832 -#: libraries/DisplayResults.php:5091 libraries/Menu.php:347 -#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3709 -#: libraries/Util.php:3710 libraries/Util.php:4328 libraries/Util.php:4343 -#: libraries/Util.php:4360 libraries/config/messages.inc.php:254 +#: js/messages.php:389 libraries/DisplayResults.php:4850 +#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 +#: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 +#: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2448 -#: libraries/server_privileges.lib.php:2527 -#: libraries/server_privileges.lib.php:2873 -#: libraries/server_privileges.lib.php:3532 -#: libraries/server_status_monitor.lib.php:321 prefs_manage.php:306 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2875 +#: libraries/server_privileges.lib.php:3543 +#: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 msgid "Export" msgstr "Exportera" -#: js/messages.php:391 libraries/rte/rte_routines.lib.php:742 +#: js/messages.php:392 libraries/rte/rte_routines.lib.php:742 msgid "ENUM/SET editor" msgstr "ENUM/SET editor" -#: js/messages.php:392 +#: js/messages.php:393 #, php-format msgid "Values for column %s" msgstr "Värden för kolumn %s" -#: js/messages.php:393 +#: js/messages.php:394 msgid "Values for a new column" msgstr "Värden för ny kolumn" -#: js/messages.php:394 +#: js/messages.php:395 msgid "Enter each value in a separate field." msgstr "Mata in varje värde i separat fält." -#: js/messages.php:395 +#: js/messages.php:396 #, php-format msgid "Add %d value(s)" msgstr "Lägg till %d värde(n)" -#: js/messages.php:399 +#: js/messages.php:400 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "Obs: Om filen innehåller multipla tabeller, kommer de förenas till en." -#: js/messages.php:403 +#: js/messages.php:404 msgid "Hide query box" msgstr "Göm sök-rutan" -#: js/messages.php:404 +#: js/messages.php:405 msgid "Show query box" msgstr "Visa frågerutan" -#: js/messages.php:405 libraries/Console.php:88 libraries/Console.php:217 -#: libraries/DisplayResults.php:3457 libraries/DisplayResults.php:4816 +#: js/messages.php:406 libraries/Console.php:88 libraries/Console.php:217 +#: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4834 #: libraries/Index.php:721 libraries/Util.php:727 libraries/Util.php:1238 -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:119 +#: libraries/server_user_groups.lib.php:121 #: libraries/server_variables.lib.php:242 #: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 msgid "Edit" msgstr "Redigera" -#: js/messages.php:406 libraries/Console.php:89 libraries/DbSearch.php:360 -#: libraries/DisplayResults.php:3526 libraries/DisplayResults.php:4800 +#: js/messages.php:407 libraries/Console.php:89 libraries/DbSearch.php:360 +#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4818 #: libraries/central_columns.lib.php:854 #: libraries/central_columns.lib.php:1200 libraries/display_export.lib.php:227 -#: libraries/server_user_groups.lib.php:129 -#: libraries/sql_query_form.lib.php:416 libraries/tracking.lib.php:480 +#: libraries/server_user_groups.lib.php:131 +#: libraries/sql_query_form.lib.php:417 libraries/tracking.lib.php:490 #: setup/frames/index.inc.php:187 setup/frames/index.inc.php:295 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Radera" -#: js/messages.php:407 libraries/DisplayResults.php:915 -#: libraries/DisplayResults.php:923 +#: js/messages.php:408 libraries/DisplayResults.php:919 +#: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d är inte ett giltigt radnummer." -#: js/messages.php:408 -#: libraries/controllers/table/TableSearchController.php:435 -#: libraries/controllers/table/TableSearchController.php:920 -#: libraries/sql.lib.php:193 tbl_change.php:159 +#: js/messages.php:409 +#: libraries/controllers/table/TableSearchController.php:432 +#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "Bläddra bland främmande värden" -#: js/messages.php:409 +#: js/messages.php:410 msgid "No auto-saved query" msgstr "Ingen auto-sparad fråga" -#: js/messages.php:410 +#: js/messages.php:411 #, php-format -#| msgid "Variable" msgid "Variable %d:" msgstr "Miljövariabeln %d:" -#: js/messages.php:413 libraries/normalization.lib.php:889 +#: js/messages.php:414 libraries/normalization.lib.php:889 msgid "Pick" msgstr "Välj" -#: js/messages.php:414 -#| msgid "No column selected." +#: js/messages.php:415 msgid "Column selector" msgstr "Kolumnväljaren" -#: js/messages.php:415 +#: js/messages.php:416 msgid "Search this list" msgstr "Sök i denna lista" -#: js/messages.php:417 +#: js/messages.php:418 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1974,16 +1914,15 @@ msgstr "" "Inga kolumner i huvud listan. Kontrollera att huvudlistan för databasen %s " "har kolumner som inte finns i den aktuella tabellen." -#: js/messages.php:420 -#| msgid "Free memory" +#: js/messages.php:421 msgid "See more" msgstr "Se mer" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Are you sure?" msgstr "Är du säker?" -#: js/messages.php:423 +#: js/messages.php:424 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1991,54 +1930,51 @@ msgstr "" "Den här åtgärden kan ändra några av kolumnerna definitionen.
Är du " "säker på att du vill fortsätta?" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "Fortsätt" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "Lägg till primär nyckel" -#: js/messages.php:430 -#| msgid "A primary key has been added on %s." +#: js/messages.php:431 msgid "Primary key added." msgstr "En primär nyckel har lagts till för %s." -#: js/messages.php:431 libraries/normalization.lib.php:194 -#| msgid "Taking you to %s." +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "Tar dig till nästa steg…" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Det första steget av normalisering är klar för tabellen '%s'." -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 -#| msgid "End of line" msgid "End of step" msgstr "Delslut" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "Andra steget av normalisering (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Klart" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "Bekräfta partiellt beroenden" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "Valda partiell beroenden är följande:" -#: js/messages.php:440 +#: js/messages.php:441 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2046,20 +1982,19 @@ msgstr "" "Obs: a, b-> d f innebär värden i kolumner a och b tillsammans kan bestämma " "värdena i kolumn d och f." -#: js/messages.php:443 -#| msgid "No databases selected." +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "Inga partiella beroenden valda!" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "Visa mig möjliga partiella beroenden baserat på data i tabellen" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "Dölj partiella beroende-listan" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2067,176 +2002,166 @@ msgstr "" "Bara lugn! Det kan ta några sekunder beroende på data och kolumn räkna i " "tabellen." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "Steg" -#: js/messages.php:454 -#| msgid "The following queries have been executed:" +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "Följande åtgärder utförs:" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "RADERA kolumner %s från tabellen %s" -#: js/messages.php:456 -#| msgid "Add privileges on the following table:" +#: js/messages.php:457 msgid "Create the following table" msgstr "Skapa följande tabell" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "Tredje steget i normalisering (3NF)" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "Bekräfta transitiva beroenden" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "Valda beroenden är följande:" -#: js/messages.php:462 -#| msgid "No databases selected." +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "Inga beroenden valda!" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Spara" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Dölj sökkriterier" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Visa sökkriterier" -#: js/messages.php:470 -#| msgid "Save search" +#: js/messages.php:471 msgid "Range search" msgstr "Sökområde" -#: js/messages.php:471 -#| msgid "Column names: " +#: js/messages.php:472 msgid "Column maximum:" msgstr "Högsta kolumn:" -#: js/messages.php:472 -#| msgid "Column names: " +#: js/messages.php:473 msgid "Column minimum:" msgstr "Minsta kolumn:" -#: js/messages.php:473 -#| msgid "Maximum tables" +#: js/messages.php:474 msgid "Minimum value:" msgstr "Minsta värde:" -#: js/messages.php:474 -#| msgid "Maximum tables" +#: js/messages.php:475 msgid "Maximum value:" msgstr "Högsta värdet:" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "Dölj sök och ersätt kriterierna" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "Visa sök och ersätt kriterierna" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "Varje punkt representerar en dataserie." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "Hovring över en punkt kommer visa dess etikett." -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "För att zooma in, välj en del av grafen med musen." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" "Klicka på återställningsknappen för att komma tillbaka till ursprungsläget." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "Klicka på en datapunkt för att visa och eventuellt redigera dataraden." -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "Kan ändra storlek genom att dra den längs nedre högra hörnet." -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "Välj två kolumner" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "Välj två olika kolumner" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "Innehåll för datapunkt" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignorera" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Kopiera" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Punkt" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Linestring" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Polygon" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometri" -#: js/messages.php:511 -#| msgid "Inner Ring" +#: js/messages.php:512 msgid "Inner ring" msgstr "Inre ringen" -#: js/messages.php:512 -#| msgid "Outer ring:" +#: js/messages.php:513 msgid "Outer ring" msgstr "Yttre ring" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "Vill du kopiera krypteringsnyckeln?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "Krypteringsnyckel" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2244,24 +2169,24 @@ msgstr "" "Anger att du har gjort ändringar på denna sida; du uppmanas att bekräfta " "bortdöende från förändringar" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Välj refererad nyckel" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Välj främmande nyckel" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "Välj den primära nyckeln eller en unik nyckel!" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Välj kolumn att visa" -#: js/messages.php:532 +#: js/messages.php:533 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?" @@ -2269,85 +2194,77 @@ msgstr "" "Du har inte sparat ändringarna i layouten. Dessa kommer förloras om du inte " "sparar dem. Vill du fortsätta?" -#: js/messages.php:535 +#: js/messages.php:536 msgid "Page name" msgstr "Sidnamn" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 -#| msgid "Select page" msgid "Save page" msgstr "Spara sidan" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 -#| msgid "Select page" msgid "Save page as" msgstr "Spara sidan som" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 -#| msgid "Free pages" msgid "Open page" msgstr "Öppen sida" -#: js/messages.php:539 -#| msgid "Select page" +#: js/messages.php:540 msgid "Delete page" msgstr "Radera sida" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 -#| msgid "Unit" +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Namnlöst" -#: js/messages.php:541 -#| msgid "Please choose a page to edit" +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "Välj en sida för att fortsätta" -#: js/messages.php:542 -#| msgid "Please enter a valid number!" +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "Vänligen ange ett giltigt sidnamn" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "Vill du spara ändringarna i den aktuella sidan?" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "Raderingen av sidan lyckades" -#: js/messages.php:546 -#| msgid "Edit or export relational schema" +#: js/messages.php:547 msgid "Export relational schema" msgstr "Exportera relationsschema" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Ändringarna har sparats" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "Lägg till ett alternativ för kolumnen \"%s\"." -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "%d objekt skapade." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Sänd" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "Tryck Escape för att avbryta redigeringen." -#: js/messages.php:557 +#: js/messages.php:558 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?" @@ -2355,15 +2272,15 @@ msgstr "" "Du har redigerat en del data och de har inte sparats. Är du säker på att du " "vill lämna denna sida innan du sparar uppgifterna?" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "Dra för att ändra ordning." -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "Klicka på sortera efter den här kolumnen." -#: js/messages.php:563 +#: js/messages.php:564 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 " @@ -2373,26 +2290,26 @@ msgstr "" "växla ASC/DESC.< br />-Ctrl-klicka eller Alt-klicka (Mac: Skift+Alt+klicka) " "för att ta bort kolumnen från SORTERA VID-instruktionen" -#: js/messages.php:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "Klicka för att markera/avmarkera." -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "Dubbelklicka för att kopiera kolumnnamn." -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Klicka på pilen
för att växla kolumnens synlighet." -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Visa alla" -#: js/messages.php:574 +#: js/messages.php:575 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." @@ -2401,152 +2318,106 @@ msgstr "" "nätet redigera, kryssruta, redigera, kopiera och radera-länkar kanske inte " "fungerar när du har sparat." -#: js/messages.php:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "Ange en giltig hexadecimal sträng. Giltiga tecken är 0-9, A-F." -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." -msgstr "Vill du se alla rader? För en stor tabell kan detta krasch webbläsaren." +msgstr "" +"Vill du se alla rader? För en stor tabell kan detta krasch webbläsaren." -#: js/messages.php:583 -#| msgid "Original string" +#: js/messages.php:584 msgid "Original length" msgstr "Ursprunglig längd" -#: js/messages.php:586 -#| msgid "Cancel" +#: js/messages.php:587 msgid "cancel" msgstr "Avbryt" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Avbrutna" -#: js/messages.php:589 -#| msgid "Success!" +#: js/messages.php:590 msgid "Success" msgstr "Lyckades" -#: js/messages.php:590 -#| msgid "Import defaults" +#: js/messages.php:591 msgid "Import status" msgstr "Importstatus" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 -#| msgid "Log file threshold" +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Släpp filer här" -#: js/messages.php:592 -#| msgid "Select Tables" +#: js/messages.php:593 msgid "Select database first" msgstr "Markera databasen först" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Du kan även redigera de flesta värden
genom att dubbelklicka direkt på " "dessa." -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Du kan även redigera de flesta värden
genom att klicka direkt på dessa." -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "Gå till länk:" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "Kopiera kolumnnamn." -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "Högerklicka på kolumnnamnet för att kopiera det till urklipp." -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Skapa lösenord" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Generera" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "Mera" -#: js/messages.php:623 -#| msgid "Show Panel" +#: js/messages.php:624 msgid "Show panel" msgstr "Visa panel" -#: js/messages.php:624 -#| msgid "Hide Panel" +#: js/messages.php:625 msgid "Hide panel" msgstr "Dölj Panel" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "Visa dolda navigationsträdsobjekt." -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 -#| msgid "Customize main panel" msgid "Link with main panel" msgstr "Länka med huvudpanelen" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 -#| msgid "Customize main panel" +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "Avlänka från huvudpanelen" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" -"Om du vill filtrera alla databaser på servern, tryck på RETUR efter en " -"sökterm" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" -"Om du vill filtrera alla %s i databasen, trycker på RETUR efter en sökterm" - #: js/messages.php:632 -#| msgid "Tables" -msgid "tables" -msgstr "tabeller" - -#: js/messages.php:633 -#| msgid "Views" -msgid "views" -msgstr "vy" - -#: js/messages.php:634 -#| msgid "Procedures" -msgid "procedures" -msgstr "Procedurer" - -#: js/messages.php:635 -#| msgid "event" -msgid "events" -msgstr "händelser" - -#: js/messages.php:636 -#| msgid "Functions" -msgid "functions" -msgstr "Funktioner" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "Den begärda sidan hittades inte i historien, den kan ha upphört." -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2556,53 +2427,49 @@ msgstr "" "senaste versionen är %s, publicerad den %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", senaste stabila version:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "aktuell" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "Skapa vy" -#: js/messages.php:654 -#| msgid "Send error reports" +#: js/messages.php:646 msgid "Send error report" msgstr "Skicka felrapport" -#: js/messages.php:655 -#| msgid "Submit Error Report" +#: js/messages.php:647 msgid "Submit error report" msgstr "Skicka felrapport" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" "Ett allvarligt JavaScript-fel har uppstått. Vill du skicka en felrapport?" -#: js/messages.php:659 -#| msgid "Change Report Settings" +#: js/messages.php:651 msgid "Change report settings" msgstr "Ändra rapportinställningar" -#: js/messages.php:660 -#| msgid "Show Report Details" +#: js/messages.php:652 msgid "Show report details" msgstr "Visa rapportdetaljer" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" "Din export är inkomplett på grund av en låg exekveringstidsgräns på PHP-nivå!" -#: js/messages.php:667 +#: js/messages.php:659 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2612,64 +2479,58 @@ msgstr "" "kan några av fälten ignoreras på grund av max_input_vars-inställningen för " "PHP." -#: js/messages.php:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "Fel har påträffats på servern!" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "Titta längst ned i fönstret." -#: js/messages.php:681 libraries/ErrorHandler.php:340 -#| msgid "Ignore" +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "Ignorera alla" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "Enligt dina inställningar, ha tålamod." -#: js/messages.php:699 -#| msgid "Show this query here again" +#: js/messages.php:691 msgid "Execute this query again?" msgstr "Köra den här frågan igen?" -#: js/messages.php:701 -#| msgid "Do you really want to delete the search \"%s\"?" +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "Vill du verkligen ta bort detta bokmärke?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "Vissa fel uppstod när SQL inhämtade felinformation." -#: js/messages.php:705 +#: js/messages.php:697 #, php-format -#| msgid "Executed queries" msgid "%s queries executed %s times in %s seconds." msgstr "%s frågor körs %s gånger i %s sekunder." -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "%s argument utförda" -#: js/messages.php:707 -#| msgid "Table comments" +#: js/messages.php:699 msgid "Show arguments" msgstr "Visa argument" -#: js/messages.php:708 -#| msgid "Hide search results" +#: js/messages.php:700 msgid "Hide arguments" msgstr "Dölja argument" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "Tidsåtgång:" -#: js/messages.php:711 +#: js/messages.php:703 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 " @@ -2679,349 +2540,333 @@ msgstr "" "quota-gränsen nåtts, vissa funktioner kanske inte fungerar för dig. I Safari " "orsakas sådana problem vanligen av \"Privat surfläge\"." -#: js/messages.php:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "Föregående" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "Nästa" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Idag" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "januari" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "februari" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "mars" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "april" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "maj" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "juni" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "juli" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "augusti" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "september" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "oktober" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "november" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "mars" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "dec" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "Söndag" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "Måndag" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "Tisdag" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "Onsdag" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "Torsdag" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "Fredag" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "Lördag" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "Sön" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Mån" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Tis" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Ons" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Tors" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Fre" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Lör" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "Sö" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "Må" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "Ti" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "On" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "To" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "Lö" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "Vecka" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "kalender-månad-år" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Timmar" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Minuter" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Sekunder" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "Detta fältet är obligatoriskt" -#: js/messages.php:885 -#| msgid "Use text field" +#: js/messages.php:877 msgid "Please fix this field" msgstr "Var vänlig och rätta detta fält" -#: js/messages.php:886 -#| msgid "Please enter a valid number!" +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "Ange en giltig e-postadress" -#: js/messages.php:887 -#| msgid "Please enter a valid number!" +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "Skriv in en giltig webbadress (URL)" -#: js/messages.php:888 -#| msgid "Please enter a valid number!" +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "Ange ett giltigt datum" -#: js/messages.php:889 -#| msgid "Please enter a valid number!" +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "Ange ett giltigt datum (ISO)" -#: js/messages.php:890 -#| msgid "Please enter a valid number!" +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "Var vänlig ange ett giltigt nummer" -#: js/messages.php:891 -#| msgid "Please enter a valid number!" +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "Skriv in ett giltigt kreditkortsnummer" -#: js/messages.php:892 -#| msgid "Please enter a valid length!" +#: js/messages.php:890 msgid "Please enter only digits" msgstr "Ange endast siffror" #: js/messages.php:893 -#| msgid "Please enter a valid number!" msgid "Please enter the same value again" msgstr "Skriv in samma värde igen" -#: js/messages.php:894 -#| msgid "Please enter correct captcha!" +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "Ange inte mer än {0} tecken" -#: js/messages.php:895 -#| msgid "Please enter correct captcha!" +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "Ange minst {0} tecken" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "Ange ett värde som är {0} eller {1} tecken långt" -#: js/messages.php:897 -#| msgid "Please enter a valid number!" +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "Ange ett värde mellan {0} och {1}" -#: js/messages.php:898 -#| msgid "Please enter a valid length!" +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "Ange ett värde som är mindre än eller lika med {0}" -#: js/messages.php:899 -#| msgid "Please enter a valid number!" +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "Ange ett värde större än eller lika med {0}" -#: js/messages.php:901 -#| msgid "Please enter a valid number!" +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "Ange ett giltigt datum eller tid" -#: js/messages.php:902 -#| msgid "Please enter a valid number!" +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "Skriv in en giltig Hexadecimalt värde" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Fel" @@ -3090,7 +2935,6 @@ msgstr "Teckenstorlek" #: libraries/Console.php:85 libraries/Console.php:213 #: libraries/Console.php:316 -#| msgid "Expand/Collapse" msgid "Collapse" msgstr "Slå ihop" @@ -3100,7 +2944,6 @@ msgid "Expand" msgstr "Expandera" #: libraries/Console.php:87 libraries/Console.php:216 -#| msgid "subquery" msgid "Requery" msgstr "Ny fråga" @@ -3111,11 +2954,12 @@ msgstr "Ny fråga" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3123,7 +2967,6 @@ msgstr "Databas" #: libraries/Console.php:100 #, php-format -#| msgid "New bookmark" msgid "Total %d bookmark" msgid_plural "Total %d bookmarks" msgstr[0] "Totalt %d bokmärke" @@ -3143,46 +2986,38 @@ msgstr "delad" #. for shared #: libraries/Console.php:119 #, php-format -#| msgid "The bookmark has been deleted." msgid "%1$s, %2$s and %3$s bookmarks included" msgstr "%1$s, %2$s och %3$s bokmärken ingår" #: libraries/Console.php:125 -#| msgid "New bookmark" msgid "No bookmarks" msgstr "Inga bokmärken" #: libraries/Console.php:186 -#| msgid "Skip current error" msgid "During current session" msgstr "Under aktuell session" #: libraries/Console.php:218 -#| msgid "Explain SQL" msgid "Explain" msgstr "Förklara" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Profilering" #: libraries/Console.php:221 -#| msgid "Bookmark table" msgid "Bookmark" msgstr "Bokmärke" #: libraries/Console.php:222 -#| msgid "Query cache" msgid "Query failed" msgstr "Query misslyckades" #: libraries/Console.php:226 -#| msgid "Query execution time" msgid "Queried time" msgstr "Exekveringstid för frågor" #: libraries/Console.php:233 -#| msgid "SQL Query box" msgid "SQL Query Console" msgstr "SQL-frågeruta" @@ -3196,13 +3031,12 @@ msgid "Clear" msgstr "Rensa" #: libraries/Console.php:240 -#| msgid "SQL history" msgid "History" msgstr "Historik" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3230,7 +3064,6 @@ msgid "Options" msgstr "Alternativ" #: libraries/Console.php:247 libraries/Console.php:335 -#| msgid "Bookmark table" msgid "Bookmarks" msgstr "Bokmärken" @@ -3240,27 +3073,22 @@ msgid "Debug SQL" msgstr "Debugga SQL" #: libraries/Console.php:260 -#| msgid "Execute every" msgid "Press Ctrl+Enter to execute query" msgstr "Tryck på Ctrl Enter för att exekvera frågan" #: libraries/Console.php:262 -#| msgid "Execute every" msgid "Press Enter to execute query" msgstr "Tryck på Enter för att köra frågan" #: libraries/Console.php:280 -#| msgid "Ascending" msgid "ascending" msgstr "Stigande" #: libraries/Console.php:283 -#| msgid "Descending" msgid "descending" msgstr "fallande" #: libraries/Console.php:286 -#| msgid "Order" msgid "Order:" msgstr "Sorteringsordning:" @@ -3269,7 +3097,6 @@ msgid "Count" msgstr "Räkna" #: libraries/Console.php:295 -#| msgid "Execute every" msgid "Execution order" msgstr "Körningsordningen" @@ -3278,32 +3105,26 @@ msgid "Time taken" msgstr "Tidsåtgång" #: libraries/Console.php:301 -#| msgid "Order" msgid "Order by:" msgstr "Sorteringsordning:" #: libraries/Console.php:304 -#| msgid "SQL queries" msgid "Group queries" msgstr "Grupp sökfrågor" #: libraries/Console.php:307 -#| msgid "SQL queries" msgid "Ungroup queries" msgstr "Dela upp frågor" #: libraries/Console.php:318 -#| msgid "Show color" msgid "Show trace" msgstr "Visa spår" #: libraries/Console.php:320 -#| msgid "Hide Panel" msgid "Hide trace" msgstr "Dölja spår" #: libraries/Console.php:322 -#| msgid "Count" msgid "Count:" msgstr "Antal:" @@ -3315,17 +3136,14 @@ msgid "Refresh" msgstr "Uppdatera" #: libraries/Console.php:342 -#| msgid "And" msgid "Add" msgstr "Lägg till" #: libraries/Console.php:351 -#| msgid "New bookmark" msgid "Add bookmark" msgstr "Lägg till bokmärke" #: libraries/Console.php:355 -#| msgid "Label:" msgid "Label" msgstr "Etikett" @@ -3334,22 +3152,18 @@ msgid "Target database" msgstr "Måldatabas" #: libraries/Console.php:360 -#| msgid "Create bookmark" msgid "Share this bookmark" msgstr "Dela detta bokmärke" #: libraries/Console.php:377 -#| msgid "Reset to default" msgid "Set default" msgstr "Sätt som standard" #: libraries/Console.php:381 -#| msgid "Always send error reports" msgid "Always expand query messages" msgstr "Expandera alltid frågemeddelanden" #: libraries/Console.php:383 -#| msgid "SQL query history table" msgid "Show query history at start" msgstr "Visa sökhistorik vid start" @@ -3366,11 +3180,10 @@ msgstr "" "inställningar för att göra detta permanent." #: libraries/Console.php:392 -#| msgid "Switch to copied table" msgid "Switch to dark theme" msgstr "Växla till mörkt tema" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3378,25 +3191,25 @@ msgstr "" "Servern svarar inte (eller den lokala serverns socket är inte korrekt " "konfigurerad)." -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "Servern svarar inte." -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "Kontrollera privilegierna för katalogen som innehåller databasen." -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Detaljer…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Uppkoppling för kontrollanvändare enligt din konfiguration misslyckades." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3406,8 +3219,8 @@ msgstr "" msgid "Ascending" msgstr "Stigande" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3430,7 +3243,6 @@ msgid "Sort:" msgstr "Sortera:" #: libraries/DbQbe.php:632 -#| msgid "Sort:" msgid "Sort order:" msgstr "Sorteringsordning:" @@ -3551,8 +3363,8 @@ msgstr[0] "%1$s träff i %2$s" msgstr[1] "%1$s träffar i %2$s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3587,7 +3399,6 @@ msgstr "Inuti tabeller:" #: libraries/DbSearch.php:445 libraries/display_export.lib.php:52 #: libraries/replication_gui.lib.php:383 -#| msgid "Unselect All" msgid "Unselect all" msgstr "Avmarkera alla" @@ -3595,186 +3406,184 @@ msgstr "Avmarkera alla" msgid "Inside column:" msgstr "Inuti kolumnen:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "Spara editerade data" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "Återställ ordningen på kolumner" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 -#| msgid "Filters" +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "Filtrera rader" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "Sök i denna tabell" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "Starta" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "Föregående" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "Nästa" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "Slut" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Alla" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Antal rader:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Sortera efter nyckel" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "Förkortade texter" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "Kompletta texter" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Besläktad nyckel" -#: libraries/DisplayResults.php:1728 -#| msgid "Display foreign key relationships" +#: libraries/DisplayResults.php:1735 msgid "Display column for relations" msgstr "Visa kolumnen för förbindelserna" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "Visa binärt innehåll" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "Visa BLOB-innehåll" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "Dölj webbläsarens transformation" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "Välkänd text" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "Välkänd binär" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "Raden har raderats." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Döda" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Kan vara ungefärligt. Se [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "Din SQL-fråga utfördes korrekt." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "Denna vy har åtminstone detta antal rader. Se %sdokumentationen%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "Visar raderna %1s - %2s" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d totalt, %2$d i fråga" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "%d totalt" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "Frågan tog %01.4f sekunder." -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Med markerade:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 -#| msgid "Check All" msgid "Check all" msgstr "Markera alla" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Utskriftsvänlig visning" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Operationer för frågeresultat" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Visa diagram" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "Visualisera GIS-data" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "Länken hittades inte!" @@ -3783,7 +3592,6 @@ msgid "Too many error messages, some are not displayed." msgstr "För många felmeddelanden, en del kommer inte visas." #: libraries/ErrorHandler.php:325 -#| msgid "Import" msgid "Report" msgstr "Rapport" @@ -3837,7 +3645,6 @@ msgid "Error while moving uploaded file." msgstr "Fel vid flytt av uppladdad fil." #: libraries/File.php:495 -#| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." msgstr "Kan inte läsa uppladdad fil." @@ -3871,19 +3678,19 @@ msgstr "Inga index är definierade!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Index" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3892,24 +3699,24 @@ msgid "Action" msgstr "Åtgärd" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Nyckelnamn" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Unik" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Packad" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Kardinalitet" @@ -3917,8 +3724,8 @@ msgstr "Kardinalitet" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3928,8 +3735,8 @@ msgid "Collation" msgstr "Kollationering" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3945,15 +3752,15 @@ msgstr "Den primära nyckeln har tagits bort." msgid "Index %s has been dropped." msgstr "Index %s har tagits bort." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Radera" @@ -3992,12 +3799,13 @@ msgstr "Vy" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4005,7 +3813,7 @@ msgstr "Tabell" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4014,8 +3822,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4023,41 +3831,41 @@ msgid "Search" msgstr "Sök" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Lägg till" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilegier" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Operationer" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Spårning" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4068,16 +3876,16 @@ msgstr "Trigger" msgid "Database seems to be empty!" msgstr "Databasen verkar vara tom!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Fråga" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rutiner" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4085,57 +3893,55 @@ msgstr "Rutiner" msgid "Events" msgstr "Händelser" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Designer" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 -#| msgid "Textarea columns" msgid "Central columns" msgstr "Huvud-kolumner" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Databaser" #: libraries/Menu.php:564 -#| msgid "User groups" msgid "User accounts" msgstr "Användarkonton" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Binär logg" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikering" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Variabler" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Teckenuppsättningar" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Motorer" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "Insticksprogram" @@ -4433,7 +4239,7 @@ msgstr "Kan inte byta namn på index till \"PRIMARY\"!" msgid "No index parts defined!" msgstr "Inga delar av index är definierade!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Fel vid skapande av främmande nyckel för %1$s (kontrollera datatyper)" @@ -4818,7 +4624,6 @@ msgid "Max: %s%s" msgstr "Max: %s%s" #: libraries/Util.php:681 -#| msgid "Static data" msgid "Static analysis:" msgstr "Statisk analys:" @@ -4864,12 +4669,10 @@ msgid "Submit query" msgstr "Skicka fråga" #: libraries/Util.php:1275 libraries/config/messages.inc.php:898 -#| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Skapa PHP-kod" #: libraries/Util.php:1338 -#| msgid "Edit index" msgctxt "Inline edit query" msgid "Edit inline" msgstr "Redigera infogade" @@ -4909,37 +4712,37 @@ msgstr "Funktionaliteten för %s påverkas av en känd bugg, se %s" msgid "Click to toggle" msgstr "Klicka för att växla" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Gå igenom din dator:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Välj från webbserverns uppladdningskatalog %s:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Katalogen du ställt in för uppladdning kan inte nås." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "Det finns inga filer att ladda upp!" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Töm" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "Utför" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Skriv ut" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "Användare" @@ -5012,7 +4815,6 @@ msgid "Check privileges for database \"%s\"." msgstr "Kontrollera privilegier för databas \"%s\"." #: libraries/build_html_for_db.lib.php:187 -#| msgid "Check Privileges" msgid "Check privileges" msgstr "Kontrollera privilegier" @@ -5078,7 +4880,6 @@ msgid "Length/Values" msgstr "Längd/Värden" #: libraries/central_columns.lib.php:707 -#| msgid "Attributes" msgid "Attribute" msgstr "Egenskaper" @@ -5088,7 +4889,6 @@ msgid "A_I" msgstr "A_I" #: libraries/central_columns.lib.php:751 -#| msgid "Select Tables" msgid "Select a table" msgstr "Välj först en tabell" @@ -5102,13 +4902,12 @@ msgid "Select a column." msgstr "Välj en kolumn." #: libraries/central_columns.lib.php:1264 -#| msgid "Add column" msgid "Add new column" msgstr "Lägg till ny kolumn" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5166,28 +4965,28 @@ msgid "" "currently using the default time zone of the database server." msgstr "" "Det går inte att använda tidszon %1$s för servern %2$d. Vänligen kontrollera " -"din konfigurationsinställning för " -"[em]$cfg['Servers'][%3$d]['SessionTimeZone'][/em]. phpMyAdmin för närvarande " -"används standardtidszonen på databasservern." +"din konfigurationsinställning för [em]$cfg['Servers'][%3$d]" +"['SessionTimeZone'][/em]. phpMyAdmin för närvarande används " +"standardtidszonen på databasservern." #: libraries/common.inc.php:1014 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Du bör uppgradera till %s %s eller senare." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "Fel: Token matchningsfel" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "Överskrivningsförsök av GLOBALS" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "möjlig exploatering" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "numerisk tangent upptäckt" @@ -5237,12 +5036,10 @@ msgid "key" msgstr "nyckel" #: libraries/config.values.php:99 -#| msgid "Display columns table" msgid "display column" msgstr "Visa kolumn" #: libraries/config.values.php:103 -#| msgid "Welcome to %s" msgid "Welcome" msgstr "Välkommen" @@ -5267,17 +5064,14 @@ msgid "Never send error reports" msgstr "Skicka aldrig felrapporter" #: libraries/config.values.php:133 -#| msgid "Reset to default" msgid "Server default" msgstr "Serverstandard" #: libraries/config.values.php:134 -#| msgid "Enabled" msgid "Enable" msgstr "Aktivera" #: libraries/config.values.php:135 -#| msgid "Disabled" msgid "Disable" msgstr "Inaktivera" @@ -5416,7 +5210,6 @@ msgid "Allow users to customize this value" msgstr "Tillåt användare att anpassa detta värde" #: libraries/config/PageSettings.php:141 -#| msgid "Cannot save settings, submitted form contains errors!" msgid "Cannot save settings, submitted configuration form contains errors!" msgstr "" "Kan inte spara inställningar, sänt konfigurationsformulär innehåller fel!" @@ -5439,12 +5232,6 @@ msgstr "Nyckeln ska innehålla bokstäver, siffror [em]och[/em] specialtecken." #: libraries/config/ServerConfigChecks.php:383 #, php-format -#| msgid "" -#| "This %soption%s should be disabled as it allows attackers to bruteforce " -#| "login to any MySQL server. If you feel this is necessary, use %strusted " -#| "proxies list%s. However, IP-based protection may not be reliable if your " -#| "IP belongs to an ISP where thousands of users, including you, are " -#| "connected to." msgid "" "This %soption%s should be disabled as it allows attackers to bruteforce " "login to any MySQL server. If you feel this is necessary, use %srestrict " @@ -5452,8 +5239,8 @@ msgid "" "protection with trusted proxies list may not be reliable if your IP belongs " "to an ISP where thousands of users, including you, are connected to." msgstr "" -"Denna %soption%s ska inaktiveras eftersom det gör att angripare kan \"" -"tvångsinlogga\" till MySQL server. Om du känner att detta är nödvändigt, " +"Denna %soption%s ska inaktiveras eftersom det gör att angripare kan " +"\"tvångsinlogga\" till MySQL server. Om du känner att detta är nödvändigt, " "Använd %srestrict login tp MySQL server%s eller %strusted proxies list%s. IP-" "baserade skydd med betrodda fullmakter kanske inte tillförlitlig om din IP " "tillhör en ISP där tusentals användare är anslutna." @@ -5641,7 +5428,6 @@ msgstr "" "MySQL-servern till det givna reguljära uttrycket." #: libraries/config/messages.inc.php:26 -#| msgid "Cannot log in to the MySQL server" msgid "Restrict login to MySQL server" msgstr "Begränsa inloggning till MySQL-server" @@ -5737,7 +5523,6 @@ msgstr "" "Rätta till sökningen innan du kör den. Kräver att \"CodeMirror\" aktiveras." #: libraries/config/messages.inc.php:67 -#| msgid "Enable SQL Validator" msgid "Enable linter" msgstr "Aktivera filtrering" @@ -5844,12 +5629,10 @@ msgid "Default table tab" msgstr "Förvald tabellflik" #: libraries/config/messages.inc.php:110 -#| msgid "Enclose table and column names with backquotes" msgid "Autocomplete of the table and column names in the SQL queries." msgstr "Automatisk komplettering av namn på tabell och kolumn i SQL-sökningar." #: libraries/config/messages.inc.php:113 -#| msgid "Enclose table and column names with backquotes" msgid "Enable autocomplete for table and column names" msgstr "Aktivera \"auto-fyll\" för tabell-och kolumnnamn" @@ -5895,7 +5678,6 @@ msgstr "Maximal exekveringstid" #: libraries/config/messages.inc.php:132 libraries/display_export.lib.php:801 #, php-format -#| msgid "Add %s statement" msgid "Use %s statement" msgstr "Använd %s uttalande" @@ -6037,7 +5819,6 @@ msgid "Overwrite existing file(s)" msgstr "Skriv över befintlig(a) fil(er)" #: libraries/config/messages.inc.php:181 -#| msgid "Export table headers" msgid "Export as separate files" msgstr "Exportera som separata filer" @@ -6046,7 +5827,7 @@ msgid "Remember file name template" msgstr "Kom ihåg mall för filnamn" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Lägg till AUTO_INCREMENT-värde" @@ -6078,7 +5859,6 @@ msgid "Export views as tables" msgstr "Exportera vyer som tabeller" #: libraries/config/messages.inc.php:195 -#| msgid "Missing phpMyAdmin configuration storage tables" msgid "Export related metadata from phpMyAdmin configuration storage" msgstr "Exportera relaterade metadata från sparade inställningar i phpMyAdmin" @@ -6086,13 +5866,12 @@ msgstr "Exportera relaterade metadata från sparade inställningar i phpMyAdmin" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Lägg till %s" #: libraries/config/messages.inc.php:206 -#| msgid "Use hexadecimal for BLOB" msgid "Use hexadecimal for BINARY & BLOB" msgstr "Använd hexadecimalt för BINARY & BLOB" @@ -6165,7 +5944,6 @@ msgstr "" "sökningar." #: libraries/config/messages.inc.php:243 -#| msgid "Foreign key check:" msgid "Foreign key checks" msgstr "Kontroll av sekundärnyckel" @@ -6260,12 +6038,10 @@ msgid "Customize appearance of the navigation panel." msgstr "Anpassa navigationspanelens utseende." #: libraries/config/messages.inc.php:272 -#| msgid "Navigation panel" msgid "Navigation tree" msgstr "Navigationsträd" #: libraries/config/messages.inc.php:273 -#| msgid "Customize navigation panel" msgid "Customize the navigation tree." msgstr "Anpassa navigeringspanelen." @@ -6303,10 +6079,6 @@ msgid "Page titles" msgstr "Sidtitlar" #: libraries/config/messages.inc.php:288 -#| msgid "" -#| "Specify browser's title bar text. Refer to " -#| "[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be " -#| "used to get special values." msgid "" "Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] " "for magic strings that can be used to get special values." @@ -6585,7 +6357,6 @@ msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Använd inte AUTO_INCREMENT för nollvärden" #: libraries/config/messages.inc.php:403 -#| msgid "Read misses" msgid "Read as multibytes" msgstr "Läs som multibytes" @@ -6733,9 +6504,6 @@ msgid "Maximum tables" msgstr "Maximalt antal tabeller" #: libraries/config/messages.inc.php:465 -#| msgid "" -#| "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " -#| "([kbd]0[/kbd] for no limit)." msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]-1[/kbd] for no limit and [kbd]0[/kbd] for no change)." @@ -6752,7 +6520,6 @@ msgid "In the navigation panel, replaces the database tree with a selector" msgstr "I navigeringspanelen, ersätter databasen trädet med en väljare" #: libraries/config/messages.inc.php:473 -#| msgid "Show hidden navigation tree items." msgid "Show databases navigation as tree" msgstr "Visa databasnavigering som träd" @@ -6803,7 +6570,6 @@ msgid "Target for quick access icon" msgstr "Mål för snabbåtkomst-ikon" #: libraries/config/messages.inc.php:494 -#| msgid "Target for quick access icon" msgid "Target for second quick access icon" msgstr "Mål för sekundär snabbåtkomst-ikon" @@ -6824,9 +6590,6 @@ msgid "Minimum number of databases to display the database filter box" msgstr "Minsta antal databaser för att visa filterboxen för databaser" #: libraries/config/messages.inc.php:505 -#| msgid "" -#| "Group items in the navigation tree (determined by the separator defined " -#| "below)." msgid "" "Group items in the navigation tree (determined by the separator defined in " "the Databases and Tables tabs above)." @@ -6867,38 +6630,31 @@ msgid "Enable highlighting" msgstr "Aktivera framhävning" #: libraries/config/messages.inc.php:520 -#| msgid "Whether to disable the possibility of database expansion or not." msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "Möjliggör trädexpansion i navigationspanelen." #: libraries/config/messages.inc.php:523 -#| msgid "Table navigation bar" msgid "Enable navigation tree expansion" msgstr "Aktivera trädexpansion i navigationspanelen" #: libraries/config/messages.inc.php:524 -#| msgid "Showing tables:" msgid "Show tables in tree" msgstr "Visa tabeller som träd" #: libraries/config/messages.inc.php:526 -#| msgid "Whether to disable the possibility of database expansion or not." msgid "Whether to show tables under database in the navigation tree" msgstr "Om du vill visa tabeller från databasen i navigeringsträdet" #: libraries/config/messages.inc.php:527 -#| msgid "Show versions" msgid "Show views in tree" msgstr "Visa vyer som träd" #: libraries/config/messages.inc.php:529 -#| msgid "Show hidden navigation tree items." msgid "Whether to show views under database in the navigation tree" msgstr "Om du vill visa vyer från databasen i navigationsträdet" #: libraries/config/messages.inc.php:530 -#| msgid "Show function fields" msgid "Show functions in tree" msgstr "Visa funktioner som träd" @@ -6907,7 +6663,6 @@ msgid "Whether to show functions under database in the navigation tree" msgstr "Möjliggör funktionsvisning från databas i navigeringsträdet" #: libraries/config/messages.inc.php:533 -#| msgid "Show processes" msgid "Show procedures in tree" msgstr "Visa processer som träd" @@ -6917,12 +6672,10 @@ msgstr "" "Möjliggör visning av processer kopplade till databasen i navigeringsträdet" #: libraries/config/messages.inc.php:536 -#| msgid "Show versions" msgid "Show events in tree" msgstr "Visa händelser som träd" #: libraries/config/messages.inc.php:538 -#| msgid "Show hidden navigation tree items." msgid "Whether to show events under database in the navigation tree" msgstr "" "Möjliggör visning av händelser kopplade till databas i navigeringsträdet" @@ -7099,7 +6852,6 @@ msgid "Default sort order for tables with a primary key." msgstr "Standardsorteringsordning för tabeller med en primär nyckel." #: libraries/config/messages.inc.php:609 -#| msgid "Default sorting order" msgid "Primary key default sort order" msgstr "Primärnyckels förvandla sorteringsordning" @@ -7118,12 +6870,10 @@ msgid "Grid editing: trigger action" msgstr "Rutnäts-redigering: utlösningsåtgärd" #: libraries/config/messages.inc.php:615 -#| msgid "Relational display column" msgid "Relational display" msgstr "Relations-visning" #: libraries/config/messages.inc.php:616 -#| msgid "Servers display options." msgid "For display Options" msgstr "Visningsalternativ" @@ -7164,7 +6914,6 @@ msgid "Allow root login" msgstr "Tillåt root-inloggning" #: libraries/config/messages.inc.php:626 -#| msgid "Session value" msgid "Session timezone" msgstr "Sessions tidszon" @@ -7345,14 +7094,10 @@ msgid "Maximal number of table preferences to store" msgstr "Maximalt antal tabellinställningar att spara" #: libraries/config/messages.inc.php:696 -#| msgid "See slave status table" msgid "QBE saved searches table" msgstr "QBE sparade sökningar" #: libraries/config/messages.inc.php:698 -#| msgid "" -#| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/" -#| "kbd]." msgid "" "Leave blank for no QBE saved searches support, suggested: " "[kbd]pma__savedsearches[/kbd]." @@ -7361,14 +7106,10 @@ msgstr "" "pma__savedsearches [/kbd]." #: libraries/config/messages.inc.php:701 -#| msgid "Export views as tables" msgid "Export templates table" msgstr "Exportera tabellmallar" #: libraries/config/messages.inc.php:703 -#| msgid "" -#| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/" -#| "kbd]." msgid "" "Leave blank for no export template support, suggested: " "[kbd]pma__export_templates[/kbd]." @@ -7377,20 +7118,16 @@ msgstr "" "pma__export_templates [/kbd]." #: libraries/config/messages.inc.php:706 -#| msgid "Textarea columns" msgid "Central columns table" msgstr "Huvudkolumnstabell" #: libraries/config/messages.inc.php:708 -#| msgid "" -#| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" -#| "kbd]." msgid "" "Leave blank for no central columns support, suggested: " "[kbd]pma__central_columns[/kbd]." msgstr "" -"Lämn tom för inget huvudkolumnstöd, förslag: [kbd] pma__central_columns " -"[/kbd]." +"Lämn tom för inget huvudkolumnstöd, förslag: [kbd] pma__central_columns [/" +"kbd]." #: libraries/config/messages.inc.php:711 msgid "Try to connect without password." @@ -7469,9 +7206,6 @@ msgid "Recently used table" msgstr "Nyligen använd tabell" #: libraries/config/messages.inc.php:740 -#| msgid "" -#| "Leave blank for no \"persistent\" recently used tables across sessions, " -#| "suggested: [kbd]pma__recent[/kbd]." msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." @@ -7480,7 +7214,6 @@ msgstr "" "pma__favorite [/kbd]." #: libraries/config/messages.inc.php:743 -#| msgid "Favorite tables" msgid "Favorites table" msgstr "Favorittabeller" @@ -7537,7 +7270,6 @@ msgstr "" "[kbd]pma__table_coords[/kbd]." #: libraries/config/messages.inc.php:765 -#| msgid "PDF schema: table coordinates" msgid "Designer and PDF schema: table coordinates" msgstr "Design/PDF-schema: tabellkoordinater" @@ -7649,10 +7381,6 @@ msgid "User preferences storage table" msgstr "Lagringstabell för användarinställningar" #: libraries/config/messages.inc.php:812 -#| msgid "" -#| "Both this table and the user groups table are required to enable the " -#| "configurable menus feature; leaving either one of them blank will disable " -#| "this feature, suggested: [kbd]pma__users[/kbd]." msgid "" "Both this table and the user groups table are required to enable the " "configurable menus feature; leaving either one of them blank will disable\n" @@ -7735,13 +7463,10 @@ msgid "Show create database form" msgstr "Visa skapa databas-formulär" #: libraries/config/messages.inc.php:847 -#| msgid "" -#| "Show or hide a column displaying the Creation timestamp for all tables." msgid "Show or hide a column displaying the comments for all tables." msgstr "Visa eller dölja en kolumn som visar kommentarer för alla tabeller." #: libraries/config/messages.inc.php:849 -#| msgid "Table comments" msgid "Show table comments" msgstr "Visa tabellkommentarer" @@ -7752,7 +7477,6 @@ msgstr "" "tabeller." #: libraries/config/messages.inc.php:853 -#| msgid "Show Creation timestamp" msgid "Show creation timestamp" msgstr "Visa skapad tidpunkt" @@ -7764,7 +7488,6 @@ msgstr "" "alla tabeller." #: libraries/config/messages.inc.php:857 -#| msgid "Show Last update timestamp" msgid "Show last update timestamp" msgstr "Visa senaste uppdatering" @@ -7776,7 +7499,6 @@ msgstr "" "tabeller." #: libraries/config/messages.inc.php:861 -#| msgid "Show Last check timestamp" msgid "Show last check timestamp" msgstr "Visa senaste tidpunkt för kontroll" @@ -7836,7 +7558,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "Anger om frågerutan ska stanna på skärmen efter att den skickats." -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "Behåll frågerutan" @@ -7860,7 +7582,6 @@ msgid "Skip locked tables" msgstr "Hoppa över låsta tabeller" #: libraries/config/messages.inc.php:900 -#| msgid "A warning is displayed on the main page if Suhosin is detected." msgid "" "Disable the default warning that is displayed on the main page if Suhosin is " "detected." @@ -7871,9 +7592,6 @@ msgid "Suhosin warning" msgstr "Suhosin-varning" #: libraries/config/messages.inc.php:905 -#| msgid "" -#| "Disable the default warning that is displayed on the Structure page if " -#| "column names in a table are reserved MySQL words." msgid "" "Disable the default warning that is displayed on the main page if the value " "of the PHP setting session.gc_maxlifetime is less than the value of " @@ -7884,14 +7602,10 @@ msgstr "" "'LoginCookieValidity'." #: libraries/config/messages.inc.php:910 -#| msgid "Login cookie validity" msgid "Login cookie validity warning" msgstr "Varning angående inloggnings-cookies giltighet" #: libraries/config/messages.inc.php:913 -#| msgid "" -#| "Textarea size (columns) in edit mode, this value will be emphasized for " -#| "SQL query textareas (*2) and for query window (*1.25)." msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2)." @@ -7904,9 +7618,6 @@ msgid "Textarea columns" msgstr "Textarea kolumner" #: libraries/config/messages.inc.php:918 -#| msgid "" -#| "Textarea size (rows) in edit mode, this value will be emphasized for SQL " -#| "query textareas (*2) and for query window (*1.25)." msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2)." @@ -8080,7 +7791,6 @@ msgstr "" "rader infogas med SKIFT+RETUR." #: libraries/config/messages.inc.php:999 -#| msgid "Executed queries" msgid "Enter executes queries in console" msgstr "Ange sökningar i konsolen" @@ -8093,7 +7803,6 @@ msgstr "" "konfigurationlagringstabeller automatiskt." #: libraries/config/messages.inc.php:1005 -#| msgid "Server configuration" msgid "Enable Zero Configuration mode" msgstr "Aktivera \"Zero Configuration\" läge" @@ -8149,103 +7858,33 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "OpenDocument-text" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "Favoritlistan är full!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Tabellen %s har tömts." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "Vyn %s har tagits bort." -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "Tabellen %s har tagits bort." -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "Favoritlistan är full!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "okänd" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -#| msgid "The column name '%s' is a MySQL reserved keyword." -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "Kolumnnamnet '%s' är ett reserverat nyckelord i MySQL." -msgstr[1] "Kolumnnamnen '%s' är reserverade nyckelord i MySQL." - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "Ingen kolumn vald." - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "Kolumnerna har flyttats framgångsrikt." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "Tabellen %1$s har ändrats." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "Sökningsfel" - -#: libraries/controllers/TableStructureController.php:967 -#, 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 ändrats. Privilegierna har justerats." - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Ändra" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Index" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "Spatial" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Fulltext" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "Distinkta värden" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8259,32 +7898,95 @@ msgstr "Det finns inga numeriska kolumner att plotta i tabellen." msgid "No data to display" msgstr "Ingen data att visa" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "Tabellen %1$s har ändrats." + #: libraries/controllers/table/TableRelationController.php:212 -#| msgid "Thread %s was successfully killed." msgid "Display column was successfully updated." msgstr "Kolumnen har uppdaterats." #: libraries/controllers/table/TableRelationController.php:282 -#| msgid "Internal relation has been added." msgid "Internal relations were successfully updated." msgstr "Intern relation har uppdaterats." -#: libraries/controllers/table/TableSearchController.php:844 -#| msgid "Table Search" +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "Tabellsökning" -#: libraries/controllers/table/TableSearchController.php:851 -#| msgid "Zoom Search" +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "Zoom sökning" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 -#| msgid "Find and Replace" msgid "Find and replace" msgstr "Sök och ersätt" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "Kolumnnamnet '%s' är ett reserverat nyckelord i MySQL." +msgstr[1] "Kolumnnamnen '%s' är reserverade nyckelord i MySQL." + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "Ingen kolumn vald." + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "Kolumnerna har flyttats framgångsrikt." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "Sökningsfel" + +#: libraries/controllers/table/TableStructureController.php:975 +#, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "Tabellen %1$s har ändrats. Privilegierna har justerats." + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Ändra" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Index" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "Spatial" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Fulltext" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "Distinkta värden" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8294,7 +7996,7 @@ msgstr "Tillägget %s saknas. Vänligen kontrollera din PHP-konfiguration." msgid "possible deep recursion attack" msgstr "möjlig djupgående rekursiv attack" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Ingen förändring" @@ -8313,7 +8015,6 @@ msgstr "" "installera tillägget mysqli." #: libraries/db_designer.lib.php:119 -#| msgid "Could not load import plugins, please check your installation!" msgid "Could not load schema plugins, please check your installation!" msgstr "Kunde inte läsa in insticksprogram, kontrollera din installation!" @@ -8365,7 +8066,7 @@ msgstr "Skapa" msgid "Create database:" msgstr "Skapa databas:" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Inga privilegier" @@ -8385,42 +8086,34 @@ msgid "Exporting rows from \"%s\" table" msgstr "Exportera rader från tabellen \"%s\"" #: libraries/display_export.lib.php:202 -#| msgid "Export type" msgid "Export templates:" msgstr "Exportera mallar:" #: libraries/display_export.lib.php:207 -#| msgid "File name template:" msgid "New template:" msgstr "Ny mall:" #: libraries/display_export.lib.php:210 -#| msgid "Table name" msgid "Template name" msgstr "Mallens namn" #: libraries/display_export.lib.php:219 -#| msgid "File name template:" msgid "Existing templates:" msgstr "Befintliga mallar:" #: libraries/display_export.lib.php:220 -#| msgid "Temp disk rate" msgid "Template:" msgstr "Mall:" #: libraries/display_export.lib.php:225 -#| msgid "Updated" msgid "Update" msgstr "Uppdatera" #: libraries/display_export.lib.php:247 -#| msgid "Select Tables" msgid "Select a template" msgstr "Välj Mall" #: libraries/display_export.lib.php:296 -#| msgid "Export method" msgid "Export method:" msgstr "Exportmetod:" @@ -8433,7 +8126,6 @@ msgid "Custom - display all possible options" msgstr "Anpassad - visa alla möjliga alternativ" #: libraries/display_export.lib.php:340 -#| msgid "Databases" msgid "Databases:" msgstr "Databaser:" @@ -8541,12 +8233,10 @@ msgid "View output as text" msgstr "Visa utdata som text" #: libraries/display_export.lib.php:756 -#| msgid "Export views as tables" msgid "Export databases as separate files" msgstr "Exportera databaser som separata filer" #: libraries/display_export.lib.php:758 -#| msgid "Export table headers" msgid "Export tables as separate files" msgstr "Exportera tabeller som separata filer" @@ -8563,32 +8253,26 @@ msgid "Skip tables larger than" msgstr "Hoppa över tabeller större än" #: libraries/display_export.lib.php:941 -#| msgid "Select Tables" msgid "Select database" msgstr "Välj databas" #: libraries/display_export.lib.php:943 -#| msgid "Select Tables" msgid "Select table" msgstr "Välj tabell" #: libraries/display_export.lib.php:959 -#| msgid "Database name" msgid "New database name" msgstr "Nytt Databasnamn" #: libraries/display_export.lib.php:983 -#| msgid "New page name: " msgid "New table name" msgstr "Nytt tabellnamn" #: libraries/display_export.lib.php:993 -#| msgid "Copy column name." msgid "Old column name" msgstr "Tidigare kolumnnamn" #: libraries/display_export.lib.php:994 -#| msgid "Copy column name." msgid "New column name" msgstr "Nytt kolumnnamn" @@ -8656,7 +8340,6 @@ msgstr "" "Exempel: .sql.zip" #: libraries/display_import.lib.php:227 -#| msgid "File to Import:" msgid "File to import:" msgstr "Fil att importera:" @@ -8669,7 +8352,6 @@ msgid "File uploads are not allowed on this server." msgstr "Uppladdning är inte tillåten på denna server." #: libraries/display_import.lib.php:287 -#| msgid "Partial Import:" msgid "Partial import:" msgstr "Partiell import:" @@ -8700,7 +8382,6 @@ msgstr "" "räknat från den första:" #: libraries/display_import.lib.php:349 -#| msgid "Options" msgid "Other options:" msgstr "Andra alternativ:" @@ -9114,65 +8795,65 @@ msgid "Dump has been saved to file %s." msgstr "Dump har sparats till filen %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerade ett tomt resultat (dvs inga rader)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "[ÅTERTOG tidigare version]" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Följande strukturer har antingen skapats eller ändrats. Du kan:" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "Visa en strukturs innehåll genom att klicka på namnet." -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Ändra någon av dess inställningar genom att klicka på motsvarande " "\"Alternativ\"-länk." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "Redigera strukturen genom att följa länken \"Struktur\"." -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "Gå till databas: %s" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "Redigera inställningar för %s" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "Gå till tabell: %s" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "Struktur för %s" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "Gå till vy: %s" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "Endast entabells-UPDATE och DELETE-körningar simuleras." -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9180,7 +8861,7 @@ msgstr "" "Enda Infoga, uppdatera, ta bort och ersätta SQL-körningar som innehåller " "transaktionella tabeller kan rullas tillbaka." -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "Skapa ett index för  %s kolumn(er)" @@ -9203,66 +8884,66 @@ msgstr "Funktion" msgid "Binary" msgstr "Binär" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "På grund av sin längd,
är denna kolumn kanske inte redigerbar." -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Binär - ändra inte" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Eller" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "Uppladdningskatalog på webbserver:" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "Redigera / Infoga" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "Fortsätt inmatning med %s rader" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "och sedan" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Lägg till som ny rad" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "Infoga som ny rad och ignorera fel" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "Visa insert-fråga" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Gå tillbaka till föregående sida" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Lägg till ytterligare en ny rad" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Gå tillbaka till denna sida" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Ändra nästa rad" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9272,7 +8953,7 @@ msgstr "" "Använd TAB-tangenten för att flytta från värde till värde, eller CTRL+pil " "för att flytta vart som helst" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9284,11 +8965,11 @@ msgstr "" msgid "Value" msgstr "Värde" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "Visar SQL-fråga" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "Infogade rad-id: %1$d" @@ -9304,35 +8985,35 @@ msgstr "Inget" msgid "Convert to Kana" msgstr "Konvertera till Kana" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Lyckades!" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "Ersätt tabellprefix:" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "Kopiera tabell med prefix:" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "Från" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "Till" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "Lägg till tabellprefix:" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "Lägg till prefix" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "Vill du verkligen exekvera följande fråga?" @@ -9483,7 +9164,6 @@ msgid "multilingual" msgstr "flerspråkig" #: libraries/mysql_charsets.lib.php:263 -#| msgid "File name" msgid "Vietnamese" msgstr "Vietnamesiska" @@ -9528,12 +9208,10 @@ msgid "Czech-Slovak" msgstr "Tjeckisk-Slovakisk" #: libraries/navigation/Navigation.php:53 -#| msgid "An error has occurred while loading the navigation tree" msgid "An error has occurred while loading the navigation display" msgstr "Ett fel uppstod vid inläsning av navigeringspanelen" #: libraries/navigation/Navigation.php:191 -#| msgid "Group name:" msgid "Groups:" msgstr "Grupper:" @@ -9553,8 +9231,8 @@ msgstr "Procedurer:" msgid "Views:" msgstr "Vyer:" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Visa" @@ -9571,7 +9249,6 @@ msgid "phpMyAdmin documentation" msgstr "phpMyAdmin-dokumentation" #: libraries/navigation/NavigationHeader.php:206 -#| msgid "Navigation panel" msgid "Navigation panel settings" msgstr "Inställningar för navigationspanel" @@ -9589,28 +9266,22 @@ msgstr "" #: libraries/navigation/NavigationTree.php:947 #, php-format -#| msgid "%s other result found" -#| msgid_plural "%s other results found" msgid "%s result found" msgid_plural "%s results found" msgstr[0] "%s resultat hittat" msgstr[1] "%s resultat hittade" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" -msgstr "Filtrera databaser efter namn eller regex" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 msgid "Clear fast filter" msgstr "Rensa snabbfilter" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "Filtrera efter namn eller regex" - #: libraries/navigation/NavigationTree.php:1433 -#| msgid "Expand/Collapse" msgid "Collapse all" msgstr "Dölj alla" @@ -9748,12 +9419,10 @@ msgid "" msgstr "" #: libraries/normalization.lib.php:158 normalization.php:17 -#| msgid "Select a column." msgid "Select one…" msgstr "Välj en…" #: libraries/normalization.lib.php:159 normalization.php:18 -#| msgid "Move column" msgid "No such column" msgstr "Ingen sådan kolumn" @@ -9762,12 +9431,10 @@ msgid "split into " msgstr "delas upp i " #: libraries/normalization.lib.php:187 -#| msgid "Add primary key" msgid "Have a primary key" msgstr "Har en primär nyckel" #: libraries/normalization.lib.php:193 -#| msgid "Error: relation already exists." msgid "Primary key already exists." msgstr "Primär nyckel finns redan." @@ -9789,12 +9456,10 @@ msgid "" msgstr "Om det inte är möjligt att göra kolumnkombinationer till primärnyckel" #: libraries/normalization.lib.php:214 -#| msgid "Add primary key" msgid "+ Add a new primary key column" msgstr "+ Lägg till en ny primär nyckelkolumn" #: libraries/normalization.lib.php:237 -#| msgid "Remove column(s)" msgid "Remove redundant columns" msgstr "Ta bort överflödiga kolumner" @@ -9816,12 +9481,10 @@ msgstr "" "du på \"Ingen överflödig kolumn\"" #: libraries/normalization.lib.php:251 -#| msgid "Remove selected users" msgid "Remove selected" msgstr "Ta bort markerade" #: libraries/normalization.lib.php:252 -#| msgid "Add column" msgid "No redundant column" msgstr "Ingen överflödig kolumn" @@ -9937,7 +9600,6 @@ msgstr "Det andra steget av normalisering är klar för register \"%1$s\"." #: libraries/normalization.lib.php:490 libraries/normalization.lib.php:635 #: libraries/normalization.lib.php:700 -#| msgid "Error in processing request:" msgid "Error in processing!" msgstr "Fel i behandlingen!" @@ -9956,12 +9618,10 @@ msgstr "Det tredje steget i normalisering är komplett." #: libraries/normalization.lib.php:679 #, php-format -#| msgid "Selected target tables have been synchronized with source tables." msgid "Selected repeating group has been moved to the table '%s'" msgstr "Valda upprepande grupp har flyttats till tabellen '%s'" #: libraries/normalization.lib.php:726 -#| msgid "Sep" msgid "Step 3." msgstr "Steg 3." @@ -9994,7 +9654,6 @@ msgid "Table is already in Third normal form!" msgstr "Tabellen är redan i tredje normalformen!" #: libraries/normalization.lib.php:809 -#| msgid "Hide table structure actions" msgid "Improve table structure (Normalization):" msgstr "Förbättra tabellstrukturen (normalisering):" @@ -10034,9 +9693,8 @@ msgstr "Byt namn på databasen till" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 -#| msgid "You don't have sufficient privileges to be here right now!" msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" @@ -10046,9 +9704,8 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 -#| msgid "Edit Privileges" msgid "Adjust privileges" msgstr "Ändra privilegier" @@ -10065,18 +9722,18 @@ msgstr "Radera databasen" msgid "Drop the database (DROP)" msgstr "Tag bort databasen (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Enbart struktur" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Struktur och data" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Enbart data" @@ -10088,7 +9745,7 @@ msgstr "Kopiera databasen till" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE före kopiering" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Lägg till restriktioner" @@ -10128,161 +9785,157 @@ msgstr "Lagringsmotor" msgid "Change all column collations" msgstr "Ändra alla kolumners sortering" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Kopiera tabellen till (databas.tabell)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Byt till kopierad tabell" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Tabellunderhåll" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Analysera tabell" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Kontrollera tabell" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 -#| msgid "Check table" msgid "Checksum table" msgstr "Kontrollsumma tabell" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Defragmentera tabell" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "Tabellen %s har rensats." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "Rensa tabellen (flush)" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Optimera tabell" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Reparera tabell" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "Ta bort data eller tabell" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "Töm tabellen (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "Ta bort tabellen (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Analysera" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Kontrollera" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Optimera" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Återskapa" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Reparera" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "Avkorta" -#: libraries/operations.lib.php:1604 -#| msgid "Expand/Collapse" +#: libraries/operations.lib.php:1607 msgid "Coalesce" msgstr "Sammanfogning" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "Underhåll av partition" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "Partition %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "Ta bort partitionering" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Kontrollera referensintegritet:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Kan inte flytta tabell till samma en!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Kan inte kopiera tabell till samma en!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format -#| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Registret %s har flyttats till %s., privilegier har justerats." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format -#| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Registret %s har kopierats till %s., privilegier har justerats." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabellen %s har flyttats till %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabellen %s har kopierats till %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Tabellnamnet är tomt!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "Detta format har inga alternativ" @@ -10377,7 +10030,6 @@ msgid "Please enter correct captcha!" msgstr "Ange korrekt captcha!" #: libraries/plugins/auth/AuthenticationCookie.php:400 -#| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" msgstr "Du har inte befogenhet att logga in till denna MySQL server!" @@ -10456,7 +10108,7 @@ msgstr "Dumpningsalternativ för data" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Dumpning av Data i tabell" @@ -10480,21 +10132,21 @@ msgstr "Definition" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Tabellstruktur" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Struktur för vy" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Ersättningsstruktur för vy" @@ -10584,7 +10236,7 @@ msgid "Database:" msgstr "Databas:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "Data:" @@ -10605,17 +10257,14 @@ msgid "Report title:" msgstr "Rapporttitel:" #: libraries/plugins/export/ExportPdf.php:233 -#| msgid "Dumping data for table" msgid "Dumping data" msgstr "Dumpning data" #: libraries/plugins/export/ExportPdf.php:288 -#| msgid "structure" msgid "View structure" msgstr "Visningsstruktur" #: libraries/plugins/export/ExportPdf.php:291 -#| msgid "and then" msgid "Stand in" msgstr "Stå i" @@ -10640,7 +10289,6 @@ msgstr "" "senast kontrollerade" #: libraries/plugins/export/ExportSql.php:163 -#| msgid "Export method" msgid "Export metadata" msgstr "Exportera metadata" @@ -10672,7 +10320,6 @@ msgstr "(mindre effektivt eftersom index ska genereras när tabellen skapades)" #: libraries/plugins/export/ExportSql.php:287 #, php-format -#| msgid "Session value" msgid "%s value" msgstr "%s värde" @@ -10689,7 +10336,7 @@ msgid "Data creation options" msgstr "Valmöjligheter vid skapande av data" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "Trunkera tabell innan inläggning" @@ -10735,9 +10382,6 @@ msgstr "" "code>" #: libraries/plugins/export/ExportSql.php:410 -#| msgid "" -#| "both of the above
      Example: INSERT INTO " -#| "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B,col_C) VALUES (1,2,3), (4,5,6), (7,8,9)" @@ -10775,8 +10419,8 @@ msgstr "Det verkar som databasen använder följande förfaranden;" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "export med alias fungerar inte alltid tillförlitligt." @@ -10784,83 +10428,81 @@ msgstr "export med alias fungerar inte alltid tillförlitligt." msgid "It appears your database uses functions;" msgstr "Det verkar som om databasen använder följande funktioner;" -#: libraries/plugins/export/ExportSql.php:996 -#| msgid "Metadata Headers" +#: libraries/plugins/export/ExportSql.php:993 msgid "Metadata" msgstr "Metadata" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format -#| msgid "Metadata Headers" msgid "Metadata for %s" msgstr "Metadata för %s" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Skapat:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Senaste uppdatering:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Senaste kontroll:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "används" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "Det verkar som om databasen använder följande vyer;" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Restriktioner för dumpade tabeller" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Restriktioner för tabell" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "Index för dumpade tabeller" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "Index för tabell" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT för dumpade tabeller" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT för tabell" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "MIME-TYPER FÖR TABELL" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "RELATIONER FÖR TABELL" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "Det verkar dom om tabellen använder följande utlösare;" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "Struktur för vy %s exporterad som en tabell" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "Fel vid läsning av data:" @@ -10881,7 +10523,6 @@ msgid "Purpose:" msgstr "Syfte:" #: libraries/plugins/export/PMA_ExportPdf.php:501 -#| msgid "MIME type" msgid "MIME" msgstr "MIME" @@ -11057,22 +10698,18 @@ msgstr "Visa rutnät" #: libraries/plugins/schema/SchemaPdf.php:93 #: templates/database/structure/print_view_data_dictionary_link.phtml:6 -#| msgid "Data Dictionary" msgid "Data dictionary" msgstr "Dataordlista" #: libraries/plugins/schema/SchemaPdf.php:98 -#| msgid "neither of the above" msgid "Order of the tables" msgstr "Tabellordning" #: libraries/plugins/schema/SchemaPdf.php:102 -#| msgid "Ascending" msgid "Name (Ascending)" msgstr "Namn (stigande)" #: libraries/plugins/schema/SchemaPdf.php:103 -#| msgid "Descending" msgid "Name (Descending)" msgstr "Namn (fallande)" @@ -11091,13 +10728,11 @@ msgid "Schema of the %s database - Page %s" msgstr "Schema för databasen %s - Sida %s" #: libraries/plugins/schema/pdf/Pdf.php:242 -#| msgid "Invalid export type" msgid "PDF export page" msgstr "PDF-export sida" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:105 #, php-format -#| msgid "Schema of the %s database - Page %s" msgid "Schema of the %s database" msgstr "Schemat för %s databasen" @@ -11110,9 +10745,9 @@ msgstr "Relationsschema" msgid "Table of contents" msgstr "Innehållsförteckning" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Extra" @@ -11234,9 +10869,6 @@ msgstr "" "pixlar. Bildens ursprungliga proportioner bibehålls." #: libraries/plugins/transformations/abs/LongToIPv4TransformationsPlugin.php:32 -#| msgid "" -#| "Converts an (IPv4) Internet network address into a string in Internet " -#| "standard dotted format." msgid "" "Converts an (IPv4) Internet network address stored as a BIGINT into a string " "in Internet standard dotted format." @@ -11329,9 +10961,6 @@ msgid "Syntax highlighted CodeMirror editor for XML (and HTML)." msgstr "Syntax CodeMirror editor för XML (och HTML)." #: libraries/plugins/transformations/output/Text_Plain_Binarytoip.php:33 -#| msgid "" -#| "Converts an (IPv4) Internet network address into a string in Internet " -#| "standard dotted format." msgid "" "Converts an Internet network address stored as a binary string into a string " "in Internet standard (IPv4/IPv6) format." @@ -11340,62 +10969,54 @@ msgstr "" "sträng i Internet standardformat (IPv4/IPv6)." #: libraries/plugins/transformations/output/Text_Plain_Json.php:51 -#| msgid "Formats text as SQL query with syntax highlighting." msgid "Formats text as JSON with syntax highlighting." msgstr "Formaterar text som en JSON-fråga med syntaxmarkering." #: libraries/plugins/transformations/output/Text_Plain_Xml.php:51 -#| msgid "Formats text as SQL query with syntax highlighting." msgid "Formats text as XML with syntax highlighting." msgstr "Formaterar text som en XML-fråga med syntaxmarkering." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Fel: Relation finns redan." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "FOREIGN KEY-relation har lagts till." -#: libraries/pmd_common.php:589 -#| msgid "Error: Relation could not be added!" +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Fel: Extern nyckel-relation kunde inte läggas till!" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "Fel: Saknade index på kolumn/erna." -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "Fel: Relationella funktioner är inaktiverade!" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "Intern relation har lagts till." -#: libraries/pmd_common.php:623 -#| msgid "Error: Relation could not be added!" +#: libraries/pmd_common.php:641 msgid "Error: Internal relation could not be added!" msgstr "Fel: Interna relationen kunde inte läggas till!" -#: libraries/pmd_common.php:664 -#| msgid "FOREIGN KEY relation has been added." +#: libraries/pmd_common.php:679 msgid "FOREIGN KEY relation has been removed." msgstr "EXTERN nyckel-relation har tagits bort." -#: libraries/pmd_common.php:670 -#| msgid "Error: Relation could not be added!" +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Fel: Extern nyckel-relation kunde inte tas bort!" -#: libraries/pmd_common.php:697 -#| msgid "Error: Relation could not be added!" +#: libraries/pmd_common.php:712 msgid "Error: Internal relation could not be removed!" msgstr "Fel: Intern relationen kunde inte läggas till!" -#: libraries/pmd_common.php:701 -#| msgid "Internal relation has been added." +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "Inre relation har tagits bort." @@ -11413,7 +11034,6 @@ msgid "Enabled" msgstr "Aktiverat" #: libraries/relation.lib.php:105 -#| msgid "Configuration saved." msgid "Configuration of pmadb… " msgstr "Konfigurationen av pmadb... " @@ -11426,7 +11046,6 @@ msgid "Display Features" msgstr "Visningsfunktionalitet" #: libraries/relation.lib.php:168 -#| msgid "Creation of PDFs" msgid "Designer and creation of PDFs" msgstr "Designa och skapa PDF-filer" @@ -11439,78 +11058,71 @@ msgid "Browser transformation" msgstr "Webbläsaromvandling" #: libraries/relation.lib.php:192 -#| msgid "" -#| "Please see the documentation on how to update your column_comments table." msgid "Please see the documentation on how to update your column_info table. " msgstr "Se dokumentation om hur du uppdaterar tabellen column_info. " -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Bokmärkt SQL-fråga" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL-historik" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "Beständiga, nyligen använda tabeller" -#: libraries/relation.lib.php:238 -#| msgid "Persistent recently used tables" +#: libraries/relation.lib.php:241 msgid "Persistent favorite tables" msgstr "Beständiga, använda tabeller" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "Bestående tabeller för inställningar av användargränssnittet" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "Användarinställningar" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "Anpassningsbara menyer" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "Visa/dölj navigationsobjekt" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "Sparar Query-By-Example-sökningar" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "Hantera huvudförteckning över kolumner" -#: libraries/relation.lib.php:332 -#| msgid "Remember table's sorting" +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "Komma ihåg inställningar för Design" -#: libraries/relation.lib.php:343 -#| msgid "Invalid export type" +#: libraries/relation.lib.php:346 msgid "Saving export templates" msgstr "Spara exportmallar" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "Snabba steg för att installera avancerade funktioner:" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format -#| msgid "" -#| "Create the needed tables with the examples/create_tables.sql." msgid "Create the needed tables with the %screate_tables.sql." msgstr "Skapa nödvändiga tabeller med %screate_tables.sql." -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "Skapa en PMA användare och ge tillgång till dessa tabeller." -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -11519,26 +11131,25 @@ msgstr "" "code>), till exempel genom att starta från config.sample.inc.php." -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Logga in igen till phpMyAdmin för att ladda den uppdaterade " "konfigurationsfilen." -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "ingen beskrivning" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format -#| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." @@ -11546,16 +11157,14 @@ msgstr "" "%sCreate%s en databas heter \"phpmyadmin\" och installera phpMyAdmin " "konfiguration lagring där." -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format -#| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "%sCreate%s phpMyAdmin konfiguration lagring i den aktuella databasen." -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format -#| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "%sCreate%s saknade phpMyAdmin konfiguration lagringstabeller." @@ -11581,12 +11190,6 @@ msgid "Master configuration" msgstr "Master-konfiguration" #: libraries/replication_gui.lib.php:92 -#| msgid "" -#| "This server is not configured as master server in a replication process. " -#| "You can choose from either replicating all databases and ignoring certain " -#| "(useful if you want to replicate majority of databases) or you can choose " -#| "to ignore all databases by default and allow only certain databases to be " -#| "replicated. Please select the mode:" msgid "" "This server is not configured as a master server in a replication process. " "You can choose from either replicating all databases and ignoring some of " @@ -11636,7 +11239,6 @@ msgid "Slave replication" msgstr "Slav-replikering" #: libraries/replication_gui.lib.php:151 -#| msgid "Insecure connection" msgid "Master connection:" msgstr "Huvudanslutning:" @@ -11749,8 +11351,8 @@ msgstr "Användarnamn:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Användarnamn" @@ -11758,7 +11360,7 @@ msgstr "Användarnamn" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Lösenord" @@ -11843,7 +11445,6 @@ msgid "Re-type" msgstr "Skriv igen" #: libraries/replication_gui.lib.php:898 -#| msgid "Generate password" msgid "Generate password:" msgstr "Skapa lösenord:" @@ -12070,7 +11671,6 @@ msgstr "Tyvärr, vi lyckades inte återställa den slängda rutinen." #: libraries/rte/rte_routines.lib.php:438 #, php-format -#| msgid "Routine %1$s has been modified." msgid "Routine %1$s has been modified. Privileges have been adjusted." msgstr "Rutin %1$s har ändrats. Privilegier har justerats." @@ -12313,7 +11913,6 @@ msgid "Ignoring unsupported language code." msgstr "Ignorera kod från icke-supportrade språk." #: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48 -#| msgid "Current server" msgid "Current server:" msgstr "Aktuell Server:" @@ -12374,7 +11973,6 @@ msgstr "" #: libraries/server_databases.lib.php:368 #: libraries/server_databases.lib.php:373 -#| msgid "Enable Statistics" msgid "Enable statistics" msgstr "Aktivera Statistik" @@ -12389,7 +11987,7 @@ msgstr[1] "%1$d databaser har framgångsrikt tagits bort." msgid "Plugin" msgstr "Insticksprogram" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Version" @@ -12397,99 +11995,95 @@ msgstr "Version" msgid "Author" msgstr "Författare" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "Licens" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "inaktiverad" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Inga privilegier." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Inkluderar alla privilegier förutom GRANT." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Tillåter läsning av data." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Tillåter infogning och ersättning av data." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Tillåter ändring av data." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Tillåter borttagning av data." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Tillåter skapande av nya databaser och tabeller." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Tillåter borttagning av databaser och tabeller." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Tillåter omladdning av serverinställningar och rensning av serverns cache." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Tillåter avstängning av servern." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "Tillåter visning av processer för alla användare." #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "Tillåter import av data från och export av data till filer." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "Har ingen effekt i denna version av MySQL." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Tillåter skapande och borttagning av index." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Tillåter ändring av befintliga tabellers struktur." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Ger tillgång till den fullständiga databaslistan." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12500,65 +12094,65 @@ msgstr "" "variabler eller döda andra användares trådar." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Tillåter skapande av temporära tabeller." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Tillåter låsning av tabeller för gällande tråd." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Nödvändigt för replikeringsslavar." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "Ger användaren rätt att fråga var slav- / huvudservrarna är." #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Tillåter skapande av nya vyer." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "Tillåter skapande av händelser för händelseschemaläggaren." #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "Tillåter skapande och borttagning av triggers." #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Tillåter utförande av SHOW CREATE VIEW-frågor." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Tillåter skapande av lagrade rutiner." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Tillåter ändring och borttagning av lagrade rutiner." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "Tillåter skapande, borttagning och omdöpning av användarkonton." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Tillåter utförande av lagrade rutiner." @@ -12570,8 +12164,8 @@ msgstr "Inget" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Användargrupp" @@ -12582,7 +12176,6 @@ msgid "Does not require SSL-encrypted connections." msgstr "Bestående anslutningar" #: libraries/server_privileges.lib.php:756 -#| msgid "Persistent connections" msgid "Requires SSL-encrypted connections." msgstr "Kräver SSL-krypterade anslutningar." @@ -12616,12 +12209,12 @@ msgstr "" "Anm: Genom att sätta dessa alternativ till 0 (noll) tas begränsningarna bort." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Begränsar antalet frågor användaren kan skicka till servern per timme." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12630,19 +12223,19 @@ msgstr "" "användaren kan utföra per timme." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "Begränsar antalet nya förbindelser användaren kan öppna per timme." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "Begränsar antalet samtidiga förbindelser som användaren kan ha." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12650,7 +12243,7 @@ msgid "Routine" msgstr "Rutiner" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12671,14 +12264,14 @@ msgstr "Tillåter utförande av lagrade rutiner." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Tabellspecifika privilegier" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Obs: privilegienamn i MySQL uttrycks på engelska." @@ -12688,7 +12281,7 @@ msgid "Administration" msgstr "Administration" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Globala privilegier" @@ -12697,35 +12290,32 @@ msgid "Global" msgstr "Global" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Databasspecifika privilegier" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Tillåter skapande av nya tabeller." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Tillåter borttagning av tabeller." #: libraries/server_privileges.lib.php:1550 -#| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "MySQL-autentisering" #: libraries/server_privileges.lib.php:1552 -#| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "SHA256 lösenordsautentisering" #: libraries/server_privileges.lib.php:1566 -#| msgid "Cookie authentication" msgid "Native MySQL Authentication" msgstr "MySQL-autentisering" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Inloggningsinformation" @@ -12745,15 +12335,13 @@ msgstr "" "värdnamn." #: libraries/server_privileges.lib.php:1689 -#| msgid "User name:" msgid "Host name:" msgstr "Värdnamn:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 -#| msgid "Log name" +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 msgid "Host name" msgstr "Värdnamn" @@ -12762,124 +12350,119 @@ msgid "Do not change the password" msgstr "Ändra inte lösenordet" #: libraries/server_privileges.lib.php:1883 -#| msgid "Authentication" msgid "Authentication Plugin" msgstr "Insticksmodul-verifiering" #: libraries/server_privileges.lib.php:1890 -#| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "Hashning av lösenord" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "Lösenordet för %s har ändrats." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Du har upphävt privilegierna för %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 -#| msgid "Add user group" +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 msgid "Add user account" msgstr "Lägg till användar" -#: libraries/server_privileges.lib.php:2305 -#| msgid "Database for user" +#: libraries/server_privileges.lib.php:2307 msgid "Database for user account" msgstr "Databas för användarkonto" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "Skapa databas med samma namn och tilldela alla privilegier." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Bevilja alla privilegier till namn med jokertecken (username\\_%)." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Bevilja alla privilegier för databas \"%s\"." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Användare som har tillgång till \"%s\"" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "En användare har skapats." -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Bevilja" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "Inte tillräckligt privilegier för att visa användare." -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "Ingen användare hittades." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Vem som helst" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "databasspecifik" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "jokertecken" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "tabellspecifik" -#: libraries/server_privileges.lib.php:2867 -#| msgid "Edit Privileges:" +#: libraries/server_privileges.lib.php:2869 msgid "Edit privileges" msgstr "Redigera behörigheter" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Upphäv" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "Redigera användargrupp" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… behåll den gamla." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… ta bort den gamla från användartabellerna." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… upphäv alla aktiva privilegier från den gamla och ta bort den efteråt." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12887,97 +12470,92 @@ msgstr "" "… ta bort den gamla från användartabellerna och ladda om privilegierna " "efteråt." -#: libraries/server_privileges.lib.php:3097 -#| msgid "Change Login Information / Copy User" +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "Ändra information om inloggning / kopiera användarkonto" -#: libraries/server_privileges.lib.php:3103 -#| msgid "Create a new user with the same privileges and …" +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "Skapa ett nytt användarkonto med samma privilegier och…" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Kolumnspecifika privilegier" -#: libraries/server_privileges.lib.php:3693 -#| msgid "Remove selected users" +#: libraries/server_privileges.lib.php:3704 msgid "Remove selected user accounts" msgstr "Ta bort markerade användarkonton" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Upphäv alla aktiva privilegier från användarna och ta bort dem efteråt." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "Ta bort databaserna med samma namn som användarna." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "Inga användare valda för borttagning!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Laddar om privilegierna" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "De valda användarna har tagits bort." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Du har uppdaterat privilegierna för %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "Tar bort %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Privilegierna har laddats om." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "Användaren %s finns redan!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "Privilegier för %s" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Användare" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "Ny" -#: libraries/server_privileges.lib.php:4521 -#| msgid "Edit Privileges:" +#: libraries/server_privileges.lib.php:4542 msgid "Edit privileges:" msgstr "Redigera behörigheter:" -#: libraries/server_privileges.lib.php:4522 -#| msgid "User group" +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "Användarkonto" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12985,19 +12563,18 @@ msgstr "" "Obs: Du försöker redigera behörigheter för den användare som du är inloggad " "som." -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 -#| msgid "Users overview" +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "Översikt användarkonto" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13010,12 +12587,7 @@ msgstr "" "behörigheter servern använder, om manuella ändringar har gjorts. Är så " "fallet bör du %sladda om behörigheterna%s innan du fortsätter." -#: libraries/server_privileges.lib.php:4744 -#| msgid "" -#| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " -#| "privilege tables. The content of these tables may differ from the " -#| "privileges the server uses, if they have been changed manually. In this " -#| "case, you should %sreload the privileges%s before you continue." +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -13029,11 +12601,11 @@ msgstr "" "fallet bör du ladda om behörigheterna innan du fortsätter, du har dock inte " "privilegierna för detta." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "Den valda användaren kunde inte hittas i privilegietabellen." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Du har lagt till en ny användare." @@ -13087,7 +12659,6 @@ msgid "Sent" msgstr "Skickade" #: libraries/server_status.lib.php:245 -#| msgid "max. concurrent connections" msgid "Max. concurrent connections" msgstr "Max antal samtidiga förbindelser" @@ -13277,7 +12848,6 @@ msgid "Clear series" msgstr "Rensa serie" #: libraries/server_status_monitor.lib.php:234 -#| msgid "Series in Chart:" msgid "Series in chart:" msgstr "Serie i diagram:" @@ -13293,24 +12863,24 @@ msgstr "Instruktioner/Setup" msgid "Done dragging (rearranging) charts" msgstr "Klar med ändring (omdisponering) av diagram" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "Aktivera diagram" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "Uppdateringsfrekvens" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "Visa kolumner" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "Diagramarrangemang" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -13318,14 +12888,11 @@ msgstr "" "Arrangemanget av diagrammen lagras lokalt i webbläsaren. Du kanske vill " "exportera den om du har en komplicerad inställning." -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "Återställ till standardinställningen" #: libraries/server_status_processes.lib.php:28 -#| msgid "" -#| "Note: Enabling the database statistics here might cause heavy traffic " -#| "between the web server and the MySQL server." msgid "" "Note: Enabling the auto refresh here might cause heavy traffic between the " "web server and the MySQL server." @@ -13352,7 +12919,6 @@ msgid "Filters" msgstr "Filter" #: libraries/server_status_processes.lib.php:237 -#| msgid "Show only alert values" msgid "Show only active" msgstr "Visa endast aktiva" @@ -13378,7 +12944,7 @@ msgid "Statements" msgstr "Uppgifter" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "#" @@ -13403,7 +12969,7 @@ msgstr "Visa oformaterade värden" msgid "Related links:" msgstr "Liknande länkar:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -13411,11 +12977,11 @@ msgstr "" "Antalet anslutningar som avbröts eftersom klienten dog utan att stänga " "anslutningen ordentligt." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Antalet misslyckade försök att ansluta till MySQL-servern." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13425,16 +12991,16 @@ msgstr "" "överskred värdet binlog_cache_size och använde en temporär fil för att lagra " "satser från transaktionen." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "Antalet transaktioner som använde den temporära binära loggcachen." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Antalet anslutningsförsök (lyckade eller inte) till MySQL-servern." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13446,11 +13012,11 @@ msgstr "" "kanske öka värdet tmp_table_size för att åstadkomma att temporära tabeller " "lagras i minne istället för på disk." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "Antalet temporära filer som mysqld har skapat." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13458,7 +13024,7 @@ msgstr "" "Antalet temporära tabeller i minne skapade automatiskt av servern under " "utförande av satser." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13466,7 +13032,7 @@ msgstr "" "Antalet rader skrivna med INSERT DELAYED för vilka något fel uppstod " "(förmodligen dubblerad nyckel)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13474,23 +13040,23 @@ msgstr "" "Antalet INSERT DELAYED-hanteringstrådar i bruk. Varje tabell på vilken man " "använder INSERT DELAYED får sin egen tråd." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "Antalet skrivna rader med INSERT DELAYED." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "Antalet utförda FLUSH-satser." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "Antalet interna COMMIT-satser." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "Antalet gånger en rad togs bort från en tabell." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13500,7 +13066,7 @@ msgstr "" "tabell med ett givet namn. Detta kallas upptäckt. Handler_discover indikerar " "antalet gånger tabeller har upptäckts." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13510,7 +13076,7 @@ msgstr "" "tyder det på att servern gör många helindex-avsökningar; t.ex. SELECT col1 " "FROM foo, under förutsättning att col1 är indexerad." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -13519,7 +13085,7 @@ msgstr "" "är högt är det en bra indikation på att dina frågor och tabeller är riktigt " "indexerade." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13529,7 +13095,7 @@ msgstr "" "värde ökas om du frågar en indexkolumn med en urvalsbegränsning eller om du " "gör en indexavsökning." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13537,7 +13103,7 @@ msgstr "" "Antalet efterfrågningar att läsa den föregående raden i nyckelordning. Denna " "läsmetod används huvudsakligen för att optimera ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13549,7 +13115,7 @@ msgstr "" "Du har förmodligen många frågor som kräver att MySQL avsöker hela tabeller " "eller du har föreningar som inte använder nycklar på rätt sätt." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13561,35 +13127,35 @@ msgstr "" "dina tabeller inte är riktigt indexerade eller att dina frågor inte är " "skrivna för att dra nytta av de index du har." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "Antalet interna ROLLBACK-satser." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "Antalet efterfrågningar att uppdatera en rad i en tabell." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "Antalet efterfrågningar att lägga till en rad i en tabell." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "Antalet sidor innehållande data (orena eller rena)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "Antalet sidor för närvarande orena." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Antalet buffert-sidor som har efterfrågats om att bli rensade." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "Antalet tomma sidor." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13599,7 +13165,7 @@ msgstr "" "läses eller skrivs eller som inte kan rensas eller tas bort av någon annan " "anledning." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13611,11 +13177,11 @@ msgstr "" "också beräknas som Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "Total storlek på buffert, i antal sidor." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13623,7 +13189,7 @@ msgstr "" "Antalet \"slumpmässiga\" läsningar i förväg som InnoDB initierat. Detta sker " "när en fråga ska avsöka en stor del av en tabell men i slumpmässig ordning." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13631,11 +13197,11 @@ msgstr "" "Antalet sekventiella läsningar i förväg som InnoDB initierat. Detta sker när " "InnoDB gör en sekventiell avsökning av en hel tabell." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "Antalet logiska läsefterfrågningar som InnoDB har gjort." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13643,7 +13209,7 @@ msgstr "" "Antalet logiska läsningar som InnoDB inte kunde uppfylla från buffert och " "fick göra en enkelsidig läsning." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13657,51 +13223,51 @@ msgstr "" "fall med dessa väntanden. Om buffertstorleken var riktigt satt ska detta " "värde vara litet." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "Antalet skrivningar gjorda till InnoDB-bufferten." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "Antalet fsync()-operationer hittills." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "Nuvarande antal väntande fsync()-operationer." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "Nuvarande antal väntande läsningar." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "Nuvarande antal väntande skrivningar." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "Mängden data läst hittills, i bytes." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "Totalt antal läsningar av data." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "Totalt antal skrivningar av data." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "Mängden data skriven hittills, i bytes." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "Antalet sidor som har skrivits för doublewrite transaktioner." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "Antalet doublewrite transaktioner som har utförts.." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13709,35 +13275,35 @@ msgstr "" "Antalet väntanden pga loggbufferten var för liten och vi behövde vänta på " "att den skulle rensas innan kunde fortsätta." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "Antalet förfrågningar att skriva till logg." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "Antalet fysiska skrivningar till loggfilen." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "Antalet fsync()-skrivningar gjorda till loggfilen." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "Antalet väntande fsync() av loggfil." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "Väntande skrivningar till loggfil." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "Antalet bytes skrivna till loggfilen." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "Antalet skapade sidor." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -13745,51 +13311,51 @@ msgstr "" "Den inkompilerade InnoDB-sidstorleken (standard 16kB). Många värden räknas i " "sidor; sidstorleken tillåter dem att enkelt omvandlas till bytes." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "Antalet lästa sidor." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "Antalet skrivna sidor." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "Antalet radlås som för närvarande väntas på." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Genomsnittlig tid för att skaffa ett radlås, i millisekunder." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Total tid spenderad på att skaffa radlås, i millisekunder." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maximal tid för att skaffa ett radlås, i millisekunder." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "Antalet gånger ett radlås behövde väntas på." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "Antalet rader borttagna från InnoDB-tabeller." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "Antalet rader tillagda i InnoDB-tabeller." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "Antalet rader lästa från InnoDB-tabeller." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "Antalet rader uppdaterade i InnoDB-tabeller." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13797,7 +13363,7 @@ msgstr "" "Antalet nyckelblock i nyckelcachen som har ändrats men inte ännu överförts " "till disk. Det brukade vara känt som Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -13805,7 +13371,7 @@ msgstr "" "Antalet oanvända block i nyckelcachen. Du kan använda detta värde för att " "avgöra hur stor del av nyckelcachen som används." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13814,15 +13380,15 @@ msgstr "" "Antalet använda block i nyckelcachen. Detta värde är ett högvattenmärke som " "indikerar maximala antalet block som någonsin använts vid ett tillfälle." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "Andel av använd nyckelcache (beräknat värde)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "Antalet efterfrågningar att läsa ett nyckelblock från cachen." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13832,7 +13398,7 @@ msgstr "" "är stort, då är förmodligen ditt värde key_buffer_size för litet. Cachens " "missfrekvens kan beräknas som Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13840,20 +13406,20 @@ msgstr "" "Misslyckad nyckelcache beräknas som andelen fysiska läsningar jämfört med " "läsbegäran (beräknat värde)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "Antalet efterfrågningar att skriva ett nyckelblock till cachen." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "Antalet fysiska skrivningar av ett nyckelblock till disk." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "Andel fysiska skrivningar jämfört med läsbegäran (beräknat värde)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13864,7 +13430,7 @@ msgstr "" "av samma fråga. Standardvärdet 0 innebär att ingen fråga har kompilerats " "ännu." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13872,11 +13438,11 @@ msgstr "" "Det maximala antalet anslutningar som har använts samtidigt sedan servern " "startade." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Antalet rader som väntar på att skrivas i INSERT DELAYED-köer." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13884,19 +13450,19 @@ msgstr "" "Antalet tabeller som har öppnats. Om antalet öppnade tabeller är stort är " "förmodligen ditt tabellcache-värde för litet." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "Antalet filer som är öppna." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "Antalet strömmar som är öppna (används huvudsakligen för loggning)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "Antalet tabeller som är öppna." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13905,19 +13471,19 @@ msgstr "" "Antalet fria minnesblock i frågecache. Högt antal kan tyda på fragmentering, " "vilket kan lösas genom att köra ett FLUSH QUERY CACHE-kommando." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "Mängden fritt minne för frågecache." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "Antalet cache-träffar." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "Antalet förfrågningar tillagda i cachen." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13929,7 +13495,7 @@ msgstr "" "storleken på frågecachen. Frågecachen använder strategin minst nyligen " "använd (LRU) för att bestämma vilka frågor som ska tas bort från cachen." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13937,19 +13503,19 @@ msgstr "" "Antalet icke-cachade frågor (inte möjliga att cacha eller inte cachade pga " "inställningen query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "Antalet frågor registrerade i cachen." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "Totala antalet block i frågecachen." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "Status för felsäker replikering (ännu inte implementerat)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -13957,11 +13523,11 @@ msgstr "" "Antalet kopplingar som inte använder index. Om detta värde inte är 0, bör du " "noggrant kontrollera index för dina tabeller." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "Antalet kopplingar som använde en urvalssökning på en referenstabell." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -13970,7 +13536,7 @@ msgstr "" "varje rad. (Om detta värde inte är 0, bör du noggrant kontrollera index för " "dina tabeller.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13978,17 +13544,17 @@ msgstr "" "Antalet kopplingar som använde urval på den första tabellen. (Det är normalt " "inte kritiskt även om detta är stort.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" "Antalet kopplingar som gjorde en fullständig genomsökning av den första " "tabellen." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Antalet temporära tabeller för närvarande öppna av slavens SQL-tråd." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13996,25 +13562,25 @@ msgstr "" "Totalt (sedan start) antal gånger som replikeringsslavens SQL-tråd har " "omprövat transaktioner." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Denna är ON ifall denna server är en slav som är förbunden till en " "huvudserver." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "Antalet frågor som har tagit mer än slow_launch_time sekunder att skapa." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Antalet frågor som har tagit mer än long_query_time sekunder." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -14024,23 +13590,23 @@ msgstr "" "detta värde är stort bör du överväga att öka värdet i systemvariabeln " "sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "Antalet sorteringar som gjordes med intervall." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "Antalet sorterade rader." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "Antalet sorteringar som har gjorts genom avsökning av tabellen." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "Antalet gånger som ett tabellås förvärvades omedelbart." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14052,7 +13618,7 @@ msgstr "" "du först optimera dina frågor och antingen dela upp din tabell eller " "tabeller eller använda replikering." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -14062,11 +13628,11 @@ msgstr "" "Threads_created/Connections. Om detta värde är rött bör du öka värdet " "thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "Antalet öppna förbindelser." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14078,11 +13644,11 @@ msgstr "" "(Normalt ger detta inte någon märkbar prestandaförbättring om du har en bra " "trådimplementering.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "Trådad cache träffrekvens (beräknat värde)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "Antalet trådar som inte är vilande." @@ -14091,57 +13657,57 @@ msgstr "Antalet trådar som inte är vilande." msgid "Users of '%s' user group" msgstr "Användare av användargruppen '%s'" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "Inga användare tillhörde denna användargrupp." -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "Användargrupper" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "Flikar på servernivå" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "Flikar på databasnivå" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "Flikar på tabellnivå" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "Visa användare" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "Lägg till användargrupp" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "Redigera användargrupp: '%s'" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "Menytilldelningar för användargrupp" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "Gruppnamn:" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "Flikar på servernivå" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "Flikar på databasnivå" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "Flikar på tabellnivå" @@ -14168,7 +13734,6 @@ msgid "Not implemented yet." msgstr "Ännu inte implementerat." #: libraries/sql-parser/src/Components/AlterOperation.php:201 -#| msgid "Iconic table operations" msgid "Unrecognized alter operation." msgstr "Okänd operation." @@ -14191,7 +13756,6 @@ msgid "A comma or a closing bracket was expected" msgstr "Semikolon eller en avslutande hakparentes förväntades" #: libraries/sql-parser/src/Components/CreateDefinition.php:251 -#| msgid "No databases selected." msgid "A comma or a closing bracket was expected." msgstr "Semikolon eller en avslutande hakparentes förväntades." @@ -14203,27 +13767,21 @@ msgstr "En avslutande hakparentes förväntades." msgid "Unrecognized data type." msgstr "Okänd datatyp." -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "Oväntad avslutande hakparentes." - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "Ett alias hittades tidigare." -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "Oväntad punkt." -#: libraries/sql-parser/src/Components/Expression.php:334 -#| msgid "No databases selected." +#: libraries/sql-parser/src/Components/Expression.php:335 msgid "An alias was expected." msgstr "Ett alias förväntades." #: libraries/sql-parser/src/Components/ExpressionArray.php:97 -#| msgid "No rows selected" msgid "An expression was expected." msgstr "Ett uttryck förväntades." @@ -14238,7 +13796,6 @@ msgid "This option conflicts with \"%1$s\"." msgstr "Det här alternativet är i konflikt med \"%1$s\"." #: libraries/sql-parser/src/Components/RenameOperation.php:103 -#| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Det gamla namnet på tabellen förväntades." @@ -14247,17 +13804,14 @@ msgid "Keyword \"TO\" was expected." msgstr "Sökordet \"Till\" förväntades." #: libraries/sql-parser/src/Components/RenameOperation.php:130 -#| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Det nya namnet på tabellen förväntades." #: libraries/sql-parser/src/Components/RenameOperation.php:148 -#| msgid "The row has been deleted." msgid "A rename operation was expected." msgstr "Ett namnbyte förväntades." #: libraries/sql-parser/src/Lexer.php:267 -#| msgid "Unexpected characters on line %s." msgid "Unexpected character." msgstr "Oväntade tecken." @@ -14272,123 +13826,114 @@ msgstr "Förväntade avgränsare." #: libraries/sql-parser/src/Lexer.php:784 #, php-format -#| msgid "Event %1$s has been created." msgid "Ending quote %1$s was expected." msgstr "Slut citat %1$s förväntades." #: libraries/sql-parser/src/Lexer.php:824 -#| msgid "Table name template" msgid "Variable name was expected." msgstr "Variabel namn förväntades." -#: libraries/sql-parser/src/Parser.php:392 -#| msgid "At Beginning of Table" +#: libraries/sql-parser/src/Parser.php:407 msgid "Unexpected beginning of statement." msgstr "Oväntad början av satsen." -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "Okänd uttryckstyp." -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "Ingen transaktion startades tidigare." -#: libraries/sql-parser/src/Statement.php:233 -#| msgid "Unexpected characters on line %s." +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "Oväntad token." -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" "En ny sats hittades, men ingen avgränsare mellan det och den föregående." -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "Okänt nyckelord." -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 -#| msgid "The number of tables that are open." +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "Namnet på entiteten förväntades." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 -#| msgid "The row has been deleted." +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 msgid "At least one column definition was expected." msgstr "Minst en kolumndefinition förväntades." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "Ett nyckelord förväntades." -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "Detaljerad profil" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "Ordning" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "Tillstånd" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "Sammanfattning av tillståndet" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "Total tid" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "Tid" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "Anrop" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "ø tid" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Skapa bokmärke för den här SQL-frågan" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "Etikett:" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Låt alla användare få tillgång till detta bokmärke" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "Bokmärke ej skapat!" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Använd bokmärket \"%s\" som standard webbläsarfråga." -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "Visar som PHP-kod" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format -#| msgid "" -#| "Current selection does not contain a unique column. Grid edit, checkbox, " -#| "Edit, Copy and Delete features are not available." msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" @@ -14397,11 +13942,8 @@ msgstr "" "rutnätsredigera, kryssruta, redigera, kopiera och radera är inte " "tillgängliga. %s" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format -#| msgid "" -#| "Current selection does not contain a unique column. Grid edit, checkbox, " -#| "Edit, Copy and Delete features are not available." msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" @@ -14410,7 +13952,7 @@ msgstr "" "rutnätsredigera, kryssruta, redigera, kopiera och radera kan orsaka oönskat " "resultat, %s" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problem med index för tabell `%s`" @@ -14427,7 +13969,6 @@ msgstr "Kör SQL-fråga/frågor i databasen %s" #: libraries/sql_query_form.lib.php:174 #, php-format -#| msgid "Run SQL query/queries on database %s" msgid "Run SQL query/queries on table %s" msgstr "Kör SQL-fråga/frågor i tabellen %s" @@ -14436,31 +13977,30 @@ msgid "Get auto-saved query" msgstr "Få auto-sparad fråga" #: libraries/sql_query_form.lib.php:256 -#| msgid "Bad parameters!" msgid "Bind parameters" msgstr "Binda parametrar" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "Skapa bokmärke för den här SQL-frågan:" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Ersätt befintligt bokmärke med samma namn" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Avgränsare" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Visa denna fråga här igen" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "Återställning när du är klar" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Visa endast" @@ -14471,7 +14011,6 @@ msgstr "Skapa version %1$s av %2$s" #: libraries/tracking.lib.php:77 #, php-format -#| msgid "Create version" msgid "Create version %1$s" msgstr "Skapa version %1$s" @@ -14505,113 +14044,112 @@ msgstr "Avaktivera spårning för %s" msgid "Deactivate now" msgstr "Deaktivera nu" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Skapad" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Uppdaterad" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 -#| msgid "Create version" +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 msgid "Delete version" msgstr "Ta bort version" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Spårningsrapport" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Ögonblicksbild på strukturen" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "aktiv" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "inaktiv" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "Spårning av uppgifter" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "Ta bort spårning för denna rapport" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "Inget data" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Visa %1$s med datum från %2$s till %3$s av användare %4$s %5$s" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "SQL-dump (filnedladdning)" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "SQL-dump" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "Denna alternativ kommer att ersätta din tabell och ingående data." -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "SQL-exekvering" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "Exportera som %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "Data manipulation redogörelse" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "Data definition redogörelse" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Datum" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Användarnamn" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Version %s ögonblicksbild (SQL-kod)" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Inget" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "Spårningsdata har tagits bort" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "Spårningsdata manipulation har tagits bort" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14619,63 +14157,61 @@ msgstr "" "Du kan dumpa genom att skapa och använda en tillfällig databas. Se till att " "du har behörighet att göra det." -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "Kommentera bort dessa två rader om du inte behöver dem." -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL-satser exporteras. Kopiera dump eller verkställ." -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "Spårning av rapport för tabell `%s`" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Spårning av %1$s aktiverades vid version %2$s." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Spårning av %1$s deaktiverades vid version %2$s." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format -#| msgid "Create version %1$s of %2$s" msgid "Version %1$s of %2$s was deleted." msgstr "Version %1$s %2$s togs bort." -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Version %1$s är skapad, spårning för %2$s är aktiv." -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Ej spårade tabeller" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Spåra tabell" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Spårade tabeller" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Senaste versionen" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 -#| msgid "Deleting tracking data" +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "Ta bort spårning" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Versioner" @@ -14683,11 +14219,11 @@ msgstr "Versioner" msgid "Manage your settings" msgstr "Hantera dina inställningar" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "Konfigurationen har sparats." -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14791,7 +14327,7 @@ msgstr "Inga databaser" msgid "View dump (schema) of databases" msgstr "Visa dump (schema) för databaser" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14819,7 +14355,7 @@ msgid "" msgstr "" "phpMyAdmin kunde inte döda tråd %s. Troligtvis har den redan avslutats." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "Inte tillräcklig behörighet för att visa fråge-statistik." @@ -14829,7 +14365,6 @@ msgstr "Inte tillräckliga privilegier för att visa status-variabler." #: server_variables.php:86 #, php-format -#| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" msgstr "" "Inte tillräckliga privilegier för att visa servervariabler och " @@ -15033,7 +14568,6 @@ msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Rad: %1$s, kolumn: %2$s, fel: %3$s" #: tbl_row_action.php:71 -#| msgid "No rows selected" msgid "No row selected." msgstr "Ingen rad vald." @@ -15043,12 +14577,10 @@ msgid "Tracking of %s is activated." msgstr "Spårning av %s är aktiverad." #: tbl_tracking.php:104 -#| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." msgstr "Spårningsversioner raderades." #: tbl_tracking.php:109 -#| msgid "No rows selected" msgid "No versions selected." msgstr "Ingen version vald." @@ -15078,7 +14610,6 @@ msgid "Storage Engine:" msgstr "Lagringsmotor:" #: templates/columns_definitions/column_definitions_form.phtml:97 -#| msgid "Connections" msgid "Connection:" msgstr "Anslutning:" @@ -15100,13 +14631,11 @@ msgid "Is a foreign key." msgstr "Är en främmande nyckel." #: templates/columns_definitions/column_name.phtml:44 -#| msgid "Remove column(s)" msgid "Pick from Central Columns" msgstr "Välj från huvudkolumn" #: templates/columns_definitions/column_virtuality.phtml:46 #: templates/table/structure/display_partitions.phtml:27 -#| msgid "Compression" msgid "Expression" msgstr "Uttryck" @@ -15246,12 +14775,10 @@ msgstr "Lista över tillgängliga omvandlingar och deras alternativ" #: templates/columns_definitions/table_fields_definitions.phtml:88 #: transformation_overview.php:41 -#| msgid "Browser transformation" msgid "Browser display transformation" msgstr "Webbläsaromvandling" #: templates/columns_definitions/table_fields_definitions.phtml:92 -#| msgid "Browser transformation" msgid "Browser display transformation options" msgstr "Webbläsaromvandling" @@ -15270,12 +14797,10 @@ msgstr "" #: templates/columns_definitions/table_fields_definitions.phtml:107 #: transformation_overview.php:42 -#| msgid "Browser transformation" msgid "Input transformation" msgstr "Transformation av indata" #: templates/columns_definitions/table_fields_definitions.phtml:111 -#| msgid "Transformation options" msgid "Input transformation options" msgstr "Inmatningsalternativ" @@ -15305,12 +14830,10 @@ msgid "Operator" msgstr "Aktör" #: templates/database/designer/database_tables.phtml:29 -#| msgid "Move columns" msgid "Show/hide columns" msgstr "Visa/Dölj kolumner" #: templates/database/designer/database_tables.phtml:40 -#| msgid "Table structure" msgid "See table structure" msgstr "Se tabellstruktur" @@ -15319,12 +14842,10 @@ msgid "Delete relation" msgstr "Ta bort relation" #: templates/database/designer/edit_delete_pages.phtml:7 -#| msgid "Page titles" msgid "Page to open" msgstr "Sida att öppna" #: templates/database/designer/edit_delete_pages.phtml:7 -#| msgid "Relation deleted" msgid "Page to delete" msgstr "Radera sida" @@ -15364,17 +14885,14 @@ msgid "New name" msgstr "Nytt namn" #: templates/database/designer/page_save_as.phtml:4 -#| msgid "Export to selected page." msgid "Save to selected page" msgstr "Spara till vald sida" #: templates/database/designer/page_save_as.phtml:5 -#| msgid "Create a page and export to it." msgid "Create a page and save to it" msgstr "Skapa en sida och spara till den" #: templates/database/designer/page_save_as.phtml:26 -#| msgid "New page name: " msgid "New page name" msgstr "Nytt sidnamn" @@ -15392,7 +14910,6 @@ msgstr "Välj Exportera Relationell Typ" #: templates/database/designer/side_menu.phtml:19 #: templates/database/designer/side_menu.phtml:25 -#| msgid "Showing tables:" msgid "Show/Hide tables list" msgstr "Visa/Göm tabellista" @@ -15408,13 +14925,11 @@ msgstr "Avsluta helskärmsläge" #: templates/database/designer/side_menu.phtml:41 #: templates/database/designer/side_menu.phtml:45 -#| msgid "New name" msgid "New page" msgstr "Ny sida" #: templates/database/designer/side_menu.phtml:70 #: templates/database/designer/side_menu.phtml:73 -#| msgid "Select page" msgid "Delete pages" msgstr "Ta bort sidor" @@ -15460,7 +14975,6 @@ msgstr "Växla mellan relaterade linjer" #: templates/database/designer/side_menu.phtml:153 #: templates/database/designer/side_menu.phtml:156 -#| msgid "Export all" msgid "Export schema" msgstr "Exportera schema" @@ -15476,7 +14990,6 @@ msgstr "Flytta meny" #: templates/database/designer/side_menu.phtml:181 #: templates/database/designer/side_menu.phtml:186 -#| msgid "Partial texts" msgid "Pin text" msgstr "Fäst texter" @@ -15508,12 +15021,10 @@ msgid "Check tables having overhead" msgstr "Kontrollera tabeller med overhead" #: templates/database/structure/check_all_tables.phtml:10 -#| msgid "Show color" msgid "Show create" msgstr "Visa/Skapa" #: templates/database/structure/check_all_tables.phtml:25 -#| msgid "Add prefix" msgid "Prefix" msgstr "Lägg till förled" @@ -15530,7 +15041,6 @@ msgid "Copy table with prefix" msgstr "Kopiera tabell med prefix" #: templates/database/structure/check_all_tables.phtml:34 -#| msgid "CHAR textarea columns" msgid "Add columns to central list" msgstr "Lägg till kolumner i huvudlista" @@ -15539,7 +15049,6 @@ msgid "Remove columns from central list" msgstr "Ta bort kolumner från huvudlista" #: templates/database/structure/check_all_tables.phtml:36 -#| msgid "CHAR textarea columns" msgid "Make consistent with central list" msgstr "Gör enhetlig med huvudlista" @@ -15548,7 +15057,6 @@ msgid "Add to Favorites" msgstr "Lägg till i favoriter" #: templates/database/structure/show_create.phtml:2 -#| msgid "Show SQL queries" msgid "Showing create queries" msgstr "Visa skapade frågor" @@ -15557,7 +15065,6 @@ msgid "Sort" msgstr "Sortera" #: templates/database/structure/table_header.phtml:42 -#| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgid "" "May be approximate. Click on the number to get the exact count. See " "[doc@faq3-11]FAQ 3.11[/doc]." @@ -15696,46 +15203,49 @@ msgstr "Sambandsdiagram" msgid "Stacked" msgstr "Staplade" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "Diagramtitel" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "X-axel:" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "Serie:" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "X-axel etikett:" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "X-värden" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "Y-axel etikett:" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Y-värden" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "Serie namn är i en kolumn" -#: templates/table/chart/tbl_chart.phtml:118 -#| msgid "Inside column:" +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "Kolumnserie:" -#: templates/table/chart/tbl_chart.phtml:130 -#| msgid "Values for column %s" +#: templates/table/chart/tbl_chart.phtml:131 msgid "Value Column:" msgstr "Värdekolumn:" -#: templates/table/chart/tbl_chart.phtml:150 -#| msgid "Save as file" +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "Spara diagrammet som bild" @@ -15766,7 +15276,6 @@ msgstr "" "\"PRIMARY\" måste vara namnet på och endast på en primärnyckel!" #: templates/table/index_form.phtml:40 -#| msgid "Index cache size" msgid "Index choice:" msgstr "Index val:" @@ -15789,19 +15298,44 @@ msgid "Comment:" msgstr "Kommentar:" #: templates/table/index_form.phtml:149 templates/table/index_form.phtml:190 -#| msgid "Drag to reorder." msgid "Drag to reorder" msgstr "Dra om du vill ändra ordning" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +msgid "Foreign key constraints" +msgstr "Begränsningar av främmande nyckel" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "Åtgärder" + +#: templates/table/relation/common_form.phtml:10 +msgid "Constraint properties" +msgstr "Restriktionersvillkor" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "Endast kolumner med index visas. Du kan definiera ett index nedan." + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "Begränsning av främmande nyckel" + +#: templates/table/relation/common_form.phtml:60 +msgid "+ Add constraint" +msgstr "+ Lägg till villkor" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "Interna relationer" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "Intern relation" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15809,42 +15343,12 @@ msgstr "" "En intern relation är inte nödvändig när en motsvarande FOREIGN KEY relation " "finns." -#: templates/table/relation/common_form.phtml:37 -#| msgid "Foreign key constraint" -msgid "Foreign key constraints" -msgstr "Begränsningar av främmande nyckel" - -#: templates/table/relation/common_form.phtml:40 -#| msgid "Action" -msgid "Actions" -msgstr "Åtgärder" - -#: templates/table/relation/common_form.phtml:41 -#| msgid "Constraints for table" -msgid "Constraint properties" -msgstr "Restriktionersvillkor" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "Endast kolumner med index visas. Du kan definiera ett index nedan." - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "Begränsning av främmande nyckel" - -#: templates/table/relation/common_form.phtml:83 -#| msgid "Add constraints" -msgid "+ Add constraint" -msgstr "+ Lägg till villkor" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "Välj kolumn att visa:" #: templates/table/relation/foreign_key_row.phtml:17 #, php-format -#| msgid "Foreign key constraint" msgid "Foreign key constraint %s has been dropped" msgstr "Sekundärnyckelbegränsning %s har tagits bort" @@ -15853,7 +15357,6 @@ msgid "Constraint name" msgstr "Begränsningsnamn" #: templates/table/relation/foreign_key_row.phtml:139 -#| msgid "Add column" msgid "+ Add column" msgstr "+ Lägg till kolumn" @@ -15906,7 +15409,6 @@ msgid "Replace with:" msgstr "Ersätt med:" #: templates/table/search/search_and_replace.phtml:22 -#| msgid "as regular expression" msgid "Use regular expression" msgstr "Använd reguljära uttryck" @@ -15932,7 +15434,6 @@ msgid "Reset zoom" msgstr "Återställ zoom" #: templates/table/secondary_tabs.phtml:14 -#| msgid "Relation view" msgid "Relation view" msgstr "Relationsvy" @@ -15951,13 +15452,11 @@ msgstr "Ett index har lagts till för %s." #: templates/table/structure/actions_in_table_structure.phtml:131 #: templates/table/structure/check_all_table_column.phtml:52 -#| msgid "Remove column(s)" msgid "Remove from central columns" msgstr "Radera kolumn(er)" #: templates/table/structure/actions_in_table_structure.phtml:139 #: templates/table/structure/check_all_table_column.phtml:48 -#| msgid "CHAR textarea columns" msgid "Add to central columns" msgstr "Lägg till huvudkolumner" @@ -15967,13 +15466,11 @@ msgid "Add %s column(s)" msgstr "Lägg till %s fält" #: templates/table/structure/add_column.phtml:12 -#| msgid "At Beginning of Table" msgid "at beginning of table" msgstr "I början av tabellen" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 -#| msgid "Partition %s" +#: templates/table/structure/display_structure.phtml:201 msgid "Partitions" msgstr "Partitioner" @@ -15984,22 +15481,18 @@ msgid "No partitioning defined!" msgstr "Inga index är definierade!" #: templates/table/structure/display_partitions.phtml:12 -#| msgid "partitioned" msgid "Partitioned by:" msgstr "Partitionerade av:" #: templates/table/structure/display_partitions.phtml:17 -#| msgid "partitioned" msgid "Sub partitioned by:" msgstr "Underpartitionerade av:" #: templates/table/structure/display_partitions.phtml:30 -#| msgid "Row length" msgid "Data length" msgstr "Datalängd" #: templates/table/structure/display_partitions.phtml:31 -#| msgid "Row length" msgid "Index length" msgstr "Index längd" @@ -16016,7 +15509,7 @@ msgstr "partitionerad" msgid "Edit partitioning" msgstr "Ta bort partitionering" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "Redigera vy" @@ -16042,12 +15535,10 @@ msgid "Propose table structure" msgstr "Föreslå tabellstruktur" #: templates/table/structure/optional_action_links.phtml:28 -#| msgid "Propose table structure" msgid "Improve table structure" msgstr "Förbättra tabellstruktur" #: templates/table/structure/optional_action_links.phtml:34 -#| msgid "Track table" msgid "Track view" msgstr "Spårvisning" @@ -16097,12 +15588,10 @@ msgid "Available MIME types" msgstr "Tillgängliga MIME-typer" #: transformation_overview.php:37 -#| msgid "Available transformations" msgid "Available browser display transformations" msgstr "Tillgängliga transformationer av webbläsareutseende" #: transformation_overview.php:38 -#| msgid "Available transformations" msgid "Available input transformations" msgstr "Tillgängliga transformationer av indata" @@ -16112,7 +15601,6 @@ msgid "Description" msgstr "Beskrivning" #: url.php:36 -#| msgid "Taking you to %s." msgid "Taking you to the target site." msgstr "Tar dig till målwebbplatsen." @@ -16365,9 +15853,8 @@ msgid "" "Percona documentation is at http://www.percona.com/software/documentation/" msgstr "" -"Percona dokumentation finns på " -"http://www.percona.com/software/documentation/" +"Percona dokumentation finns på http://www.percona.com/software/documentation/" #: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" @@ -17181,18 +16668,13 @@ msgid "Too many connections are aborted." msgstr "För många anslutningar avbryts." #: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 -#| msgid "" -#| "Connections are usually aborted when they cannot be authorized. This article might help you track down " -#| "the source." msgid "" "Connections are usually aborted when they cannot be authorized. This article might help you track down the source." msgstr "" -"Anslutningar avbryts vanligtvis när de inte kan auktoriseras. denna artikel kan hjälpa dig att spåra källan." #: libraries/advisory_rules.txt:397 @@ -17314,16 +16796,6 @@ msgstr "Storleken på InnoDB databas är inte tillräckligt stor." #: libraries/advisory_rules.txt:440 #, php-format -#| msgid "" -#| "It is usually sufficient to set {innodb_log_file_size} to 25%% of the " -#| "size of {innodb_buffer_pool_size}. A very big {innodb_log_file_size} " -#| "slows down the recovery time after a database crash considerably. See " -#| "also this Article. You need to shutdown the " -#| "server, remove the InnoDB log files, set the new value in my.cnf, start " -#| "the server, then check the error logs if everything went fine. See also " -#| "this blog entry" msgid "" "It is usually sufficient to set {innodb_log_file_size} to 25%% of the size " "of {innodb_buffer_pool_size}. A very big {innodb_log_file_size} slows down " @@ -17338,11 +16810,11 @@ msgstr "" "Det är vanligen tillräckligt att ställa in {innodb_log_file_size5M} till 25 " "%% av storleken på {innodb_buffer_pool_size16M}. En mycket stor " "{innodb_log_file_size5M} saktar ner tiden för återhämtning efter en databas " -"krasch avsevärt. Se även denna artikel. Du behöver " +"krasch avsevärt. Se även denna artikel. Du behöver " "stänga servern, ta bort loggfiler InnoDB, ange det nya värdet i my.cnf, " -"starta servern och kontrollera felloggar om allt gick bra. Se även denna bloggpost" #: libraries/advisory_rules.txt:441 @@ -17360,17 +16832,6 @@ msgstr "Din InnoDB buffer pool är relativt liten." #: libraries/advisory_rules.txt:447 #, php-format -#| msgid "" -#| "The InnoDB buffer pool has a profound impact on performance for InnoDB " -#| "tables. Assign all your remaining memory to this buffer. For database " -#| "servers that use solely InnoDB as storage engine and have no other " -#| "services (e.g. a web server) running, you may set this as high as 80%% of " -#| "your available memory. If that is not the case, you need to carefully " -#| "assess the memory consumption of your other services and non-InnoDB-" -#| "Tables and set this variable accordingly. If it is set too high, your " -#| "system will start swapping, which decreases performance significantly. " -#| "See also this article" msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " "tables. Assign all your remaining memory to this buffer. For database " @@ -17385,14 +16846,14 @@ msgid "" msgstr "" "InnoDB buffer poolen har stor inverkan på prestandan för InnoDB-tabeller. " "Tilldela allt ditt återstående minne till denna buffert. För databasservrar " -"som uteslutande använder InnoDB som lagringsmotor och utan andra tjänster (" -"t.ex. en webbserver) som kör, kan du ställa in detta så högt som 80%% av " -"ditt tillgängliga minne. Om så inte är fallet, måste du noggrant bedöma " +"som uteslutande använder InnoDB som lagringsmotor och utan andra tjänster (t." +"ex. en webbserver) som kör, kan du ställa in detta så högt som 80%% av ditt " +"tillgängliga minne. Om så inte är fallet, måste du noggrant bedöma " "minnesåtgången för dina andra tjänster och icke-InnoDB-tabeller och ställa " "in denna variabel därefter. Om den är för hög, kommer ditt system börja " -"swappa, vilket minskar prestandan avsevärt. se även " -"denna artikel" +"swappa, vilket minskar prestandan avsevärt. se även denna " +"artikel" #: libraries/advisory_rules.txt:448 #, php-format @@ -17429,6 +16890,44 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert är satt till 0" +#~ msgid "To filter all databases on server, press Enter after a search term" +#~ msgstr "" +#~ "Om du vill filtrera alla databaser på servern, tryck på RETUR efter en " +#~ "sökterm" + +#~ msgid "To filter all %s in database, press Enter after a search term" +#~ msgstr "" +#~ "Om du vill filtrera alla %s i databasen, trycker på RETUR efter en sökterm" + +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "tabeller" + +#~| msgid "Views" +#~ msgid "views" +#~ msgstr "vy" + +#~| msgid "Procedures" +#~ msgid "procedures" +#~ msgstr "Procedurer" + +#~| msgid "event" +#~ msgid "events" +#~ msgstr "händelser" + +#~| msgid "Functions" +#~ msgid "functions" +#~ msgstr "Funktioner" + +#~ msgid "Filter databases by name or regex" +#~ msgstr "Filtrera databaser efter namn eller regex" + +#~ msgid "Filter by name or regex" +#~ msgstr "Filtrera efter namn eller regex" + +#~ msgid "Unexpected closing bracket." +#~ msgstr "Oväntad avslutande hakparentes." + #~ msgid "Username and hostname didn't change." #~ msgstr "Användarnamn och värdnamn ändrades inte." diff --git a/po/ta.po b/po/ta.po index e0b36b6d79..1e82dda279 100644 --- a/po/ta.po +++ b/po/ta.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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:17+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Tamil       அல்லது மாற்றாக எதேனும் தரவுத்தளத்தின் " "'செயல்பாடுகள்' தத்தலுக்கு சென்று அங்கு அமைத்தத்தல்." -#: index.php:619 +#: index.php:626 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -858,7 +864,7 @@ msgstr "" "உங்கள் PHP MySQL நிரல்கோவையின் பதிப்பும் %s MySQL வழங்கியின் பதிப்பும் %s வேறுபடுகின்றன." "இது எதிர்பாரா விளைவுகளுக்கு காரணமாகலாம்." -#: index.php:647 +#: index.php:654 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -880,7 +886,7 @@ msgstr "உறுதிசெய்க" msgid "Do you really want to execute \"%s\"?" msgstr "உங்களுக்கு உண்மையிலேயே \"%s\" செயலாக்க வேண்டுமா?" -#: js/messages.php:45 libraries/mult_submits.lib.php:397 +#: js/messages.php:45 libraries/mult_submits.lib.php:402 msgid "You are about to DESTROY a complete database!" msgstr "நீங்கள் ஒரு முழுமையான தரவுத்தளத்தை அழிக்க உள்ளீர்கள்!" @@ -1026,7 +1032,7 @@ msgid "Save & close" msgstr "சேமிக்க & மூடுக" #: js/messages.php:109 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1551 prefs_manage.php:364 +#: libraries/insert_edit.lib.php:1558 prefs_manage.php:364 #: prefs_manage.php:375 msgid "Reset" msgstr "மீட்டமைக்கவும்" @@ -1088,10 +1094,10 @@ msgstr "சுட்டுதொகுப்புக்குறியில் msgid "You have to add at least one column." msgstr "நீங்கள் குறைந்தது ஒரு நெடுவரிசையையாவது சேர்க்க வேண்டும்." -#: js/messages.php:129 libraries/insert_edit.lib.php:1549 +#: js/messages.php:129 libraries/insert_edit.lib.php:1556 #: templates/columns_definitions/column_definitions_form.phtml:159 #: templates/table/index_form.phtml:237 -#: templates/table/relation/common_form.phtml:108 +#: templates/table/relation/common_form.phtml:127 msgid "Preview SQL" msgstr "SQLஐ முன்பார்வையிடு" @@ -1136,8 +1142,8 @@ msgstr "கடவுச்சொற்கள் பொருந்தவில msgid "Removing Selected Users" msgstr "தேர்ந்தெடுக்கப்பட்ட பயனர்கள் நீக்கப்படுகின்றனர்" -#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:461 -#: libraries/tracking.lib.php:831 +#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:471 +#: libraries/tracking.lib.php:841 msgid "Close" msgstr "மூடுக" @@ -1161,7 +1167,7 @@ msgstr "இந்நிரைவரிசை அழிக்கப்பட் #. l10n: Other, small valued, queries #: js/messages.php:155 libraries/ServerStatusData.php:130 -#: libraries/server_status_queries.lib.php:148 +#: libraries/server_status_queries.lib.php:150 msgid "Other" msgstr "ஏனையவை" @@ -1338,7 +1344,7 @@ msgstr "வினாக்கள்" msgid "Traffic" msgstr "போக்குவரத்து" -#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4330 +#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4331 #: libraries/server_status_monitor.lib.php:258 msgid "Settings" msgstr "அமைவுகள்" @@ -1351,9 +1357,9 @@ msgstr "விளக்கப்படத்தை கட்டத்தில msgid "Please add at least one variable to the series!" msgstr "தயவுசெய்து குறைந்தது ஒரு மாறியை\\ தொடரில் சேர்க்க!" -#: js/messages.php:216 libraries/DisplayResults.php:1477 +#: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1469,7 +1475,7 @@ msgstr "அமைப்புக்களை மாற்று" msgid "Current settings" msgstr "நடப்பு அமைப்புக்கள்" -#: js/messages.php:253 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:253 msgid "Chart title" msgstr "வரைபட தலைப்பு" @@ -1554,21 +1560,21 @@ msgstr "ஆராயப்படுகிறது…" msgid "Explain output" msgstr "வெளியீட்டை விளக்குக" -#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4326 +#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4327 #: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:396 #: libraries/rte/rte_list.lib.php:104 -#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:282 -#: libraries/tracking.lib.php:1623 +#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:284 +#: libraries/tracking.lib.php:1639 msgid "Status" msgstr "நிகழ்நிலை" -#: js/messages.php:289 js/messages.php:870 +#: js/messages.php:289 js/messages.php:862 #: libraries/plugins/export/ExportHtmlword.php:484 #: libraries/plugins/export/ExportOdt.php:600 #: libraries/plugins/export/ExportTexytext.php:445 #: libraries/plugins/export/PMA_ExportPdf.php:314 #: libraries/rte/rte_list.lib.php:93 -#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:239 +#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:243 msgid "Time" msgstr "நேரம்" @@ -1653,10 +1659,10 @@ msgstr "" "மீட்டமைக்கப்படுகிறது…" #: js/messages.php:322 libraries/Menu.php:355 libraries/Menu.php:457 -#: libraries/Menu.php:578 libraries/Util.php:4329 libraries/Util.php:4344 -#: libraries/Util.php:4361 libraries/config/messages.inc.php:260 +#: libraries/Menu.php:578 libraries/Util.php:4330 libraries/Util.php:4345 +#: libraries/Util.php:4362 libraries/config/messages.inc.php:260 #: libraries/display_import.lib.php:108 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:241 +#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:241 #: setup/frames/menu.inc.php:26 msgid "Import" msgstr "தரவிறக்கம்" @@ -1715,7 +1721,13 @@ msgstr "தேர்வுமுறை" msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 libraries/server_variables.lib.php:159 +#: js/messages.php:343 +#, fuzzy +#| msgid "Bad parameters!" +msgid "No parameters found!" +msgstr "ஒவ்வாத பண்புகூறுகள்!" + +#: js/messages.php:347 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 @@ -1726,73 +1738,73 @@ msgstr "" msgid "Cancel" msgstr "விலக்கு" -#: js/messages.php:349 libraries/Header.php:457 +#: js/messages.php:350 libraries/Header.php:457 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "அமைப்புக்களை மாற்று" -#: js/messages.php:350 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:351 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:353 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:354 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:124 msgid "Loading…" msgstr "ஏற்றப்படுகிறது…" -#: js/messages.php:354 +#: js/messages.php:355 #, fuzzy #| msgid "Request Aborted!!" msgid "Request aborted!!" msgstr "வேண்டுகோள் கைவிடப்பட்டது!!" -#: js/messages.php:355 +#: js/messages.php:356 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "வேண்டுகோள் செயல்முறைப்படுத்தபடுகின்றது" -#: js/messages.php:356 +#: js/messages.php:357 #, fuzzy #| msgid "Request Aborted!!" msgid "Request failed!!" msgstr "வேண்டுகோள் கைவிடப்பட்டது!!" -#: js/messages.php:357 +#: js/messages.php:358 #, fuzzy #| msgid "Error in processing request:" msgid "Error in processing request" msgstr "வேண்டுகோள் செயலாக்கதில் பிழை:" -#: js/messages.php:358 +#: js/messages.php:359 #, php-format msgid "Error code: %s" msgstr "பிழை குறிப்பெண்: %s" -#: js/messages.php:359 +#: js/messages.php:360 #, php-format msgid "Error text: %s" msgstr "பிழை செய்தி: %s" -#: js/messages.php:360 libraries/db_common.inc.php:73 +#: js/messages.php:361 libraries/db_common.inc.php:73 #: libraries/db_table_exists.lib.php:33 libraries/server_databases.lib.php:462 msgid "No databases selected." msgstr "எந்த தரவுத்தளமும் தேர்ந்தெடுக்கப்படவில்லை." -#: js/messages.php:361 +#: js/messages.php:362 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "நிரல்வரிசை கைவிடப்படுகிறது" -#: js/messages.php:362 +#: js/messages.php:363 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "முதனிலை குறிப்பெழுத்து சேர்க்க" -#: js/messages.php:363 +#: js/messages.php:364 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1802,173 +1814,173 @@ msgstr "முதனிலை குறிப்பெழுத்து சே msgid "OK" msgstr "சரி" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Click to dismiss this notification" msgstr "இந்த அறிவுறுத்தலை நீக்க சொடுக்குக" -#: js/messages.php:367 +#: js/messages.php:368 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "தரவுத்தளங்கங்களின் பெயர் மாற்றப்படுகின்றது" -#: js/messages.php:368 +#: js/messages.php:369 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "தரவுத்தளம் நகல் எடுக்கபடுகின்றது" -#: js/messages.php:369 +#: js/messages.php:370 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "எழுத்துத்தொகுதி மாற்றப்படுகின்றது" -#: js/messages.php:373 libraries/Util.php:3289 +#: js/messages.php:374 libraries/Util.php:3289 #, fuzzy #| msgid "Foreign key check:" msgid "Enable foreign key checks" msgstr "அயல் குறியெண் சரிபார்க்க:" -#: js/messages.php:376 +#: js/messages.php:377 msgid "Failed to get real row count." msgstr "நிறைவரிசை எண்ணிக்கையை பெற தவறியது." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Searching" msgstr "தேடுதல்" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide search results" msgstr "தேடல் முடிவுகளை மறை" -#: js/messages.php:381 +#: js/messages.php:382 msgid "Show search results" msgstr "தேடல் முடிவுகளை காட்டு" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Browsing" msgstr "உலாவுதல்" -#: js/messages.php:383 +#: js/messages.php:384 msgid "Deleting" msgstr "அழித்தல்" -#: js/messages.php:387 +#: js/messages.php:388 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "சேமிக்கபட்ட செயல்கூற்றின் வரையறையில் ஓர் RETURN கூற்று கண்டிப்பாக இருக்கவேண்டும்!" -#: js/messages.php:388 libraries/DisplayResults.php:4832 -#: libraries/DisplayResults.php:5091 libraries/Menu.php:347 -#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3709 -#: libraries/Util.php:3710 libraries/Util.php:4328 libraries/Util.php:4343 -#: libraries/Util.php:4360 libraries/config/messages.inc.php:254 +#: js/messages.php:389 libraries/DisplayResults.php:4850 +#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 +#: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 +#: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2448 -#: libraries/server_privileges.lib.php:2527 -#: libraries/server_privileges.lib.php:2873 -#: libraries/server_privileges.lib.php:3532 -#: libraries/server_status_monitor.lib.php:321 prefs_manage.php:306 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2875 +#: libraries/server_privileges.lib.php:3543 +#: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 msgid "Export" msgstr "தரவேற்றுக" -#: js/messages.php:391 libraries/rte/rte_routines.lib.php:742 +#: js/messages.php:392 libraries/rte/rte_routines.lib.php:742 msgid "ENUM/SET editor" msgstr "ENUM/கணம் தொகுப்பான்" -#: js/messages.php:392 +#: js/messages.php:393 #, php-format msgid "Values for column %s" msgstr "நெடுவரிசை %sகான மதிப்பு.கள்" -#: js/messages.php:393 +#: js/messages.php:394 msgid "Values for a new column" msgstr "புதிய நிரல்வரிசைக்கான மதிப்புகள்" -#: js/messages.php:394 +#: js/messages.php:395 msgid "Enter each value in a separate field." msgstr "ஒவ்வொரு மதிப்பையும் தனித்தனி கலங்களில் உள்ளிடுக." -#: js/messages.php:395 +#: js/messages.php:396 #, php-format msgid "Add %d value(s)" msgstr "%d மதிப்பு(களை) சேர்க்க" -#: js/messages.php:399 +#: js/messages.php:400 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "குறிப்பு: கோப்பில் பல்வேறு அட்டவணைகள் இருப்பின், அவை ஒன்றிணைக்கபடும்." -#: js/messages.php:403 +#: js/messages.php:404 msgid "Hide query box" msgstr "வினவல் பெட்டியை மறை" -#: js/messages.php:404 +#: js/messages.php:405 msgid "Show query box" msgstr "வினவல் பெட்டியை காண்பி" -#: js/messages.php:405 libraries/Console.php:88 libraries/Console.php:217 -#: libraries/DisplayResults.php:3457 libraries/DisplayResults.php:4816 +#: js/messages.php:406 libraries/Console.php:88 libraries/Console.php:217 +#: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4834 #: libraries/Index.php:721 libraries/Util.php:727 libraries/Util.php:1238 -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:119 +#: libraries/server_user_groups.lib.php:121 #: libraries/server_variables.lib.php:242 #: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 msgid "Edit" msgstr "தொகு" -#: js/messages.php:406 libraries/Console.php:89 libraries/DbSearch.php:360 -#: libraries/DisplayResults.php:3526 libraries/DisplayResults.php:4800 +#: js/messages.php:407 libraries/Console.php:89 libraries/DbSearch.php:360 +#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4818 #: libraries/central_columns.lib.php:854 #: libraries/central_columns.lib.php:1200 libraries/display_export.lib.php:227 -#: libraries/server_user_groups.lib.php:129 -#: libraries/sql_query_form.lib.php:416 libraries/tracking.lib.php:480 +#: libraries/server_user_groups.lib.php:131 +#: libraries/sql_query_form.lib.php:417 libraries/tracking.lib.php:490 #: setup/frames/index.inc.php:187 setup/frames/index.inc.php:295 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "அழி" -#: js/messages.php:407 libraries/DisplayResults.php:915 -#: libraries/DisplayResults.php:923 +#: js/messages.php:408 libraries/DisplayResults.php:919 +#: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d என்பது சரியான நிரைவரிசை எண் அல்ல." -#: js/messages.php:408 -#: libraries/controllers/table/TableSearchController.php:435 -#: libraries/controllers/table/TableSearchController.php:920 -#: libraries/sql.lib.php:193 tbl_change.php:159 +#: js/messages.php:409 +#: libraries/controllers/table/TableSearchController.php:432 +#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "அயல் குறியெண் மதிப்புகளை உலவு" -#: js/messages.php:409 +#: js/messages.php:410 msgid "No auto-saved query" msgstr "" -#: js/messages.php:410 +#: js/messages.php:411 #, fuzzy, php-format #| msgid "Variables" msgid "Variable %d:" msgstr "மாறிகள்" -#: js/messages.php:413 libraries/normalization.lib.php:889 +#: js/messages.php:414 libraries/normalization.lib.php:889 msgid "Pick" msgstr "தேர்ந்தெடுக்கவும்" -#: js/messages.php:414 +#: js/messages.php:415 msgid "Column selector" msgstr "நிரல்வரிசை தெரிவு" -#: js/messages.php:415 +#: js/messages.php:416 msgid "Search this list" msgstr "இந்த பட்டியலில் தேடுக" -#: js/messages.php:417 +#: js/messages.php:418 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1977,15 +1989,15 @@ msgstr "" "முதன்மை பட்டியலில் பத்திகள் ஏதுமில்லை. %s தரவுத்தளத்திற்கான முதன்மை பட்டியலில் தற்போதைய " "அட்டவணையில் இல்லாத பத்திகள் உள்ளதை உறுதிசெய்க." -#: js/messages.php:420 +#: js/messages.php:421 msgid "See more" msgstr "மேலும் பார்க்க" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Are you sure?" msgstr "உறுதியாகவா?" -#: js/messages.php:423 +#: js/messages.php:424 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1993,51 +2005,51 @@ msgstr "" "இந்த நடவடிக்கை பத்திகளின் வரையறையில் சிலவற்றை மாற்றலாம்.
நீங்கள் உறுதியாக தொடர " "விரும்புகிறீர்களா?" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "தொடர்க" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "முதனிலை குறிப்பெழுத்து சேர்க்க" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "முதனிலை குறிப்பெழுத்து சேர்க்கப்பட்டது." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "அடுத்த படிநிலைக்கு செல்கிறோம்…" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "'%s' அட்டவணையின் சீராக்கலின் முதல் படிநிலை நிறைவுற்றது." -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "செயல்முறையின் முடிவு" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "சீராக்கலின் இரண்டாம் படிநிலை (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "முடிந்த" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "பகுதியளவு சார்புகளை உறுதிசெய்க" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "தேர்ந்தெடுக்கப்பட்ட பகுதியளவு சார்புகளை பின்வருமாறு:" -#: js/messages.php:440 +#: js/messages.php:441 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2045,211 +2057,211 @@ msgstr "" "குறிப்பு: அ,ஆ->இ,ஈ என்பது அ மற்றும் ஆ நெடுவரிசைகளின் மதிப்புகள் கூட்டாக இ,ஈ " "நெடுவரிசைகளின் மதிப்புகளை முடிவுசெய்கிறது என்பதை குறிக்கிறது." -#: js/messages.php:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "எந்த பகுதியளவு சார்புகளும் தேர்ந்தெடுக்கப்படவில்லை!" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "அட்டவணையிலுள்ள தரவின் அடிப்படையில் ஏற்படகூடிய பகுதியளவு சார்புகளை காட்டுக" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "பகுதியளவு சார்பு பட்டியலை மறைக்க" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "பொறுத்திருங்கள்!தரவின் அளவு,நெடுவரிசை எண்ணிக்கையை பொருத்தது சில நொடிகள் ஆகலாம்." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "படிநிலை" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "பின்வரும் நடவடிக்கைகள் செயல்படுத்தப்படும்:" -#: js/messages.php:455 +#: js/messages.php:456 #, fuzzy, php-format #| msgid "DROP columns %1s from the table %2s" msgid "DROP columns %s from the table %s" msgstr "%1s நிரல்வரிசைகளை %2s அட்டவணையிலிருந்து கைவிடுக" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "பின்வரும் அட்டவணையை உருவாக்குக" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "சீராக்கலின் மூன்றாம் படிநிலை (3NF)" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "நிலைபெறா சார்புகளை உறுதிசெய்க" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "தேர்ந்தெடுக்கப்பட்ட சார்புகளை பின்வருமாறு:" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "எந்த சார்புகளும் தேர்ந்தெடுக்கப்படவில்லை!" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "சேமி" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "தேடுதல் கட்டளை விதியை மறை" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "தேடுதல் கட்டளை விதியை காண்பி" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "வரம்பு தேடல்" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "நெடுவரிசையில் மீயளவு:" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "நெடுவரிசையில் மீச்சிற்றளவு:" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "மீச்சிற்றளவு:" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "மீப்பெருவளவு:" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "தேடிமாற்று நிபந்தனையை மறை" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "தேடிமாற்று நிபந்தனையை காண்பி" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "ஒவ்வொரு புள்ளியும் ஒரு தரவு வரிசையை குறிக்கிறது." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "ஒவ்வொரு புள்ளியின் மேற்செல்லும் போதும் அதற்கான சிட்டை தெரியும்." -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "அணுக்கதிற்கு, வரைபடத்தின் ஒரு பகுதியை சுட்டியால் தெரிவுசெய்க." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "மெய்நிலைக்கு வர மீள்அணுக்கம் பொத்தானை சொடுக்கவும்." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "ஒரு தரவுவரிசையை பார்க்கவும் திருத்தவும் அதன் தரவுபுள்ளியை சொடுக்கவும்." -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "வரைவின் வலது கீழ் மூலையில் அழுத்தி இழுப்பதன் மூலம் அளவை மாற்றலாம்." -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "இரு நெடுவரிசைகளை தேர்ந்தெடுக்கவும்" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "இரு வெவ்வேறு நெடுவரிசைகளை தேர்ந்தெடுக்கவும்" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "தரவுப்புள்ளி உள்ளடக்கம்" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "புறக்கணி" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "படியெடு" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "புள்ளி" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "வரிச்சரம்" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "பல்கோணி" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "கேத்திர கணிதம்" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "உள்ப்புற வளையம்" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "வெளிப்புற வளையம்:" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "மறைகுறியாக்க குறிப்பெழுத்தை படியெடுக்க வேண்டுமா?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "மறைகுறியாக்க குறிப்பெழுத்து" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "மேற்கோள்காட்டப்பட்ட குறிப்பெழுத்தை தேர்ந்தெடுக்க" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "அயல் குறிப்பெழுத்தை தேர்ந்தெடுக்க" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "முதனிலை குறிப்பெழுத்து அல்லது தனித்த குறிப்பெழுத்தை தேர்ந்தெடுக்க!" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "காட்டுவதற்க்கான நிரல்வரிசையை தேர்ந்தெடுக்க" -#: js/messages.php:532 +#: js/messages.php:533 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 +2269,79 @@ msgstr "" "நீங்கள் திட்டஅமைப்பில் செய்த மாற்றங்களை சேமிக்கவில்லை.எனவே அவற்றை இழக்கநேரிடும். " "தொடரவேண்டுமா?" -#: js/messages.php:535 +#: js/messages.php:536 msgid "Page name" msgstr "பக்கத்தின் பெயர்" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "பக்கத்தை சேமிக்க" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Save page" msgid "Save page as" msgstr "பக்கத்தை சேமிக்க" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "பக்கத்தை திறக்க" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "பக்கத்தை அழிக்க" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "பெயரிடாதது" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "தொடர்வதற்கு ஒரு பக்கத்தை தேர்ந்தெடுக்க" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "இப்பக்கத்தில் செய்த மாற்றங்களை சேமிக்கவேண்டுமா?" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "பக்கம் நீக்கப்பட்டது" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "தொடர்புசார் ஒழுங்கமைப்பை தரவேற்றுக" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "மாற்றங்களை சேமிக்க" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "நெடுவரிசை \"%s\" க்கு ஒரு விருப்பத்தை சேர்க்க." -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "%d கருப்பொதிவு(கள்) உருவாக்கப்பட்டன." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "தொகுப்பதை நிறுத்த Esc அழுத்தவும்." -#: js/messages.php:557 +#: js/messages.php:558 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 +2349,15 @@ msgstr "" "நீங்கள் சில தரவுகளை தொகுத்துள்ளீர்கள். தரவை செமிக்காமல் இப்பக்கத்தைவிட்டு வெளியேறவேண்டுமா " "என உறுதிசெய்க?" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "மறுவரிசைப்படுத்த இழுக்கவும்." -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "இந்நெடுவரிசையை பொருத்து முடிவுகளை வரிசைப்படுத்த சொடுக்குக." -#: js/messages.php:563 +#: js/messages.php:564 #, fuzzy #| msgid "" #| "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC." @@ -2358,26 +2370,26 @@ msgstr "" "இந்நெடுவரிசையை ORDER BY உறுப்புரையில் சேர்க்க அல்லது ASC/DESCஐ மாற்ற shift" "+சொடுக்கவும்.
- ORDER BY உறுப்புரையிலிருந்து நீக்க Ctrl+சொடுக்கவும்" -#: js/messages.php:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "சேர்க்க/நீக்க சொடுக்கவும்." -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "நிரல்வரிசை பெயரை படியெடுக்க இருமுறை சொடுக்குக." -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "நிரல்வரிசையின் காட்சிப்பண்பை
மாற்ற கீழிறங்கு குறியை சொடுக்குக." -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "அனைத்தையும் காட்டு" -#: js/messages.php:574 +#: js/messages.php:575 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." @@ -2385,147 +2397,108 @@ msgstr "" "இவ்வட்டவணையில் தனித்தநிரல்வரிசை இல்லை.சேமித்த பின்னர் நெய்யரியில் தொகுத்தல், தேர்வுபெட்டி, " "தொகுத்தல், படியெடுத்தல், மற்றும் நீக்கல் வசதிகள் செயல்படாமல் போகலாம்." -#: js/messages.php:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "சரியான அறுபதின்ம சரத்தை உள்ளிடவும்.௦-9,A-F ஆகியவை ஏற்ற உள்ளீடுகள்." -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "மெய் சரம்" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "விலக்கு" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "கைவிடப்பட்டது" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "வெற்றி" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "தரவிறக்க நிலை" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "கோப்புகளை இங்கு விடுக" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "ஒரு தரவுத்தளத்தை முதலில் தேர்வுசெய்க" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "நீங்கள் பெரும்பாலான மதிப்புகளை தொகுக்க
அவற்றை இருமுறை-சொடுக்குக." -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "நீங்கள் பெரும்பாலான மதிப்புகளை தொகுக்க
அவற்றை சொடுக்குக." -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "இணைப்புக்கு செல்:" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "நிரல்வரிசை பெயரை படியெடுக்கவும்." -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "நிரல்வரிசை பெயரை இடைபிடிப்புக்கு படியெடுக்க வலமுறை-சொடுக்குக." -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "கடவுச்சொல்லை இயற்று" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "இயற்று" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "மேலும்" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "பலகத்தை காட்டு" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "பலகத்தை மறை" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "மறைத்துள்ள வழிசெலுத்தல் படிமுறை உருப்படிகளை காண்பி." -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "முதன்மை பலகத்துடன் இணைக்க" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "முதன்மை பலகத்திலிருந்து பிரிக்க" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -#, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "அட்டவணைகள்" - -#: js/messages.php:633 -#, fuzzy -#| msgid "Views:" -msgid "views" -msgstr "விவரபார்வைகள்:" - -#: js/messages.php:634 -#, fuzzy -#| msgid "Procedures:" -msgid "procedures" -msgstr "செயல்முறைகள்:" - -#: js/messages.php:635 -#, fuzzy -#| msgid "Recent" -msgid "events" -msgstr "அண்மையில்" - -#: js/messages.php:636 -#, fuzzy -#| msgid "Functions:" -msgid "functions" -msgstr "செயல்குழுக்கள்:" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "நீங்கள் கோரிய பக்கம் வரலாற்றில் இல்லை, அது செல்லுபடி இல்லாமல் போயிருக்கலாம்." -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2535,57 +2508,57 @@ msgstr "" "கருத்தில் கொள்ளவும்.மிக அண்மைய பதிப்பு %s,%s அன்று வெளியிடப்பட்டது." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", புதிய நிலைப்பதிப்பு:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "இன்றுவரை" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "விவரபார்வையை உருவாக்குக" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy #| msgid "Send Error Report" msgid "Send error report" msgstr "பிழை அறிக்கை அனுப்புக" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "பிழை அறிக்கை அளிக்க" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" "ஒரு ஆபத்தான ஜாவா ஸ்க்ரிப்ட் பிழை நிகழ்ந்துள்ளது. பிழை அறிக்கை அளிக்க விரும்புகிறீர்களா?" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "அறிக்கை அமைப்புக்களை மாற்றுக" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "அறிவிக்கை விவரங்களை காட்டுக" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" "PHPயின் நிலையில் குறைந்த செயலாக்கநேர வரம்பின் விளைவாக உங்கள் தரவேற்றம் முடிவுறவில்லை!" -#: js/messages.php:667 +#: js/messages.php:659 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2594,367 +2567,367 @@ msgstr "" "எச்சரிக்கை: இப்பக்கத்திலுள்ள ஒரு படிவத்தில் %dஐ விட அதிகமான கலங்கள் உள்ளன.PHPயின் " "max_input_vars அமைப்பாக்கத்தின் விளைவாக அனுப்பும்போது சில கலங்கள் விடப்படலாம்." -#: js/messages.php:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "சேவையகத்தில் சில பிழைகள் கண்டறியப்பட்டுள்ளன!" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "இச்சாளரத்தின் கீழ்பக்கம் பார்க்கவும்." -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "அனைத்தையும் புறக்கணி" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "உங்கள் அமைவுகளின்படி,தற்பொழுது அவை அனுப்பபட்டுகொண்டிருக்கிறன.காத்திருக்கவும்." -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "இந்த வினவலை மீண்டும் செயல்படுத்த வேண்டுமா?" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "உங்களுக்கு உண்மையிலேயே புத்தகக்குறியை நீக்க வேண்டுமா?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "அட்டவணைக் கருத்துரைகள்" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "தேடல் முடிவுகளை மறை" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "பின்" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "அடுத்த" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "இன்று" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "ஜனவரி" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "பெப்ரவரி" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "மார்ச்" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "ஏப்ரல்" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "மே" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "ஜூன்" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "ஜூலை" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "ஆகஸ்ட்" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "செப்டம்பர்" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "அக்டோபர்" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "நவம்பர்" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "டிசம்பர்" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "தை" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "மாசி" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "பங்குனி" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "சித்திரை" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "மே" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "ஆணி" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "ஆடி" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "ஆவணி" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "புரட்டாதி" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "ஐப்பசி" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "காத்திகை" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "மார்கழி" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "ஞாயிறு" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "திங்கள்" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "செவ்வாய்" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "புதன்" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "வியாழன்" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "வெள்ளி" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "சனி" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "ஞாயிறு" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "திங்" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "செவ்" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "புத" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "வியா" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "வெள்" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "சனி" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "ஞாயி" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "திங்" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "செவ்" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "புத" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "வியா" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "வெள்" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "சனி" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "கிழமை" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "நாள்காட்டி-மாதம்-ஆண்டு" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "எதுவுமில்லை" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "மணித்தியாலம்" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "நிமிடம்" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "வினாடிகள்" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Use text field:" msgid "Please fix this field" msgstr "உரைபுலத்தின் மூலமாக:" -#: js/messages.php:886 +#: js/messages.php:878 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid email address" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:887 +#: js/messages.php:879 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "தயவுசெய்து ஒரு சரியான எண்ணை இடுக!" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:889 +#: js/messages.php:883 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date ( ISO )" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:890 +#: js/messages.php:885 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "தயவுசெய்து ஒரு சரியான எண்ணை இடுக!" -#: js/messages.php:891 +#: js/messages.php:888 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "தயவுசெய்து ஒரு சரியான எண்ணை இடுக!" -#: js/messages.php:892 +#: js/messages.php:890 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" @@ -2966,53 +2939,53 @@ msgstr "தயவுசெய்து ஒரு சரியான நீளத msgid "Please enter the same value again" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter at least {0} characters" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a value between {0} and {1}" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:898 +#: js/messages.php:917 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" msgstr "தயவுசெய்து ஒரு சரியான நீளத்தை இடுக!" -#: js/messages.php:899 +#: js/messages.php:922 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a value greater than or equal to {0}" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:901 +#: js/messages.php:928 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date or time" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:902 +#: js/messages.php:933 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "தயவுசெய்து ஒரு சரியான எண்ணை இடுக!" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "வலு" @@ -3102,11 +3075,12 @@ msgstr "மீள்வினவல்" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3148,7 +3122,7 @@ msgstr "அமர்வின் போது" msgid "Explain" msgstr "விளக்குக" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "பகுமுறையிடல்" @@ -3182,8 +3156,8 @@ msgid "History" msgstr "வரலாறு" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3352,31 +3326,31 @@ msgstr "" msgid "Switch to dark theme" msgstr "பிரதியான தரவுதளத்துக்கு மாறு" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" "வழங்கி பதிலளிக்கவில்லை(அல்லது உள்வழங்கியின் இணைவுக்கொள்குழி சரியாக அமைக்கப்படவில்லை)." -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "வழங்கி பதிலளிக்கவில்லை." -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "தரவுத்தளத்தை கொண்டுள்ள அடைவின் உரிமைகளை சரிபார்க்க." -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "தகவல்கள்…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "அமைப்பாக்கத்தில் உள்ளவாறு அமைத்த கட்டுபாட்டுபயனருக்கான இணைப்பு தோல்வியடைந்தது." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3386,8 +3360,8 @@ msgstr "அமைப்பாக்கத்தில் உள்ளவாற msgid "Ascending" msgstr "ஏறுவரிசை" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3532,8 +3506,8 @@ msgstr[0] "%1$s அட்டவணையில் பொருந்தியவ msgstr[1] "%1$s அட்டவணையில் பொருந்தியவைகள் %2$s " #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3577,121 +3551,122 @@ msgstr "அனைத்தையும் தெரிவுநீக்கு" msgid "Inside column:" msgstr "நிரல் உள்ளே:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "தொகுத்தை சேமிக்க" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "நெடுவரிசையின் வரிசையை மீட்டமை" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "நிறைவரிசைகளை வடிகட்டு" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "இந்த அட்டவணையில் தேடுக" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "ஆரம்பம்" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "முந்தைய" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "அடுத்து" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "முடிவு" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "நிரைவரிசைகளின் எண்ணிக்கை:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "குறிப்பெழுத்தின்படி வரிசைபடுத்துக" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "பகுதியளவு உரை" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "முழுவுரைகள்" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "தொடர்புசார் குறிப்பெழுத்து" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Display comments" msgid "Display column for relations" msgstr "கருத்துரைகளை காட்டுக" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "இரும உள்ளடக்கங்களை காண்பி" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "உருவிலி உள்ளடக்கங்களை காண்பி" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "உலவியின் மாற்றுருவாக்கத்தை மறைக்க" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "நன்கறிந்த உரை" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "நன்கறிந்த இருமதரவு" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "இந்நிரைவரிசை அழிக்கப்பட்டது." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "கொல்க" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "அண்ணளவாக இருக்கலாம்.[doc@faq3-11]FAQ 3.11[/doc]ஐ காண்க." -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "உங்கள் SQL வினவல் வெற்றிகரமாக நிறைவேற்றப்பட்டது." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3699,40 +3674,40 @@ msgid "" msgstr "" "இவ்விவரபார்வை குறைந்தளவு இத்தனை நிரைவரிசைகள் கொண்டிருக்கலாம். %sஆவணச்சான்றை%s காண்க." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "%1s - %2s நிரைவரிசைகள் காட்டப்படுகின்றன" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "இவ்வினவலில் %1$d மொத்தம், - %2$d" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "%d மொத்தம்" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "வினவல் %01.4f நொடிகள் எடுத்துக்கொண்டது." -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "உடன் தெரிவுசெய்யப்பட்டது:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3740,25 +3715,25 @@ msgstr "உடன் தெரிவுசெய்யப்பட்டது:" msgid "Check all" msgstr "அனைத்தையும் தெரி" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "அச்சுப் பார்வை" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "வினவலின் பயன்முடிவுகளின் செயல்பாடுகள்" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "விளக்கப்படத்தை காட்டுக" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "GIS தரவை காட்சிப்படுத்துக" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "இணைப்பை காணவில்லை!" @@ -3850,19 +3825,19 @@ msgstr "" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "சுட்டுகள்" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3871,24 +3846,24 @@ msgid "Action" msgstr "செயல்" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "முக்கியபெயர்" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "தனித்தன்மை" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "பொதிக்கப்பட்டது" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "" @@ -3896,8 +3871,8 @@ msgstr "" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3907,8 +3882,8 @@ msgid "Collation" msgstr "அடுக்கு" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3924,15 +3899,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "அழி" @@ -3969,12 +3944,13 @@ msgstr "நோக்கு" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3982,7 +3958,7 @@ msgstr "அட்டவணை" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3991,8 +3967,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4000,41 +3976,41 @@ msgid "Search" msgstr "தேடு" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "செருகு" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "செயல்பாடுகள்" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4045,16 +4021,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4062,20 +4038,20 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "மைய நெடுவரிசைகள்" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "தரவுத்தளங்கள்" @@ -4086,33 +4062,33 @@ msgid "User accounts" msgstr "பயனர் குழுக்கள்" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "படியெடுத்தல்" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "மாறிகள்" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "எழுத்துக்கணங்கள்" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "செயல்பொறிகள்" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4403,7 +4379,7 @@ msgstr "தொகுப்புக்குறிகாட்டியை ம msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4822,37 +4798,37 @@ msgstr "%s செயல்பாடு எதுவென்று தெரி msgid "Click to toggle" msgstr "பிறழ்வதற்கு சொடுக்குக" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "உமது கணினியிலிருந்து:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "வலை சேவையகத்தின் பதிவேற்ற அடைவுகளிலிருந்து %s தேர்ந்தெடுங்கள்:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "பதிவேற்றத்திற்காக நீங்கள் தேர்வு செய்த அடைவை எட்டமுடியவில்லை." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "பதிவேற்றுவதற்கு எந்த கோப்புகளும் இல்லை!" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "வெறுமை" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "செயலாக்குக" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "அச்சிடுக" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "பயனர்கள்" @@ -5015,8 +4991,8 @@ msgid "Add new column" msgstr "புதிய நெடுவரிசையை சேர்க்க" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5075,19 +5051,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -5872,7 +5848,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "தானாக அதிகரிக்கும் பெறுமதியை சேர்" @@ -5911,7 +5887,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "%sஐ சேர்க்க" @@ -7498,7 +7474,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "வினவல் பெட்டியை வைத்திருக்க" @@ -7772,101 +7748,33 @@ msgstr "" msgid "OpenDocument Text" msgstr "கட்டற்றஆவண உரை" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "விருப்பமானவை பட்டியல் நிரம்பிவிட்டது!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "%s அட்டவணை வெறுமையாக்கப்பட்டது." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "நோக்குநிலை %s கைவிடப்பட்டது." -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "அட்டவணை %s கைவிடப்பட்டது." -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "விருப்பமானவை பட்டியல் நிரம்பிவிட்டது!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "எந்த நிரல்வரிசையும் தெரிவுசெய்யப்படவில்லை." - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "நெடுவரிசைகள் வெற்றிகரமாக நகர்த்தப்பட்டன." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "வினவல் வழு" - -#: libraries/controllers/TableStructureController.php:967 -#, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "" - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "மாற்று" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "சுட்டுதொகுப்புக்குறி" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "இடம்சார்" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "தனித்த மதிப்புகள்" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -7880,6 +7788,14 @@ msgstr "" msgid "No data to display" msgstr "காட்டுவதற்கு தரவு இல்லை" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "" + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "" @@ -7890,25 +7806,85 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr "உள்ளமை உறவுமுறை சேர்க்கப்பட்டது." -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Table Search" msgid "Table search" msgstr "அட்டவணை தேடல்" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Zoom Search" msgid "Zoom search" msgstr "அணுக்க தேடல்" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "Hide find and replace criteria" msgid "Find and replace" msgstr "தேடிமாற்று நிபந்தனையை மறை" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "எந்த நிரல்வரிசையும் தெரிவுசெய்யப்படவில்லை." + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "நெடுவரிசைகள் வெற்றிகரமாக நகர்த்தப்பட்டன." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "வினவல் வழு" + +#: libraries/controllers/table/TableStructureController.php:975 +#, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "மாற்று" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "சுட்டுதொகுப்புக்குறி" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "இடம்சார்" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "தனித்த மதிப்புகள்" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -7918,7 +7894,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7985,7 +7961,7 @@ msgstr "" msgid "Create database:" msgstr "தரவுத்தளம் உருவாக்கு:" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "" @@ -8673,69 +8649,69 @@ msgid "Dump has been saved to file %s." msgstr "தரவு %s கோப்பாக சேமிக்கப்பட்டுள்ளது." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "தரவுத்தளம்: %s க்கு செல்க" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "" @@ -8758,71 +8734,71 @@ msgstr "செயல்கூறு" msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "அல்லது" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -8834,11 +8810,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -8854,35 +8830,35 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "அட்டவணை முன்னொட்டை பதிலிடு:" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "அட்டவணையை முன்னொட்டுடன் படியெடு:" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "இதிலிருந்து" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "அட்டவணையின் முன்னொட்டு சேர்க்க:" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "" @@ -9104,8 +9080,8 @@ msgstr "செயல்முறைகள்:" msgid "Views:" msgstr "விவரபார்வைகள்:" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "காண்பி" @@ -9145,18 +9121,15 @@ msgstr[0] "" msgstr[1] "" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" -msgstr "தரவுத்தளங்களை பெயர் அல்லது சுருங்குறிவரையறையால் வடிகட்டு" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "தரவுத்தளப் பெயர் வெறுமையாக உள்ளது->பெயர் அல்லது சுருங்குறிவரையறை ஆல் வடிகட்டு" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -9530,7 +9503,7 @@ msgstr "தரவுத்தளத்தைப் இப்படி மறு #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9539,7 +9512,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges:" @@ -9559,18 +9532,18 @@ msgstr "தரவுத்தளத்தை நீக்குக" msgid "Drop the database (DROP)" msgstr "தரவுத்தளத்தை கைவிடுக (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "கட்டமைப்பை மட்டும்" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "கட்டமைப்பு மற்றும் தரவுகள்" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "தரவுகளை மட்டும்" @@ -9582,7 +9555,7 @@ msgstr "தரவுதளத்தை இப்படி படியெடு msgid "CREATE DATABASE before copying" msgstr "பிரதிசெய்யமுன் தரவுத்தளத்தை உருவாக்கு" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "கட்டுப்பாடுகளை சேர்க்க" @@ -9622,161 +9595,161 @@ msgstr "" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "அட்டவணை பராமரிப்பு" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "அட்டவணையை பகுப்பாய்" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "அட்டவணையை சரிபார்" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "அட்டவணையை சரிபார்" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "அட்டவணையை ஒருங்கமை" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "அட்டவணையை உகப்பாக்கு" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "அட்டவணையை திருத்து" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "தரவை அல்லது அட்டவணையை அழி" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "அட்டவணையை வெறுமையாக்கு (காலி)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "அட்டவணையை அழி (அழி)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "ஆரய்தல்" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "சரிபார்" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "உகப்பாக்கு" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "மீள்வாகு" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "திருத்து" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Collapse" msgid "Coalesce" msgstr "சுருக்கு" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "பிரிவினை பராமரிப்பு" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "பிரிவினை %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "" @@ -9948,7 +9921,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -9972,21 +9945,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10076,7 +10049,7 @@ msgid "Database:" msgstr "தரவுத்தளம்:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "தரவு:" @@ -10175,7 +10148,7 @@ msgid "Data creation options" msgstr "தரவேற்ற விருப்பங்கள்" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -10244,8 +10217,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10253,83 +10226,83 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "data" msgid "Metadata" msgstr "தரவு" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "உருவாக்கம்:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "கடைசி நிகழ்நிலையாக்கம்:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "கடைசி சரிபார்ப்பு:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "பயன்பாட்டில் உள்ளது" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "குவிக்கப்பட்ட அட்டவணைகளுக்கான தொகுப்புக்குறிகள்" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "அட்டவணைகளில்:->அட்டவணைகளுக்கான தொகுப்புக்குறிகள்" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "குவிக்கப்பட்ட அட்டவணைகளுக்கான AUTO_INCREMENT(தன்னிலைகூட்டு)" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "அட்டவணைக்கான AUTO_INCREMENT(தன்னிலைகூட்டு)" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "" @@ -10568,9 +10541,9 @@ msgstr "" msgid "Table of contents" msgstr "" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "மிகை" @@ -10736,53 +10709,53 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "உள்ளமை உறவுமுறை சேர்க்கப்பட்டது." -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "Internal relation has been added." msgid "Error: Internal relation could not be added!" msgstr "உள்ளமை உறவுமுறை சேர்க்கப்பட்டது." -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "Internal relation has been added." msgid "FOREIGN KEY relation has been removed." msgstr "உள்ளமை உறவுமுறை சேர்க்கப்பட்டது." -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "Internal relation has been added." msgid "Error: Internal relation could not be removed!" msgstr "உள்ளமை உறவுமுறை சேர்க்கப்பட்டது." -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Internal relation has been added." msgid "Internal relation has been removed." @@ -10829,106 +10802,106 @@ msgstr "" msgid "Please see the documentation on how to update your column_info table. " msgstr "" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "There are no favorite tables." msgid "Persistent favorite tables" msgstr "விருப்பமான அட்டவணைகள் ஏதுமில்லை." -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "உள்ளமைக்கக்கூடிய பட்டிகள்" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "தகா தரவேற்ற சுட்டுவகை" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11102,8 +11075,8 @@ msgstr "பயனர் பெயர்:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "" @@ -11111,7 +11084,7 @@ msgstr "" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "" @@ -11729,7 +11702,7 @@ msgstr[1] "%1$d தரவுத்தளங்கள் வெற்றிகர msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "பதிப்பு" @@ -11737,98 +11710,94 @@ msgstr "பதிப்பு" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "முடக்கப்பட்டது" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "" #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "" #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "" #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -11836,65 +11805,65 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "" #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "" #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -11906,8 +11875,8 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -11951,31 +11920,31 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "routine" @@ -11983,7 +11952,7 @@ msgid "Routine" msgstr "%s களத்தை சேர்க்க->செயல்முறை" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -11998,14 +11967,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -12015,7 +11984,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "" @@ -12024,15 +11993,15 @@ msgid "Global" msgstr "உலகளாவிய" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "" @@ -12055,7 +12024,7 @@ msgid "Native MySQL Authentication" msgstr "உறுதிப்படுத்தல்" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "புகுபதிவு தகவல்" @@ -12080,8 +12049,8 @@ msgstr "பயனர் பெயர்:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Constraint name" msgid "Host name" @@ -12103,232 +12072,232 @@ msgstr "உறுதிப்படுத்தல்" msgid "Password Hashing Method" msgstr "கடவுச்சொல் கூளமாக்கள்:" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add user group" msgid "Add user account" msgstr "பயனர்குழுவை சேர்க்க" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database operations" msgid "Database for user account" msgstr "தரவுதள நடவடிக்கைகள்" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "புதிய பயனாளரை சேர்க்க->தனிச்சலுகையை தொகுக்க:" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "பயனர் குழுவை தொகுக்க" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Check Privileges" msgid "Routine-specific privileges" msgstr "தனிசலுகைகளை சரிபார்க்க" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Removing Selected Users" msgid "Remove selected user accounts" msgstr "தேர்ந்தெடுக்கப்பட்ட பயனர்கள் நீக்கப்படுகின்றனர்" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "புதியது" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "புதிய பயனாளரை சேர்க்க->தனிச்சலுகையை தொகுக்க:" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "User groups" msgid "User account" msgstr "பயனர் குழுக்கள்" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "பயனர்கள் கண்ணோட்டம்" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12337,7 +12306,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12346,11 +12315,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "நீங்கள் புதிய பயனாளரை சேர்த்துள்ளீர்கள்." @@ -12578,30 +12547,30 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "விளக்கப்பட நெடுவரிசைகள்" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -12657,7 +12626,7 @@ msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -12682,33 +12651,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12716,78 +12685,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12795,7 +12764,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12803,42 +12772,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12846,33 +12815,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12881,242 +12850,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13124,99 +13093,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13224,18 +13193,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13243,11 +13212,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -13256,57 +13225,57 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "பயனர் குழுக்கள்" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "வழங்கி படிநிலைமட்ட தாவல்கள்" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "தரவுத்தள படிநிலைமட்ட தாவல்கள்" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "அட்டவணை படிநிலைமட்ட தாவல்கள்" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "பயனர்களை காட்டுக" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "பயனர்குழுவை சேர்க்க" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "பயனர்குழுவின் பெயர்:" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "வழங்கி-படிநிலைமட்ட தாவல்கள்" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "தரவுத்தள-படிநிலைமட்ட தாவல்கள்" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "அட்டவணை-படிநிலைமட்ட தாவல்கள்" @@ -13368,21 +13337,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -13446,111 +13411,111 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "Rate of table open" msgid "Unexpected beginning of statement." msgstr "திறந்தநிலை அட்டவணைகளின் விழுக்காடு" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 #, fuzzy #| msgid "Unexpected characters on line %s." msgid "Unexpected token." msgstr "%sம் வரியில் எதிர்பாராத எழுத்துக்கள் உள்ளன." -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "இந்நிரைவரிசை அழிக்கப்பட்டது." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "ஏனையது->வரிசை" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "சனி->நிலை" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "மொத்த நேரம்" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "அழைப்புக்கள்" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "சிட்டை:" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -13562,7 +13527,7 @@ msgstr "" "இவ்வட்டவணையில் தனித்தநிரல்வரிசை இல்லை.சேமித்த பின்னர் நெய்யரியில் தொகுத்தல், தேர்வுபெட்டி, " "தொகுத்தல், படியெடுத்தல், மற்றும் நீக்கல் வசதிகள் செயல்படாமல் போகலாம்." -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -13574,7 +13539,7 @@ msgstr "" "இவ்வட்டவணையில் தனித்தநிரல்வரிசை இல்லை.சேமித்த பின்னர் நெய்யரியில் தொகுத்தல், தேர்வுபெட்டி, " "தொகுத்தல், படியெடுத்தல், மற்றும் நீக்கல் வசதிகள் செயல்படாமல் போகலாம்." -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -13605,27 +13570,27 @@ msgstr "" msgid "Bind parameters" msgstr "ஒவ்வாத பண்புகூறுகள்!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "" @@ -13670,175 +13635,175 @@ msgstr "" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "உருவாக்கப்பட்டது" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "புதுப்பிக்கப்பட்டது" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "பதிப்பை உருவாக்கு" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "கண்காணிப்பு அறிக்கை" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "கட்டமைப்பு நிகழ்காப்புப்பிரதி" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "செயற்படு" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "செயல்பாடற்ற" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "தரவு இல்லை" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "%s ஆக தரவேற்றுக" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "திகதி" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "ஒன்றுமில்லாத" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format #| msgid "Create version %1$s of %2$s" msgid "Version %1$s of %2$s was deleted." msgstr "%2$s ன் %1$s பதிப்பை உருவாக்குக" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "கண்காணிக்கபடாத அட்டவணைகள்" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "அட்டவணையை கண்காணி" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "கவனிக்கப்படும் அட்டவணைகள்" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "இறுதி பதிப்பு" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "கண்காணிப்பு தரவுகள் அழிக்கப்படுகின்றன" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "பதிப்புக்கள்" @@ -13846,11 +13811,11 @@ msgstr "பதிப்புக்கள்" msgid "Manage your settings" msgstr "உங்கள் அமைவுகளை கையாளுக" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -13953,7 +13918,7 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -13978,7 +13943,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -14807,45 +14772,51 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "வரைபட தலைப்பு" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "கு-அச்சு:" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "தொடர்கள்:" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "X-அச்சு சிட்டை:" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "X மதிப்புக்கள்" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "Y-அச்சு சிட்டை:" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "கு மதிப்புக்கள்" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "தொடர் நிரல்வரிசை:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Value column:" msgid "Value Column:" msgstr "மதிப்பு நிரல்வரிசை:" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "" @@ -14902,46 +14873,47 @@ msgstr "கருத்துரை:" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +msgid "Foreign key constraints" +msgstr "அயல் குறியெண் கட்டுப்பாடுகள்" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "செயல்கள்" + +#: templates/table/relation/common_form.phtml:10 +msgid "Constraint properties" +msgstr "கட்டுப்பாட்டின் பண்புகள்" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "" + +#: templates/table/relation/common_form.phtml:60 +msgid "+ Add constraint" +msgstr "+கட்டுப்பாட்டை சேர்க்க" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "உள்ளமை உறவுமுறைகள்" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:37 -msgid "Foreign key constraints" -msgstr "அயல் குறியெண் கட்டுப்பாடுகள்" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "செயல்கள்" - -#: templates/table/relation/common_form.phtml:41 -msgid "Constraint properties" -msgstr "கட்டுப்பாட்டின் பண்புகள்" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "" - -#: templates/table/relation/common_form.phtml:83 -msgid "+ Add constraint" -msgstr "+கட்டுப்பாட்டை சேர்க்க" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "காட்சிப்படுத்த நிரல்வரிசையை தேர்ந்தெடுக்கவும்:" @@ -15071,7 +15043,7 @@ msgid "at beginning of table" msgstr "திறந்தநிலை அட்டவணைகளின் விழுக்காடு" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -15116,7 +15088,7 @@ msgstr "பிரிவினை %s" msgid "Edit partitioning" msgstr "தொகுப்பு பார்வை" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "தொகுப்பு பார்வை" @@ -16275,6 +16247,38 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "அட்டவணைகள்" + +#, fuzzy +#~| msgid "Views:" +#~ msgid "views" +#~ msgstr "விவரபார்வைகள்:" + +#, fuzzy +#~| msgid "Procedures:" +#~ msgid "procedures" +#~ msgstr "செயல்முறைகள்:" + +#, fuzzy +#~| msgid "Recent" +#~ msgid "events" +#~ msgstr "அண்மையில்" + +#, fuzzy +#~| msgid "Functions:" +#~ msgid "functions" +#~ msgstr "செயல்குழுக்கள்:" + +#~ msgid "Filter databases by name or regex" +#~ msgstr "தரவுத்தளங்களை பெயர் அல்லது சுருங்குறிவரையறையால் வடிகட்டு" + +#~ msgid "Filter by name or regex" +#~ msgstr "" +#~ "தரவுத்தளப் பெயர் வெறுமையாக உள்ளது->பெயர் அல்லது சுருங்குறிவரையறை ஆல் வடிகட்டு" + #, fuzzy #~| msgid "Authentication" #~ msgid "MySQL Native Authentication" diff --git a/po/te.po b/po/te.po index ade2892bd8..7891bdb9ce 100644 --- a/po/te.po +++ b/po/te.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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:05+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Telugu Are you sure you " "want to continue?" msgstr "" # మొదటి అనువాదము -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Add into comments" msgid "Continue" msgstr "స్పందనలకు చేర్చు" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "" # మొదటి అనువాదము -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 #, fuzzy #| msgid "Change" msgid "Taking you to next step…" msgstr "మార్చుము" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" # మొదటి అనువాదము -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 #, fuzzy @@ -2054,255 +2067,255 @@ msgstr "" msgid "End of step" msgstr "వాక్యాంతము" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "భద్రపరచు" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "శోధించు" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Comments" msgid "Column maximum:" msgstr "వ్యాఖ్యలు" -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Comments" msgid "Column minimum:" msgstr "వ్యాఖ్యలు" -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "గరిష్ఠ పట్టికలు" -#: js/messages.php:474 +#: js/messages.php:475 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "గరిష్ఠ పట్టికలు" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 #, fuzzy #| msgid "Add/Delete columns" msgid "Select two columns" msgstr "నిలువ వరుసల్ని చేర్చు/తొలగించు" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Table of contents" msgid "Data point content" msgstr "విషయ సూచిక" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 msgid "Page name" msgstr "పుట పేరు" # మొదటి అనువాదము -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Create a page" @@ -2310,14 +2323,14 @@ msgid "Save page" msgstr "పుటని సృష్టించు" # మొదటి అనువాదము -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Create a page" msgid "Save page as" msgstr "పుటని సృష్టించు" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgctxt "PDF" @@ -2325,214 +2338,214 @@ msgstr "పుటని సృష్టించు" msgid "Open page" msgstr "పుటలు" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy #| msgid "Delete" msgid "Delete page" msgstr "తొలగించు" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Title" msgid "Untitled" msgstr "శీర్షిక" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 #, fuzzy #| msgid "Export method" msgid "Export relational schema" msgstr "ఎగుమతి పద్ధతి" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:550 +#: js/messages.php:551 #, fuzzy, php-format #| msgid "Values for column %s" msgid "Add an option for column \"%s\"." msgstr "%s నిలువు వరుసకు విలువలు" -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "దాఖలుచేయి" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy #| msgid "Comments" msgid "Double-click to copy column name." msgstr "వ్యాఖ్యలు" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "అన్నీ చూపించు" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "అసలు స్థానం" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "రద్దుచేయి" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 #, fuzzy #| msgid "Import" msgid "Import status" msgstr "దిగుమతి" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "అన్నీ ఎంచుకో" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Comments" msgid "Copy column name." msgstr "వ్యాఖ్యలు" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "మరిన్ని" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "అన్నీ చూపించు" # మొదటి అనువాదము -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Hide/Show all" msgid "Hide panel" msgstr "అన్నింటిని చూపుము/దాచుము" # మొదటి అనువాదము -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Show" msgid "Show hidden navigation tree items." msgstr "చూపించు" # మొదటి అనువాదము -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 #, fuzzy #| msgid "Hide/Show all" @@ -2540,57 +2553,17 @@ msgid "Link with main panel" msgstr "అన్నింటిని చూపుము/దాచుము" # మొదటి అనువాదము -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 #, fuzzy #| msgid "Hide/Show all" msgid "Unlink from main panel" msgstr "అన్నింటిని చూపుము/దాచుము" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -#, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "పట్టికలు" - -# మొదటి అనువాదము -#: js/messages.php:633 -#, fuzzy -#| msgid "View" -msgid "views" -msgstr "చూపుము" - -#: js/messages.php:634 -msgid "procedures" -msgstr "" - -# మొదటి అనువాదము -#: js/messages.php:635 -#, fuzzy -#| msgctxt "short form" -#| msgid "Create table" -msgid "events" -msgstr "పట్టికను సృష్టించు" - -#: js/messages.php:636 -#, fuzzy -#| msgid "Connections" -msgid "functions" -msgstr "అనుసంధానాలు" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2598,114 +2571,114 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr "" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "" # మొదటి అనువాదము -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "సృష్టించు" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "Basic settings" msgid "Change report settings" msgstr "ప్రాధమిక అమరికలు" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Show more actions" msgid "Show report details" msgstr "మరిన్ని చర్యలను చూపించు" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "పట్టిక వ్యాఖ్యలు" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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 " @@ -2713,7 +2686,7 @@ msgid "" msgstr "" # మొదటి అనువాదము -#: js/messages.php:743 +#: js/messages.php:735 #, fuzzy #| msgid "Prev" msgctxt "Previous month" @@ -2721,7 +2694,7 @@ msgid "Prev" msgstr "గత" # మొదటి అనువాదము -#: js/messages.php:748 +#: js/messages.php:740 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2729,149 +2702,149 @@ msgid "Next" msgstr "తదుపరి" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "ఈరోజు" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "జనవరి" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "ఫిబ్రవరి" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "మార్చి" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "ఏప్రిల్" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "మే" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "జూన్" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "జూలై" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "ఆగస్ట్" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "సెప్టెంబర్" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "అక్టోబర్" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "నవంబర్" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "డిసెంబర్" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "జన" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "ఫిబ్ర" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "మార్చి" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "ఏప్రి" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "మే" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "జూన్" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "జూలై" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "ఆగ" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "సెప్టె" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "అక్టో" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "నవం" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "డిసెం" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "ఆదివారం" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "సోమవారం" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "మంగళవారం" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "బుధవారం" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "గురువారం" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "శుక్రవారం" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "శనివారం" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2879,141 +2852,141 @@ msgid "Sun" msgstr "ఆది" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "సోమ" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "మంగళ" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "బుధ" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "గురు" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "శుక్ర" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "శని" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "ఆ" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "సో" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "మం" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "బు" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "గు" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "శు" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "శ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "వారం" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "ఏమీలేదు" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "గంట" # మొదటి అనువాదము -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "నిమిషం" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "క్షణం" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" # మొదటి అనువాదము -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Add new field" msgid "Please fix this field" msgstr "క్రొత్త ఫీల్డ్ చేర్చు" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Select All" msgid "Please enter a valid date" msgstr "అన్నీ ఎంచుకో" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "" @@ -3021,41 +2994,41 @@ msgstr "" msgid "Please enter the same value again" msgstr "" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "పొరపాటు" @@ -3141,11 +3114,12 @@ msgstr "" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3192,7 +3166,7 @@ msgstr "" msgid "Explain" msgstr "" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "" @@ -3233,8 +3207,8 @@ msgid "History" msgstr "SQL చరిత్ర" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3419,30 +3393,30 @@ msgstr "" msgid "Switch to dark theme" msgstr "దీనికి మారు" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "వివరాలు…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3452,8 +3426,8 @@ msgstr "" msgid "Ascending" msgstr "ఆరోహణ" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3630,8 +3604,8 @@ msgstr[0] "" msgstr[1] "" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3678,30 +3652,30 @@ msgstr "అన్నీ ఎంచుకోవద్దు" msgid "Inside column:" msgstr "" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 #, fuzzy #| msgid "Table comments" msgid "Restore column order" msgstr "పట్టిక వ్యాఖ్యలు" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 #, fuzzy #| msgid "Files" msgid "Filter rows" msgstr "దస్త్రాలు" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Use this value" msgid "Search this table" msgstr "ఈ విలువని ఉపయోగించు" # మొదటి అనువాదము -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 #, fuzzy #| msgid "Begin" @@ -3710,7 +3684,7 @@ msgid "Begin" msgstr "మొదలు" # మొదటి అనువాదము -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 #, fuzzy @@ -3720,7 +3694,7 @@ msgid "Previous" msgstr "క్రితము" # మొదటి అనువాదము -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 #, fuzzy @@ -3729,7 +3703,7 @@ msgctxt "Next page" msgid "Next" msgstr "తదుపరి" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 #, fuzzy #| msgid "End" @@ -3738,77 +3712,77 @@ msgid "End" msgstr "ముగింపు" # మొదటి అనువాదము -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "అన్నీ" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "పాక్షిక పాఠ్యాలు" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "పూర్తి పాఠ్యాలు" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Display comments" msgid "Display column for relations" msgstr "వ్యాఖ్యలను చూపించు" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 #, fuzzy #| msgid "Version information" msgid "Hide browser transformation" msgstr "సంచిక సమాచారం" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "Database %s has been dropped." msgid "The row has been deleted." msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -3816,48 +3790,49 @@ msgstr "" msgid "Your SQL query has been executed successfully." msgstr "మీ SQL క్వెరీ విజయవంతంగా నిర్వహించబడింది" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "మొత్తం" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3865,27 +3840,27 @@ msgstr "" msgid "Check all" msgstr "పట్టికల్ని వాడు" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 #, fuzzy #| msgid "Table comments" msgid "Display chart" msgstr "పట్టిక వ్యాఖ్యలు" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "" @@ -3981,19 +3956,19 @@ msgstr "" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -4002,24 +3977,24 @@ msgid "Action" msgstr "చర్య" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "కీలకపదం" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "" @@ -4027,8 +4002,8 @@ msgstr "" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -4038,8 +4013,8 @@ msgid "Collation" msgstr "" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -4055,15 +4030,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "" @@ -4101,12 +4076,13 @@ msgstr "చూపుము" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4114,7 +4090,7 @@ msgstr "పట్టిక" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4124,8 +4100,8 @@ msgstr "" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4133,41 +4109,41 @@ msgid "Search" msgstr "శోధించు" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4178,16 +4154,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4195,22 +4171,22 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "Table comments" msgid "Central columns" msgstr "పట్టిక వ్యాఖ్యలు" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "" @@ -4221,33 +4197,33 @@ msgid "User accounts" msgstr "వాడుకరి" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4583,7 +4559,7 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5012,38 +4988,38 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "" # మొదటి అనువాదము -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "ఖాళీ" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "ముద్రించు" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 #, fuzzy #| msgid "User" msgid "Users" @@ -5223,8 +5199,8 @@ msgid "Add new column" msgstr "స్పందనలకు చేర్చు" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5286,19 +5262,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -6105,7 +6081,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -6146,7 +6122,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "%s జతచేయి" @@ -7784,7 +7760,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "" @@ -8070,109 +8046,35 @@ msgstr "మైక్రోసాఫ్ట్ వర్డ్ 2000" msgid "OpenDocument Text" msgstr "ఓపెన్ డాక్యుమెంట్" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "View %s has been dropped." msgstr "%s డేటాబేస్ తుడిచివేయడమైనది." -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "Table %s has been dropped." msgstr "%s డేటాబేస్ తుడిచివేయడమైనది." -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "తెలియని" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "" - -#: libraries/controllers/TableStructureController.php:484 -#, fuzzy -#| msgid "Database %s has been dropped." -msgid "The columns have been moved successfully." -msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "" - -#: libraries/controllers/TableStructureController.php:967 -#, fuzzy, php-format -#| msgid "Database %s has been dropped." -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" - -# మొదటి అనువాదము -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "మార్చుము" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "పూర్తిపాఠ్యం" - -#: libraries/controllers/TableStructureController.php:1201 -#, fuzzy -#| msgid "Use this value" -msgid "Distinct values" -msgstr "ఈ విలువని ఉపయోగించు" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8188,6 +8090,14 @@ msgstr "" msgid "No data to display" msgstr "భోగట్టా" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "" + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "" @@ -8199,24 +8109,90 @@ msgid "Internal relations were successfully updated." msgstr "అంతర్గత సంబంధాలు" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Search" msgid "Table search" msgstr "శోధించు" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Search" msgid "Zoom search" msgstr "శోధించు" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:485 +#, fuzzy +#| msgid "Database %s has been dropped." +msgid "The columns have been moved successfully." +msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:975 +#, fuzzy, php-format +#| msgid "Database %s has been dropped." +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" + +# మొదటి అనువాదము +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "మార్చుము" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "పూర్తిపాఠ్యం" + +#: libraries/controllers/table/TableStructureController.php:1209 +#, fuzzy +#| msgid "Use this value" +msgid "Distinct values" +msgstr "ఈ విలువని ఉపయోగించు" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8226,7 +8202,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8304,7 +8280,7 @@ msgstr "సృష్టించు" msgid "Create database:" msgstr "పట్టికను సృష్టించు" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "" @@ -9015,71 +8991,71 @@ msgid "Dump has been saved to file %s." msgstr "" #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, fuzzy, php-format #| msgid "Copy database to" msgid "Go to database: %s" msgstr "డేటాబేస్ ను ఇక్కడికి కాపీ చేయి" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "నిర్మాణం మాత్రమే" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "" @@ -9103,75 +9079,75 @@ msgstr "" msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "" # మొదటి అనువాదము -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "లేదా" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" # మొదటి అనువాదము -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "మరియు తరువాత" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" # మొదటి అనువాదము -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "మునుపటి పుటకు వెళ్ళు" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "" # మొదటి అనువాదము -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "ఈ పుటకు తిరిగి వెళ్ళుము" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9183,11 +9159,11 @@ msgstr "" msgid "Value" msgstr "విలువ" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9203,43 +9179,43 @@ msgstr "ఏమీలేదు" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Display table filter" msgid "Replace table prefix:" msgstr "పట్టిక వ్యాఖ్యలు" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Display table filter" msgid "Copy table with prefix:" msgstr "పట్టిక వ్యాఖ్యలు" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 #, fuzzy #| msgid "Fr" msgid "From" msgstr "శు" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Display table filter" msgid "Add table prefix:" msgstr "పట్టిక వ్యాఖ్యలు" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "" @@ -9479,8 +9455,8 @@ msgid "Views:" msgstr "చూపుము" # మొదటి అనువాదము -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "చూపించు" @@ -9522,22 +9498,15 @@ msgstr[0] "" msgstr[1] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "Table name" -msgid "Filter databases by name or regex" -msgstr "పట్టిక పేరు" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "Table name" -msgid "Filter by name or regex" -msgstr "పట్టిక పేరు" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -9945,7 +9914,7 @@ msgstr "డేటాబేసుకు ఈ పేరు పెట్టండి #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9954,7 +9923,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Add a new User" @@ -9975,18 +9944,18 @@ msgstr "డేటాబేస్ తొలగించండి" msgid "Drop the database (DROP)" msgstr "డేటాబేస్ ను తుడిచివేయి" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "నిర్మాణం మాత్రమే" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "నిర్మాణం, మరియు డేటా" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "డేటా మాత్రమే" @@ -10000,7 +9969,7 @@ msgstr "డేటాబేస్ ను ఇక్కడికి కాపీ msgid "CREATE DATABASE before copying" msgstr "కాపీ చేయబోయే ముందు డేటాబేస్ సృష్టించు" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "" @@ -10040,164 +10009,164 @@ msgstr "" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Use Tables" msgid "Checksum table" msgstr "పట్టికల్ని వాడు" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "" # మొదటి అనువాదము -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "విశదీకరించు" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "మూసివేయి" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "" @@ -10368,7 +10337,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -10394,21 +10363,21 @@ msgstr "వివరణ" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10510,7 +10479,7 @@ msgstr "డేటాబేస్" # మొదటి అనువాదము #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Database" msgid "Data:" @@ -10625,7 +10594,7 @@ msgid "Data creation options" msgstr "పట్టిక ఎంపికలు" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -10694,8 +10663,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10703,94 +10672,94 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "data" msgid "Metadata" msgstr "భోగట్టా" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 #, fuzzy #| msgid "Creation" msgid "Creation:" msgstr "సృష్టి" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 #, fuzzy #| msgid "Last update" msgid "Last update:" msgstr "చివరి మార్పు" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 #, fuzzy #| msgid "Last check" msgid "Last check:" msgstr "చివరి చూపు" # మొదటి అనువాదము -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "వాడుకలో ఉన్నది" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Use Tables" msgid "Indexes for dumped tables" msgstr "పట్టికల్ని వాడు" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Use Tables" msgid "Indexes for table" msgstr "పట్టికల్ని వాడు" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "" @@ -11040,9 +11009,9 @@ msgstr "" msgid "Table of contents" msgstr "విషయ సూచిక" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "" @@ -11206,61 +11175,61 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "Server configuration" msgid "FOREIGN KEY relation has been added." msgstr "సేవకి స్వరూపణం" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "Server configuration" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "సేవకి స్వరూపణం" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "Internal relations" msgid "Internal relation has been added." msgstr "అంతర్గత సంబంధాలు" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "Internal relations" msgid "Error: Internal relation could not be added!" msgstr "అంతర్గత సంబంధాలు" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "Server configuration" msgid "FOREIGN KEY relation has been removed." msgstr "సేవకి స్వరూపణం" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "Server configuration" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "సేవకి స్వరూపణం" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "Internal relations" msgid "Error: Internal relation could not be removed!" msgstr "అంతర్గత సంబంధాలు" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Internal relations" msgid "Internal relation has been removed." @@ -11311,108 +11280,108 @@ msgstr "" msgid "Please see the documentation on how to update your column_info table. " msgstr "" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL చరిత్ర" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "Table of contents" msgid "Persistent favorite tables" msgstr "విషయ సూచిక" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "వాడుకరి అభిరుచులు" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Server configuration" msgid "Configurable menus" msgstr "సేవకి స్వరూపణం" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "చెల్లని ఎగుమతి రకం" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "వివరణ లేదు" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11588,8 +11557,8 @@ msgstr "వాడుకరి పేరు" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "వాడుకరి పేరు" @@ -11597,7 +11566,7 @@ msgstr "వాడుకరి పేరు" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "సంకేతపదం" @@ -12280,7 +12249,7 @@ msgstr[1] "%s డేటాబేస్ తుడిచివేయడమైన msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "" @@ -12288,100 +12257,96 @@ msgstr "" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 #, fuzzy #| msgid "Disable Statistics" msgid "disabled" msgstr "గణాంకాలని అచేతనంచేయి" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "" #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "" #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "" #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12389,65 +12354,65 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "" #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "" #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -12459,8 +12424,8 @@ msgstr "ఏమీలేవు" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12504,32 +12469,32 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" # మొదటి అనువాదము #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Add into comments" @@ -12537,7 +12502,7 @@ msgid "Routine" msgstr "స్పందనలకు చేర్చు" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12552,14 +12517,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -12569,7 +12534,7 @@ msgid "Administration" msgstr "పరిపాలన" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "" @@ -12580,15 +12545,15 @@ msgid "Global" msgstr "సార్వత్రిక విలువ" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "" @@ -12611,7 +12576,7 @@ msgid "Native MySQL Authentication" msgstr "సేవకి స్వరూపణం" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "ప్రవేశపు సమాచారం" @@ -12636,8 +12601,8 @@ msgstr "వాడుకరి పేరు" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Comments" msgid "Host name" @@ -12659,237 +12624,237 @@ msgstr "అధీకరణ" msgid "Password Hashing Method" msgstr "సంకేతపదం:" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "" # మొదటి అనువాదము -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "ఏ వాడుకరి ఐనను" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Table options" msgid "Database for user account" msgstr "పట్టిక ఎంపికలు" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 #, fuzzy #| msgid "Database %s has been dropped." msgid "User has been added." msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "వాడుకరి కనబడలేదు." # మొదటి అనువాదము -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "ఏదైనను" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Add a new User" msgid "Edit privileges" msgstr "క్రొత్త వాడుకరిని చేర్చు" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "" # మొదటి అనువాదము -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… పాతదే ఉంచుము." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Add a new User" msgid "Routine-specific privileges" msgstr "క్రొత్త వాడుకరిని చేర్చు" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Table name" msgid "Remove selected user accounts" msgstr "పట్టిక పేరు" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "%s అనే వాడుకరి ఇప్పటికే ఉన్నారు!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "వాడుకరి" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Add a new User" msgid "Edit privileges:" msgstr "క్రొత్త వాడుకరిని చేర్చు" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "User" msgid "User account" msgstr "వాడుకరి" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Overview" msgid "User accounts overview" msgstr "అవలోకనం" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12898,7 +12863,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12907,12 +12872,12 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "" # మొదటి అనువాదము -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "మీరు క్రొత్త వాడుకరిని చేర్చారు." @@ -13156,32 +13121,32 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 #, fuzzy #| msgid "Table comments" msgid "Chart columns" msgstr "పట్టిక వ్యాఖ్యలు" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 #, fuzzy #| msgid "Leave blank for defaults" msgid "Reset to default" @@ -13244,7 +13209,7 @@ msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -13271,33 +13236,33 @@ msgstr "" msgid "Related links:" msgstr "సంబంధాలు" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13305,78 +13270,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13384,7 +13349,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13392,42 +13357,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13435,33 +13400,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13470,245 +13435,245 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" # మొదటి అనువాదము -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "సృష్టించబడిన పుటల సంఖ్య." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" # మొదటి అనువాదము -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "చదివిన పుటల సంఖ్య." # మొదటి అనువాదము -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "వ్రాసిన పుటల సంఖ్య." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13716,99 +13681,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13816,18 +13781,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13835,11 +13800,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -13848,79 +13813,79 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 #, fuzzy #| msgid "User" msgid "User groups" msgstr "వాడుకరి" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Last version" msgid "Server level tabs" msgstr "చివరి కూర్పు" # మొదటి అనువాదము -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Database" msgid "Database level tabs" msgstr "డేటాబేస్" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table comments" msgid "Table level tabs" msgstr "పట్టిక వ్యాఖ్యలు" # మొదటి అనువాదము -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy #| msgid "View" msgid "View users" msgstr "చూపుము" # మొదటి అనువాదము -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Any user" msgid "Add user group" msgstr "ఏ వాడుకరి ఐనను" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Comments" msgid "Group name:" msgstr "వ్యాఖ్యలు" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Last version" msgid "Server-level tabs" msgstr "చివరి కూర్పు" # మొదటి అనువాదము -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Database" msgid "Database-level tabs" msgstr "డేటాబేస్" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -13984,21 +13949,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "Table name" msgid "An alias was expected." @@ -14063,136 +14024,136 @@ msgid "Variable name was expected." msgstr "" # మొదటి అనువాదము -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgctxt "short form" #| msgid "Create table" msgid "Unexpected beginning of statement." msgstr "పట్టికను సృష్టించు" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "Database %s has been dropped." msgid "At least one column definition was expected." msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy #| msgid "Start" msgid "State" msgstr "మొదలుపెట్టు" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "మొత్తం" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "సమయం" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "మూసివేయి" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "సమయం" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Data Label" msgid "Label:" msgstr "డేటాబేస్" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -14223,27 +14184,27 @@ msgstr "" msgid "Bind parameters" msgstr "చెల్లని పరామితులు!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "" @@ -14289,179 +14250,179 @@ msgstr "" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Last version" msgid "Delete version" msgstr "చివరి కూర్పు" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 #, fuzzy #| msgid "data" msgid "No data" msgstr "భోగట్టా" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "తేదీ" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "వాడుకరిపేరు" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "ఏమీలేదు" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format #| msgid "More settings" msgid "Version %1$s of %2$s was deleted." msgstr "మరిన్ని అమరికలు" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "చివరి కూర్పు" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Delete" msgid "Delete tracking" msgstr "తొలగించు" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "" @@ -14471,13 +14432,13 @@ msgstr "" msgid "Manage your settings" msgstr "ప్రాధమిక అమరికలు" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 #, fuzzy #| msgid "Server configuration" msgid "Configuration has been saved." msgstr "సేవకి స్వరూపణం" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14582,7 +14543,7 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14607,7 +14568,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -15507,51 +15468,57 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Default title" +msgid "Chart title:" +msgstr "అప్రమేయ శీర్షిక" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "విలువ" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "విలువ" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Table comments" msgid "Series column:" msgstr "పట్టిక వ్యాఖ్యలు" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Values for column %s" msgid "Value Column:" msgstr "%s నిలువు వరుసకు విలువలు" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "" @@ -15614,52 +15581,53 @@ msgstr "వ్యాఖ్య" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 -msgid "Internal relations" -msgstr "అంతర్గత సంబంధాలు" - -#: templates/table/relation/common_form.phtml:11 -msgid "Internal relation" -msgstr "అంతర్గత సంబంధం" - -#: templates/table/relation/common_form.phtml:14 -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "" - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 msgid "Foreign key constraints" msgstr "" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 #, fuzzy #| msgid "Action" msgid "Actions" msgstr "చర్య" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 #, fuzzy #| msgid "Comments" msgid "Constraint properties" msgstr "వ్యాఖ్యలు" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 #, fuzzy #| msgid "Add a New User" msgid "+ Add constraint" msgstr "కొత్త వాడుకరిని చేర్చు" -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +msgid "Internal relations" +msgstr "అంతర్గత సంబంధాలు" + +#: templates/table/relation/common_form.phtml:80 +msgid "Internal relation" +msgstr "అంతర్గత సంబంధం" + +#: templates/table/relation/common_form.phtml:83 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "" + +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "data" msgid "Choose column to display:" @@ -15813,7 +15781,7 @@ msgid "at beginning of table" msgstr "పట్టికను సృష్టించు" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Relations" msgid "Partitions" @@ -15854,7 +15822,7 @@ msgstr "సంబంధాలు" msgid "Edit partitioning" msgstr "క్రొత్త వాడుకరిని చేర్చు" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 #, fuzzy #| msgid "Add a new User" msgid "Edit view" @@ -17112,6 +17080,39 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "పట్టికలు" + +# మొదటి అనువాదము +#, fuzzy +#~| msgid "View" +#~ msgid "views" +#~ msgstr "చూపుము" + +# మొదటి అనువాదము +#, fuzzy +#~| msgctxt "short form" +#~| msgid "Create table" +#~ msgid "events" +#~ msgstr "పట్టికను సృష్టించు" + +#, fuzzy +#~| msgid "Connections" +#~ msgid "functions" +#~ msgstr "అనుసంధానాలు" + +#, fuzzy +#~| msgid "Table name" +#~ msgid "Filter databases by name or regex" +#~ msgstr "పట్టిక పేరు" + +#, fuzzy +#~| msgid "Table name" +#~ msgid "Filter by name or regex" +#~ msgstr "పట్టిక పేరు" + # మొదటి అనువాదము #, fuzzy #~| msgid "Change" diff --git a/po/th.po b/po/th.po index b1b1ea9d6c..84f7ec63be 100644 --- a/po/th.po +++ b/po/th.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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:31+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Thai Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "สนับสนุน" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "เพิ่มคีย์หลัก" -#: js/messages.php:430 +#: js/messages.php:431 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "ได้เพิ่มไพรมารีคีย์แล้วใน %s" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "รายงานผลการติดตาม" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 #, fuzzy @@ -2068,571 +2080,534 @@ msgstr "" msgid "End of step" msgstr "ท้ายบรรทัด" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "จบ" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "ไม่มีฐานข้อมูลที่ถูกเลือก" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "เพิ่มสิทธิของตารางต่อไปนี้" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "ไม่มีฐานข้อมูลที่ถูกเลือก" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "บันทึก" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "ซ่อนหลักในการค้นหา" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "แสดงหลักการค้นหา" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "ค้นหา" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "ชื่อคอลัมน์" -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "ชื่อคอลัมน์" -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "ตารางสูงสุด" -#: js/messages.php:474 +#: js/messages.php:475 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "ตารางสูงสุด" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "ซ่อนหลักในการค้นหา" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "แสดงหลักการค้นหา" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "แต่ละจุดแสดงข้อมูลระเบียน" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "นำตัวชี้วางเพื่อแสดงคำกำกับ" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "เมื่อต้องการย่อ/ขยาย ให้เลือกส่วนของจุดโดยใช้เมาส์" -#: js/messages.php:488 +#: js/messages.php:489 #, fuzzy #| msgid "Click reset zoom link to come back to original state." msgid "Click reset zoom button to come back to original state." msgstr "คลิก ล้างค่า เพื่อกลับไปขนาดเริ่มต้น" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "คลิก จุดข้อมูล เพื่อดูหรือแก้ไขแถวข้อมูล" -#: js/messages.php:492 +#: js/messages.php:493 #, fuzzy msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "จุดสามารถปรับขนาดได้ โดยการลากไปมุมขวาด้านล่าง" -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "เพิ่มสองสดมภ์" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "เลือกสองสดมภ์ใดๆ" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "สารบัญ" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "ข้าม" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "คัดลอก" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "จุด" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "แถวข้อความ" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "รูปหลายเหลี่ยม" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "เรขาคณิต" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "ด้านใน" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Outer Ring" msgid "Outer ring" msgstr "ด้านนอก" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "เลือกคีย์อ้างอิง" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "เลือกคีย์นอก" -#: js/messages.php:529 +#: js/messages.php:530 #, 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:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "เลือกฟิลด์ที่ต้องการแสดง" -#: js/messages.php:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "หมายเลขหน้า:" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 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:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Open" msgid "Open page" msgstr "เปิด" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "เลือกทั้งหมด" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "หน่วย" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "เลือกหน้าที่ต้องการแก้ไข" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid page name" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "แก้ไข หรือส่งออก รีเลชันแนล สกีมา" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "บันทึกการแก้ไขเรียบร้อยแล้ว" -#: js/messages.php:550 +#: js/messages.php:551 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "เพิ่มตัวเลือกสำหรับคอลัมน์ " -#: js/messages.php:551 +#: js/messages.php:552 #, fuzzy, php-format #| msgid "%d object(s) created" msgid "%d object(s) created." msgstr "สร้างวัตถุจำนวน %d เรียบร้อยแล้ว" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "ส่ง" -#: js/messages.php:555 +#: js/messages.php:556 #, fuzzy #| msgid "Press escape to cancel editing" msgid "Press escape to cancel editing." msgstr "กด escape เพื่อยกเลิกการแก้ไข" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder." msgstr "ลากเพื่อเปลี่ยนลำดับ" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "กดเพื่อมาร์ก หรือยกเลิกการมาร์ก" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy #| msgid "Double-click to copy column name" msgid "Double-click to copy column name." msgstr "ดับเบิลคลิกเพื่อคัดลอกชื่อคอลัมน์" -#: js/messages.php:570 +#: js/messages.php:571 #, 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:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "แสดงทั้งหมด" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "ตำแหน่งเริ่มแรก" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "ยกเลิก" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "ยกเลิก" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 #, fuzzy msgid "Import status" msgstr "นำเข้าไฟล์" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "เลือกตาราง" -#: js/messages.php:598 +#: js/messages.php:599 #, 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:603 +#: js/messages.php:604 #, 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:609 +#: js/messages.php:610 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "ไปที่หน้า" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Copy column name" msgid "Copy column name." msgstr "คัดลอกชื่อคอลัมน์" -#: js/messages.php:612 +#: js/messages.php:613 #, fuzzy msgid "Right-click the column name to copy it to your clipboard." msgstr "คลิกขวาที่ชื่อคอลัมน์เพื่อคัดลอกข้อมูล" -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "สร้างรหัสผ่าน" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "สร้าง" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "เพิ่มเติม" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "แสดงแผง" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "ซ่อนแผง" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Reload navigation frame" msgid "Show hidden navigation tree items." msgstr "โหลดกรอบนำทางใหม่" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 #, fuzzy #| msgid "Use text field" msgid "Link with main panel" msgstr "ใช้ช่องใส่ข้อความ (text field)" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 #, fuzzy #| msgid "Use text field" msgid "Unlink from main panel" msgstr "ใช้ช่องใส่ข้อความ (text field)" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -#, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "ตาราง" - -#: js/messages.php:633 -#, fuzzy -#| msgid "View" -msgid "views" -msgstr "ตารางจำลอง (View)" - -#: js/messages.php:634 -#, fuzzy -msgid "procedures" -msgstr "โพรเซส" - -#: js/messages.php:635 -#, fuzzy -#| msgid "event" -msgid "events" -msgstr "เหตุการณ์" - -#: js/messages.php:636 -#, fuzzy -msgid "functions" -msgstr "ฟังก์ชั่น" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "ไม่พบหน้าดังกล่าวในประวัติการเรียกดู อาจเป็นเพราะหน้านั้นไม่มีหรือหมดอายุที่จะแสดงได้แล้ว" -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2640,427 +2615,427 @@ msgid "" msgstr "phpMyAdmin มีรุ่นใหม่แล้ว กรุณาพิจารณาอัพเกรดเป็นรุ่นใหม่ %s โดยออกเมื่อ %s" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", รุ่นเสถียรล่าสุด:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "ล่าสุด" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "สร้างมุมมอง" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "พอร์ตของเซิร์ฟเวอร์" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "พอร์ตของเซิร์ฟเวอร์" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "เปลี่ยนการตั้งค่า" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy msgid "Show report details" msgstr "แสดงตาราง" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "ข้าม" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "แสดงคำค้นนี้อีกที" -#: js/messages.php:701 +#: js/messages.php:693 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "คุณแน่ใจที่ต้องการจะ \"%s\"?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "หมายเหตุของตาราง" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "ซ่อนผลคำสั่ง SQL" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "ก่อนหน้า" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "ต่อไป" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "วันนี้" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "มกราคม" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "กุมภาพันธ์" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "มีนาคม" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "เมษายน" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "พฤษภาคม" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "มิถุนายน" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "กรกฎาคม" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "สิงหาคม" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "กันยายน" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "ตุลาคม" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "พฤศจิกายน" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "ธันวาคม" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "ม.ค." #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "ก.พ." #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "มี.ค." #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "เม.ย." #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "พ.ค." #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "มิ.ย." #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "ก.ค." #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "ส.ค." #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "ก.ย." #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "ต.ค." #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "พ.ย." #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "ธ.ค." -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "อาทิตย์" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "วันจันทร์" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "วันอังคาร" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "วันพุธ" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "วันพฤหัสบดี" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "วันศุกร์" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "วันเสาร์" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "อ." #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "จ." #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "อ." #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "พ." #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "พฤ." #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "ศ." #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "ส." #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "อา." #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "จ." #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "อ." #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "พ." #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "พฤ." #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "ศ." #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "ส." #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "สัปดาห์" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "ปฎิทินแบบ เดือน/ปี" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "ไม่มี" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "ชั่วโมง" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "นาที" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "วินาที" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "ใช้ช่องใส่ข้อความ (text field)" -#: js/messages.php:886 +#: js/messages.php:878 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid email address" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:887 +#: js/messages.php:879 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid URL" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:889 +#: js/messages.php:883 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date ( ISO )" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:890 +#: js/messages.php:885 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:891 +#: js/messages.php:888 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid credit card number" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:892 +#: js/messages.php:890 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" @@ -3072,53 +3047,53 @@ msgstr "%d ไม่ใช่หมายเลขแถวที่ถูก msgid "Please enter the same value again" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter at least {0} characters" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value between {0} and {1}" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:898 +#: js/messages.php:917 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value less than or equal to {0}" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:899 +#: js/messages.php:922 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value greater than or equal to {0}" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:901 +#: js/messages.php:928 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date or time" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:902 +#: js/messages.php:933 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid HEX input" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "ผิดพลาด" @@ -3207,11 +3182,12 @@ msgstr "ในคำค้น" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3258,7 +3234,7 @@ msgstr "" msgid "Explain" msgstr "อธิบาย SQL" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "การทำแฟ้มประวัติ" @@ -3300,8 +3276,8 @@ msgid "History" msgstr "ประวัติ SQL" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3486,32 +3462,32 @@ msgstr "" msgid "Switch to dark theme" msgstr "สลับไปที่ตารางที่ถูกทำสำเนาไว้" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "เซิร์ฟเวอร์ดังกล่าวไม่ตอบสนอง" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3521,8 +3497,8 @@ msgstr "" msgid "Ascending" msgstr "น้อยไปมาก" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3689,8 +3665,8 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "พบ %s ผลลัพธ์ที่ตรงในตาราง %s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3734,35 +3710,35 @@ msgstr "ไม่เลือกเลย" msgid "Inside column:" msgstr "ในคอลัมน์:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "บันทึกข้อมูลที่แก้ไข" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 #, fuzzy #| msgid "Filters" msgid "Filter rows" msgstr "ตัวกรอง" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Search in database" msgid "Search this table" msgstr "ค้นหาในฐานข้อมูล" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "เริ่มต้น" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 #, fuzzy @@ -3771,98 +3747,98 @@ msgctxt "Previous page" msgid "Previous" msgstr "ก่อนหน้า" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "ถัดไป" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "สุดท้าย" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "ทั้งหมด" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of rows per page" msgid "Number of rows:" msgstr "ระเบียนต่อหน้า" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "เรียงโดยคีย์" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "ข้อความบางส่วน" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "ทั้งข้อความ" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 #, fuzzy msgid "Relational key" msgstr "รีเลชันแนล สกีมา" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display column for relations" msgstr "แสดงหมายเหตุของคอลัมน์" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "แสดงเนื้อหาไบนารี" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "แสดงเนื้อหา BLOB" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 #, fuzzy msgid "Hide browser transformation" msgstr "การแปลงที่เรียกใช้ได้" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "ข้อความที่รู้จักกันดี" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "ไบนารีที่รู้จักกันดี" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "ลบเรียบร้อยแล้ว" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "ฆ่าทิ้ง" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "มีข้อผิดพลาดระหว่างการอัพโหลด กรุณาดู [doc@faq1-11]FAQ 1.11[/doc]" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -3870,50 +3846,51 @@ msgstr "มีข้อผิดพลาดระหว่างการอั msgid "Your SQL query has been executed successfully." msgstr "ทำคำค้นเสร็จเรียบร้อยแล้ว" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "การแสดงผลนี้ จะแสดงเพียงจำนวนข้อมูลนี้เท่านั้น ดูข้อมูลเพิ่มเติมได้ที่ %sdocumentation%s" -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "แสดงแถว" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "ทั้งหมด" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "คำค้นใช้เวลา %01.4f วินาที" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "ทำกับที่เลือก:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3921,27 +3898,27 @@ msgstr "ทำกับที่เลือก:" msgid "Check all" msgstr "เลือกทั้งหมด" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "แสดง" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "การดำเนินงานผลแบบสอบถาม" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "แสดงสกีมาของ PDF" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "แสดงภาพของข้อมูล GIS" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 #, fuzzy #| msgid "Link not found" msgid "Link not found!" @@ -4047,19 +4024,19 @@ msgstr "ยังไม่ได้กำหนดดัชนีใดๆ!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "ดัชนี" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -4068,24 +4045,24 @@ msgid "Action" msgstr "กระทำการ" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "ชื่อคีย์" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "เอกลักษณ์" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "กลุ่ม" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "เอกเทศ" @@ -4093,8 +4070,8 @@ msgstr "เอกเทศ" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -4104,8 +4081,8 @@ msgid "Collation" msgstr "การตรวจทาน" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -4121,15 +4098,15 @@ msgstr "โยนคีย์หลักทิ้งไปเรียบร้ msgid "Index %s has been dropped." msgstr "โยนดัชนี %s ทิ้งไปเรียบร้อยแล้ว" -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "โยนทิ้ง" @@ -4166,12 +4143,13 @@ msgstr "ตารางจำลอง (View)" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4179,7 +4157,7 @@ msgstr "ตาราง" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4188,8 +4166,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4197,41 +4175,41 @@ msgid "Search" msgstr "ค้นหา" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "แทรก" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "สิทธิ" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "กระบวนการ" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "การติดตาม" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4242,16 +4220,16 @@ msgstr "ทริกเกอร์" msgid "Database seems to be empty!" msgstr "ดูเหมือนว่าฐานข้อมูลจะว่างเปล่า!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "คำค้นจากตัวอย่าง" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4259,22 +4237,22 @@ msgstr "" msgid "Events" msgstr "เหตุการณ์" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "ผู้ออกแบบ" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "ฐานข้อมูล" @@ -4285,34 +4263,34 @@ msgid "User accounts" msgstr "ผู้ใช้" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 #, fuzzy msgid "Binary log" msgstr "ข้อมูลไบนารี " #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "การจำลองแบบ" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "ตัวแปร" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "ชุดอักขระ" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "เครื่องมือ" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "ปลั๊กอิน" @@ -4640,7 +4618,7 @@ msgstr "เปลี่ยนชื่อดัชนีเป็น PRIMARY ไ msgid "No index parts defined!" msgstr "ไม่ได้กำหนดส่วนใดๆ ของดัชนี!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5078,40 +5056,40 @@ msgstr "" msgid "Click to toggle" msgstr "คลิกเพื่อสลับ" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "เรียกดูคอมพิวเตอร์ของคุณ:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "ไม่สามารถใช้งาน ไดเรกทอรีที่ตั้งไว้สำหรับอัพโหลดได้" -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 #, fuzzy #| msgid "There are no files to upload" msgid "There are no files to upload!" msgstr "ไม่มีไฟล์ที่จะอัพโหลด" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "ลบข้อมูล" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "ดำเนินการ" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "พิมพ์" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "ผู้ใช้" @@ -5286,8 +5264,8 @@ msgid "Add new column" msgstr "เพิ่มฟิลด์ใหม่" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5354,19 +5332,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "เกิดข้อผิดพลาด: โทเค็นไม่ตรงกัน" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "ใช้ประโยชน์ได้" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "ตรวจพบคีย์ตัวเลข" @@ -6222,7 +6200,7 @@ msgid "Remember file name template" msgstr "รูปแบบของชื่อไฟล์" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "เพิ่มค่า AUTO_INCREMENT" @@ -6266,7 +6244,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "เพิ่ม %s" @@ -7967,7 +7945,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 #, fuzzy msgid "Retain query box" msgstr "คำค้น SQL" @@ -8266,110 +8244,35 @@ msgstr "" msgid "OpenDocument Text" msgstr "เอกสารอ้างอิง" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "ลบข้อมูลในตาราง %s เรียบร้อยแล้ว" -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "โยนวิว %s ทิ้งไปเรียบร้อยแล้ว" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "ไม่ระบุ" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" - -#: libraries/controllers/TableStructureController.php:250 -#, fuzzy -#| msgid "No rows selected" -msgid "No column selected." -msgstr "ยังไม่ได้เลือกแถว" - -#: libraries/controllers/TableStructureController.php:484 -#, fuzzy -#| msgid "The selected users have been deleted successfully." -msgid "The columns have been moved successfully." -msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, fuzzy, php-format -msgid "Table %1$s has been altered successfully." -msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -#, fuzzy -#| msgid "Query type" -msgid "Query error" -msgstr "ชนิดคำค้น" - -#: libraries/controllers/TableStructureController.php:967 -#, fuzzy, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว." - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "เปลี่ยน" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "ดัชนี" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "เชิงพื้นที่" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "ข้อความเต็ม (fulltext)" - -#: libraries/controllers/TableStructureController.php:1201 -#, fuzzy -#| msgid "Session value" -msgid "Distinct values" -msgstr "ค่าเซสชั่น" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8385,6 +8288,14 @@ msgstr "" msgid "No data to display" msgstr "ไม่มีข้อมูล" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, fuzzy, php-format +msgid "Table %1$s has been altered successfully." +msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว." + #: libraries/controllers/table/TableRelationController.php:212 #, fuzzy #| msgid "Thread %s was successfully killed." @@ -8396,25 +8307,92 @@ msgstr "เธรด %s ถูกทำลายเรียบร้อยแ msgid "Internal relations were successfully updated." msgstr "รีเลชันภายใน" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Search" msgid "Table search" msgstr "ค้นหา" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Zoom Search" msgid "Zoom search" msgstr "ค้นหาแบบ Zoom" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "Hide search criteria" msgid "Find and replace" msgstr "ซ่อนหลักในการค้นหา" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" + +#: libraries/controllers/table/TableStructureController.php:251 +#, fuzzy +#| msgid "No rows selected" +msgid "No column selected." +msgstr "ยังไม่ได้เลือกแถว" + +#: libraries/controllers/table/TableStructureController.php:485 +#, fuzzy +#| msgid "The selected users have been deleted successfully." +msgid "The columns have been moved successfully." +msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +#, fuzzy +#| msgid "Query type" +msgid "Query error" +msgstr "ชนิดคำค้น" + +#: libraries/controllers/table/TableStructureController.php:975 +#, fuzzy, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว." + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "เปลี่ยน" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "ดัชนี" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "เชิงพื้นที่" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "ข้อความเต็ม (fulltext)" + +#: libraries/controllers/table/TableStructureController.php:1209 +#, fuzzy +#| msgid "Session value" +msgid "Distinct values" +msgstr "ค่าเซสชั่น" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8424,7 +8402,7 @@ msgstr "ส่วนขยาย %s ขาดหายไป กรุณาต msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "ไม่มีการเปลี่ยนแปลง" @@ -8499,7 +8477,7 @@ msgstr "สร้าง" msgid "Create database:" msgstr "สร้างฐานข้อมูลใหม่" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "ไม่มีสิทธิ" @@ -9224,70 +9202,70 @@ msgid "Dump has been saved to file %s." msgstr "ข้อมูลที่ส่งออกถูกบันทึกไว้ในไฟล์ %s" #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL คืนผลลัพธ์ว่างเปล่ากลับมา (null / 0 แถว)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, fuzzy, php-format msgid "Go to database: %s" msgstr "ไม่มีฐานข้อมูล" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, fuzzy, php-format msgid "Go to table: %s" msgstr "ไม่มีฐานข้อมูล" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "เฉพาะโครงสร้าง" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" @@ -9311,78 +9289,78 @@ msgstr "ฟังก์ชั่น" msgid "Binary" msgstr "ข้อมูลไบนารี" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "เนื่องจากความยาวของมัน
ฟิลด์นี้ ไม่อาจแก้ไขได้" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "ข้อมูลไบนารี - ห้ามแก้ไข" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "หรือ" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "แทรก" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "แทรกเป็นแถวใหม่" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "ส่งกลับ" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "แทรกระเบียนใหม่" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 #, fuzzy msgid "Go back to this page" msgstr "ส่งกลับ" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9394,11 +9372,11 @@ msgstr "" msgid "Value" msgstr "ค่า" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9414,45 +9392,45 @@ msgstr "ไม่มี" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table prefix:" msgstr "แทนที่คำนำไปยังตาราง" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Copy table with prefix" msgid "Copy table with prefix:" msgstr "คัดลอกคำนำไปยังตาราง" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 #, fuzzy #| msgid "Fri" msgid "From" msgstr "ศ." -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Add new field" msgid "Add table prefix:" msgstr "เพิ่มฟิลด์ใหม่" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 #, fuzzy #| msgid "Add new field" msgid "Add prefix" msgstr "เพิ่มฟิลด์ใหม่" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -9683,8 +9661,8 @@ msgstr "โพรเซส" msgid "Views:" msgstr "ตารางจำลอง (View)" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "แสดง" @@ -9725,10 +9703,9 @@ msgid_plural "%s results found" msgstr[0] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "filter databases by name" -msgid "Filter databases by name or regex" -msgstr "กรองฐานข้อมูลตามชื่อ" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -9737,12 +9714,6 @@ msgstr "กรองฐานข้อมูลตามชื่อ" msgid "Clear fast filter" msgstr "บันทึกเป็นไฟล์" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "filter items by name" -msgid "Filter by name or regex" -msgstr "กรองรายการตามชื่อ" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -10144,7 +10115,7 @@ msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10155,7 +10126,7 @@ msgstr "คุณไม่มีสิทธิที่จะเข้ามา #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -10175,18 +10146,18 @@ msgstr "เอาฐานข้อมูลออก" msgid "Drop the database (DROP)" msgstr "โยนฐานข้อมูลทิ้ง" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "เฉพาะโครงสร้าง" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "ทั้งโครงสร้างและข้อมูล" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "เฉพาะข้อมูล" @@ -10200,7 +10171,7 @@ msgstr "คัดลอกฐานข้อมูลเป็น" msgid "CREATE DATABASE before copying" msgstr "สร้างฐานข้อมูลก่อนคัดลอก" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "เพิ่ม constraints" @@ -10240,63 +10211,63 @@ msgstr "เครื่องมือที่เก็บข้อมูล" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "คัดลอกตารางไปยัง (ฐานข้อมูล.ตาราง)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "สลับไปที่ตารางที่ถูกทำสำเนาไว้" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "การดูแลรักษาตาราง" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "วิเคราะห์ตาราง" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "ตรวจสอบตาราง" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "ตรวจสอบตาราง" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "จัดระเบียบตาราง" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "ล้างตาราง %s เรียบร้อยแล้ว" -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "ล้างตาราง (flush)" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "ปรับแต่งตาราง" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "ซ่อมแซมตาราง" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 #, fuzzy @@ -10304,105 +10275,105 @@ msgstr "ซ่อมแซมตาราง" msgid "Delete data or table" msgstr "dump ตาราง" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "ลบข้อมูลตาราง (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 #, fuzzy msgid "Delete the table (DROP)" msgstr "ไม่มีฐานข้อมูล" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "วิเคราะห์" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "ตรวจสอบ" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "ซ่อมแซม" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "ปิด" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 #, fuzzy msgid "Partition maintenance" msgstr "การดูแลรักษาตาราง" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "ตรวจสอบความสมบูรณ์ของการอ้างถึง:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "ย้ายตารางไปที่เดิมไม่ได้" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "คัดลอกตารางไปที่เดิมไม่ได้" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "ตาราง %s ถูกย้ายไป %s แล้ว" -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "คัดลอกตาราง %s ไปเก็บในชื่อ %s เรียบร้อยแล้ว." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "ตาราง %s ถูกย้ายไป %s แล้ว" -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "คัดลอกตาราง %s ไปเก็บในชื่อ %s เรียบร้อยแล้ว." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "ชื่อตารางยังว่างอยู่!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10589,7 +10560,7 @@ msgstr "สถิติฐานข้อมูล" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "dump ตาราง" @@ -10615,14 +10586,14 @@ msgstr "รายละเอียด" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "โครงสร้างตาราง" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 #, fuzzy msgid "Structure for view" @@ -10630,7 +10601,7 @@ msgstr "เฉพาะโครงสร้าง" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10744,7 +10715,7 @@ msgid "Database:" msgstr "ฐานข้อมูล" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10857,7 +10828,7 @@ msgid "Data creation options" msgstr "ตัวเลือกการแปลง" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -10926,8 +10897,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10935,92 +10906,92 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Missing data for %s" msgid "Metadata" msgstr "ข้อมูลที่หายไปสำหรับ %s" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Metadata for %s" msgstr "ข้อมูลที่หายไปสำหรับ %s" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "สร้าง:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "ปรับปรุงครั้งสุดท้าย:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "ตรวจสอบครั้งสุดท้าย:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "ใช้อยู่" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for dumped tables" msgstr "ภายในตาราง:" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "ภายในตาราง:" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "เพิ่มค่า AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "เพิ่มค่า AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "เฉพาะโครงสร้าง" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11276,9 +11247,9 @@ msgstr "รีเลชันแนล สกีมา" msgid "Table of contents" msgstr "สารบัญ" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "เพิ่มเติม" @@ -11448,60 +11419,60 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been added." msgstr "บันทึกการแก้ไขเรียบร้อยแล้ว" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "อ่านไฟล์ไม่ได้" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy msgid "Internal relation has been added." msgstr "รีเลชันภายใน" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be added!" msgstr "อ่านไฟล์ไม่ได้" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been removed." msgstr "บันทึกการแก้ไขเรียบร้อยแล้ว" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "อ่านไฟล์ไม่ได้" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be removed!" msgstr "อ่านไฟล์ไม่ได้" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy msgid "Internal relation has been removed." msgstr "รีเลชันภายใน" @@ -11559,112 +11530,112 @@ msgstr "" "โปรดอ่านเอกสารเกี่ยวกับ วิธีการปรับปรุงตาราง Column_comments (เก็บหมายเหตุของคอลัมน์) " "ของคุณ" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "คำค้นนี้ถูกจดไว้แล้ว" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "ประวัติ SQL" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "There are no recent tables" msgid "Persistent favorite tables" msgstr "ไม่มีตารางล่าสุด" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Configuration file" msgid "Configurable menus" msgstr "กำหนดค่าไฟล์" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 #, fuzzy #| msgid "Reload navigation frame" msgid "Hide/show navigation items" msgstr "โหลดกรอบนำทางใหม่" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Rename table to" msgid "Remembering Designer Settings" msgstr "เปลี่ยนชื่อตารางเป็น" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "ประเภทที่ส่งออกไม่ถูกต้อง!" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "ไม่มีรายละเอียด" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11848,8 +11819,8 @@ msgstr "ชื่อผู้ใช้" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "ชื่อผู้ใช้" @@ -11857,7 +11828,7 @@ msgstr "ชื่อผู้ใช้" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "รหัสผ่าน" @@ -12558,7 +12529,7 @@ msgstr[0] "%s ฐานข้อมูลได้ถูกทิ้งไปเ msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "เวอร์ชั่น" @@ -12566,98 +12537,94 @@ msgstr "เวอร์ชั่น" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "ปิดใช้งาน" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "ไม่มีสิทธิใดๆ." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "ให้สิทธิทุกอย่าง ยกเว้นการให้สิทธิแก่ผู้อื่น (GRANT)." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "อนุญาตให้อ่านข้อมูลได้." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "อนุญาตให้เพิ่ม และแทนที่ ข้อมูล" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "อนุญาตให้เปลี่ยนข้อมูลได้." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "อนุญาตให้ลบข้อมูล" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "อนุญาตให้สร้างฐานข้อมูล และตารางใหม่." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "อนุญาตให้ทิ้งฐานข้อมูล และตาราง" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "อนุญาตให้เรียกใช้ค่ากำหนดของเซิร์ฟเวอร์ใหม่ และล้างแคชของเซิร์ฟเวอร์" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "อนุญาตให้ปิดเซิร์ฟเวอร์ได้" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "อนุญาตให้นำเข้าข้อมูล และส่งออกข้อมูล ไปที่ไฟล์" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "ไม่มีผลใน MySQL รุ่นนี้" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "อนุญาตให้เปลี่ยนโครงสร้างของตารางที่มีอยู่เดิม." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "สามารถเรียกดูรายการฐานข้อมูลทั้งหมดได้" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12665,71 +12632,71 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "อนุญาตให้สร้างตารางชั่วคราว." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "อนุญาตให้ล็อกตารางสำหรับเธรดปัจจุบัน" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "มอบสิทธิให้ผู้ใช้ ในการถามว่า slaves หรือ masters อยู่ที่ไหน." #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 #, fuzzy msgid "Allows creating new views." msgstr "อนุญาตให้สร้างตารางใหม่." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 #, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Allows to set up events for the event scheduler." msgstr "อนุญาตให้ล็อกตารางสำหรับเธรดปัจจุบัน" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 #, fuzzy msgid "Allows creating and dropping triggers." msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 #, fuzzy msgid "Allows creating stored routines." msgstr "อนุญาตให้สร้างตารางใหม่." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -12741,8 +12708,8 @@ msgstr "ไม่มี" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12786,12 +12753,12 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "โปรดทราบ: ถ้าเปลี่ยนค่าเหล่านี้เป็น 0 (ศูนย์) จะหมายถึง ไม่มีขีดจำกัด." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "จำกัดจำนวนของคำค้น ที่ผู้ใช้จะสามารถส่งมาที่เซิร์ฟเวอร์ได้ ต่อชั่วโมง" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12799,20 +12766,20 @@ msgstr "" "จำกัดจำนวนของคำสั่ง ที่จะเปลี่ยนแปลงตาราง หรือฐานข้อมูลใดๆ ที่ผู้ใช้จะสามารถสั่งได้ ต่อชั่วโมง" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Add new field" @@ -12820,7 +12787,7 @@ msgid "Routine" msgstr "เพิ่มฟิลด์ใหม่" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "อนุญาตให้เพิ่มผู้ใช้ และสิทธิเข้าถึง โดยไม่ต้องเรียกใช้ตารางสิทธิใหม่" @@ -12837,14 +12804,14 @@ msgstr "อนุญาตให้สร้างตารางใหม่." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "สิทธิเจาะจงเฉพาะตาราง" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -12856,7 +12823,7 @@ msgid "Administration" msgstr "การดูแลระบบ" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "สิทธิแบบโกลบอล" @@ -12867,15 +12834,15 @@ msgid "Global" msgstr "โกลบอล" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "สิทธิเจาะจงเฉพาะฐานข้อมูล" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "อนุญาตให้สร้างตารางใหม่." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "อนุญาตให้ทิ้งตาราง" @@ -12898,7 +12865,7 @@ msgid "Native MySQL Authentication" msgstr "การรับรองความถูกต้องของคุกกี้" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "ข้อมูลล็อกอิน" @@ -12923,8 +12890,8 @@ msgstr "ชื่อผู้ใช้" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Column names" msgid "Host name" @@ -12946,244 +12913,244 @@ msgstr "รับรองความถูกต้อง" msgid "Password Hashing Method" msgstr "รหัสผ่าน:" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "เปลี่ยนรหัสผ่านของ %s เรียบร้อยแล้ว" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "คุณได้เพิกถอนสิทธิของ %s" -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "เพิ่มผู้ใช้" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy msgid "Database for user account" msgstr "สถิติฐานข้อมูล" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "มอบสิทธิทั้งหมดสำหรับฐานข้อมูล \"%s\"." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "ผู้ใช้มีสิทธิเข้าถึงฐานข้อมูล \"%s\"" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "โยนวิว %s ทิ้งไปเรียบร้อยแล้ว" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "มอบสิทธิ" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "ไม่พบผู้ใช้ใดๆ." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "ใดๆ" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "โกลบอล" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "เฉพาะฐานข้อมูล" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "ไวล์การ์ด" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "เฉพาะฐานข้อมูล" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "แก้ไขสิทธิ" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "เพิกถอน" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "แก้ไข เครื่องแม่ข่าย" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… เก็บของเก่าไว้." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… ลบของเก่าทิ้งไปจากตารางผู้ใช้." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… เรียกคืนสิทธิ์ทั้งหมดจากเดิม แล้วลบมันหลังจากนั้น." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… ลบของเก่าจากตารางผู้ใช้ แล้วเรียกใช้รายการสิทธิ์ใหม่หลังจากนั้น." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "เปลี่ยนข้อมูลล็อกอิน / ทำสำเนาผู้ใช้" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "สร้างผู้ใช้ใหม่ ให้มีสิทธิเหมือนกัน และ …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "สิทธิเฉพาะคอลัมน์" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "ถอนผู้ใช้ที่เลือก" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "เพิกถอน active privileges ทั้งหมดจากผู้ใช้ และลบผู้ใช้ทิ้งหลังจากนั้น." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "โยนฐานข้อมูลที่มีชื่อเดียวกับผู้ใช้ทิ้ง." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "ปรับปรุงสิทธิเข้าถึงใหม่อีกรอบ" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "คุณได้ปรับปรุงสิทธิสำหรับ %s แล้ว" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "กำลังลบ %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "สิทธิได้ถูกเรียกใช้ใหม่เรียบร้อยแล้ว" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "มีผู้ใช้ %s อยู่แล้ว!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "สิทธิ" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "ผู้ใช้" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "แก้ไขสิทธิ" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "Users" msgid "User account" msgstr "ผู้ใช้" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "ข้อมูลทั่วไปของผู้ใช้" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13192,7 +13159,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -13201,11 +13168,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "ไม่พบผู้ใช้ที่เลือกในตารางแสดงสิทธิ" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "เพิ่มผู้ใช้ใหม่เรียบร้อยแล้ว" @@ -13446,33 +13413,33 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 #, fuzzy msgid "Refresh rate" msgstr "เรียกใหม่" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -13539,7 +13506,7 @@ msgid "Statements" msgstr "คำสั่ง" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -13568,34 +13535,34 @@ msgstr "แสดงตาราง" msgid "Related links:" msgstr "รีเลชัน" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13603,78 +13570,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13682,7 +13649,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13690,42 +13657,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13733,33 +13700,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13768,242 +13735,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14011,99 +13978,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14111,18 +14078,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14130,13 +14097,13 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "หยุดการติดตามแล้ว" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -14145,76 +14112,76 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 #, fuzzy #| msgid "Users" msgid "User groups" msgstr "ผู้ใช้" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "รุ่นของเซิร์ฟเวอร์" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Database server" msgid "Database level tabs" msgstr "เซิร์ฟเวอร์ฐานข้อมูล" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table comments" msgid "Table level tabs" msgstr "หมายเหตุของตาราง" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy msgid "View users" msgstr "เพิ่มผู้ใช้" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "เพิ่มผู้ใช้" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "ไม่มีสิทธิใดๆ." -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "ชื่อคอลัมน์" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "รุ่นของเซิร์ฟเวอร์" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "เซิร์ฟเวอร์ฐานข้อมูล" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14278,21 +14245,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14355,125 +14318,125 @@ msgstr "โยนตาราง %s ทิ้งไปเรียบร้อ msgid "Variable name was expected." msgstr "รูปแบบของชื่อไฟล์" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "ที่จุดเริ่มต้นของตาราง" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "ลบเรียบร้อยแล้ว" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 #, fuzzy msgid "Detailed profile" msgstr "เฉพาะข้อมูล" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 #, fuzzy #| msgid "Other" msgid "Order" msgstr "อื่นๆ" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy msgid "State" msgstr "สถานะ" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "เวลารวม:" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "เวลา" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "ปิด" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "เวลา" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "จดคำค้นนี้ไว้" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Label" msgid "Label:" msgstr "ป้ายชื่อ" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created!" msgstr "ที่คั่นหน้า %s ได้ถูกสร้างขึ้น" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -14484,7 +14447,7 @@ msgid "" msgstr "" "ตารางนี้ไม่มีสดมภ์ไหนที่เก็บค่าที่แตกต่างกันเสมอ การแก้ไขหรือเพิ่มผ่านตารางจะไม่สามารถบันทึกได้" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -14495,7 +14458,7 @@ msgid "" msgstr "" "ตารางนี้ไม่มีสดมภ์ไหนที่เก็บค่าที่แตกต่างกันเสมอ การแก้ไขหรือเพิ่มผ่านตารางจะไม่สามารถบันทึกได้" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -14526,29 +14489,29 @@ msgstr "" msgid "Bind parameters" msgstr "พารามิเตอร์ไม่ถูกต้อง!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 #, fuzzy #| msgid "Bookmark this SQL query" msgid "Bookmark this SQL query:" msgstr "จดคำค้นนี้ไว้" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "ตัวคั่น" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "แสดงคำค้นนี้อีกที" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "ดูอย่างเดียว" @@ -14594,182 +14557,182 @@ msgstr "ลบการติดตามตารางนี้" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "ถูกสร้าง" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "ปรับปรุงแล้ว" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "สร้างเวอร์ชั่น" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "รายงานผลการติดตาม" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "เก็บโครงสร้างไว้" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "ใช้งานได้" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "ใช้งานไม่ได้" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "ลบการติดตามตารางนี้" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "ไม่มีข้อมูล" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "วันที่" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 #, fuzzy msgid "Username" msgstr "ชื่อผู้ใช้:" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "ไม่มี" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "การติดตามเริ่มทำงานแล้ว" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "การติดตามเริ่มทำงานแล้ว" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format #| msgid "Create version %1$s of %2$s" msgid "Version %1$s of %2$s was deleted." msgstr "สร้างเวอร์ชั่น %1$s ของ %2$s" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "เลิกติดตามตาราง" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "ติดตามตาราง" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "ตารางที่ถูกติดตาม" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "เวอร์ชั่นล่าสุด" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "กำลังลบข้อมูลติดตามตาราง" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "รุ่น" @@ -14777,13 +14740,13 @@ msgstr "รุ่น" msgid "Manage your settings" msgstr "จัดการการตั้งค่าของคุณ" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." msgstr "บันทึกการแก้ไขเรียบร้อยแล้ว" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14885,7 +14848,7 @@ msgstr "ไม่มีฐานข้อมูล" msgid "View dump (schema) of databases" msgstr "ดูโครงสร้างของฐานข้อมูล" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14910,7 +14873,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin ไม่สามารถฆ่าเธรด %s. บางทีมันอาจจะถูกปิดไปแล้วก็ได้." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -15845,52 +15808,58 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Import files" +msgid "Chart title:" +msgstr "นำเข้าไฟล์" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 #, fuzzy msgid "Series:" msgstr "คำค้น SQL" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "ค่า" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "ค่า" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside column:" msgid "Series column:" msgstr "ในคอลัมน์:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Values for column %s" msgid "Value Column:" msgstr "ค่าสำหรับคอลัมน์ \"%s\"" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -15957,54 +15926,55 @@ msgstr "หมายเหตุ" msgid "Drag to reorder" msgstr "ลากเพื่อเปลี่ยนลำดับ" -#: templates/table/relation/common_form.phtml:7 -msgid "Internal relations" -msgstr "รีเลชันภายใน" - -#: templates/table/relation/common_form.phtml:11 -#, fuzzy -#| msgid "Internal relations" -msgid "Internal relation" -msgstr "รีเลชันภายใน" - -#: templates/table/relation/common_form.phtml:14 -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "" - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 #, fuzzy #| msgid "Foreign key check:" msgid "Foreign key constraints" msgstr "ตรวจสอบคีย์ต่างประเทศ:" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 msgid "Actions" msgstr "กระทำการ" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 #, fuzzy #| msgid "Column names" msgid "Constraint properties" msgstr "ชื่อคอลัมน์" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "เพิ่ม constraints" -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +msgid "Internal relations" +msgstr "รีเลชันภายใน" + +#: templates/table/relation/common_form.phtml:80 +#, fuzzy +#| msgid "Internal relations" +msgid "Internal relation" +msgstr "รีเลชันภายใน" + +#: templates/table/relation/common_form.phtml:83 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "" + +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16161,7 +16131,7 @@ msgid "at beginning of table" msgstr "ที่จุดเริ่มต้นของตาราง" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16206,7 +16176,7 @@ msgstr "ตำแหน่ง" msgid "Edit partitioning" msgstr "เพิ่มฟิลด์ใหม่" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -17539,6 +17509,39 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert ถูกตั้งค่าไว้ที่ 0" +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "ตาราง" + +#, fuzzy +#~| msgid "View" +#~ msgid "views" +#~ msgstr "ตารางจำลอง (View)" + +#, fuzzy +#~ msgid "procedures" +#~ msgstr "โพรเซส" + +#, fuzzy +#~| msgid "event" +#~ msgid "events" +#~ msgstr "เหตุการณ์" + +#, fuzzy +#~ msgid "functions" +#~ msgstr "ฟังก์ชั่น" + +#, fuzzy +#~| msgid "filter databases by name" +#~ msgid "Filter databases by name or regex" +#~ msgstr "กรองฐานข้อมูลตามชื่อ" + +#, fuzzy +#~| msgid "filter items by name" +#~ msgid "Filter by name or regex" +#~ msgstr "กรองรายการตามชื่อ" + #, fuzzy #~| msgid "Tracking report" #~ msgid "Taking you to %s." diff --git a/po/tk.po b/po/tk.po index 32f6e5e678..0d4f16f5df 100644 --- a/po/tk.po +++ b/po/tk.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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2013-05-07 17:12+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Turkmen Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 msgid "Page name" msgstr "" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:550 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:551 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:552 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Hemmesini görkez" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Use this value" msgid "Select database first" msgstr "Şu bahany ulan" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Hemmesini görkez" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Show all" msgid "Show hidden navigation tree items." msgstr "Hemmesini görkez" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -msgid "tables" -msgstr "" - -#: js/messages.php:633 -msgid "views" -msgstr "" - -#: js/messages.php:634 -msgid "procedures" -msgstr "" - -#: js/messages.php:635 -msgid "events" -msgstr "" - -#: js/messages.php:636 -msgid "functions" -msgstr "" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2360,402 +2341,402 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr "" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Show all" msgid "Show report details" msgstr "Hemmesini görkez" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Show all" msgid "Show arguments" msgstr "Hemmesini görkez" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Use this value" msgid "Please enter a valid date" msgstr "Şu bahany ulan" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "" @@ -2763,41 +2744,41 @@ msgstr "" msgid "Please enter the same value again" msgstr "" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "" @@ -2882,11 +2863,12 @@ msgstr "" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -2928,7 +2910,7 @@ msgstr "" msgid "Explain" msgstr "" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "" @@ -2962,8 +2944,8 @@ msgid "History" msgstr "" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3112,30 +3094,30 @@ msgstr "" msgid "Switch to dark theme" msgstr "" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3145,8 +3127,8 @@ msgstr "" msgid "Ascending" msgstr "" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3293,8 +3275,8 @@ msgstr[0] "" msgstr[1] "" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3338,163 +3320,164 @@ msgstr "Şu bahany ulan" msgid "Inside column:" msgstr "" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Use this value" msgid "Search this table" msgstr "Şu bahany ulan" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 msgid "Display column for relations" msgstr "" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "Database %1$s has been created." msgid "The row has been deleted." msgstr "%1$s maglumatlar ulgamy döredildi." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3502,25 +3485,25 @@ msgstr "" msgid "Check all" msgstr "Şu bahany ulan" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "" @@ -3612,19 +3595,19 @@ msgstr "" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3633,24 +3616,24 @@ msgid "Action" msgstr "" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Açarsözi" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "" @@ -3658,8 +3641,8 @@ msgstr "" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3669,8 +3652,8 @@ msgid "Collation" msgstr "" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3686,15 +3669,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "" @@ -3731,12 +3714,13 @@ msgstr "" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3744,7 +3728,7 @@ msgstr "" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3753,8 +3737,8 @@ msgid "SQL" msgstr "" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3762,41 +3746,41 @@ msgid "Search" msgstr "Gözle" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3807,16 +3791,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3824,20 +3808,20 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "" @@ -3846,33 +3830,33 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4170,7 +4154,7 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4579,37 +4563,37 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "" @@ -4772,8 +4756,8 @@ msgid "Add new column" msgstr "" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -4832,19 +4816,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -5610,7 +5594,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -5649,7 +5633,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "" @@ -7213,7 +7197,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "" @@ -7485,105 +7469,35 @@ msgstr "" msgid "OpenDocument Text" msgstr "" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "View %s has been dropped." msgstr "%1$s maglumatlar ulgamy döredildi." -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "Table %s has been dropped." msgstr "%1$s maglumatlar ulgamy döredildi" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "" - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "" - -#: libraries/controllers/TableStructureController.php:967 -#, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "" - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1201 -#, fuzzy -#| msgid "Use this value" -msgid "Distinct values" -msgstr "Şu bahany ulan" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -7597,6 +7511,14 @@ msgstr "" msgid "No data to display" msgstr "" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "" + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "" @@ -7607,19 +7529,81 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr "%1$s maglumatlar ulgamy döredildi." -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:975 +#, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1209 +#, fuzzy +#| msgid "Use this value" +msgid "Distinct values" +msgstr "Şu bahany ulan" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -7629,7 +7613,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7694,7 +7678,7 @@ msgstr "" msgid "Create database:" msgstr "" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "" @@ -8362,69 +8346,69 @@ msgid "Dump has been saved to file %s." msgstr "" #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "" @@ -8447,71 +8431,71 @@ msgstr "" msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -8523,11 +8507,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -8543,35 +8527,35 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "" @@ -8789,8 +8773,8 @@ msgstr "" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "" @@ -8828,7 +8812,8 @@ msgstr[0] "" msgstr[1] "" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" msgstr "" #: libraries/navigation/NavigationTree.php:1371 @@ -8836,10 +8821,6 @@ msgstr "" msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -9216,7 +9197,7 @@ msgstr "" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9225,7 +9206,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "" @@ -9243,18 +9224,18 @@ msgstr "" msgid "Drop the database (DROP)" msgstr "" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "" @@ -9266,7 +9247,7 @@ msgstr "" msgid "CREATE DATABASE before copying" msgstr "" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "" @@ -9306,159 +9287,159 @@ msgstr "" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Use this value" msgid "Checksum table" msgstr "Şu bahany ulan" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "" @@ -9623,7 +9604,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -9647,21 +9628,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -9751,7 +9732,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "" @@ -9844,7 +9825,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -9913,8 +9894,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9922,81 +9903,81 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 msgid "Metadata" msgstr "" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "" @@ -10228,9 +10209,9 @@ msgstr "" msgid "Table of contents" msgstr "" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "" @@ -10394,55 +10375,55 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "Database %1$s has been created." msgid "Internal relation has been added." msgstr "%1$s maglumatlar ulgamy döredildi." -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "Database %1$s has been created." msgid "Error: Internal relation could not be added!" msgstr "%1$s maglumatlar ulgamy döredildi." -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "Database %1$s has been created." msgid "FOREIGN KEY relation has been removed." msgstr "%1$s maglumatlar ulgamy döredildi." -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "Database %1$s has been created." msgid "Error: Internal relation could not be removed!" msgstr "%1$s maglumatlar ulgamy döredildi." -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Database %1$s has been created." msgid "Internal relation has been removed." @@ -10489,104 +10470,104 @@ msgstr "" msgid "Please see the documentation on how to update your column_info table. " msgstr "" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "Show all" msgid "Persistent favorite tables" msgstr "Hemmesini görkez" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 msgid "Saving export templates" msgstr "" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -10758,8 +10739,8 @@ msgstr "" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "" @@ -10767,7 +10748,7 @@ msgstr "" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "" @@ -11379,7 +11360,7 @@ msgstr[1] "" msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "" @@ -11387,98 +11368,94 @@ msgstr "" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "" #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "" #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "" #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -11486,65 +11463,65 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "" #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "" #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -11556,8 +11533,8 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -11597,37 +11574,37 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -11642,14 +11619,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11659,7 +11636,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "" @@ -11668,15 +11645,15 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "" @@ -11693,7 +11670,7 @@ msgid "Native MySQL Authentication" msgstr "" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "" @@ -11716,8 +11693,8 @@ msgstr "" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 msgid "Host name" msgstr "" @@ -11733,216 +11710,216 @@ msgstr "" msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 msgid "Database for user account" msgstr "" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 msgid "Remove selected user accounts" msgstr "" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11951,7 +11928,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11960,11 +11937,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "" @@ -12186,30 +12163,30 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -12263,7 +12240,7 @@ msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -12288,33 +12265,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12322,78 +12299,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12401,7 +12378,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12409,42 +12386,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12452,33 +12429,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12487,242 +12464,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12730,99 +12707,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12830,18 +12807,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12849,11 +12826,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -12862,57 +12839,57 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "" @@ -12974,21 +12951,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "Database %1$s has been created." msgid "An alias was expected." @@ -13048,121 +13021,121 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "Database %1$s has been created." msgid "At least one column definition was expected." msgstr "%1$s maglumatlar ulgamy döredildi." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -13190,27 +13163,27 @@ msgstr "" msgid "Bind parameters" msgstr "" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "" @@ -13254,172 +13227,172 @@ msgstr "" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 msgid "Delete version" msgstr "" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "" @@ -13427,11 +13400,11 @@ msgstr "" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -13530,7 +13503,7 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -13555,7 +13528,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -14347,43 +14320,47 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +msgid "Chart title:" +msgstr "" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 msgid "Value Column:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "" @@ -14436,48 +14413,49 @@ msgstr "" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +msgid "Foreign key constraints" +msgstr "" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "" + +#: templates/table/relation/common_form.phtml:10 +msgid "Constraint properties" +msgstr "" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "" + +#: templates/table/relation/common_form.phtml:60 +msgid "+ Add constraint" +msgstr "" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 #, fuzzy #| msgid "Database %1$s has been created." msgid "Internal relations" msgstr "%1$s maglumatlar ulgamy döredildi." -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:37 -msgid "Foreign key constraints" -msgstr "" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "" - -#: templates/table/relation/common_form.phtml:41 -msgid "Constraint properties" -msgstr "" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "" - -#: templates/table/relation/common_form.phtml:83 -msgid "+ Add constraint" -msgstr "" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "" @@ -14604,7 +14582,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 msgid "Partitions" msgstr "" @@ -14641,7 +14619,7 @@ msgstr "Düşündiriş" msgid "Edit partitioning" msgstr "Düşündiriş" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "" diff --git a/po/tr.po b/po/tr.po index a6f76ff661..0f277d4501 100644 --- a/po/tr.po +++ b/po/tr.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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-11-12 17:17+0000\n" "Last-Translator: Burak Yavuz \n" -"Language-Team: Turkish " -"\n" +"Language-Team: Turkish \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 2.5-dev\n" -#: changelog.php:37 license.php:30 +#: changelog.php:37 license.php:33 #, php-format msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " @@ -37,7 +37,7 @@ msgstr "Sıralamak için tıklayın." msgid "Showing rows %1$s - %2$s." msgstr "Gösterilen satır %1$s - %2$s." -#: db_create.php:61 +#: db_create.php:62 #, php-format msgid "Database %1$s has been created." msgstr "Veritabanı %1$s oluşturuldu." @@ -46,13 +46,13 @@ msgstr "Veritabanı %1$s oluşturuldu." msgid "Database comment" msgstr "Veritabanı yorumu" -#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:601 +#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:599 #: templates/columns_definitions/column_definitions_form.phtml:84 msgid "Table comments:" msgstr "Tablo yorumları:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1568 +#: libraries/insert_edit.lib.php:1575 #: libraries/navigation/nodes/NodeColumn.php:34 #: libraries/plugins/export/ExportHtmlword.php:288 #: libraries/plugins/export/ExportHtmlword.php:384 @@ -62,13 +62,14 @@ msgstr "Tablo yorumları:" #: libraries/plugins/export/ExportTexytext.php:282 #: libraries/plugins/export/ExportTexytext.php:373 #: libraries/plugins/export/PMA_ExportPdf.php:472 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:882 libraries/tracking.lib.php:978 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 +#: libraries/tracking.lib.php:892 libraries/tracking.lib.php:990 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:10 -#: templates/table/relation/common_form.phtml:43 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:27 +#: templates/table/relation/common_form.phtml:79 #: templates/table/relation/foreign_key_row.phtml:176 #: templates/table/relation/foreign_key_row.phtml:188 #: templates/table/relation/internal_relational_row.phtml:73 @@ -88,14 +89,14 @@ msgstr "Sütun" #: libraries/plugins/export/ExportTexytext.php:283 #: libraries/plugins/export/ExportTexytext.php:374 #: libraries/plugins/export/PMA_ExportPdf.php:474 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 #: libraries/rte/rte_list.lib.php:78 libraries/rte/rte_list.lib.php:106 #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2606 libraries/tracking.lib.php:883 -#: libraries/tracking.lib.php:975 +#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -105,7 +106,7 @@ msgstr "Türü" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:709 -#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1577 +#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1584 #: libraries/plugins/export/ExportHtmlword.php:294 #: libraries/plugins/export/ExportHtmlword.php:390 #: libraries/plugins/export/ExportLatex.php:517 @@ -114,9 +115,9 @@ msgstr "Türü" #: libraries/plugins/export/ExportTexytext.php:284 #: libraries/plugins/export/ExportTexytext.php:375 #: libraries/plugins/export/PMA_ExportPdf.php:476 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 -#: libraries/tracking.lib.php:885 libraries/tracking.lib.php:981 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/tracking.lib.php:895 libraries/tracking.lib.php:993 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 @@ -133,9 +134,9 @@ msgstr "Boş" #: libraries/plugins/export/ExportTexytext.php:285 #: libraries/plugins/export/ExportTexytext.php:376 #: libraries/plugins/export/PMA_ExportPdf.php:478 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 -#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:886 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:896 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 @@ -147,8 +148,8 @@ msgstr "Varsayılan" #: libraries/plugins/export/ExportOdt.php:488 #: libraries/plugins/export/ExportTexytext.php:378 #: libraries/plugins/export/PMA_ExportPdf.php:487 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:640 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:663 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 msgid "Links to" msgstr "Bağlantı verilen" @@ -159,37 +160,38 @@ msgstr "Bağlantı verilen" #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:381 #: libraries/plugins/export/PMA_ExportPdf.php:494 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:651 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:664 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:649 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 #: templates/columns_definitions/table_fields_definitions.phtml:65 msgid "Comments" msgstr "Yorumlar" -#: db_datadict.php:155 libraries/controllers/TableStructureController.php:1189 -#: libraries/controllers/TableStructureController.php:1194 -#: libraries/tracking.lib.php:925 +#: db_datadict.php:155 +#: libraries/controllers/table/TableStructureController.php:1197 +#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:79 +#: templates/table/structure/display_structure.phtml:80 msgid "Primary" msgstr "Birincil" -#: db_datadict.php:165 js/messages.php:370 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:371 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 -#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:403 -#: libraries/mult_submits.lib.php:417 +#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:408 +#: libraries/mult_submits.lib.php:422 #: libraries/plugins/export/ExportHtmlword.php:654 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:710 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2971 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3620 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1013 libraries/tracking.lib.php:1018 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2973 +#: libraries/server_privileges.lib.php:2993 +#: libraries/server_privileges.lib.php:3631 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -198,32 +200,32 @@ msgstr "Birincil" msgid "No" msgstr "Hayır" -#: db_datadict.php:165 js/messages.php:515 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:516 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 #: libraries/config/FormDisplay.tpl.php:280 -#: libraries/controllers/TableStructureController.php:770 -#: libraries/controllers/TableStructureController.php:1440 -#: libraries/controllers/TableStructureController.php:1449 -#: libraries/controllers/TableStructureController.php:1454 -#: libraries/controllers/TableStructureController.php:1459 -#: libraries/controllers/TableStructureController.php:1464 -#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:199 -#: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 -#: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 +#: libraries/controllers/table/TableStructureController.php:771 +#: libraries/controllers/table/TableStructureController.php:1448 +#: libraries/controllers/table/TableStructureController.php:1457 +#: libraries/controllers/table/TableStructureController.php:1462 +#: libraries/controllers/table/TableStructureController.php:1467 +#: libraries/controllers/table/TableStructureController.php:1472 +#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:200 +#: libraries/mult_submits.lib.php:344 libraries/mult_submits.lib.php:377 +#: libraries/mult_submits.lib.php:406 libraries/mult_submits.lib.php:420 #: libraries/plugins/export/ExportHtmlword.php:655 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:788 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:711 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2968 -#: libraries/server_privileges.lib.php:2989 -#: libraries/server_privileges.lib.php:3617 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1011 libraries/tracking.lib.php:1016 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2970 +#: libraries/server_privileges.lib.php:2991 +#: libraries/server_privileges.lib.php:3628 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -236,8 +238,8 @@ msgstr "Evet" msgid "View dump (schema) of database" msgstr "Veritabanının dökümünü (şemasını) göster" -#: db_export.php:51 db_tracking.php:102 export.php:382 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:176 +#: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 +#: libraries/controllers/DatabaseStructureController.php:157 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "Veritabanında tablo bulunamadı." @@ -254,7 +256,7 @@ msgstr "Tablolar" #: db_export.php:66 libraries/Menu.php:320 libraries/Menu.php:427 #: libraries/Util.php:3407 libraries/Util.php:3417 libraries/Util.php:3423 -#: libraries/Util.php:3702 libraries/Util.php:4339 libraries/Util.php:4356 +#: libraries/Util.php:3703 libraries/Util.php:4340 libraries/Util.php:4357 #: libraries/central_columns.lib.php:729 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:320 @@ -262,10 +264,10 @@ msgstr "Tablolar" #: libraries/config/user_preferences.forms.php:218 #: libraries/config/user_preferences.forms.php:259 #: libraries/config/user_preferences.forms.php:285 -#: libraries/import.lib.php:1299 libraries/navigation/nodes/NodeColumn.php:44 +#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:44 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 -#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:877 +#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:887 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -309,11 +311,11 @@ msgid "" msgstr "" "phpMyAdmin yapılandırma depolaması devre dışı bırakıldı. %sNedenini bulun%s." -#: db_qbe.php:135 +#: db_qbe.php:136 msgid "You have to choose at least one column to display!" msgstr "Görüntülemek için en az bir sütun seçmelisiniz!" -#: db_qbe.php:152 +#: db_qbe.php:154 #, php-format msgid "Switch to %svisual builder%s" msgstr "%sGörsel yaratıcı'ya%s geç" @@ -340,7 +342,7 @@ msgstr "" msgid "No tables selected." msgstr "Seçilen tablolar yok." -#: db_tracking.php:146 +#: db_tracking.php:149 msgid "Database Log" msgstr "Veritabanı Günlüğü" @@ -377,7 +379,7 @@ msgstr "Sayfayı yenilemek isteyebilirsiniz." msgid "Bad type!" msgstr "Kötü tür!" -#: export.php:276 +#: export.php:278 msgid "Bad parameters!" msgstr "Kötü parametreler!" @@ -385,98 +387,98 @@ msgstr "Kötü parametreler!" msgid "Invalid export type" msgstr "Geçersiz dışa aktarma türü" -#: gis_data_editor.php:119 +#: gis_data_editor.php:117 #, php-format msgid "Value for the column \"%s\"" msgstr "\"%s\" sütunu için değer" -#: gis_data_editor.php:147 +#: gis_data_editor.php:145 #: templates/table/gis_visualization/gis_visualization.phtml:37 msgid "Use OpenStreetMaps as Base Layer" msgstr "Taban Katman olarak OpenStreetMaps kullan" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:169 +#: gis_data_editor.php:167 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:192 +#: gis_data_editor.php:190 #, php-format msgid "Geometry %d:" msgstr "Geometri %d:" -#: gis_data_editor.php:214 +#: gis_data_editor.php:212 msgid "Point:" msgstr "Nokta:" -#: gis_data_editor.php:215 gis_data_editor.php:242 gis_data_editor.php:298 -#: gis_data_editor.php:371 js/messages.php:504 +#: gis_data_editor.php:213 gis_data_editor.php:240 gis_data_editor.php:296 +#: gis_data_editor.php:369 js/messages.php:505 msgid "X" msgstr "X" -#: gis_data_editor.php:218 gis_data_editor.php:246 gis_data_editor.php:302 -#: gis_data_editor.php:377 js/messages.php:505 +#: gis_data_editor.php:216 gis_data_editor.php:244 gis_data_editor.php:300 +#: gis_data_editor.php:375 js/messages.php:506 msgid "Y" msgstr "Y" -#: gis_data_editor.php:240 gis_data_editor.php:296 gis_data_editor.php:369 -#: js/messages.php:507 +#: gis_data_editor.php:238 gis_data_editor.php:294 gis_data_editor.php:367 +#: js/messages.php:508 #, php-format msgid "Point %d" msgstr "Nokta %d" -#: gis_data_editor.php:253 gis_data_editor.php:309 gis_data_editor.php:387 -#: js/messages.php:513 +#: gis_data_editor.php:251 gis_data_editor.php:307 gis_data_editor.php:385 +#: js/messages.php:514 msgid "Add a point" msgstr "Nokta ekle" -#: gis_data_editor.php:270 +#: gis_data_editor.php:268 #, php-format msgid "Linestring %d:" msgstr "Satır dizgisi %d:" -#: gis_data_editor.php:273 gis_data_editor.php:350 +#: gis_data_editor.php:271 gis_data_editor.php:348 msgid "Outer ring:" msgstr "Dış halka:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:273 gis_data_editor.php:350 #, php-format msgid "Inner ring %d:" msgstr "İç halka %d:" -#: gis_data_editor.php:312 +#: gis_data_editor.php:310 msgid "Add a linestring" msgstr "Satır dizgisi ekle" -#: gis_data_editor.php:313 gis_data_editor.php:392 js/messages.php:514 +#: gis_data_editor.php:311 gis_data_editor.php:390 js/messages.php:515 msgid "Add an inner ring" msgstr "İç halka ekle" -#: gis_data_editor.php:334 +#: gis_data_editor.php:332 #, php-format msgid "Polygon %d:" msgstr "Poligon %d:" -#: gis_data_editor.php:398 +#: gis_data_editor.php:396 msgid "Add a polygon" msgstr "Poligon ekle" -#: gis_data_editor.php:404 +#: gis_data_editor.php:402 msgid "Add geometry" msgstr "Geometri ekle" -#: gis_data_editor.php:410 js/messages.php:345 libraries/DbSearch.php:462 -#: libraries/DisplayResults.php:1783 libraries/browse_foreigners.lib.php:142 +#: gis_data_editor.php:408 js/messages.php:346 libraries/DbSearch.php:462 +#: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:151 #: libraries/display_export.lib.php:404 libraries/display_export.lib.php:410 -#: libraries/display_import.lib.php:403 libraries/index.lib.php:42 -#: libraries/insert_edit.lib.php:1547 libraries/insert_edit.lib.php:1584 +#: libraries/display_import.lib.php:403 libraries/index.lib.php:45 +#: libraries/insert_edit.lib.php:1554 libraries/insert_edit.lib.php:1591 #: libraries/normalization.lib.php:168 libraries/normalization.lib.php:825 #: libraries/operations.lib.php:47 libraries/operations.lib.php:114 #: libraries/operations.lib.php:266 libraries/operations.lib.php:309 #: libraries/operations.lib.php:806 libraries/operations.lib.php:877 -#: libraries/operations.lib.php:926 libraries/operations.lib.php:1336 -#: libraries/operations.lib.php:1653 +#: libraries/operations.lib.php:926 libraries/operations.lib.php:1339 +#: libraries/operations.lib.php:1656 #: libraries/plugins/auth/AuthenticationCookie.php:239 #: libraries/replication_gui.lib.php:124 libraries/replication_gui.lib.php:163 #: libraries/replication_gui.lib.php:328 libraries/replication_gui.lib.php:465 @@ -485,12 +487,12 @@ msgstr "Geometri ekle" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2343 -#: libraries/server_privileges.lib.php:3114 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_user_groups.lib.php:285 -#: libraries/sql_query_form.lib.php:369 libraries/sql_query_form.lib.php:429 -#: libraries/tracking.lib.php:536 libraries/tracking.lib.php:656 +#: libraries/server_privileges.lib.php:2345 +#: libraries/server_privileges.lib.php:3116 +#: libraries/server_privileges.lib.php:3735 +#: libraries/server_user_groups.lib.php:290 +#: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 +#: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 #: prefs_manage.php:280 prefs_manage.php:358 #: templates/columns_definitions/column_definitions_form.phtml:64 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 @@ -503,11 +505,11 @@ msgstr "Geometri ekle" msgid "Go" msgstr "Git" -#: gis_data_editor.php:413 +#: gis_data_editor.php:411 msgid "Output" msgstr "Çıktı" -#: gis_data_editor.php:416 +#: gis_data_editor.php:414 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -519,7 +521,7 @@ msgstr "" msgid "Succeeded" msgstr "Başarılı oldu" -#: import.php:59 js/messages.php:588 +#: import.php:59 js/messages.php:589 msgid "Failed" msgstr "Başarısız oldu" @@ -581,7 +583,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "İçe aktarma eklentileri yüklenemedi, lütfen kurulumunuzu kontrol edin!" -#: import.php:669 libraries/sql.lib.php:744 libraries/sql.lib.php:1468 +#: import.php:669 libraries/sql.lib.php:754 libraries/sql.lib.php:1485 #, php-format msgid "Bookmark %s has been created." msgstr "Yer imi %s oluşturuldu." @@ -613,7 +615,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "İçe aktarma işleminin ilerleme durumu yüklenemedi." -#: import_status.php:111 js/messages.php:444 libraries/Util.php:797 +#: import_status.php:111 js/messages.php:445 libraries/Util.php:797 #: libraries/export.lib.php:523 #: libraries/plugins/schema/ExportRelationSchema.php:301 user_password.php:268 msgid "Back" @@ -638,7 +640,7 @@ msgstr "" msgid "General settings" msgstr "Genel ayarlar" -#: index.php:191 js/messages.php:617 +#: index.php:191 js/messages.php:618 #: libraries/display_change_password.lib.php:54 #: libraries/display_change_password.lib.php:57 user_password.php:262 msgid "Change password" @@ -738,7 +740,11 @@ msgstr "Destek al" msgid "List of changes" msgstr "Değişikliklerin listesi" -#: index.php:453 +#: index.php:438 libraries/server_plugins.lib.php:83 +msgid "License" +msgstr "Lisans" + +#: index.php:460 msgid "" "You are connected as 'root' with no password, which corresponds to the " "default MySQL privileged account. Your MySQL server is running with this " @@ -750,7 +756,7 @@ msgstr "" "izinsiz girişe açıktır, ve bu güvenlik açığını 'root' kullanıcısı için bir " "parola ayarlayarak gerçekten düzeltmelisiniz." -#: index.php:470 +#: index.php:477 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -760,7 +766,7 @@ msgstr "" "seçenek phpMyAdmin ile uyumlusuzdur ve bazı veri bozulmalarına sebep " "olabilir!" -#: index.php:485 +#: index.php:492 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -770,7 +776,7 @@ msgstr "" "görünüyor. Mbstring uzantısı olmadan phpMyAdmin karakter dizgilerini doğru " "olarak bölemez ve bu beklenmedik sonuçlar doğurabilir." -#: index.php:502 +#: index.php:509 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than " @@ -783,7 +789,7 @@ msgstr "" "bundan dolayı phpMyAdmin içinde yapılandırılmadıkça oturum açmanızın süresi " "dolabilir." -#: index.php:521 +#: index.php:528 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -792,13 +798,13 @@ msgstr "" "tanımlama bilgisi depolamasından düşük, bundan dolayı oturum açmanızın " "süresi phpMyAdmin içinde yapılandırılmadıkça dolacaktır." -#: index.php:537 +#: index.php:544 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Yapılandırma dosyası için gizli bir parola ifadesi gerekiyor " "(blowfish_secret)." -#: index.php:550 +#: index.php:557 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. It is strongly recommended to remove it " @@ -810,7 +816,7 @@ msgstr "" "bunu kaldırmanız son derece önerilir. Yoksa yapılandırmanızı indiren " "yetkisiz insanlar tarafından sunucunuzun güvenliği riske atılabilir." -#: index.php:566 +#: index.php:573 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -819,14 +825,14 @@ msgstr "" "phpMyAdmin yapılandırma depolaması tamamiyle yapılandırılmadı, bazı " "genişletilmiş özellikler devre dışı bırakıldı. %sNedenini bulun%s. " -#: index.php:573 +#: index.php:580 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "Ya da orada ayarlamak için herhangi bir veritabanının 'İşlemler' sekmesine " "dönüşümlü olarak gidin." -#: index.php:619 +#: index.php:626 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -835,7 +841,7 @@ msgstr "" "PHP MySQL kütüphanenizin %s sürümü, MySQL sunucunuzun %s sürümünden farklı. " "Bu tahmin edilemez davranışa sebep olabilir." -#: index.php:647 +#: index.php:654 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -857,7 +863,7 @@ msgstr "Onayla" msgid "Do you really want to execute \"%s\"?" msgstr "\"%s\" sorgusunu çalıştırmak istediğinize emin misiniz?" -#: js/messages.php:45 libraries/mult_submits.lib.php:397 +#: js/messages.php:45 libraries/mult_submits.lib.php:402 msgid "You are about to DESTROY a complete database!" msgstr "Bütün bir veritabanını YOK ETMEK üzeresiniz!" @@ -978,13 +984,6 @@ msgstr "" "misiniz?" #: js/messages.php:95 -#| msgid "" -#| "Through this operation, MySQL attempts to map the data values between " -#| "collations. If the character sets are incompatible, there may be data " -#| "loss and this lost data may NOT be recoverable simply by changing " -#| "back the column collation(s). To convert existing data, it is " -#| "suggested to use the column(s) editing feature (the \"Change\" Link) on " -#| "the table structure page. " msgid "" "Through this operation, MySQL attempts to map the data values between " "collations. If the character sets are incompatible, there may be data loss " @@ -1013,7 +1012,7 @@ msgid "Save & close" msgstr "Kaydet ve kapat" #: js/messages.php:109 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1551 prefs_manage.php:364 +#: libraries/insert_edit.lib.php:1558 prefs_manage.php:364 #: prefs_manage.php:375 msgid "Reset" msgstr "Sıfırla" @@ -1071,10 +1070,10 @@ msgstr "İndeks için lütfen sütun(ları) seçin." msgid "You have to add at least one column." msgstr "En az bir sütun eklemek zorundasınız." -#: js/messages.php:129 libraries/insert_edit.lib.php:1549 +#: js/messages.php:129 libraries/insert_edit.lib.php:1556 #: templates/columns_definitions/column_definitions_form.phtml:159 #: templates/table/index_form.phtml:237 -#: templates/table/relation/common_form.phtml:108 +#: templates/table/relation/common_form.phtml:127 msgid "Preview SQL" msgstr "SQL Önizle" @@ -1117,8 +1116,8 @@ msgstr "Parolalar birbiriyle aynı değil!" msgid "Removing Selected Users" msgstr "Seçilen Kullanıcılar Kaldırılıyor" -#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:461 -#: libraries/tracking.lib.php:831 +#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:471 +#: libraries/tracking.lib.php:841 msgid "Close" msgstr "Kapat" @@ -1140,7 +1139,7 @@ msgstr "Şablon silindi." #. l10n: Other, small valued, queries #: js/messages.php:155 libraries/ServerStatusData.php:130 -#: libraries/server_status_queries.lib.php:148 +#: libraries/server_status_queries.lib.php:150 msgid "Other" msgstr "Diğer" @@ -1307,7 +1306,7 @@ msgstr "Sorular" msgid "Traffic" msgstr "Trafik" -#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4330 +#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4331 #: libraries/server_status_monitor.lib.php:258 msgid "Settings" msgstr "Ayarlar" @@ -1320,9 +1319,9 @@ msgstr "Çizelgeyi kılavuza ekle" msgid "Please add at least one variable to the series!" msgstr "Lütfen diziye en az bir değişken ekleyin!" -#: js/messages.php:216 libraries/DisplayResults.php:1477 +#: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1438,7 +1437,7 @@ msgstr "Değiştirme ayarları" msgid "Current settings" msgstr "Şu anki ayarlar" -#: js/messages.php:253 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:253 msgid "Chart title" msgstr "Çizelge başlığı" @@ -1524,21 +1523,21 @@ msgstr "Çözümleniyor…" msgid "Explain output" msgstr "Çıktıyı açıkla" -#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4326 +#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4327 #: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:396 #: libraries/rte/rte_list.lib.php:104 -#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:282 -#: libraries/tracking.lib.php:1623 +#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:284 +#: libraries/tracking.lib.php:1639 msgid "Status" msgstr "Durum" -#: js/messages.php:289 js/messages.php:870 +#: js/messages.php:289 js/messages.php:862 #: libraries/plugins/export/ExportHtmlword.php:484 #: libraries/plugins/export/ExportOdt.php:600 #: libraries/plugins/export/ExportTexytext.php:445 #: libraries/plugins/export/PMA_ExportPdf.php:314 #: libraries/rte/rte_list.lib.php:93 -#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:239 +#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:243 msgid "Time" msgstr "Süre" @@ -1625,10 +1624,10 @@ msgstr "" "Varsayılan yapılandırmaya sıfırlanıyor…" #: js/messages.php:322 libraries/Menu.php:355 libraries/Menu.php:457 -#: libraries/Menu.php:578 libraries/Util.php:4329 libraries/Util.php:4344 -#: libraries/Util.php:4361 libraries/config/messages.inc.php:260 +#: libraries/Menu.php:578 libraries/Util.php:4330 libraries/Util.php:4345 +#: libraries/Util.php:4362 libraries/config/messages.inc.php:260 #: libraries/display_import.lib.php:108 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:241 +#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:241 #: setup/frames/menu.inc.php:26 msgid "Import" msgstr "İçe aktar" @@ -1685,7 +1684,13 @@ msgstr "Deneme" msgid "Formatting SQL…" msgstr "SQL biçimlendiriliyor…" -#: js/messages.php:346 libraries/server_variables.lib.php:159 +#: js/messages.php:343 +#, fuzzy +#| msgid "Bad parameters!" +msgid "No parameters found!" +msgstr "Kötü parametreler!" + +#: js/messages.php:347 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 +1701,59 @@ msgstr "SQL biçimlendiriliyor…" msgid "Cancel" msgstr "İptal" -#: js/messages.php:349 libraries/Header.php:457 +#: js/messages.php:350 libraries/Header.php:457 msgid "Page-related settings" msgstr "Sayfa ile ilgili ayarlar" -#: js/messages.php:350 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:351 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Uygula" -#: js/messages.php:353 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:354 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:124 msgid "Loading…" msgstr "Yükleniyor…" -#: js/messages.php:354 +#: js/messages.php:355 msgid "Request aborted!!" msgstr "İstek iptal edildi!!!" -#: js/messages.php:355 +#: js/messages.php:356 msgid "Processing request" msgstr "İstek işleniyor" -#: js/messages.php:356 +#: js/messages.php:357 msgid "Request failed!!" msgstr "İstek başarısız oldu!!" -#: js/messages.php:357 +#: js/messages.php:358 msgid "Error in processing request" msgstr "İstek işlemede hata" -#: js/messages.php:358 +#: js/messages.php:359 #, php-format msgid "Error code: %s" msgstr "Hata kodu: %s" -#: js/messages.php:359 +#: js/messages.php:360 #, php-format msgid "Error text: %s" msgstr "Hata metni: %s" -#: js/messages.php:360 libraries/db_common.inc.php:73 +#: js/messages.php:361 libraries/db_common.inc.php:73 #: libraries/db_table_exists.lib.php:33 libraries/server_databases.lib.php:462 msgid "No databases selected." msgstr "Seçilen veritabanları yok." -#: js/messages.php:361 +#: js/messages.php:362 msgid "Dropping column" msgstr "Sütun kaldırılıyor" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Adding primary key" msgstr "Birincil anahtar ekleniyor" -#: js/messages.php:363 +#: js/messages.php:364 #: 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,166 +1763,166 @@ msgstr "Birincil anahtar ekleniyor" msgid "OK" msgstr "TAMAM" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Click to dismiss this notification" msgstr "Bu bildiriyi reddetmek için tıklayın" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Renaming databases" msgstr "Veritabanları yeniden adlandırılıyor" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Copying database" msgstr "Veritabanı kopyalanıyor" -#: js/messages.php:369 +#: js/messages.php:370 msgid "Changing charset" msgstr "Karakter grubu değiştiriliyor" -#: js/messages.php:373 libraries/Util.php:3289 +#: js/messages.php:374 libraries/Util.php:3289 msgid "Enable foreign key checks" msgstr "Dış anahtar kontrollerini etkinleştir" -#: js/messages.php:376 +#: js/messages.php:377 msgid "Failed to get real row count." msgstr "Gerçek satır sayısını alma başarısız." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Searching" msgstr "Aranıyor" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide search results" msgstr "Arama sonuçlarını gizle" -#: js/messages.php:381 +#: js/messages.php:382 msgid "Show search results" msgstr "Arama sonuçlarını göster" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Browsing" msgstr "Gözatılıyor" -#: js/messages.php:383 +#: js/messages.php:384 msgid "Deleting" msgstr "Siliniyor" -#: js/messages.php:387 +#: js/messages.php:388 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Depolanan işlevin tanımı RETURN ifadesi içermek zorunda!" -#: js/messages.php:388 libraries/DisplayResults.php:4832 -#: libraries/DisplayResults.php:5091 libraries/Menu.php:347 -#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3709 -#: libraries/Util.php:3710 libraries/Util.php:4328 libraries/Util.php:4343 -#: libraries/Util.php:4360 libraries/config/messages.inc.php:254 +#: js/messages.php:389 libraries/DisplayResults.php:4850 +#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 +#: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 +#: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2448 -#: libraries/server_privileges.lib.php:2527 -#: libraries/server_privileges.lib.php:2873 -#: libraries/server_privileges.lib.php:3532 -#: libraries/server_status_monitor.lib.php:321 prefs_manage.php:306 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2875 +#: libraries/server_privileges.lib.php:3543 +#: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 msgid "Export" msgstr "Dışa aktar" -#: js/messages.php:391 libraries/rte/rte_routines.lib.php:742 +#: js/messages.php:392 libraries/rte/rte_routines.lib.php:742 msgid "ENUM/SET editor" msgstr "ENUM/SET düzenleyicisi" -#: js/messages.php:392 +#: js/messages.php:393 #, php-format msgid "Values for column %s" msgstr "%s sütunu için değerler" -#: js/messages.php:393 +#: js/messages.php:394 msgid "Values for a new column" msgstr "Yeni bir sütun için değerler" -#: js/messages.php:394 +#: js/messages.php:395 msgid "Enter each value in a separate field." msgstr "Her bir değeri ayrı alana girin." -#: js/messages.php:395 +#: js/messages.php:396 #, php-format msgid "Add %d value(s)" msgstr "%d değer ekle" -#: js/messages.php:399 +#: js/messages.php:400 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Not: Eğer dosya çoklu tablolar içeriyorsa, bunlar bir tane içinde " "birleştirilecektir." -#: js/messages.php:403 +#: js/messages.php:404 msgid "Hide query box" msgstr "Sorgu kutusunu gizle" -#: js/messages.php:404 +#: js/messages.php:405 msgid "Show query box" msgstr "Sorgu kutusunu göster" -#: js/messages.php:405 libraries/Console.php:88 libraries/Console.php:217 -#: libraries/DisplayResults.php:3457 libraries/DisplayResults.php:4816 +#: js/messages.php:406 libraries/Console.php:88 libraries/Console.php:217 +#: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4834 #: libraries/Index.php:721 libraries/Util.php:727 libraries/Util.php:1238 -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:119 +#: libraries/server_user_groups.lib.php:121 #: libraries/server_variables.lib.php:242 #: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 msgid "Edit" msgstr "Düzenle" -#: js/messages.php:406 libraries/Console.php:89 libraries/DbSearch.php:360 -#: libraries/DisplayResults.php:3526 libraries/DisplayResults.php:4800 +#: js/messages.php:407 libraries/Console.php:89 libraries/DbSearch.php:360 +#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4818 #: libraries/central_columns.lib.php:854 #: libraries/central_columns.lib.php:1200 libraries/display_export.lib.php:227 -#: libraries/server_user_groups.lib.php:129 -#: libraries/sql_query_form.lib.php:416 libraries/tracking.lib.php:480 +#: libraries/server_user_groups.lib.php:131 +#: libraries/sql_query_form.lib.php:417 libraries/tracking.lib.php:490 #: setup/frames/index.inc.php:187 setup/frames/index.inc.php:295 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Sil" -#: js/messages.php:407 libraries/DisplayResults.php:915 -#: libraries/DisplayResults.php:923 +#: js/messages.php:408 libraries/DisplayResults.php:919 +#: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d geçerli bir satır sayısı değil." -#: js/messages.php:408 -#: libraries/controllers/table/TableSearchController.php:435 -#: libraries/controllers/table/TableSearchController.php:920 -#: libraries/sql.lib.php:193 tbl_change.php:159 +#: js/messages.php:409 +#: libraries/controllers/table/TableSearchController.php:432 +#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "Dış değerlere gözat" -#: js/messages.php:409 +#: js/messages.php:410 msgid "No auto-saved query" msgstr "Otomatik kaydedilmiş sorgu yok" -#: js/messages.php:410 +#: js/messages.php:411 #, php-format msgid "Variable %d:" msgstr "Değişken %d:" -#: js/messages.php:413 libraries/normalization.lib.php:889 +#: js/messages.php:414 libraries/normalization.lib.php:889 msgid "Pick" msgstr "Seç" -#: js/messages.php:414 +#: js/messages.php:415 msgid "Column selector" msgstr "Sütun seçici" -#: js/messages.php:415 +#: js/messages.php:416 msgid "Search this list" msgstr "Bu listede ara" -#: js/messages.php:417 +#: js/messages.php:418 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1926,15 +1931,15 @@ msgstr "" "Merkezi listede hiç sütun yok. %s veritabanı için Merkezi sütunlar " "listesinin şu anki tabloda bulunmayan sütunlara sahip olduğundan emin olun." -#: js/messages.php:420 +#: js/messages.php:421 msgid "See more" msgstr "Daha fazlasına bakın" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Are you sure?" msgstr "Emin misiniz?" -#: js/messages.php:423 +#: js/messages.php:424 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1942,51 +1947,51 @@ msgstr "" "Bu eylem bazı sütunların tanımını değiştirebilir.
Devam etmek " "istediğinize emin misiniz?" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "Devam" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "Birincil anahtar ekle" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "Birincil anahtar eklendi." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "Sizi sonraki adıma götürüyor…" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Normalleştirmenin ilk adımı '%s' tablosu için tamamlandı." -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "Adım sonu" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "Normalleştirmenin ikinci adımı (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Bitti" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "Kısmi bağımlılıkları doğrula" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "Seçilen kısmi bağımlılıkları aşağıdaki gibidir:" -#: js/messages.php:440 +#: js/messages.php:441 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1995,19 +2000,19 @@ msgstr "" "belirleyebilen a ve b sütunlarının beraber birleştirilmiş değerlerini ifade " "eder." -#: js/messages.php:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "Seçilen kısmi bağımlılıklar yok!" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "Tablodaki veriye dayanarak olası kısmi bağımlılıkları bana göster" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "Kısmi bağımlılıklar listesini gizle" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2015,170 +2020,170 @@ msgstr "" "Sıkı durun! Tablonun veri boyutuna ve sütun sayısına bağlı olarak birkaç " "saniye sürebilir." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "Adım" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "Aşağıdaki eylemler gerçekleştirilecektir:" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "%s sütunlarını %s tablosundan KALDIR" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "Aşağıdaki tabloyu oluştur" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "Normalleştirmenin üçüncü adımı (3NF)" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "Karşılıklı bağımlılıkları onayla" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "Seçilen bağımlılıklar aşağıdaki gibidir:" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "Seçilen bağımlılıklar yok!" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Kaydet" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Arama kriterini gizle" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Arama kriterini göster" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "Aralığı arama" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "En fazla sütun:" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "En az sütun:" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "En az değer:" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "En fazla değer:" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "Bul ve değiştir kriterini gizle" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "Bul ve değiştir kriterini göster" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "Her nokta bir veri satırını temsil eder." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "Noktanın üzerinde durmak etiketini gösterecektir." -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Yakınlaştırmak için fare ile çizimin bir bölümünü seçin." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" "Orijinal durumuna geri gelmesi için yakınlaştırmayı sıfırla düğmesine " "tıklayın." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Veri satırını mümkün olduğunca düzenlemek ve görmek için veri noktasına " "tıklayın." -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Çizim en alt sağ köşe boyunca sürüklenerek yeniden boyutlandırılabilir." -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "İki sütun seçin" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "İki farklı sütun seçin" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "Veri imleci içeriği" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Yoksay" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Kopyala" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Nokta" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Satır dizgisi" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Poligon" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometri" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "İç halka" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "Dış halka" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "Şifreleme anahtarını kopyalamak istiyor musunuz?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "Şifreleme anahtarı" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2186,24 +2191,24 @@ msgstr "" "Bu sayfada yaptığınız değişiklikleri gösterir; değişiklikleri terk etmeden " "önce onay için size sorulacaktır" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Kaynak gösterilen anahtarı seç" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Dış Anahtarı seç" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "Lütfen birincil anahtarı veya benzersiz anahtarı seçin!" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Göstermek için sütun seçin" -#: js/messages.php:532 +#: js/messages.php:533 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?" @@ -2211,77 +2216,77 @@ msgstr "" "Değişiklikleri yerleşime kaydetmediniz. Eğer bunları kaydetmezseniz, " "kaybolacaklardır. Devam etmek istiyor musunuz?" -#: js/messages.php:535 +#: js/messages.php:536 msgid "Page name" msgstr "Sayfa adı" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Sayfayı kaydet" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Sayfayı farklı kaydet" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Sayfayı aç" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "Sayfayı sil" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Başlıksız" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "Lütfen devam etmek için bir sayfa seçin" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "Lütfen geçerli bir sayfa adı girin" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "Şu anki sayfada değişiklikleri kaydetmek istiyor musunuz?" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "Sayfa başarılı olarak silindi" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "Bağlantılı şemayı dışa aktar" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Değişiklikler kaydedildi" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "\"%s\" sütunu için bir seçenek ekleyin." -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "%d nesne oluşturuldu." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Gönder" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "Düzenlemeyi iptal etmek için Esc tuşuna basın." -#: js/messages.php:557 +#: js/messages.php:558 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?" @@ -2289,15 +2294,15 @@ msgstr "" "Bazı verileri düzenlediniz ve kaydedilmediler. Veriyi kaydetmeden önce bu " "sayfadan ayrılmak istediğinize emin misiniz?" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "Yen.düzenleme için sürükleyin." -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "Sonuçları bu sütuna göre sıralamak için tıklayın." -#: js/messages.php:563 +#: js/messages.php:564 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 " @@ -2307,27 +2312,27 @@ msgstr "" "+Tıklayın.
- Sütunu ORDER BY ibaresinden kaldırmak için Ctrl+Tıklayın " "ya da Alt+Tıklayın (Mac: Shift+Option+Tıklayın)" -#: js/messages.php:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "İşaretlemek/işareti kaldırmak için tıklayın." -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "Sütun adını kopyalamak için çift tıklayın." -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" "Sütunların görünürlüğünü değiştirmek
için aşağı açılır okuna tıklayın." -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Tümünü göster" -#: js/messages.php:574 +#: js/messages.php:575 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." @@ -2336,12 +2341,12 @@ msgstr "" "Düzenle, Kopyala ve Sil bağlantıları ile ilgili özellikler kaydedildikten " "sonra çalışmayabilir." -#: js/messages.php:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Lütfen geçerli bir onaltılık dizgi girin. Geçerli karakterler 0-9, A-F." -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2349,129 +2354,96 @@ msgstr "" "Satırların tümünü gerçekten görmek istiyor musunuz? Büyük bir tablo için bu, " "tarayıcıyı çökertebilir." -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "Orijinal uzunluk" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "iptal" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "İptal edilen" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "Başarılı" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "İçe aktarma durumu" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Dosyaları buraya bırakın" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "Önce veritabanını seçin" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Aynı zamanda çoğu değeri, onlara doğrudan
çift tıklayarak " "düzenleyebilirsiniz." -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Aynı zamanda çoğu değeri, onlara doğrudan
tıklayarak " "düzenleyebilirsiniz." -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "Bağlantıya git:" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "Sütun adını kopyala." -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "Sütun adını panonuza kopyalamak için sağ tuşa tıklayın." -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Parola üret" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Üret" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "Daha fazla" -#: js/messages.php:623 +#: js/messages.php:624 msgid "Show panel" msgstr "Paneli göster" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "Paneli gizle" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "Gizli gezinti ağacı öğelerini göster." -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "Ana panel ile bağla" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "Ana panel ile bağlantıyı kopar" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" -"Sunucudaki tüm veritabanlarını süzmek için bir arama terimi girdikten sonra " -"Enter tuşuna basın" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" -"Veritabanındaki tüm %s süzmek için bir arama terimi girdikten sonra Enter " -"tuşuna basın" - #: js/messages.php:632 -msgid "tables" -msgstr "tablo" - -#: js/messages.php:633 -msgid "views" -msgstr "görünüm" - -#: js/messages.php:634 -msgid "procedures" -msgstr "yordam" - -#: js/messages.php:635 -msgid "events" -msgstr "olay" - -#: js/messages.php:636 -msgid "functions" -msgstr "işlev" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "İstenen sayfa geçmişte bulunamadı, süresi dolmuş olabilir." -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2481,27 +2453,27 @@ msgstr "" "%s, %s tarihinde yayınlandı." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", son sağlam sürüm:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "güncel" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "Görünüm oluştur" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "Hata raporu gönder" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "Hata raporu gönder" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2509,15 +2481,15 @@ msgstr "" "Önemli bir JavaScript hatası meydana geldi. Bir hata raporu göndermek ister " "misiniz?" -#: js/messages.php:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "Rapor ayarlarını değiştir" -#: js/messages.php:660 +#: js/messages.php:652 msgid "Show report details" msgstr "Rapor ayrıntılarını göster" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2525,7 +2497,7 @@ msgstr "" "Dışa aktarmanız PHP seviyesindeki düşük çalıştırma süresinden dolayı " "tamamlanmadı!" -#: js/messages.php:667 +#: js/messages.php:659 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2534,58 +2506,58 @@ msgstr "" "Uyarı: bu sayfadaki form %d alandan daha fazlasına sahip. Gönderimde, bazı " "alanlar, PHP'nin max_input_vars yapılandırmasından dolayı yoksayılabilir." -#: js/messages.php:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "Sunucu üzerinde bazı hatalar algılandı!" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "Lütfen bu pencerenin altına bakın." -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "Tümünü Yoksay" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "Ayarlarınıza göre, bunlar şu anda gönderiliyor, lütfen sabırlı olun." -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "Bu sorgu tekrar çalıştırılsın mı?" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "Bu yer imini silmek istediğinize emin misiniz?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "SQL hata ayıklama bilgisi alınırken bazı hatalar meydana geldi." -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s sorguları %s defa %s saniye içinde çalıştırıldı." -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "%s bağımsız değişken(ler)i geçti" -#: js/messages.php:707 +#: js/messages.php:699 msgid "Show arguments" msgstr "Bağımsız değişkenleri göster" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "Bağımsız değişkenleri gizle" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "Aldığı süre:" -#: js/messages.php:711 +#: js/messages.php:703 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 " @@ -2595,291 +2567,291 @@ msgstr "" "sınırına ulaşıldı, bazı özellikler sizin için düzgün çalışmayabilir. " "Safari'de, böyle bir soruna genellikle \"Kişiye Özel Kip Tarama\" neden olur." -#: js/messages.php:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "Önceki" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "Sonraki" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Bugün" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "Ocak" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "Şubat" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "Mart" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "Nisan" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Mayıs" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "Haziran" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "Temmuz" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "Ağustos" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "Eylül" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "Ekim" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "Kasım" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "Aralık" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Oca" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Şub" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Nis" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Haz" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Tem" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Ağu" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Eyl" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Eki" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Kas" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Ara" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "Pazar" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "Pazartesi" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "Salı" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "Çarşamba" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "Perşembe" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "Cuma" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "Cumartesi" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "Paz" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Ptesi" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Sal" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Çar" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Per" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Cum" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Ctesi" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "Pz" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "Pt" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "Sa" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "Ça" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "Pe" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "Cu" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "Ct" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "Hs" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Saat" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Dakika" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Saniye" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "Bu alan gereklidir" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "Lütfen bu alanı düzeltin" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "Lütfen geçerli bir eposta adresi girin" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "Lütfen geçerli bir URL girin" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "Lütfen geçerli bir tarih girin" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "Lütfen geçerli bir tarih (ISO) girin" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "Lütfen geçerli bir sayı girin" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "Lütfen geçerli bir kredi kartı numarası girin" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "Lütfen sadece rakam girin" @@ -2887,41 +2859,41 @@ msgstr "Lütfen sadece rakam girin" msgid "Please enter the same value again" msgstr "Lütfen aynı değeri tekrar girin" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "Lütfen {0} karakterden daha fazla girmeyin" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "Lütfen en az {0} karakter girin" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "Lütfen {0} ve {1} karakter uzunluğu arasında bir değer girin" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "Lütfen {0} ve {1} arasında bir değer girin" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "Lütfen {0} değerinden küçük ya da eşit bir değer girin" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "Lütfen {0} değerinden büyük ya da eşit bir değer girin" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "Lütfen geçerli bir tarih veya saat girin" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "Lütfen geçerli bir ONALTILIK girdi değeri girin" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Hata" @@ -3009,11 +2981,12 @@ msgstr "Yeniden sorgula" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3055,7 +3028,7 @@ msgstr "Şu anki oturum sırasında" msgid "Explain" msgstr "Açıkla" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Profil çıkart" @@ -3089,8 +3062,8 @@ msgid "History" msgstr "Geçmiş" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3237,7 +3210,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Koyu temaya değiştir" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3245,26 +3218,26 @@ msgstr "" "Sunucu yanıt vermiyor (ya da yerel MySQL sunucusunun soketi doğru olarak " "yapılandırılmadı)." -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "Sunucu yanıt vermiyor." -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "Lütfen veritabanını içeren dizinin yetkilerini kontrol edin." -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Ayrıntılar…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Yapılandırma dosyanız içinde tanımlanmış denetim kullanıcıları için bağlantı " "başarısız oldu." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3274,8 +3247,8 @@ msgstr "" msgid "Ascending" msgstr "Küçükten Büyüğe" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3418,8 +3391,8 @@ msgstr[0] "%2$s tablosu içerisinde %1$s eşleşme" msgstr[1] "%2$s tablosu içerisinde %1$s eşleşme" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3461,119 +3434,120 @@ msgstr "Tüm seçimi kaldır" msgid "Inside column:" msgstr "İç sütun:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "Düzenlenen veriyi kaydet" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "Sütun düzenini geri yükle" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "Satırları süz" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "Bu tabloda ara" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "Başlangıç" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "Önceki" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "Sonraki" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "Son" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Tümü" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Satır sayısı:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Anahtara göre sırala" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "Kısmi metinler" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "Tam metinler" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Bağlantılı anahtar" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 msgid "Display column for relations" msgstr "Bağlantılar için sütunu görüntüle" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "İkili değer içerikleri göster" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "BLOB içerikleri göster" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "Tarayıcı dönüşümünü gizle" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "Çok İyi Bilinen Metin" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "Çok İyi Bilinen İkili Değer" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "Satır silindi." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Sonlandır" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Yaklaşık olabilir. [doc@faq3-11]SSS 3.11[/doc]'e bakın." -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "SQL sorgunuz başarılı olarak çalıştırıldı." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3581,64 +3555,64 @@ msgid "" msgstr "" "Bu görünüm en az bu satır sayısı kadar olur. Lütfen %sbelgeden%s yararlanın." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "Gösterilen satır %1s - %2s" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d toplam, %2$d sorguda" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "toplam %d" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "Sorgu %01.4f saniye sürdü." -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Seçilileri:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 msgid "Check all" msgstr "Tümünü işaretle" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Baskı görünümü" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Sorgu sonuçları işlemleri" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Çizelge göster" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "GIS verisini görselleştir" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "Bağlantı bulunamadı!" @@ -3733,19 +3707,19 @@ msgstr "Tanımlı indeks yok!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "İndeksler" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3754,24 +3728,24 @@ msgid "Action" msgstr "Eylem" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Anahtar adı" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Benzersiz" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Paketlendi" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Önemlilik" @@ -3779,8 +3753,8 @@ msgstr "Önemlilik" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3790,8 +3764,8 @@ msgid "Collation" msgstr "Karşılaştırma" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3807,15 +3781,15 @@ msgstr "Birincil anahtar kaldırıldı." msgid "Index %s has been dropped." msgstr "%s indeksi kaldırıldı." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Kaldır" @@ -3854,12 +3828,13 @@ msgstr "Görünüm" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3867,7 +3842,7 @@ msgstr "Tablo" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3876,8 +3851,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3885,41 +3860,41 @@ msgid "Search" msgstr "Ara" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Ekle" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Yetkiler" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "İşlemler" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "İzleme" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3930,16 +3905,16 @@ msgstr "Tetikleyiciler" msgid "Database seems to be empty!" msgstr "Veritabanı boş olarak görünüyor!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Sorgu" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Yordamlar" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3947,20 +3922,20 @@ msgstr "Yordamlar" msgid "Events" msgstr "Olaylar" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Tasarımcı" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "Merkezi sütunlar" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Veritabanları" @@ -3969,33 +3944,33 @@ msgid "User accounts" msgstr "Kullanıcı hesapları" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "İkili değer günlüğü" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Kopya etme" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Değişkenler" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Karakter Grupları" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Motorlar" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "Eklentiler" @@ -4291,7 +4266,7 @@ msgstr "İndeks'i PRIMARY olarak yeniden adlandıramazsınız!" msgid "No index parts defined!" msgstr "Tanımlı indeks kısımları yok!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4767,37 +4742,37 @@ msgstr "%s işlevselliği bilinen bir hata tarafından zarar görmüş, bakını msgid "Click to toggle" msgstr "Değiştirmek için tıklayın" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Bilgisayara gözat:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Web sunucusu gönderme dizininden %s seçin:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Gönderme işi için ayarladığınız dizine ulaşılamıyor." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "Göndermek için hiç dosya yok!" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Boşalt" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "Çalıştır" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Yazdır" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "Kullanıcılar" @@ -4959,8 +4934,8 @@ msgid "Add new column" msgstr "Yeni sütun ekle" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5029,19 +5004,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "%s %s veya sonrasına yükseltmelisiniz." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "Hata: Belirteç uyuşmazlığı" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS üzerine yazma girişimi" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "olası kötüye kullanma" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "sayısal tuş algılandı" @@ -5891,7 +5866,7 @@ msgid "Remember file name template" msgstr "Dosya adı şablonunu hatırla" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT değeri ekle" @@ -5930,7 +5905,7 @@ msgstr "phpMyAdmin yapılandırma depolamasından ilgili üstveriyi içe aktar" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "%s ekle" @@ -7651,7 +7626,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "Sorgu kutusunun sunuşundan sonra ekranda kalıp kalmamasını tanımlar." -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "Sorgu kutusunu tut" @@ -7956,101 +7931,33 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "OpenDocument Metni" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "Sık Kullanılan Listesi dolu!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "%s tablosu boşaltıldı." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "%s görünümü kaldırıldı." -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "%s tablosu kaldırıldı." -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "Sık Kullanılan Listesi dolu!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "bilinmiyor" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "'%s' adı MySQL'e ayrılmış anahtar kelimedir." -msgstr[1] "'%s' adları MySQL'e ayrılmış anahtar kelimelerdir." - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "Seçilen sütun yok." - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "Sütunlar başarılı olarak taşındı." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "%1$s tablosu başarılı olarak değiştirildi." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "Sorgu hatası" - -#: libraries/controllers/TableStructureController.php:967 -#, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "%1$s tablosu başarılı olarak değiştirildi. Yetkiler ayarlandı." - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Değiştir" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Index" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "Uzaysal" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Tam metin" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "Belirgin değerler" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8064,6 +7971,14 @@ msgstr "Tabloda çizmek için sayısal sütunlar mevcut değil." msgid "No data to display" msgstr "Görüntülemek için veri yok" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "%1$s tablosu başarılı olarak değiştirildi." + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "Sütun görüntüleme başarılı olarak güncellendi." @@ -8072,19 +7987,79 @@ msgstr "Sütun görüntüleme başarılı olarak güncellendi." msgid "Internal relations were successfully updated." msgstr "İç bağlantılar başarılı olarak güncellendi." -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "Tablo arama" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "Odaklı arama" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Bul ve değiştir" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "'%s' adı MySQL'e ayrılmış anahtar kelimedir." +msgstr[1] "'%s' adları MySQL'e ayrılmış anahtar kelimelerdir." + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "Seçilen sütun yok." + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "Sütunlar başarılı olarak taşındı." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "Sorgu hatası" + +#: libraries/controllers/table/TableStructureController.php:975 +#, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "%1$s tablosu başarılı olarak değiştirildi. Yetkiler ayarlandı." + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Değiştir" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Index" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "Uzaysal" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Tam metin" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "Belirgin değerler" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8094,7 +8069,7 @@ msgstr "%s uzantısı eksik. Lütfen PHP yapılandırmanızı kontrol edin." msgid "possible deep recursion attack" msgstr "olası aşırı özyinelemeli saldırı" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Değişiklik yok" @@ -8163,7 +8138,7 @@ msgstr "Oluştur" msgid "Create database:" msgstr "Veritabanı oluştur:" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Yetkiniz yok" @@ -8899,65 +8874,65 @@ msgid "Dump has been saved to file %s." msgstr "Döküm, %s dosyasına kaydedildi." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL boş bir sonuç kümesi döndürdü (yani sıfır satır)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "[ROLLBACK meydana geldi.]" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Aşağıdaki yapılar ya oluşturuldu ya da değiştirildi. Buyurun:" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "Adına tıklayarak yapının içeriklerini görün." -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Uyan \"Seçenekler\" bağlantısına tıklayarak bunun herhangi bir ayarını " "değiştirin." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "Aşağıdaki \"Yapı\" bağlantısıyla yapısını düzenleyin." -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "Şu veritabanına git: %s" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "%s için ayarları düzenle" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "Şu tabloya git: %s" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "%s yapısı" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "Şu görünüme git: %s" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "Sadece tek tablo UPDATE ve DELETE sorguları benzetilebilir." -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8965,7 +8940,7 @@ msgstr "" "Sadece işlem motoru tablolarını içeren INSERT, UPDATE, DELETE ve REPLACE SQL " "sorguları geri döndürülebilir." -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr " %s sütunda indeks oluştur" @@ -8988,73 +8963,73 @@ msgstr "İşlev" msgid "Binary" msgstr "İkili Değer" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "Uzunluğu nedeniyle,
bu sütun düzenlenebilir olmayabilir." -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "İkili değer - düzenlemeyin" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Veya" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "web sunucusu gönderme dizini:" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "Düzenle/Ekle" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "%s satırla eklemeye devam et" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "ve ondan sonra" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Yeni satır olarak ekle" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "Yeni satır olarak ekle ve hataları yoksay" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "Ekleme sorgusunu göster" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Önceki sayfaya geri dön" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Yeni başka bir satır ekle" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Bu sayfaya geri dön" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Sonraki satırı düzenle" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" "Değerden değere geçmek için TAB tuşunu veya herhangi bir yere gitmek için " "CTRL+ok tuşlarını kullanın." -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9066,11 +9041,11 @@ msgstr "" msgid "Value" msgstr "Değer" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "SQL sorgusu gösteriliyor" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "Eklenen satır id: %1$d" @@ -9086,35 +9061,35 @@ msgstr "Yok" msgid "Convert to Kana" msgstr "Kana'ya dönüştür" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "Başarılı!" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "Tablo ön ekini değiştir:" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "Tabloyu ön eki ile kopyala:" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "Buradan" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "Buraya" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "Tablo ön eki ekle:" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "Ön ek ekle" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "Aşağıdaki sorguya çalıştırmak istiyor musunuz?" @@ -9332,8 +9307,8 @@ msgstr "Yordamlar:" msgid "Views:" msgstr "Görünümler:" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Göster" @@ -9373,18 +9348,15 @@ msgstr[0] "%s sonuç bulundu" msgstr[1] "%s sonuç bulundu" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" -msgstr "Veritabanlarını adına ya da düzenli ifadesine göre süz" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 msgid "Clear fast filter" msgstr "Hızlı süzgeci temizle" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "Adına ya da düzenli ifadesine göre süz" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "Tümünü daralt" @@ -9801,7 +9773,7 @@ msgstr "Veritabanını şuna yeniden adlandır" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9812,7 +9784,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "Yetkileri ayarla" @@ -9830,18 +9802,18 @@ msgstr "Veritabanını kaldır" msgid "Drop the database (DROP)" msgstr "Veritabanını kaldır (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Sadece yapı" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Yapı ve veri" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Sadece veri" @@ -9853,7 +9825,7 @@ msgstr "Veritabanını şuraya kopyala" msgid "CREATE DATABASE before copying" msgstr "Kopyalamadan önce VERİTABANI OLUŞTUR" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Kısıtlamaları ekle" @@ -9893,157 +9865,157 @@ msgstr "Depolama Motoru" msgid "Change all column collations" msgstr "Tüm sütun karşılaştırmalarını değiştir" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Tabloyu şuna (veritabanı.tablo) kopyala" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Kopyalanmış tabloya geç" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Tablo bakımı" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Tabloyu çözümle" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Tabloyu kontrol et" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 msgid "Checksum table" msgstr "Sağlama tablosu" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Tabloyu birleştir" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "%s tablosu temizlendi." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "Tabloyu temizle (FLUSH)" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Tabloyu uyarla" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Tabloyu onar" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "Tabloyu veya veriyi sil" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "Tabloyu boşalt (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "Tabloyu sil (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Çözümle" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Seç" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Uyarla" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Yeniden Oluştur" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Onar" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "Kes" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 msgid "Coalesce" msgstr "Birleştir" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "Bölüm bakımı" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "Bölüm %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "Bölümlemeyi kaldır" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "İlgili bütünlük kontrolü:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Tablo aynısına taşınamıyor!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Tablo aynısına kopyalanamıyor!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "%s tablosu %s üzerine taşındı. Yetkiler ayarlandı." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "%s tablosu %s üzerine kopyalandı. Yetkiler ayarlandı." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "%s tablosu %s üzerine taşındı." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "%s tablosu %s üzerine kopyalandı." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Tablo adı boş!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "Bu biçim seçeneğe sahip değil" @@ -10218,7 +10190,7 @@ msgstr "Veri dökümü seçenekleri" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Tablo döküm verisi" @@ -10242,21 +10214,21 @@ msgstr "Tanım" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Tablo için tablo yapısı" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Görünüm yapısı" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Görünüm yapısı durumu" @@ -10346,7 +10318,7 @@ msgid "Database:" msgstr "Veritabanı:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "Veri:" @@ -10447,7 +10419,7 @@ msgid "Data creation options" msgstr "Veri oluşturma seçenekleri" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "Eklemeden önce tabloyu kes" @@ -10531,8 +10503,8 @@ msgstr "Görünüşe göre veritabanınız yordamları kullanmakta;" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" "kodadını dışa aktarma, her durumda güvenilir bir şekilde çalışmayabilir." @@ -10541,81 +10513,81 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "Görünüşe göre veritabanınız işlevleri kullanmakta;" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 msgid "Metadata" msgstr "Üstveri" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "%s için üstveri" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Oluşturma:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Son güncelleme:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Son kontrol:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "kullanımda" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "Görünüşe göre veritabanınız görünümleri kullanmakta;" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Dökümü yapılmış tablolar için kısıtlamalar" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Tablo kısıtlamaları" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "Dökümü yapılmış tablolar için indeksler" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "Tablo için indeksler" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "Dökümü yapılmış tablolar için AUTO_INCREMENT değeri" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "Tablo için AUTO_INCREMENT değeri" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "TABLO MIME TÜRLERİ" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "TABLO BAĞLANTILARI" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "Görünüşe göre tablonuz tetikleyicileri kullanmakta;" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "Görünüm yapısı %s bir tablo olarak dışa aktarıldı" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "Veri okunması hatası:" @@ -10857,9 +10829,9 @@ msgstr "Bağlantılı şema" msgid "Table of contents" msgstr "İçerik tablosu" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Ekstra" @@ -11079,47 +11051,47 @@ msgstr "Sözdizimi vurgulamalı JSON gibi metni biçimlendirir." msgid "Formats text as XML with syntax highlighting." msgstr "Sözdizimi vurgulamalı XML gibi metni biçimlendirir." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Hata: bağlantı zaten var." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "FOREIGN KEY bağlantısı eklendi." -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Hata: FOREIGN KEY bağlantısı eklenemedi!" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "Hata: Sütun(lar)da indeks eksik." -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "Hata: Bağlantılı özellikler etkisizleştirildi!" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "İç bağlantı eklendi." -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 msgid "Error: Internal relation could not be added!" msgstr "Hata: İç bağlantı eklenemedi!" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 msgid "FOREIGN KEY relation has been removed." msgstr "FOREIGN KEY bağlantısı kaldırıldı." -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Hata: FOREIGN KEY bağlantısı kaldırılamadı!" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 msgid "Error: Internal relation could not be removed!" msgstr "Hata: İç bağlantı kaldırılamadı!" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "İç bağlantı kaldırıldı." @@ -11166,68 +11138,68 @@ msgstr "" "Lütfen column_info tablonuzun nasıl güncelleneceğini öğrenmek için belgelere " "bakın. " -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "İşaretlenmiş SQL sorgusu" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL geçmişi" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "Sürekli son kullanılan tablolar" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 msgid "Persistent favorite tables" msgstr "Sürekli sık kullanılan tablolar" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "Sürekli tabloların KA tercihleri" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "Kullanıcı tercihleri" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "Yapılandırılabilir menüler" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "Gezinti öğelerini gizle/göster" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "Örnekle Sorgulama aramalarını kaydetme" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "Sütunların Merkezi listesi yönetimi" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "Tasarımcı Ayarlarını Hatırlama" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 msgid "Saving export templates" msgstr "Dışa aktarma şablonlarını kaydetme" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "Gelişmiş özellikleri ayarlamak için hızlı adımlar:" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "Gerekli tabloları %screate_tables.sql ile oluşturun." -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "Pma kullanıcısı oluşturun ve bu tablolara erişim verin." -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -11236,17 +11208,17 @@ msgstr "" "etkinleştirin, örneğin config.sample.inc.php dosyasından " "başlayarak." -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Güncellenmiş yapılandırma dosyasını yüklemek için phpMyAdmin'e yeniden " "oturum açın." -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "Açıklama yok" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11256,7 +11228,7 @@ msgstr "" "değilsiniz. phpMyAdmin yapılandırma depolamasını ayarlamak için herhangi bir " "veritabanının 'İşlemler' sekmesine gidebilirsiniz." -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11265,14 +11237,14 @@ msgstr "" "Önce 'phpmyadmin' adında bir veritabanı %soluşturun%s ve orada phpMyAdmin " "yapılandırma depolama tablolarını ayarlayın." -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" "Şu anki veritabanında phpMyAdmin yapılandırma depolaması %soluşturun%s." -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "Eksik phpMyAdmin yapılandırma depolama tablolarını %soluşturun%s." @@ -11464,8 +11436,8 @@ msgstr "Kullanıcı adı:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Kullanıcı Adı" @@ -11473,7 +11445,7 @@ msgstr "Kullanıcı Adı" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Parola" @@ -12099,7 +12071,7 @@ msgstr[1] "%1$d veritabanı başarılı olarak kaldırıldı." msgid "Plugin" msgstr "Eklenti" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Sürüm" @@ -12107,100 +12079,96 @@ msgstr "Sürüm" msgid "Author" msgstr "Hazırlayan" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "Lisans" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "etkisizleştirildi" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Yetkiniz yok." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "GRANT hariç tüm yetkileri içerir." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Veri okunmasına izin verir." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Verinin eklenmesine ve yerinin değiştirilmesine izin verir." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Veri değiştirilmesine izin ver." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Veri silinmesine izin verir." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Yeni veritabanları ve tabloların oluşturulmasına izin verir." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Veritabanları ve tabloların kaldırılmasına izin verir." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Sunucu ayarlarının yeniden yüklenmesine ve sunucunun önbelleğinin " "temizlenmesine izin verir." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Sunucunun kapatılmasına izin ver." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "Tüm kullanıcıların işlemlerini görüntülemeye izin verir." #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "Verinin içe ve dışa aktarılmasına izin verir." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "Bu MySQL sürümünde etkisi yoktur." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "İndekslerin oluşturulmasına ve kaldırılmasına izin verir." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Varolan tabloların yapısının değiştirilmesine izin verir." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Bütün veritabanı listesine erişim verir." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12211,22 +12179,22 @@ msgstr "" "gibi pek çok yönetimsel işlemler için gereklidir." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Geçici tablolar oluşturulmasına izin verir." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Şu anki işlem için tabloların kilitlenmesine izin verir." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Kopya edilen slave'ler için gereklidir." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Kullanıcılara slave / master'ların nerede olduğunu sormasına izin verir." @@ -12234,45 +12202,45 @@ msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Yeni görünümlerin oluşturulmasına izin verir." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "Olay zamanlayıcısı için olayları ayarlamaya izin verir." #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "Tetikleyicileri oluşturmaya ve kaldırmaya izin verir." #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "SHOW CREATE VIEW sorgularının yapılmasına izin verir." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Saklanan yordamların oluşturulmasına izin verir." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Saklanan yordamların değiştirilmesine ve kaldırılmasına izin verir." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Kullanıcı hesaplarının oluşturulmasına, kaldırılmasına ve yeniden " "adlandırılmasına izin verir." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Saklanan yordamların yürütülmesine izin verir." @@ -12284,8 +12252,8 @@ msgstr "Yok" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Kullanıcı grubu" @@ -12326,13 +12294,13 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Not: Bu seçeneklerin 0 (sıfır)'a ayarlanması sınırı kaldırır." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Kullanıcının saat başına sunucuya gönderebileceği sorgu sayısını sınırlar." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12341,25 +12309,25 @@ msgstr "" "veritabanını değiştiren komut sayısını sınırlar." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "Kullanıcının saat başına açabileceği yeni bağlantı sayısını sınırlar." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "Kullanıcının eşzamanlı bağlantı sayısını sınırlar." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Yordam" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12376,14 +12344,14 @@ msgstr "Bu yordamın yürütülmesine izin verir." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Tabloya özgü yetkiler" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Not: MySQL yetki adları İngilizce olarak belirtilir." @@ -12393,7 +12361,7 @@ msgid "Administration" msgstr "Yönetim" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Genel yetkiler" @@ -12402,15 +12370,15 @@ msgid "Global" msgstr "Genel" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Veritabanına özgü yetkiler" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Yeni tabloların oluşturulmasına izin verir." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Tabloların kaldırılmasına izin verir." @@ -12427,7 +12395,7 @@ msgid "Native MySQL Authentication" msgstr "Yerel MySQL Kimlik Doğrulaması" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Oturum Açma Bilgisi" @@ -12452,8 +12420,8 @@ msgstr "Anamakine adı:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 msgid "Host name" msgstr "Anamakine adı" @@ -12469,200 +12437,200 @@ msgstr "Kimlik Doğrulama Eklentisi" msgid "Password Hashing Method" msgstr "Parola Adresleme Yöntemi" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "%s için parola başarılı olarak değiştirildi." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "%s için yetkileri geri aldınız." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 msgid "Add user account" msgstr "Kullanıcı hesabı ekle" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 msgid "Database for user account" msgstr "Kullanıcı hesabı için veritabanı" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "Aynı isimle veritabanı oluşturur ve tüm yetkileri verir." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Joker isimlere tüm yetkileri ver (kullanıcıadı\\_%)." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "\"%s\" veritabanı üzerindeki tüm yetkileri verir." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\" veritabanına erişimi olan kullanıcılar" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "Kullanıcı eklendi." -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Onaylı" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "Kullanıcıları görüntülemek için yetersiz yetki." -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "Kullanıcı bulunamadı." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Herhangi" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "genel" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "Veritabanına özgü" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "joker" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "tabloya özgü" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 msgid "Edit privileges" msgstr "Yetkileri düzenle" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Geri al" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "Kullanıcı grubunu düzenle" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… eski olanı sakla." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… eski olanı kullanıcı tablolarından sil." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… eski olandan bütün aktif yetkileri geri al ve sonra da sil." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… eski olanı kullanıcı tablolarından sil ve sonra da yetkileri yeniden yükle." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "Oturum açma bilgisini değiştir / Kullanıcı hesabını kopyala" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "Aynı yetkilerle yeni bir kullanıcı hesabı oluştur ve …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Yordama özgü yetkiler" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 msgid "Remove selected user accounts" msgstr "Seçilen kullanıcı hesaplarını kaldır" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Kullanıcılardan tüm aktif yetkileri geri alır ve sonra da siler." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "Kullanıcılarla aynı isimlerde olan veritabanlarını kaldır." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "Silmek için kullanıcı seçilmedi!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Yetkiler yeniden yükleniyor" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Seçilen kullanıcılar başarılı olarak silindi." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "%s için yetkileri güncellediniz." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "%s siliniyor" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Yetkiler başarılı olarak yüklendi." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "%s kullanıcısı zaten var!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "%s için yetkiler" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Kullanıcı" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "Yeni" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 msgid "Edit privileges:" msgstr "Yetkileri düzenle:" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "Kullanıcı hesabı" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12670,11 +12638,11 @@ msgstr "" "Not: Şu anda oturum açtığınız kullanıcının yetkilerini düzenlemeye " "çalışıyorsunuz." -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "Kullanıcı hesaplarına genel bakış" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " @@ -12685,7 +12653,7 @@ msgstr "" "herhangi bir (%) anamakineden bir bağlantıya izin veriyorsa bu " "kullanıcıların bağlanmalarını önler." -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12698,7 +12666,7 @@ msgstr "" "sunucunun kullandığı yetkilerden farklı olabilir. Bu durumda devam etmeden " "önce %syetkileri yeniden yüklemeniz%s gerekir." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12712,11 +12680,11 @@ msgstr "" "yeniden yüklenmek zorundadır ancak şu anda, yetkileri YENİDEN YÜKLEMENİZ " "gerekmez." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "Seçilen kullanıcı yetki tablosunda bulunamadı." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Yeni bir kullanıcı eklediniz." @@ -12976,24 +12944,24 @@ msgstr "Yönergeler/Ayarlama" msgid "Done dragging (rearranging) charts" msgstr "Çizelgeleri sürüklemeyi (yeniden düzenlemeyi) bitir" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "Çizelgeleri sürüklemeyi etkinleştir" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "Yenileme oranı" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "Çizelge sütunu" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "Çizelge ayarlaması" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -13001,7 +12969,7 @@ msgstr "" "Çizelgelerin ayarlanması tarayıcının yerel deposunda saklanır. Eğer karışık " "ayarlamalarınız varsa, bunu dışa aktarmak isteyebilirsiniz." -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "Varsayılana sıfırla" @@ -13057,7 +13025,7 @@ msgid "Statements" msgstr "İfadeler" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "#" @@ -13082,7 +13050,7 @@ msgstr "Biçimlendirilmemiş değerleri göster" msgid "Related links:" msgstr "İlgili bağlantılar:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -13090,11 +13058,11 @@ msgstr "" "Bağlantıyı uygun bir şekilde kapatmadan sonlanmış istemcinin durdurulmuş " "bağlantılarının sayısıdır." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL sunucusuna bağlanmak için başarısız girişim sayısıdır." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13104,17 +13072,17 @@ msgstr "" "değerini aşmış ve işlemdeki ifadeleri saklamak için geçici dosya kullanmış " "işlemlerin sayısıdır." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Geçici ikili değer günlüğü önbelleğinde kullanılan işlemlerin sayısıdır." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "MySQL sunucusuna bağlantı girişimi (başarılı ya da değil) sayısıdır." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13126,11 +13094,11 @@ msgstr "" "büyük ise, geçici tabloların disk tabanlı yerine bellek tabanlı olmasına " "sebep olmak için tmp_table_size değerini arttırmak isteyebilirsiniz." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "Mysqld'nin kaç tane geçici dosya oluşturduğudur." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13138,7 +13106,7 @@ msgstr "" "İfadeler çalıştırılırken sunucu tarafından bellek içindeki geçici tabloların " "sayısı otomatik olarak oluşturuldu." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13146,7 +13114,7 @@ msgstr "" "INSERT DELAYED komutu ile yazılmış, bazı hataların meydana geldiği satır " "sayısı (muhtemelen kopya anahtar)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13154,23 +13122,23 @@ msgstr "" "Kullanımda olan INSERT DELAYED işleticisi işlem sayısı. INSERT DELAYED " "komutunu kullanan her farklı tablodan biri kendi işlemini alır." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED satır yazımı sayısıdır." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "Çalıştırılmış FLUSH ifadesi sayısıdır." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "Dahili COMMIT ifadesi sayısıdır." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "Tablodan satırın kaç kez silindiği sayısıdır." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13180,7 +13148,7 @@ msgstr "" "motorunu sorabilir. Buna keşfetme denir. Handler_discover tabloların keç kez " "keşfedildiğini gösterir." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13190,7 +13158,7 @@ msgstr "" "sunucunun çok fazla indeks taraması yapıyor olduğunu gösterir; örneğin, " "SELECT col1 FROM foo, anlaşılıyor ki col1 indekslenmiş." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -13199,7 +13167,7 @@ msgstr "" "sorgularınızın ve tablolarınızın düzgün bir şekilde indekslenmesinin iyi " "olduğu belirtisidir." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13209,7 +13177,7 @@ msgstr "" "aralık ile indeks sütununu sorguluyorsanız ya da indeks taraması " "yapıyorsanız, bu arttırılan miktardır." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -13217,7 +13185,7 @@ msgstr "" "Anahtar sırasında önceki satırı okumak için istek sayısıdır. Bu okuma " "yöntemi başlıca ORDER BY … DESC komutunu uyarlamak için kullanılır." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13230,7 +13198,7 @@ msgstr "" "fazla sorgulamalara sahipsiniz ya da anahtarları düzgün kullanılmayan " "birleştirmelere sahipsiniz." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13242,35 +13210,35 @@ msgstr "" "düzgün bir şekilde indekslenmediğinde ya da sorgularınız, sahip olduğunuz " "indeksleri çıkarına kullanmak için yazmadığında önerilir." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "Dahili ROLLBACK ifadesi sayısıdır." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "Tablo içinde satır güncellemek için istek sayısıdır." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "Tablo içinde satır eklemek için istek sayısıdır." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "Veri içeren sayfa sayısıdır (dolu veya temiz)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "Şu anki dolu sayfa sayısıdır." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Temizlenmesi için istenmiş arabellek havuz sayfa sayısıdır." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "Boş sayfa sayısıdır." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13280,7 +13248,7 @@ msgstr "" "okunan veya yazılmış ya da bazı diğer sebepler yüzünden temizlenemeyen veya " "taşınamayan sayfalardır." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13292,11 +13260,11 @@ msgstr "" "zamanda Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data değerleri gibi hesaplanabilir." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "Sayfalardaki arabellek havuzunun toplam boyutudur." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13304,7 +13272,7 @@ msgstr "" "InnoDB \"rastgele\" önden okuma başlatımı sayısıdır. Sorgu tablonun büyük " "bir kısmını taradığı zaman bu olur ama rastgele düzende." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13312,11 +13280,11 @@ msgstr "" "InnoDB sıralı önden okuma başlatımı sayısıdır. InnoDB sıralı tam tablo " "taraması yaptığı zaman bu olur." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB'nin bitirdiği veya yaptığı mantıksal okuma isteği sayısıdır." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13324,7 +13292,7 @@ msgstr "" "InnoDB'nin arabellek havuzundan tatmin olamadığı ve tek-sayfa okuması yapmak " "zorunda olduğu mantıksal okuma sayısıdır." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13338,55 +13306,55 @@ msgstr "" "durumlarını sayar. Eğer arabellek havuzu boyutu düzgün bir şekilde " "ayarlandıysa, bu değer küçük olmalıdır." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB arabellek havuzuna bitti yazma sayısıdır." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "Şimdiye kadarki fsync() işlem sayısıdır." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "Şu anki bekleyen fsync() işlem sayısıdır." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "Şu anki bekleyen okuma sayısıdır." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "Şu anki bekleyen yazma sayısıdır." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "Bayt cinsinden şimdiye kadarki veri okuma miktarıdır." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "Toplam veri okuma sayısıdır." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "Toplam veri yazma sayısıdır." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "Bayt cinsinden şimdiye kadarki yazılmış veri miktarıdır." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Bu amaç için yazılmış sayfa sayısı ve gerçekleştirilmiş çifte-yazım yazma " "sayısıdır." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" "Bu amaç için yazılmış sayfa sayısı ve gerçekleştirilmiş çifte-yazım yazma " "sayısıdır." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13394,35 +13362,35 @@ msgstr "" "Sahip olunan bekleme sayısıdır çünkü günlük arabelleği çok küçük ve devam " "etmeden önce temizlenmesi için beklemek zorundayız." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "Günlük yazma isteği sayısıdır." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "Günlük dosyasına fiziksel yazma sayısıdır." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "Günlük dosyasına bitmiş fsync() yazma sayısıdır." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "Bekleyen günlük dosyası fsyncs sayısıdır." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "Bekleyen günlük dosyası yazma sayısıdır." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "Günlük dosyasına yazılı bayt sayısıdır." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "Oluşturulmuş sayfa sayısıdır." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -13430,52 +13398,52 @@ msgstr "" "Derlenen InnoDB sayfa boyutu (varsayılan 16KB). Birçok değer sayfalarda " "sayılır; sayfa boyutu bunların kolaylıkla bayt'a dönüştürülmesine izin verir." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "Okunan sayfa sayısıdır." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "Yazılmış sayfa sayısıdır." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "Şu anki beklenen satır kilidi sayısıdır." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Milisaniye cinsinden satır kilidi elde etmek için ortalama süredir." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Milisaniye cinsinden satır kilidi elde ederken harcanmış toplam süredir." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Milisaniye cinsinden satır kilidi elde etmek için en fazla süredir." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "Satır kilidinin beklemek zorunda kaldığı süre sayısıdır." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB tablolarından silinen satır sayısıdır." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB tablolarına eklenen satır sayısıdır." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB tablolarından okunan satır sayısıdır." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB tablolarında güncellenen satır sayısıdır." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13483,7 +13451,7 @@ msgstr "" "Anahtar önbelleğindeki değiştirilmiş ama diskte henüz temizlenmemiş anahtar " "bloğu sayısıdır. Not_flushed_key_blocks olarak bilinip kullanılır." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -13492,7 +13460,7 @@ msgstr "" "önbelleğinin ne kadarının kullanımda olmasını belirlemek için " "kullanabilirsiniz." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13501,15 +13469,15 @@ msgstr "" "Anahtar önbelleğinde kullanılan blok sayısıdır. Bu değerin en uç noktada " "olması bir kerede en fazla blok sayısının kullanımda olmamasını gösterir." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "Kullanılan anahtar önbelleği yüzdesidir (hesaplanmış değer)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "Önbellekten anahtar bloğunun okunması için istek sayısıdır." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13519,7 +13487,7 @@ msgstr "" "büyükse, o zaman key_buffer_size değeriniz muhtemelen çok küçüktür. Eksik " "önbellek oranı Key_reads/Key_read_requests olarak hesaplanabilir." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -13527,21 +13495,21 @@ msgstr "" "Okuma isteklerine nazaran fiziksel okumaların oranı gibi eksik hesaplanan " "anahtar önbelleğidir (hesaplanmış değer)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "Önbelleğe anahtar bloğu yazmak için istek sayısıdır." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "Diske anahtar bloğunu fiziksel yazma sayısıdır." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Yazma isteklerine nazaran fiziksel yazmaların yüzdesidir (hesaplanmış değer)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13552,7 +13520,7 @@ msgstr "" "karşılaştırmak için yararlıdır. Varsayılan değer 0, henüz derlenmiş sorgu " "olmadığı anlamına gelir." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13560,11 +13528,11 @@ msgstr "" "Sunucunun başlatılmasından bu yana kullanımda olan eşzamanlı en fazla " "bağlantı sayısı." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "INSERT DELAYED sıralarında yazılmak için bekleyen satır sayısıdır." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13572,19 +13540,19 @@ msgstr "" "Açık olan tablo sayısıdır. Eğer açık tablolar büyükse, tablo önbellek " "değeriniz muhtemelen çok küçüktür." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "Açık olan dosya sayısıdır." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "Açık olan akış sayısıdır (başlıca günlükleme için kullanılır)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "Açık olan tablo sayısıdır." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13594,19 +13562,19 @@ msgstr "" "QUERY CACHE ifadesinin çıkmasıyla çözülebilen, parçalanma sorunlarını işaret " "edebilir." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "Sorgu önbelleği için boş bellek miktarıdır." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "Önbelleğe ulaşma sayısıdır." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "Önbelleğe eklenen sorgu sayısıdır." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13618,7 +13586,7 @@ msgstr "" "yardımcı olabilir. Önbellekten hangi sorguların kaldırılacağına karar vermek " "için sorgu önbelleği en az son kullanılmış (LRU) stratejisini kullanır." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13626,19 +13594,19 @@ msgstr "" "Önbelleklenmemiş sorgu sayısıdır (önbelleklenemez, ya da query_cache_type " "ayarından dolayı önbelleklenmedi)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "Önbellekte kayıtlı sorgu sayısıdır." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "Sorgu önbelleği içindeki toplam blok sayısıdır." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "Arıza-güvenli kopya etme durumu (henüz tamamlanmadı)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -13646,11 +13614,11 @@ msgstr "" "İndeksler kullanmayan birleştirme sayısıdır. Eğer bu değer 0 değilse, " "tablolarınızın indekslerini dikkatli olarak kontrol etmelisiniz." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "Referans tablosunda aralık araması kullanan birleştirme sayısıdır." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -13659,7 +13627,7 @@ msgstr "" "birleştirme sayısıdır. (Eğer bu değer 0 değilse, tablolarınızın indekslerini " "dikkatli olarak kontrol etmelisiniz.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13667,15 +13635,15 @@ msgstr "" "İlk tabloda aralıkları kullanan birleştirme sayısıdır. (Normal olarak " "kusurlu değildir, eğer büyükse bile.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "İlk tablonun tam taramasının yapıldığı birleştirme sayısıdır." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Slave SQL işlemi tarafından şu anki açık geçici tablo sayısıdır." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -13683,11 +13651,11 @@ msgstr "" "Kopya edilen slave SQL işleminin yeniden denediği işlerin toplam " "(başlangıçtan beri) süre sayısıdır." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Eğer sunucu master'a bağlı slave ise, bu AÇIKTIR." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -13695,12 +13663,12 @@ msgstr "" "Oluşturmak için slow_launch_time saniyeden daha uzun zaman almış işlem " "sayısıdır." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Long_query_time saniyeden daha uzun zaman almış sorgu sayısıdır." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13710,23 +13678,23 @@ msgstr "" "değer büyükse, sort_buffer_size sistem değişkeninin değerini arttırmayı " "düşünmelisiniz." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "Aralıklarla yapılmış sıralama sayısıdır." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "Sıralanmış satır sayısıdır." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "Taranan tablo tarafından yapılmış sıralama sayısıdır." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "Tablo kilidinin hemen tanındığı süre sayısıdır." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13738,7 +13706,7 @@ msgstr "" "uyarlamalısınız ve ondan sonra ya tablonuzu ya da tablolarınızı bölün veya " "kopya etmeyi kullanın." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13748,11 +13716,11 @@ msgstr "" "Threads_created/Bağlantılar olarak hesaplanabilir. Eğer bu değer kırmızı " "ise, thread_cache_size boyutunuzu yükseltmelisiniz." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "Şu anki açık bağlantı sayısıdır." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13764,11 +13732,11 @@ msgstr "" "(eğer iyi bir işlem uygulamasına sahipseniz, normal olarak bu, dikkate değer " "bir performans artışı vermez.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "İşlem önbelleği tavan oranı (hesaplanmış değer)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "Hala faaliyette olan işlemler sayısıdır." @@ -13777,57 +13745,57 @@ msgstr "Hala faaliyette olan işlemler sayısıdır." msgid "Users of '%s' user group" msgstr "'%s' kullanıcı grubunun kullanıcıları" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "Bu kullanıcı grubuna ait hiç kullanıcı bulunamadı." -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "Kullanıcı grupları" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "Sunucu seviyesi sekmeler" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "Veritabanı seviyesi sekmeler" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "Tablo seviyesi sekmeler" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "Kullanıcıları göster" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "Kullanıcı grubu ekle" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "Kullanıcı grubunu düzenle: '%s'" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "Kullanıcı grubu menü atamaları" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "Grup adı:" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "Sunucu seviyesi sekmeler" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "Veritabanı seviyesi sekmeler" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "Tablo seviyesi sekmeler" @@ -13887,21 +13855,17 @@ msgstr "Kapalı bir köşeli parantez beklenmekte." msgid "Unrecognized data type." msgstr "Tanınmayan veri türü." -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "Beklenmedik kapalı köşeli parantez." - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "Bir kodadı daha önce bulundu." -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "Beklenmedik nokta." -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 msgid "An alias was expected." msgstr "Bir kodadı beklenmekte." @@ -13957,106 +13921,106 @@ msgstr "Sonlandırma tırnak işareti %1$s beklenmekte." msgid "Variable name was expected." msgstr "Değişken adı beklenmekte." -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 msgid "Unexpected beginning of statement." msgstr "Beklenmedik ifade başlangıcı." -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "Tanınmayan ifade türü." -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "Daha önce hiç işlem başlatılmadı." -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "Beklenmedik belirteç." -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "Bu tür yan tümce daha önce ayrıştırıldı." -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" "Yeni bir ifade bulundu, ancak bu ve önceki arasında hiç sınırlayıcı yok." -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "Tanınmayan anahtar kelime." -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "Varlığın adı beklenmekte." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 msgid "At least one column definition was expected." msgstr "En az bir sütun tanımı beklenmekte." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "\"RETURNS\" anahtar kelimesi beklenmekte." -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "Ayrıntılı profil" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "Sıra" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "Durum" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "Duruma göre özet" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "Toplam Süre" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "% Süre" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "Çağrılar" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "ø Süre" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Bu SQL sorgusunu işaretle" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "Etiket:" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Her kullanıcının bu yer imine erişmesine izin ver" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "Yer imi oluşturulmadı!" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Varsayılan gözatma sorgusu olarak \"%s\" yer imi kullanılıyor." -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "PHP kodu olarak gösteriliyor" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " @@ -14065,7 +14029,7 @@ msgstr "" "Şu anki seçim benzersiz bir sütun içermiyor. Kılavuz düzenleme, onay kutusu, " "Düzenle, Kopyala ve Sil özellikleri kullanılabilir değil. %s" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " @@ -14074,7 +14038,7 @@ msgstr "" "Şu anki seçim benzersiz bir sütun içermiyor. Kılavuz düzenleme, Düzenle, " "Kopyala ve Sil özellikleri istenmeyen davranışlara neden olabilir. %s" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`%s` tablosunun indeksleri ile ilgili sorunlar" @@ -14102,27 +14066,27 @@ msgstr "Otomatik kaydedilmiş sorguyu al" msgid "Bind parameters" msgstr "Parametreleri bağla" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "Bu SQL sorgusunu işaretle:" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Aynı ismin mevcut yer imini değiştir" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Sınırlayıcı" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Bu sorguyu burada tekrar göster" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "Tamamlandığında geri döndür" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Sadece göster" @@ -14166,113 +14130,113 @@ msgstr "%s için izlemeyi devre dışı bırak" msgid "Deactivate now" msgstr "Hemen devre dışı bırak" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Oluşturuldu" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Güncellendi" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 msgid "Delete version" msgstr "Sürümü sil" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "İzleme raporu" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Yapı görüntüsü yakalama" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "aktif" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "aktif değil" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "İzleme ifadeleri" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "Rapordan izlenen veri satırını sil" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "Veri yok" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" "%4$s %5$s kullanıcısına göre %2$s ile %3$s arası tarihler ile %1$s göster" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "SQL dökümü (dosya indirme)" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "SQL dökümü" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "Bu seçenek tablolarınızı ve içerdiği veriyi değiştirecektir." -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "SQL yürütme" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "%s olarak dışa aktar" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "Veri işleme ifadesi" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "Veri tanımlama ifadesi" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Tarih" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Kullanıcı adı" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Sürüm %s görüntüsü yakalama (SQL kodu)" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Yok" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "İzlenen veri tanımlaması başarılı olarak silindi" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "İzlenen veri işlemesi başarılı olarak silindi" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14281,62 +14245,62 @@ msgstr "" "çalıştırabilirsiniz. Lütfen bunu yapmak için yetkilere sahip olduğunuzdan " "emin olun." -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "Eğer ihtiyacınız yoksa bu iki satırı yorum dışı bırakın." -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "SQL ifadeleri dışa aktarıldı. Lütfen dökümü kopyalayın ya da çalıştırın." -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "`%s` tablosu için izleme raporu" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "%1$s için izleme %2$s sürümünde aktif edildi." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "%1$s için izleme %2$s sürümünde devre dışı bırakıldı." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Sürüm %1$s / %2$s oluşturuldu." -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Sürüm %1$s oluşturuldu, %2$s için izleme aktif." -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "İzlenmeyen tablolar" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Tabloyu izle" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "İzlenen tablolar" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Son sürüm" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "İzlemeyi sil" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Sürümler" @@ -14344,11 +14308,11 @@ msgstr "Sürümler" msgid "Manage your settings" msgstr "Ayarlarınızı yönetin" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "Yapılandırma kaydedildi." -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14453,7 +14417,7 @@ msgstr "Veritabanı yok" msgid "View dump (schema) of databases" msgstr "Veritabanlarının dökümünü (şemasını) göster" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14480,7 +14444,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin %s işlemini sonlandıramadı. Muhtemelen zaten kapatılmış." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "Sorgu istatistiklerini görüntülemek için yetersiz yetki." @@ -15296,43 +15260,49 @@ msgstr "Dağılım" msgid "Stacked" msgstr "İstiflendi" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "Çizelge başlığı" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "X-Ekseni:" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "Dizi:" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "X-Ekseni etiketi:" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "X Değeri" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "Y-Ekseni etiketi:" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Y Değeri" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "Seri adları bir sütunda" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "Seri sütunu:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 msgid "Value Column:" msgstr "Değer Sütunu:" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "Çizelgeyi resim olarak kaydet" @@ -15387,15 +15357,43 @@ msgstr "Yorum:" msgid "Drag to reorder" msgstr "Yen.düzenleme için sürükleyin" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +msgid "Foreign key constraints" +msgstr "Dış anahtar kısıtlamaları" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "Eylemler" + +#: templates/table/relation/common_form.phtml:10 +msgid "Constraint properties" +msgstr "Kısıtlama özellikleri" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" +"Sadece indeksi olan sütunlar görüntülenecektir. Aşağıda bir indeks " +"tanımlayabilirsiniz." + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "Dış anahtar kısıtlaması" + +#: templates/table/relation/common_form.phtml:60 +msgid "+ Add constraint" +msgstr "+ Kısıtlama ekle" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "Dahili bağlantılar" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "Dahili bağlantı" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15403,34 +15401,7 @@ msgstr "" "FOREIGN KEY bağlantısının yerini tutan bir bağlantı varken dahili bağlantı " "mümkün değildir." -#: templates/table/relation/common_form.phtml:37 -msgid "Foreign key constraints" -msgstr "Dış anahtar kısıtlamaları" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "Eylemler" - -#: templates/table/relation/common_form.phtml:41 -msgid "Constraint properties" -msgstr "Kısıtlama özellikleri" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" -"Sadece indeksi olan sütunlar görüntülenecektir. Aşağıda bir indeks " -"tanımlayabilirsiniz." - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "Dış anahtar kısıtlaması" - -#: templates/table/relation/common_form.phtml:83 -msgid "+ Add constraint" -msgstr "+ Kısıtlama ekle" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "Görüntülemek için sütun seçin:" @@ -15556,7 +15527,7 @@ msgid "at beginning of table" msgstr "tablonun başı" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 msgid "Partitions" msgstr "Bölümler" @@ -15589,7 +15560,7 @@ msgstr "Bölüm tablosu" msgid "Edit partitioning" msgstr "Bölümlemeyi düzenle" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "Düzenleme görünümü" @@ -16959,6 +16930,40 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert 0'a ayarlı" +#~ msgid "To filter all databases on server, press Enter after a search term" +#~ msgstr "" +#~ "Sunucudaki tüm veritabanlarını süzmek için bir arama terimi girdikten " +#~ "sonra Enter tuşuna basın" + +#~ msgid "To filter all %s in database, press Enter after a search term" +#~ msgstr "" +#~ "Veritabanındaki tüm %s süzmek için bir arama terimi girdikten sonra Enter " +#~ "tuşuna basın" + +#~ msgid "tables" +#~ msgstr "tablo" + +#~ msgid "views" +#~ msgstr "görünüm" + +#~ msgid "procedures" +#~ msgstr "yordam" + +#~ msgid "events" +#~ msgstr "olay" + +#~ msgid "functions" +#~ msgstr "işlev" + +#~ msgid "Filter databases by name or regex" +#~ msgstr "Veritabanlarını adına ya da düzenli ifadesine göre süz" + +#~ msgid "Filter by name or regex" +#~ msgstr "Adına ya da düzenli ifadesine göre süz" + +#~ msgid "Unexpected closing bracket." +#~ msgstr "Beklenmedik kapalı köşeli parantez." + #~ msgid "Username and hostname didn't change." #~ msgstr "Kullanıcı adı ve anamakine adı değişmedi." diff --git a/po/tt.po b/po/tt.po index 3e54aeb20e..66d39944e4 100644 --- a/po/tt.po +++ b/po/tt.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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:22+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Tatar Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Üzençälek" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "\"%s\" öçen töp açqıç qorıldı" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 #, fuzzy #| msgid "Change" msgid "Taking you to next step…" msgstr "Üzgärt" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 #, fuzzy @@ -2132,553 +2144,517 @@ msgstr "" msgid "End of step" msgstr "Tüşämä azağına" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 #, fuzzy msgid "Done" msgstr "Eçtälek" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Biremlek saylanmağan." -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Kiläse tüşämä öçen xoquqlar östäw" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Biremlek saylanmağan." -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Saqla" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy msgid "Hide search criteria" msgstr "SQL-soraw" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy msgid "Show search criteria" msgstr "SQL-soraw" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Ezläw" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Alan iseme" -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Alan iseme" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 #, fuzzy msgid "Maximum value:" msgstr "Biremleklär yuq" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy msgid "Hide find and replace criteria" msgstr "SQL-soraw" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy msgid "Show find and replace criteria" msgstr "SQL-soraw" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Add/Delete Field Columns" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Data pointer olılığı" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Qarama" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "" -#: js/messages.php:508 +#: js/messages.php:509 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Yul ara bilgese" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Add a new User" msgid "Inner ring" msgstr "Yaña qullanuçı östäw" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Yul ara bilgese" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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 "Kürsätäse Alan saylaw" -#: js/messages.php:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Bitneñ sanı:" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select Tables" msgid "Save page" msgstr "Tüşämä Saylaw" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select Tables" msgid "Save page as" msgstr "Tüşämä Saylaw" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "Buş bit sanı" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy #| msgid "Select Tables" msgid "Delete page" msgstr "Tüşämä Saylaw" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Tözätü öçen berär bit sayla" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid page name" msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 #, fuzzy #| msgid "Relational schema" msgid "Export relational schema" msgstr "Bäyläneşlär sxeme" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Üzgärtülär saqlandı" -#: js/messages.php:550 +#: js/messages.php:551 #, fuzzy, php-format #| msgid "Number of fields" msgid "Add an option for column \"%s\"." msgstr "Alannar sanı" -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Künder" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Alan iseme" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Barısın kürsät" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Tärtip buyınça urın" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Özderelde" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 #, fuzzy msgid "Import status" msgstr "Biremdän alu" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Tüşämä Saylaw" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 #, fuzzy msgid "Go to link:" msgstr "Biremleklär yuq" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Alan iseme" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Sersüz Ürçetü" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Ürçet" -#: js/messages.php:620 +#: js/messages.php:621 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Dşm" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Barısın kürsät" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "Tezeşlär" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Sırlı kürsät" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 #, fuzzy msgid "Link with main panel" msgstr "Biremlek saqlaw köyläneşe" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 #, fuzzy msgid "Unlink from main panel" msgstr "Biremlek saqlaw köyläneşe" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 #, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "Tüşämä" - -#: js/messages.php:633 -#, fuzzy -#| msgid "View" -msgid "views" -msgstr "Qaraş" - -#: js/messages.php:634 -#, fuzzy -msgid "procedures" -msgstr "Proseslar" - -#: js/messages.php:635 -#, fuzzy -msgid "events" -msgstr "Cibärelde" - -#: js/messages.php:636 -#, fuzzy -msgid "functions" -msgstr "Funksí" - -#: js/messages.php:640 -#, 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 "Bu qullanuçı xoquqlar tüşämä eçendä tabılmadı." -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2686,137 +2662,137 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 #, fuzzy msgid ", latest stable version:" msgstr "Server söreme" -#: js/messages.php:649 +#: js/messages.php:641 #, fuzzy msgid "up to date" msgstr "Biremleklär yuq" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 #, fuzzy msgid "Create view" msgstr "Server söreme" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy msgid "Send error report" msgstr "Server ID'e" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy msgid "Submit error report" msgstr "Server ID'e" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Bäyläneşlär buyınça töp mömkinleklär" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Açıq tüşämä tezmäse" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Qarama" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Bu sorawnı qabat kürsätäse" -#: js/messages.php:701 +#: js/messages.php:693 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Sin çınlap ta bonı eşlärgä teliseñme: " -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL-soraw" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Tüşämä açıqlaması" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy msgid "Hide arguments" msgstr "SQL-soraw" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Uzğan" -#: js/messages.php:748 +#: js/messages.php:740 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2824,96 +2800,96 @@ msgid "Next" msgstr "Kiläse" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Tulayım" -#: js/messages.php:755 +#: js/messages.php:747 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binar" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:749 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:758 +#: js/messages.php:750 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Äpr" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "May" -#: js/messages.php:760 +#: js/messages.php:752 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Yün" -#: js/messages.php:761 +#: js/messages.php:753 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Yül" -#: js/messages.php:762 +#: js/messages.php:754 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:756 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Ökt" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Ğın" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Äpr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2921,78 +2897,78 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Yün" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Yül" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Sen" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Ökt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Nöy" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Dek" -#: js/messages.php:801 +#: js/messages.php:793 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ykş" -#: js/messages.php:802 +#: js/messages.php:794 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Dşm" -#: js/messages.php:803 +#: js/messages.php:795 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Sşm" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:798 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Cmğ" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3000,167 +2976,167 @@ msgid "Sun" msgstr "Ykş" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Dşm" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Sşm" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Çrş" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Pnc" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Cmğ" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Şmb" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ykş" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Dşm" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Sşm" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Çrş" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Pnc" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Cmğ" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Şmb" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Buş" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:864 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "totıla" -#: js/messages.php:873 +#: js/messages.php:865 #, fuzzy #| msgid "per second" msgid "Second" msgstr "sekund sayın" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Bu mätennän" -#: js/messages.php:886 +#: js/messages.php:878 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid email address" msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:887 +#: js/messages.php:879 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid URL" msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date" msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:889 +#: js/messages.php:883 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date ( ISO )" msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:890 +#: js/messages.php:885 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number" msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:891 +#: js/messages.php:888 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid credit card number" msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:892 +#: js/messages.php:890 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" @@ -3172,53 +3148,53 @@ msgstr "%d digäne yazma sanı öçen kileşmi." msgid "Please enter the same value again" msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter at least {0} characters" msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value between {0} and {1}" msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:898 +#: js/messages.php:917 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value less than or equal to {0}" msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:899 +#: js/messages.php:922 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value greater than or equal to {0}" msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:901 +#: js/messages.php:928 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date or time" msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:902 +#: js/messages.php:933 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid HEX input" msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Xata" @@ -3306,11 +3282,12 @@ msgstr "sorawda" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3357,7 +3334,7 @@ msgstr "" msgid "Explain" msgstr "SQL Centekläw" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "" @@ -3399,8 +3376,8 @@ msgid "History" msgstr "SQL-taríxı" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3582,7 +3559,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Kübäytelgän tüşämägä küçäse" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -3590,26 +3567,26 @@ msgid "" "configured)." msgstr "(yä cirle MySQL-server soketı döres köylänmägän ide)" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Bu server endäşmi" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3619,8 +3596,8 @@ msgstr "" msgid "Ascending" msgstr "Artıp" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3791,8 +3768,8 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s kileşü bar, %s atlı tüşämädä" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3843,29 +3820,29 @@ msgstr "Saylanunı Töşer" msgid "Inside column:" msgstr "Kiläse tüşämä eçendä:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 #, fuzzy msgid "Save edited data" msgstr "Biremnär törgäge" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "Add/Delete Field Columns" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 #, fuzzy msgid "Filter rows" msgstr "Alan" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Search in database" msgid "Search this table" msgstr "Biremlektä ezläw" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 #, fuzzy #| msgid "Begin" @@ -3873,7 +3850,7 @@ msgctxt "First page" msgid "Begin" msgstr "Başlawğa" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 #, fuzzy @@ -3882,7 +3859,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Uzğan" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 #, fuzzy @@ -3891,7 +3868,7 @@ msgctxt "Next page" msgid "Next" msgstr "Kiläse" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 #, fuzzy #| msgid "End" @@ -3899,86 +3876,86 @@ msgctxt "Last page" msgid "End" msgstr "Azaq" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Barısı" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of fields" msgid "Number of rows:" msgstr "Alannar sanı" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Qullanası tezeş" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Partial Texts" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Tulı Mätennär" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 #, fuzzy msgid "Relational key" msgstr "Bäyläneşlär sxeme" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Disable foreign key checks" msgid "Display column for relations" msgstr "Yat tezeş tikşerüen sünderep" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Browser transformation" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Bu yazma salınğan buldı" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Üter" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Törle buluı bar. [doc@faq3-11]YBS 3.11[/doc] qarísı" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -3986,50 +3963,51 @@ msgstr "Törle buluı bar. [doc@faq3-11]YBS 3.11[/doc] qarísı" msgid "Your SQL query has been executed successfully." msgstr "SQL-sorawıñ uñışlı eşkärtelde" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Yazma sanı" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "tulayım" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "Soraw eşkärtü %01.4f sek aldı" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Saylanğannı:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -4037,27 +4015,27 @@ msgstr "Saylanğannı:" msgid "Check all" msgstr "Saylap Beter" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Bastıru küreneşe" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Soraw qaytarmasın eşkärtü" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF schema kürsätü" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 #, fuzzy #| msgid "Link not found" msgid "Link not found!" @@ -4158,19 +4136,19 @@ msgstr "Açqıç bilgelänmäde!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Tezeşlär" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -4179,24 +4157,24 @@ msgid "Action" msgstr "Eş" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Tezeş adı" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Qabatsız" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Qabatlanu sanı" @@ -4204,8 +4182,8 @@ msgstr "Qabatlanu sanı" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -4215,8 +4193,8 @@ msgid "Collation" msgstr "Tezü cayı" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -4233,15 +4211,15 @@ msgstr "Töp açqıç beterelde." msgid "Index %s has been dropped." msgstr "\"%s\" digän tezeş salındı." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Beter" @@ -4278,12 +4256,13 @@ msgstr "Qaraş" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4291,7 +4270,7 @@ msgstr "Tüşämä" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4300,8 +4279,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4309,41 +4288,41 @@ msgid "Search" msgstr "Ezläw" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Östäw" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Xoquqlar" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Eşkärtü" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4354,16 +4333,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Soraw" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4372,22 +4351,22 @@ msgstr "" msgid "Events" msgstr "Cibärelde" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Add/Delete Field Columns" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Biremleklär" @@ -4398,12 +4377,12 @@ msgid "User accounts" msgstr "Qullanuçı" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Binar köndälek" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 #, fuzzy @@ -4411,21 +4390,21 @@ msgid "Replication" msgstr "Bäyläneşlär" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Üzgärmälär" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Bilgelämä" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Engine" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4751,7 +4730,7 @@ msgstr "Açqıçnı \"PRIMARY\" itep atap bulmí!" msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5177,39 +5156,39 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "web-server'neñ yökläw törgäge" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Yökläw öçen bigelängän törgäkne uqıp bulmí." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 #, fuzzy msgid "There are no files to upload!" msgstr "Tüşämä tikşerü" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Buşat" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Bastır" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 #, fuzzy #| msgid "User" msgid "Users" @@ -5390,8 +5369,8 @@ msgid "Add new column" msgstr "%s alan östäw" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5455,19 +5434,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -6306,7 +6285,7 @@ msgid "Remember file name template" msgstr "Birem adınıñ tözeleşe" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "\"AUTO_INCREMENT\" bäyäsen östise" @@ -6349,7 +6328,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "%s östäw" @@ -8051,7 +8030,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 #, fuzzy msgid "Retain query box" msgstr "SQL-soraw" @@ -8341,109 +8320,35 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Qullanma" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "\"%s\" atlı tüşämä buşatıldı." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "\"%s\" atlı Qaraş beterelgän buldı" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "\"%s\" atlı tüşämä beterelde" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "belgesez" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" - -#: libraries/controllers/TableStructureController.php:250 -#, fuzzy -#| msgid "No rows selected" -msgid "No column selected." -msgstr "Kertemnär sayladı" - -#: libraries/controllers/TableStructureController.php:484 -#, fuzzy -#| msgid "The selected users have been deleted successfully." -msgid "The columns have been moved successfully." -msgstr "Saylanğan qullanuçını beterü uñışlı uzdı." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, fuzzy, php-format -msgid "Table %1$s has been altered successfully." -msgstr "Saylanğan qullanuçını beterü uñışlı uzdı." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -#, fuzzy -#| msgid "Query type" -msgid "Query error" -msgstr "Soraw töre" - -#: libraries/controllers/TableStructureController.php:967 -#, fuzzy, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "Saylanğan qullanuçını beterü uñışlı uzdı." - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Üzgärt" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Tezeş" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Tulımäten" - -#: libraries/controllers/TableStructureController.php:1201 -#, fuzzy -msgid "Distinct values" -msgstr "Browse foreign values" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8459,6 +8364,14 @@ msgstr "" msgid "No data to display" msgstr "Biremleklär yuq" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, fuzzy, php-format +msgid "Table %1$s has been altered successfully." +msgstr "Saylanğan qullanuçını beterü uñışlı uzdı." + #: libraries/controllers/table/TableRelationController.php:212 #, fuzzy #| msgid "Thread %s was successfully killed." @@ -8470,24 +8383,90 @@ msgstr "%s cebe uñışlı üterelgän buldı." msgid "Internal relations were successfully updated." msgstr "Eçke bäyläneş" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Search" msgid "Table search" msgstr "Ezläw" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Search" msgid "Zoom search" msgstr "Ezläw" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy msgid "Find and replace" msgstr "SQL-soraw" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" + +#: libraries/controllers/table/TableStructureController.php:251 +#, fuzzy +#| msgid "No rows selected" +msgid "No column selected." +msgstr "Kertemnär sayladı" + +#: libraries/controllers/table/TableStructureController.php:485 +#, fuzzy +#| msgid "The selected users have been deleted successfully." +msgid "The columns have been moved successfully." +msgstr "Saylanğan qullanuçını beterü uñışlı uzdı." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +#, fuzzy +#| msgid "Query type" +msgid "Query error" +msgstr "Soraw töre" + +#: libraries/controllers/table/TableStructureController.php:975 +#, fuzzy, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "Saylanğan qullanuçını beterü uñışlı uzdı." + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Üzgärt" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Tezeş" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Tulımäten" + +#: libraries/controllers/table/TableStructureController.php:1209 +#, fuzzy +msgid "Distinct values" +msgstr "Browse foreign values" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8497,7 +8476,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Üzgäreşsez" @@ -8572,7 +8551,7 @@ msgstr "Yarat" msgid "Create database:" msgstr "Yaña biremlek yaratu" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Xoquqsız" @@ -9324,71 +9303,71 @@ msgid "Dump has been saved to file %s." msgstr "Eçtälege \"%s\" biremenä saqlandı." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL sorawğa buş cawap, yäğni nül kertem qaytarttı." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Biremleklär yuq" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Biremleklär yuq" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Tözeleşen genä" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, fuzzy, php-format #| msgid "Export views" msgid "Go to view: %s" msgstr "Çığaru ısulı" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" @@ -9412,72 +9391,72 @@ msgstr "Funksí" msgid "Binary" msgstr "Binar" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "Because of its length,
this field might not be editable" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Binar - üzgärtmäslek" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Yä" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "web-server'neñ yökläw törgäge" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Östäw" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr ", şunnan soñ" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Yaña yazma kert tä" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Aldağı bitkä qaytu" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Tağın ber yazma östäw" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Bu bitkä kire qaytası" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Kiläse yazma üzgärtü" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9487,7 +9466,7 @@ msgstr "" "Ber bäyädän ikençegä küçü öçen TAB töymäsen qullanası, başqa cirgä küçü " "öçen, CTRL+uq töymäläre bar" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9499,12 +9478,12 @@ msgstr "" msgid "Value" msgstr "Bäyä" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 #, fuzzy msgid "Showing SQL query" msgstr "Tulı Sorawlar Kürsät" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9522,43 +9501,43 @@ msgstr "Buş" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix:" msgstr "Tüşämä eçtälegen bu biremlektäge belän alamştırası" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix:" msgstr "Tüşämä eçtälegen bu biremlektäge belän alamştırası" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Cmğ" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Replace table data with file" msgid "Add table prefix:" msgstr "Tüşämä eçtälegen bu biremlektäge belän alamştırası" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -9786,8 +9765,8 @@ msgstr "Proseslar" msgid "Views:" msgstr "Qaraş" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Kürsät" @@ -9826,10 +9805,9 @@ msgid_plural "%s results found" msgstr[0] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "table name" -msgid "Filter databases by name or regex" -msgstr "tüşämä adı" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -9838,12 +9816,6 @@ msgstr "tüşämä adı" msgid "Clear fast filter" msgstr "Biremgä saqlıysı" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "table name" -msgid "Filter by name or regex" -msgstr "tüşämä adı" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -10250,7 +10222,7 @@ msgstr "Biremlekne bolay atap quy" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10261,7 +10233,7 @@ msgstr "Bonda bulu öçen, xoquqlarıñ citmi!" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -10284,18 +10256,18 @@ msgstr "Biremlekne bolay atap quy" msgid "Drop the database (DROP)" msgstr "Biremleklär yuq" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Tözeleşen genä" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Tözeleşen dä, eçtälegen dä" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Eçtälegen genä" @@ -10309,7 +10281,7 @@ msgstr "Biremlekne boña kübäyt" msgid "CREATE DATABASE before copying" msgstr "Kübäytü aldınnan CREATE DATABASE östise" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Çikläwlär östise" @@ -10349,63 +10321,63 @@ msgstr "Saqlaw Isulı" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Boña kübäyt (biremlek.tüşämä)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Kübäytelgän tüşämägä küçäse" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Tüşämä eşkärtü" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Tüşämä centekläw" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Tüşämä tikşerü" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Tüşämä tikşerü" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Tüşämä kisäklären berläşterü" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "\"%s\" atlı tüşämä awdarıldı." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Tüşäwne awdar (\"FLUSH\")" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Tüşämä tözätü" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 #, fuzzy @@ -10413,106 +10385,106 @@ msgstr "Tüşämä tözätü" msgid "Delete data or table" msgstr "Tüşämä eçtälegen çığaru" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 #, fuzzy msgid "Delete the table (DROP)" msgstr "Biremleklär yuq" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 #, fuzzy msgid "Check" msgstr "Çexçä" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 #, fuzzy msgid "Repair" msgstr "Tüşämä tözätü" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy msgid "Coalesce" msgstr "Berär genä dä tüşämä yuq" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 #, fuzzy msgid "Partition maintenance" msgstr "Tüşämä eşkärtü" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Bäyläneşlärne döreslekkä tikşerü:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Ber ük at belän tüşämä küçerep bulmí!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "\"%s\" atlı tüşämä \"%s\" kebek ataldı." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "\"%s\" atlı tüşämä \"%s\" kebek ataldı." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "\"%s\" atlı tüşämä \"%s\" kebek ataldı." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Tüşämä adı kertelmi qaldı!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -10700,7 +10672,7 @@ msgstr "Biremlek saqlaw köyläneşe" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Tüşämä eçtälegen çığaru" @@ -10727,14 +10699,14 @@ msgstr "Açıqlama" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Tüşämä tözeleşe" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 #, fuzzy msgid "Structure for view" @@ -10742,7 +10714,7 @@ msgstr "Tözeleşen genä" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 #, fuzzy msgid "Stand-in structure for view" @@ -10857,7 +10829,7 @@ msgid "Database:" msgstr "Biremlek" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10973,7 +10945,7 @@ msgid "Data creation options" msgstr "Transformation options" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -11042,8 +11014,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11051,97 +11023,97 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Export type" msgid "Metadata" msgstr "Çığaru ısulı" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 #, fuzzy #| msgid "Creation" msgid "Creation:" msgstr "Yasalışı" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 #, fuzzy #| msgid "Last update" msgid "Last update:" msgstr "Soñğı yañartılu" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 #, fuzzy #| msgid "Last check" msgid "Last check:" msgstr "Soñğı tikşerü" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "totıla" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for dumped tables" msgstr "Kiläse tüşämä eçendä:" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "Kiläse tüşämä eçendä:" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "\"AUTO_INCREMENT\" bäyäsen östise" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "\"AUTO_INCREMENT\" bäyäsen östise" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Tözeleşen genä" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11396,9 +11368,9 @@ msgstr "Bäyläneşlär sxeme" msgid "Table of contents" msgstr "Eçtälek isemlege" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Östämä" @@ -11620,60 +11592,60 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been added." msgstr "Üzgärtülär saqlandı" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Birem uqıp bulmadı" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy msgid "Internal relation has been added." msgstr "Eçke bäyläneş" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be added!" msgstr "Birem uqıp bulmadı" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been removed." msgstr "Üzgärtülär saqlandı" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Birem uqıp bulmadı" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be removed!" msgstr "Birem uqıp bulmadı" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy msgid "Internal relation has been removed." msgstr "Eçke bäyläneş" @@ -11728,108 +11700,108 @@ msgstr "" msgid "Please see the documentation on how to update your column_info table. " msgstr "Sineñ Column_comments Tüşämä yañartu eşe turında Qullanmada qarísı." -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Tamğalanğan SQL-soraw" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL-taríxı" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy msgid "Persistent favorite tables" msgstr "Tüşämä tikşerü" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Modifications have been saved" msgid "Configurable menus" msgstr "Üzgärtülär saqlandı" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Rename table to" msgid "Remembering Designer Settings" msgstr "Tüşämä adın üzgärtü" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy msgid "Saving export templates" msgstr "Çığaru ısulı" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "Açıqlamasız" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -12012,8 +11984,8 @@ msgstr "İreşü iseme" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "İreşü iseme" @@ -12021,7 +11993,7 @@ msgstr "İreşü iseme" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Sersüz" @@ -12721,7 +12693,7 @@ msgstr[0] "\"%s\" biremlegen beterü uñışlı uzdı." msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 #, fuzzy msgid "Version" msgstr "Farsíça" @@ -12730,100 +12702,96 @@ msgstr "Farsíça" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Sünek" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Xoquqlar yuq." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "GRANT'tan basqa bar xoquqlar da bar." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Eçtälekne uqu xoquqı." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Eçtälek östäw/almaştıru xoquqı." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Eçtälek üzgärtü xoquqı." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Eçtälek beterü xoquqı." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Yaña biremlek/tüşämä yasaw xoquqı." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Biremlek/tüşämä beterü xoquqı." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Serverne tuqtatu xoquqı." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Açqıçlarnı qoru/beterü xoquqı." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Biredä bulğan tüşämä tözeleşen üzgärtü xoquqı." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12834,66 +12802,66 @@ msgstr "" "killing threads of other users." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Waqıtlı tüşämä yasaw xoquqı." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "Gives the right to the user to ask where the slaves / masters are." #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Yaña qaraş qorırğa birä." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 #, fuzzy msgid "Allows creating and dropping triggers." msgstr "Açqıçlarnı qoru/beterü xoquqı." #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "SHOW CREATE VIEW sorawların eşläterlek itä." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Saqlanğan funksílar qorırğa birä." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "Qullanuçı xísabın qoru/salu/ataw eşen qılırğa birä." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Eçke funksílar eşlätterergä birä." @@ -12907,8 +12875,8 @@ msgstr "Buş" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12952,32 +12920,32 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Beläse: 0 (nül) kertelgän çaqta çikläwe beterelä." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Add %s field(s)" @@ -12985,7 +12953,7 @@ msgid "Routine" msgstr "%s alan östäw" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -13004,14 +12972,14 @@ msgstr "Eçke funksílar eşlätterergä birä." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Berär tüşämä öçen xoquqlar" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -13023,7 +12991,7 @@ msgid "Administration" msgstr "İdärä" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Töp xoquq" @@ -13034,15 +13002,15 @@ msgid "Global" msgstr "ğömümi" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Berär biremlekkä qağılışlı xoquqlar" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Yaña tüşämä yasaw xoquqı." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Tüşämä beterü xoquqı." @@ -13065,7 +13033,7 @@ msgid "Native MySQL Authentication" msgstr "Qullanma" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Kereş Turında" @@ -13090,8 +13058,8 @@ msgstr "İreşü iseme" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Log name" msgid "Host name" @@ -13113,241 +13081,241 @@ msgstr "Qullanma" msgid "Password Hashing Method" msgstr "Sersüz Hash'law" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "\"%s\" öçen sezsüz üzgärtü uñışlı uzdı." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Törle qullanuçı" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Qullanuçı biremlege" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, fuzzy, php-format msgid "Grant all privileges on database \"%s\"." msgstr "\"%s\" biremlege öçen xoquqlar tikşerü." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\" belän eşläw xoquqı bulğan qullanuçılar" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "\"%s\" atlı Qaraş beterelgän buldı" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Xoquq" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Qullanuçı yuq." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Törle" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "ğömümi" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "berär biremlekkä qağılışlı" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "almaşbilge" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "berär biremlekkä qağılışlı" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Xoquqlar Üzgärtü" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Töşer" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "Kiläse yazma üzgärtü" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Berär bağana öçen xoquqlar" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Saylanğan qullanuçı beterü" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Qullanuçı xoquqların awdarıp beteräse." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "Bu qullanuçılar kebek atalğan biremleklärne beteräse." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "Beteräse qullanuçılar saylanmağan!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Bu xoquqlarnı yöklä" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Saylanğan qullanuçını beterü uñışlı uzdı." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "\"%s\" Beterü" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Bu xoquqlarnı yökläw uñışlı uzdı." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "\"%s\" atlı qullanuçı bar inde!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Xoquqlar" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Qullanuçı" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Xoquqlar Üzgärtü" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "User" msgid "User account" msgstr "Qullanuçı" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Qullanuçılar tezmäse" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13360,7 +13328,7 @@ msgstr "" "alardan ayırıla ala. Andí çaqlarda, dawam itü aldınnan, %sxoquqlarnı qabat " "yökläp alası%s." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13379,11 +13347,11 @@ msgstr "" "alardan ayırıla ala. Andí çaqlarda, dawam itü aldınnan, %sxoquqlarnı qabat " "yökläp alası%s." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "Bu qullanuçı xoquqlar tüşämä eçendä tabılmadı." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Yana qullanuçı östälände." @@ -13629,33 +13597,33 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 #, fuzzy msgid "Refresh rate" msgstr "Yañart" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Add/Delete Field Columns" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -13724,7 +13692,7 @@ msgid "Statements" msgstr "Cömlä" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -13757,34 +13725,34 @@ msgstr "Açıq tüşämä tezmäse" msgid "Related links:" msgstr "Bäyläneşlär" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13792,78 +13760,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13871,7 +13839,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13879,43 +13847,43 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 #, fuzzy msgid "The number of pages currently dirty." msgstr "Yaratılğan bit sanı bu." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "Buş bitlär sanı." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13923,33 +13891,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13958,92 +13926,92 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 #, fuzzy msgid "The current number of pending reads." msgstr "Uqılğan bit sanı bu." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 #, fuzzy msgid "The current number of pending writes." msgstr "Yazılğan bit sanı bu." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 #, fuzzy msgid "The total number of data reads." msgstr "Uqılğan bit sanı bu." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 #, fuzzy msgid "The total number of data writes." msgstr "Yazılğan bit sanı bu." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 #, fuzzy msgid "The number of log write requests." msgstr "Tezelgän yazma sanı bu." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 #, fuzzy msgid "The number of physical writes to the log file." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 #, fuzzy msgid "The number of fsync() writes done to the log file." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "Yaratılğan bit sanı bu." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -14052,161 +14020,161 @@ msgstr "" "values are counted in pages; the page size allows them to be easily " "converted to bytes." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "Uqılğan bit sanı bu." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "Yazılğan bit sanı bu." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Yöklänğan birem tözeleşe" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 #, fuzzy msgid "The number of physical writes of a key block to disk." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "Açıq toruçı birem sanı." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "Açıq toruçı tüşämä sanı." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "Alxätergä turı kilü sanı bu." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14214,99 +14182,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "Tezelgän yazma sanı bu." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14314,18 +14282,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "Biredä açıq bulğan totaşu sanı." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14333,13 +14301,13 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Tezeş alxätere" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 #, fuzzy msgid "The number of threads that are not sleeping." msgstr "Açıq toruçı birem sanı." @@ -14349,77 +14317,77 @@ msgstr "Açıq toruçı birem sanı." msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 #, fuzzy #| msgid "User" msgid "User groups" msgstr "Qullanuçı" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "Server söreme" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Database for user" msgid "Database level tabs" msgstr "Qullanuçı biremlege" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table removal" msgid "Table level tabs" msgstr "tüşämä adı" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy #| msgid "View" msgid "View users" msgstr "Qaraş" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Any user" msgid "Add user group" msgstr "Törle qullanuçı" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Xoquqlar yuq." -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "Alan iseme" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Server söreme" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Database for user" msgid "Database-level tabs" msgstr "Qullanuçı biremlege" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table removal" msgid "Table-level tabs" @@ -14483,21 +14451,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14564,138 +14528,138 @@ msgstr "\"%s\" atlı tüşämä beterelde" msgid "Variable name was expected." msgstr "Birem adınıñ tözeleşe" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Tüşämä Başına" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 #, fuzzy #| msgid "The number of tables that are open." msgid "The name of the entity was expected." msgstr "Açıq toruçı tüşämä sanı." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Bu yazma salınğan buldı" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "Eçtälek bireme" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy msgid "State" msgstr "Torış" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Tulayım" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Waqıt" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Waqıt" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Bu SQL-sorawğa tamğa quy" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Label" msgid "Label:" msgstr "Yarlıq" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Bu tamğanı bar qullanuçığa da ireşüle itäse" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created!" msgstr "%s digän bitbilge yaratıldı" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`%s` atlı tüşäw tezeşläre belän nidider tiskärlek bar" @@ -14726,29 +14690,29 @@ msgstr "" msgid "Bind parameters" msgstr "Biremlekne bolay atap quy" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 #, fuzzy #| msgid "Bookmark this SQL query" msgid "Bookmark this SQL query:" msgstr "Bu SQL-sorawğa tamğa quy" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Şulay uq atalğan bitbilgelärne almaştırası" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Bu sorawnı qabat kürsätäse" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Kürep kenä" @@ -14793,107 +14757,107 @@ msgstr "" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 #, fuzzy msgid "Created" msgstr "Yarat" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy msgid "Delete version" msgstr "Server söreme" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 #, fuzzy msgid "Structure snapshot" msgstr "Tözeleşen genä" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Eçtälek östäw/almaştıru xoquqı." -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Biremleklär yuq" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, fuzzy, php-format msgid "Export as %s" msgstr "Çığaru ısulı" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 #, fuzzy msgid "Date" msgstr "Eçtälek" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 #, fuzzy msgid "Username" msgstr "Atama:" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -14901,81 +14865,81 @@ msgctxt "None for default" msgid "None" msgstr "Buş" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format msgid "Version %1$s of %2$s was deleted." msgstr "Server söreme" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 #, fuzzy msgid "Untracked tables" msgstr "Tüşämä tikşerü" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 #, fuzzy msgid "Track table" msgstr "Tüşämä tikşerü" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 #, fuzzy msgid "Tracked tables" msgstr "Tüşämä tikşerü" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 #, fuzzy msgid "Last version" msgstr "Server söreme" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking" msgstr "Eçtälek östäw/almaştıru xoquqı." -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 #, fuzzy msgid "Versions" msgstr "Farsíça" @@ -14986,13 +14950,13 @@ msgstr "Farsíça" msgid "Manage your settings" msgstr "Bäyläneşlär buyınça töp mömkinleklär" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." msgstr "Üzgärtülär saqlandı" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -15097,7 +15061,7 @@ msgstr "Biremleklär yuq" msgid "View dump (schema) of databases" msgstr "Biremleklärneñ eçtälegen (tözeleşen) çığaru" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -15122,7 +15086,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin %s ceben üterä almadı. Bälki ul yabılğan bulğan da inde." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -16069,52 +16033,58 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Report title" +msgid "Chart title:" +msgstr "Yomğaq başlığı" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 #, fuzzy msgid "Series:" msgstr "SQL-soraw" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Bäyä" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Bäyä" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside table(s):" msgid "Series column:" msgstr "Kiläse tüşämä eçendä:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Number of fields" msgid "Value Column:" msgstr "Alannar sanı" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -16178,54 +16148,55 @@ msgstr "Açıqlama" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 -msgid "Internal relations" -msgstr "Eçke bäyläneş" - -#: templates/table/relation/common_form.phtml:11 -#, fuzzy -#| msgid "Internal relations" -msgid "Internal relation" -msgstr "Eçke bäyläneş" - -#: templates/table/relation/common_form.phtml:14 -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "" - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key constraints" msgstr "Yat tezeş tikşerüen sünderep" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 msgid "Actions" msgstr "Eş" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 #, fuzzy #| msgid "Column names" msgid "Constraint properties" msgstr "Alan iseme" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Çikläwlär östise" -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +msgid "Internal relations" +msgstr "Eçke bäyläneş" + +#: templates/table/relation/common_form.phtml:80 +#, fuzzy +#| msgid "Internal relations" +msgid "Internal relation" +msgstr "Eçke bäyläneş" + +#: templates/table/relation/common_form.phtml:83 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "" + +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -16384,7 +16355,7 @@ msgid "at beginning of table" msgstr "Tüşämä Başına" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16429,7 +16400,7 @@ msgstr "Urın" msgid "Edit partitioning" msgstr "Bastıru küreneşe" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -17730,6 +17701,38 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "Tüşämä" + +#, fuzzy +#~| msgid "View" +#~ msgid "views" +#~ msgstr "Qaraş" + +#, fuzzy +#~ msgid "procedures" +#~ msgstr "Proseslar" + +#, fuzzy +#~ msgid "events" +#~ msgstr "Cibärelde" + +#, fuzzy +#~ msgid "functions" +#~ msgstr "Funksí" + +#, fuzzy +#~| msgid "table name" +#~ msgid "Filter databases by name or regex" +#~ msgstr "tüşämä adı" + +#, fuzzy +#~| msgid "table name" +#~ msgid "Filter by name or regex" +#~ msgstr "tüşämä adı" + #, fuzzy #~| msgid "Change" #~ msgid "Taking you to %s." diff --git a/po/ug.po b/po/ug.po index 4ba60cdbb2..6a5f6e4d57 100644 --- a/po/ug.po +++ b/po/ug.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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uighur Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "(continued)" msgid "Continue" msgstr "داۋاملاشتۇرلىدىغان" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 #, fuzzy #| msgid "The primary key has been dropped." msgid "Primary key added." msgstr "ئاساسىي قىممەت ئۆچۈرۈلدى" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "ئىزلاش خاتىرىسى" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "تامام" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy #| msgid "SQL query" msgid "Show search criteria" msgstr "SQL سورىقى" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "ئىزدەش" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Columns terminated by" msgid "Column maximum:" msgstr "خەت ئايرىش بەلگىسى" -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Columns terminated by" msgid "Column minimum:" msgstr "خەت ئايرىش بەلگىسى" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "SQL query" msgid "Hide find and replace criteria" msgstr "SQL سورىقى" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "SQL query" msgid "Show find and replace criteria" msgstr "SQL سورىقى" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 #, fuzzy #| msgid "Add/Delete columns" msgid "Select two columns" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "سانلىق مەلۇمات قوللانمىسىنىڭ چوڭ كىچىكلىكى" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "" -#: js/messages.php:508 +#: js/messages.php:509 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "قۇر ئالماشۇرۇش بەلگىسى" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Lines terminated by" msgid "Inner ring" msgstr "قۇر ئالماشۇرۇش بەلگىسى" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "قۇر ئالماشۇرۇش بەلگىسى" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "سېرتقى ئۇلىنىشنى تاللاش" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "تاشقى ئاچقۇق قىممىتى" -#: js/messages.php:529 +#: js/messages.php:530 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the primary key or a unique key!" msgstr "ئاساسىي قىممەت ياكى بىردىنبىر قىمەتنى تاللاڭ" # column نى سۆزلەم دەپ ئالساق مۇۋاپىق بولغىدەك -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "سۆزلەمنى كۆرسەتمەسلىك" -#: js/messages.php:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 msgid "Page name" msgstr "" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 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:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 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:539 +#: js/messages.php:540 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "ھەممىنى تاللاش" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select a page to continue" msgstr "ئاساسىي قىممەت ياكى بىردىنبىر قىمەتنى تاللاڭ" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid page name" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 #, fuzzy #| msgid "Display PDF schema" msgid "Export relational schema" msgstr "PDF تىزىىسىنى كۆرسىتىش" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "ئۆزگەرتىشلەر ساقلاندى" -#: js/messages.php:550 +#: js/messages.php:551 #, fuzzy, php-format #| msgid "Number of columns" msgid "Add an option for column \"%s\"." msgstr "سۆزلەم سانى" -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy #| msgid "Columns terminated by" msgid "Double-click to copy column name." msgstr "خەت ئايرىش بەلگىسى" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "ھەممىسىنى كۆرسىتىش" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Lines terminated by" msgid "Original length" msgstr "قۇر ئالماشۇرۇش بەلگىسى" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "بىكار قىلىش" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 #, fuzzy #| msgid "Import" msgid "Import status" msgstr "كىرگۈزۈش" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "ھەممىنى تاللاش" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Columns terminated by" msgid "Copy column name." msgstr "خەت ئايرىش بەلگىسى" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "پارول ھاسىللاش" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "ھاسىللاش" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "تېخىمۇ كۆپ" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "ھەممىسىنى كۆرسىتىش" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "تېزىسلار" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Indexes" msgid "Show hidden navigation tree items." msgstr "تېزىسلار" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 #, fuzzy #| msgid "Indexes" msgid "Link with main panel" msgstr "تېزىسلار" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 #, fuzzy #| msgid "Indexes" msgid "Unlink from main panel" msgstr "تېزىسلار" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -#, fuzzy -#| msgid "Table" -msgid "tables" -msgstr "جەدۋەل" - -#: js/messages.php:633 -#, fuzzy -#| msgid "View" -msgid "views" -msgstr "قاراش" - -#: js/messages.php:634 -msgid "procedures" -msgstr "" - -#: js/messages.php:635 -#, fuzzy -#| msgid "Events" -msgid "events" -msgstr "ھادىسە" - -#: js/messages.php:636 -#, fuzzy -#| msgid "Versions" -msgid "functions" -msgstr "نەشىر" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2654,136 +2629,136 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 #, fuzzy #| msgid "Last version" msgid ", latest stable version:" msgstr "ېيڭى نەشىر" -#: js/messages.php:649 +#: js/messages.php:641 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "up to date" msgstr "%s جەدۋەل" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "نەشىرنى قۇىماق" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "ئاساسىي ئالاقە ۋاريانتلىرى" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Report title" msgid "Show report details" msgstr "دوكلات تېمىسى" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 #, fuzzy #| msgid "Select All" msgid "Execute this query again?" msgstr "ھەممىنى تاللاش" -#: js/messages.php:701 +#: js/messages.php:693 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "راستىنلا ئجرا قىلىمسىز" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "جەدۋەل ئىزاھى" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "ئالدىنقى ئاي" -#: js/messages.php:748 +#: js/messages.php:740 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2791,149 +2766,149 @@ msgid "Next" msgstr "كىيىنكى ئاي" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "بۈگۈن" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "قەھرىتان" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "ھۇت" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "نورۇز" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "ئۈمىد" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "باھار" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "6-ئاي" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "7-ئاي" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "8-ئاي" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "9-ئاي" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "10-ئاي" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "11-ئاي" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "12-ئاي" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "1-ئاي" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "2-ئاي" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "3-ئاي" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "4-ئاي" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "5-ئاي" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "6-ئاي" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "چىللە" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "تومۇز" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "مىزان" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "ئوغۇز" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "ئوغلاق" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "كۆنەك" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "يەكشەنبە" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "دۈشەنبە" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "سەيشەنبە" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "چارشەنبە" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "پەيشەنبە" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "جۈمە" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "شەنبە" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2941,147 +2916,147 @@ msgid "Sun" msgstr "يەكشەنبە" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "دۈشەنبە" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "سەيشەنبە" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "چارشەنبە" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "پەيشەنبە" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "جۈمە" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "شەنبە" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "يەكشەنبە" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "دۈشەنبە" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "سەيشەنبە" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "چارشەنبە" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "پەيشەنبە" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "جۈمە" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "شەنبە" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "ھەپتە" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "يوق" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "سائەت" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "مىنۇت" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "سېكنۇت" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:878 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid email address" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:887 +#: js/messages.php:879 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid URL" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:889 +#: js/messages.php:883 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date ( ISO )" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:890 +#: js/messages.php:885 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:891 +#: js/messages.php:888 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid credit card number" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:892 +#: js/messages.php:890 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" @@ -3093,53 +3068,53 @@ msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" msgid "Please enter the same value again" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter at least {0} characters" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value between {0} and {1}" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:898 +#: js/messages.php:917 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value less than or equal to {0}" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:899 +#: js/messages.php:922 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value greater than or equal to {0}" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:901 +#: js/messages.php:928 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date or time" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:902 +#: js/messages.php:933 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid HEX input" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "خاتالىق" @@ -3227,11 +3202,12 @@ msgstr "تەكشۈرۈش" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3278,7 +3254,7 @@ msgstr "" msgid "Explain" msgstr "SQL ئىزاھى" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "ئاساسىي مەزمۇن" @@ -3320,8 +3296,8 @@ msgid "History" msgstr "SQL دەلىللەشتىن ئاتلاش" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3502,7 +3478,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "كۆپەيتىلگەن ساندانغا كۆچۈش" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -3510,26 +3486,26 @@ msgid "" "configured)." msgstr "(يەرلىك MySQL مۇلازىمىتېرى توغرا تەڭشەلمىگەن)" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "مۇلازىمىتېردا ئىنكاس يوق" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "تەپسىلاتلار…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "تەڭشەك ھۆججىتى ئىچىدىكى ئىشلەنكۈچى ئۇلۈنما كونتىرولى مەغلۇب بولدى." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3539,8 +3515,8 @@ msgstr "تەڭشەك ھۆججىتى ئىچىدىكى ئىشلەنكۈچى ئۇل msgid "Ascending" msgstr "ئارتىش" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3707,8 +3683,8 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s ئۇيغۇنلۇق تىپىلدى، جەدۋىلى %s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3757,29 +3733,29 @@ msgstr "تاللاشنى قالدۇرۇش" msgid "Inside column:" msgstr "ئىچىدىكى سۆزلەم:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 #, fuzzy #| msgid "Add/Delete columns" msgid "Restore column order" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 #, fuzzy #| msgid "Sort" msgid "Filter rows" msgstr "تۈرلەش" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Search in database" msgid "Search this table" msgstr "سانداندىن ئىزدەش" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 #, fuzzy #| msgid "Begin" @@ -3787,7 +3763,7 @@ msgctxt "First page" msgid "Begin" msgstr "باشلا" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 #, fuzzy @@ -3796,7 +3772,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "ئالدىنقىسى" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 #, fuzzy @@ -3805,7 +3781,7 @@ msgctxt "Next page" msgid "Next" msgstr "كىيىنكى ئاي" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 #, fuzzy #| msgid "End" @@ -3813,81 +3789,81 @@ msgctxt "Last page" msgid "End" msgstr "ئاخىرقىسى" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of columns" msgid "Number of rows:" msgstr "سۆزلەم سانى" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 #, fuzzy #| msgid "Partial import" msgid "Partial texts" msgstr "بۆلۈپ كىرگۈزىش" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Display PDF schema" msgid "Display column for relations" msgstr "PDF تىزىىسىنى كۆرسىتىش" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "The bookmark has been deleted." msgid "The row has been deleted." msgstr "خەتكۈچ ئۆچۈرۈلدى." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "ئېنىقسىزلىك بولۇشى مۇمكىن. [doc@faq3-11]FAQ 3.11[/doc] غا قاراڭ." -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -3895,48 +3871,49 @@ msgstr "ئېنىقسىزلىك بولۇشى مۇمكىن. [doc@faq3-11]FAQ 3.11[ msgid "Your SQL query has been executed successfully." msgstr "SQL بۇيرىقى غەلبىلىك بىجىرىلدى" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "بۇ كۆرسەتمە كامىدا ئىگە بولغان سەپ، %sھۆججەت%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "ئۇمۇمىي" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "تاللانغىنى:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3944,27 +3921,27 @@ msgstr "تاللانغىنى:" msgid "Check all" msgstr "ھەممىنى تاللاش" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "بېسىپ كۆرسىتىش" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 #, fuzzy #| msgid "Table comments" msgid "Display chart" msgstr "جەدۋەل ئىزاھى" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 #, fuzzy #| msgid "Link not found" msgid "Link not found!" @@ -4066,19 +4043,19 @@ msgstr "index قىممىتى بەلگىلەنمىگەن!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "تېزىسلار" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -4087,24 +4064,24 @@ msgid "Action" msgstr "ئامال" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "قىممەت ئىسمى" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "بىردىنبىر" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "ئىخچام" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "تۈپ سان" @@ -4112,8 +4089,8 @@ msgstr "تۈپ سان" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -4123,8 +4100,8 @@ msgid "Collation" msgstr "تاسقاش" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -4140,15 +4117,15 @@ msgstr "ئاساسىي قىممەت ئۆچۈرۈلدى" msgid "Index %s has been dropped." msgstr "ئۆچۈرۈلگەن تېزىسلار %s." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "ئۆچۈرۈش" @@ -4185,12 +4162,13 @@ msgstr "قاراش" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4198,7 +4176,7 @@ msgstr "جەدۋەل" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4207,8 +4185,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4216,41 +4194,41 @@ msgid "Search" msgstr "ئىزدەش" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "قىستۇرۇش" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "ھۇقۇقى" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "ئىشلەملەر" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "ئىز قۇغلاش" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4261,16 +4239,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "سانلىق مەلۇمات ئامبىرى قۇرۇق!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "تەكشۈرۈش" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "دائىملىق" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4278,22 +4256,22 @@ msgstr "دائىملىق" msgid "Events" msgstr "ھادىسە" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "لايىھەلىگۈچ" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "Add/Delete columns" msgid "Central columns" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "ساندان" @@ -4302,33 +4280,33 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "كۆچۈرۈش" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4648,7 +4626,7 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5077,40 +5055,40 @@ msgstr "" msgid "Click to toggle" msgstr "بىر چىكىپ تاللاڭ" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "مۇلازىمىتېردىكى يۈكلەش مۇندەرىجىسى" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "كۆرسىتىلگەن مۇندەرىجىگە يۈكلىيەلمىدى." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 #, fuzzy #| msgid "Tracked tables" msgid "There are no files to upload!" msgstr "ئىزلانغان جەدۋەل" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "تازىلاش" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "يازدۇر" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "" @@ -5283,8 +5261,8 @@ msgid "Add new column" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5350,19 +5328,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "%s %s ياكى ئۇنىڭدىنمۇ يۇقىرى نەشىرگە كۆتۈتىڭ." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -6180,7 +6158,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT قوشۇش" @@ -6221,7 +6199,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "قوشۇلغىنى %s" @@ -7851,7 +7829,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 #, fuzzy #| msgid "SQL query" msgid "Retain query box" @@ -8147,109 +8125,35 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "OpenOffice ھۆججىتى" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "%s جەدۋەل تازىلاندى" -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "%s كۆرۈنمە ئۆچۈرۈلدى" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "%s جەدىۋەل ئۆچۈرۈلدى" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "" - -#: libraries/controllers/TableStructureController.php:484 -#, fuzzy -#| msgid "Database %s has been dropped." -msgid "The columns have been moved successfully." -msgstr "ساندان %s ئۆچۈرۈلدى." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -#, fuzzy -#| msgid "Query" -msgid "Query error" -msgstr "تەكشۈرۈش" - -#: libraries/controllers/TableStructureController.php:967 -#, fuzzy, php-format -#| msgid "View %s has been dropped." -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "%s كۆرۈنمە ئۆچۈرۈلدى" - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "ئۆزگەرتتىش" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1201 -#, fuzzy -#| msgid "Use this value" -msgid "Distinct values" -msgstr "مۇشۇ قىممەتنى ئىشلىتىش" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8266,6 +8170,14 @@ msgstr "" msgid "No data to display" msgstr "سۆزلەمنى كۆرسەتمەسلىك" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "" + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "" @@ -8276,25 +8188,91 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr ".ئىچكى ئۇلىنىش مۇاسىۋىتى قۇشۇلدى" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Search" msgid "Table search" msgstr "ئىزدەش" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Search" msgid "Zoom search" msgstr "ئىزدەش" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "SQL query" msgid "Find and replace" msgstr "SQL سورىقى" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:485 +#, fuzzy +#| msgid "Database %s has been dropped." +msgid "The columns have been moved successfully." +msgstr "ساندان %s ئۆچۈرۈلدى." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +#, fuzzy +#| msgid "Query" +msgid "Query error" +msgstr "تەكشۈرۈش" + +#: libraries/controllers/table/TableStructureController.php:975 +#, fuzzy, php-format +#| msgid "View %s has been dropped." +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "%s كۆرۈنمە ئۆچۈرۈلدى" + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "ئۆزگەرتتىش" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1209 +#, fuzzy +#| msgid "Use this value" +msgid "Distinct values" +msgstr "مۇشۇ قىممەتنى ئىشلىتىش" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8304,7 +8282,7 @@ msgstr "%s كېڭەيتىلمە كەمكەن، PHP تەڭشەك ھۆججىتىن msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8379,7 +8357,7 @@ msgstr "قۇرۇش" msgid "Create database:" msgstr "ساندان قۇرۇش" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "ھوقۇقسىز" @@ -9119,71 +9097,71 @@ msgid "Dump has been saved to file %s." msgstr "%s ھۆججىتىدە ساقلاندى." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Go to database: %s" msgstr "ساندان %s غا جەدىۋەل قۇرۇش" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "تۈزىلىشىنىلا" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "" @@ -9206,75 +9184,75 @@ msgstr "" msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "ياكى" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "مۇلازىمىتېردىكى يۈكلەش مۇندەرىجىسى" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "قىستۇرۇش" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "كېيىن" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9286,11 +9264,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9306,43 +9284,43 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Repair table" msgid "Replace table prefix:" msgstr "جەدۋەلنى ئوڭشاش" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Repair table" msgid "Copy table with prefix:" msgstr "جەدۋەلنى ئوڭشاش" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 #, fuzzy #| msgid "Fr" msgid "From" msgstr "جۈمە" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Repair table" msgid "Add table prefix:" msgstr "جەدۋەلنى ئوڭشاش" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -9572,8 +9550,8 @@ msgstr "" msgid "Views:" msgstr "قاراش" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "كۆرسىتىش" @@ -9614,10 +9592,9 @@ msgid_plural "%s results found" msgstr[0] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "table name" -msgid "Filter databases by name or regex" -msgstr "سانلىق مەلۇمات جەدىۋېلى ئىسمى" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -9626,12 +9603,6 @@ msgstr "سانلىق مەلۇمات جەدىۋېلى ئىسمى" msgid "Clear fast filter" msgstr "ھۆججەتنى باشقا ساقلاش" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "table name" -msgid "Filter by name or regex" -msgstr "سانلىق مەلۇمات جەدىۋېلى ئىسمى" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -10031,7 +10002,7 @@ msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -10040,7 +10011,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Privileges" @@ -10060,18 +10031,18 @@ msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" msgid "Drop the database (DROP)" msgstr "كۆچۈرۈلگەن ساندان" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "تۈزىلىشىنىلا" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "تۈزۈلىشى ۋە ئۇچۇر" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "ئۇچۇرنىلا" @@ -10085,7 +10056,7 @@ msgstr "كۆچۈرۈلگەن ساندان" msgid "CREATE DATABASE before copying" msgstr "ئاندىنقى سانداننى كۆپەيتىپ ساندان قۇرۇش" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "مەجبۇرى قوشۇش" @@ -10125,61 +10096,61 @@ msgstr "" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "جەدۋەل تەھلىلى" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "جەدۋەل تەكشۈرۈش" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "جەدۋەل تەكشۈرۈش" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "جەدۋەلنى ئەلالاش" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "جەدۋەلنى ئوڭشاش" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 #, fuzzy @@ -10187,103 +10158,103 @@ msgstr "جەدۋەلنى ئوڭشاش" msgid "Delete data or table" msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 #, fuzzy #| msgid "Drop the database (DROP)" msgid "Delete the table (DROP)" msgstr "كۆچۈرۈلگەن ساندان" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "%s كۆرۈنمە ئۆچۈرۈلدى" -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "%s كۆرۈنمە ئۆچۈرۈلدى" -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "" @@ -10466,7 +10437,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "ئايلاندۇرۇپ ساقلاش جەدىۋېلىدىكى سانلىق مەلۇمات" @@ -10492,21 +10463,21 @@ msgstr "ئىزاھات" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "جەدېۋەلنىڭ تۈزىلىشى" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10618,7 +10589,7 @@ msgid "Database:" msgstr "ساندان" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10733,7 +10704,7 @@ msgid "Data creation options" msgstr "ئامال" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -10802,8 +10773,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10811,97 +10782,97 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Export" msgid "Metadata" msgstr "چىقىرىش" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 #, fuzzy #| msgid "Creation" msgid "Creation:" msgstr "قۇرۇش" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 #, fuzzy #| msgid "Last update" msgid "Last update:" msgstr "ئاخىرقى يېڭلىنىش" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 #, fuzzy #| msgid "Last check" msgid "Last check:" msgstr "ئاخىرقى تەكشۈرۈش" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "ئىشلىتىلمەكتە" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for dumped tables" msgstr "تۆۋەندىكى جەدۋەل(لەر): " -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "تۆۋەندىكى جەدۋەل(لەر): " -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT قوشۇش" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT قوشۇش" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "" @@ -11155,9 +11126,9 @@ msgstr "" msgid "Table of contents" msgstr "" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "" @@ -11321,63 +11292,63 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "!خاتالىق:بۇناسىۋەت ئاللىقاچان مەۋجۈت." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "سىرتقى مۇناسىۋەتلىك ئۇلانما قۇشۇلدى" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "!خاتالىق:مۇناسىۋەت قۇشۇلمىغان." -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Relational features are disabled!" msgstr "!خاتالىق:مۇناسىۋەت قۇشۇلمىغان" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr ".ئىچكى ئۇلىنىش مۇاسىۋىتى قۇشۇلدى" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "!خاتالىق:مۇناسىۋەت قۇشۇلمىغان." -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "سىرتقى مۇناسىۋەتلىك ئۇلانما قۇشۇلدى" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "!خاتالىق:مۇناسىۋەت قۇشۇلمىغان." -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "!خاتالىق:مۇناسىۋەت قۇشۇلمىغان." -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11426,108 +11397,108 @@ msgstr "" msgid "Please see the documentation on how to update your column_info table. " msgstr "" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "Tracked tables" msgid "Persistent favorite tables" msgstr "ئىزلانغان جەدۋەل" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Modifications have been saved" msgid "Configurable menus" msgstr "ئۆزگەرتىشلەر ساقلاندى" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Export" msgid "Saving export templates" msgstr "چىقىرىش" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11707,8 +11678,8 @@ msgstr "ئابۇنىت ئىسمى:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "" @@ -11716,7 +11687,7 @@ msgstr "" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "پارول" @@ -12407,7 +12378,7 @@ msgstr[0] "ساندان %s ئۆچۈرۈلدى." msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "" @@ -12415,100 +12386,96 @@ msgstr "" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "تاقالدى" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "" #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "" #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "" #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12516,65 +12483,65 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "" #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "" #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -12586,8 +12553,8 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12631,31 +12598,31 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12663,7 +12630,7 @@ msgid "Routine" msgstr "دائىملىق" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12678,14 +12645,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -12695,7 +12662,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "" @@ -12704,15 +12671,15 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "" @@ -12735,7 +12702,7 @@ msgid "Native MySQL Authentication" msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ…" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "" @@ -12760,8 +12727,8 @@ msgstr "ئابۇنىت ئىسمى:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Routines" msgid "Host name" @@ -12783,231 +12750,231 @@ msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ…" msgid "Password Hashing Method" msgstr "پارول ھېسابلاش" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add %s" msgid "Add user account" msgstr "قوشۇلغىنى %s" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database comment" msgid "Database for user account" msgstr "ساندان ئىزاھاتى:" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "%s كۆرۈنمە ئۆچۈرۈلدى" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Privileges" msgid "Edit privileges" msgstr "ھۇقۇقى" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Privileges" msgid "Routine-specific privileges" msgstr "ھۇقۇقى" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "With selected:" msgid "Remove selected user accounts" msgstr "تاللانغىنى:" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "ھۇقۇقى" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Privileges" msgid "Edit privileges:" msgstr "ھۇقۇقى" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13016,7 +12983,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -13025,11 +12992,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "" @@ -13271,33 +13238,33 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 #, fuzzy msgid "Refresh rate" msgstr "يېڭلاش" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 #, fuzzy #| msgid "Add/Delete columns" msgid "Chart columns" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -13357,7 +13324,7 @@ msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -13384,33 +13351,33 @@ msgstr "" msgid "Related links:" msgstr "مۇناسىۋىتى" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13418,78 +13385,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13497,7 +13464,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13505,42 +13472,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13548,33 +13515,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13583,244 +13550,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "كىرگۈزگەن ھۆججەت شەكلى" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13828,99 +13795,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13928,18 +13895,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13947,13 +13914,13 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "ئىزلاش ئاكتىپ ئەمەس" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -13962,75 +13929,75 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "مۇلازىمىتىر نۇسخىسى" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Databases" msgid "Database level tabs" msgstr "ساندان" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table comments" msgid "Table level tabs" msgstr "جەدۋەل ئىزاھى" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy #| msgid "View" msgid "View users" msgstr "قاراش" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Add %s" msgid "Add user group" msgstr "قوشۇلغىنى %s" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy #| msgid "No Privileges" msgid "User group menu assignments" msgstr "ھوقۇقسىز" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Columns terminated by" msgid "Group name:" msgstr "خەت ئايرىش بەلگىسى" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "مۇلازىمىتىر نۇسخىسى" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Databases" msgid "Database-level tabs" msgstr "ساندان" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14094,21 +14061,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "With selected:" msgid "An alias was expected." @@ -14171,137 +14134,137 @@ msgstr "%1$s ساندان غەلبىلىك قۇرۇلدى" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "Show dimension of tables" msgid "Unexpected beginning of statement." msgstr "جەدېۋەلنىڭ چوڭ-كىچىكلىكىنى كۆرسىتىش" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The bookmark has been deleted." msgid "At least one column definition was expected." msgstr "خەتكۈچ ئۆچۈرۈلدى." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "سانلىق مەلۇمات ھۆججىتىنىڭ ئېشىش چوڭ-كىچىكلىكى" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy #| msgid "Sat" msgid "State" msgstr "شەنبە" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "يىغىندىسى" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "ۋاقىت" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "ۋاقىت" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Label key" msgid "Label:" msgstr "ئاچقۇچلۇق ئېمزا" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created!" msgstr "قۇرۇلغان خەتكۈچ %s" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -14332,27 +14295,27 @@ msgstr "" msgid "Bind parameters" msgstr "دائىملىق" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "" @@ -14399,181 +14362,181 @@ msgstr "دەرھال ئىشلىتىشنى توختۇتۇڭ" msgid "Deactivate now" msgstr "دەرھال ئىشلىتىشنى توختۇتۇڭ" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "قۇرۇش" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "يېڭلاش" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "نەشىرنى قۇىماق" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "ئىزلاش خاتىرىسى" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "تۈزۈلمە رەسىمى" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "پائال" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "پائالسىز" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "ئاكتىپ ئىزلاش" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "ئاكتىپ ئىزلاش" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format #| msgid "Create version" msgid "Version %1$s of %2$s was deleted." msgstr "نەشىرنى قۇىماق" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "ئىزلانمىغان جەدۋەللەر" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "جەدۋەل ئىزلاش" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "ئىزلانغان جەدۋەل" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "ېيڭى نەشىر" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking" msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "نەشىر" @@ -14583,13 +14546,13 @@ msgstr "نەشىر" msgid "Manage your settings" msgstr "ئاساسىي ئالاقە ۋاريانتلىرى" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." msgstr "ئۆزگەرتىشلەر ساقلاندى" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14692,7 +14655,7 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14717,7 +14680,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -15614,47 +15577,53 @@ msgstr "" msgid "Stacked" msgstr "ئىخچام" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Report title" +msgid "Chart title:" +msgstr "دوكلات تېمىسى" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside column:" msgid "Series column:" msgstr "ئىچىدىكى سۆزلەم:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Number of columns" msgid "Value Column:" msgstr "سۆزلەم سانى" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -15719,57 +15688,58 @@ msgstr "ئىزاھات" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 -#, fuzzy -#| msgid "Internal relation added" -msgid "Internal relations" -msgstr ".ئىچكى ئۇلىنىش مۇاسىۋىتى قۇشۇلدى" - -#: templates/table/relation/common_form.phtml:11 -msgid "Internal relation" -msgstr "" - -#: templates/table/relation/common_form.phtml:14 -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "" - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 #, fuzzy #| msgid "Add constraints" msgid "Foreign key constraints" msgstr "مەجبۇرى قوشۇش" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 #, fuzzy #| msgid "Action" msgid "Actions" msgstr "ئامال" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 #, fuzzy #| msgid "Routines" msgid "Constraint properties" msgstr "دائىملىق" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "مەجبۇرى قوشۇش" +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +#, fuzzy +#| msgid "Internal relation added" +msgid "Internal relations" +msgstr ".ئىچكى ئۇلىنىش مۇاسىۋىتى قۇشۇلدى" + +#: templates/table/relation/common_form.phtml:80 +msgid "Internal relation" +msgstr "" + +#: templates/table/relation/common_form.phtml:83 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "" + # column نى سۆزلەم دەپ ئالساق مۇۋاپىق بولغىدەك -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -15922,7 +15892,7 @@ msgid "at beginning of table" msgstr "جەدېۋەلنىڭ چوڭ-كىچىكلىكىنى كۆرسىتىش" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Relations" msgid "Partitions" @@ -15967,7 +15937,7 @@ msgstr "مۇناسىۋىتى" msgid "Edit partitioning" msgstr "بېسىپ كۆرسىتىش" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -17247,6 +17217,36 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Table" +#~ msgid "tables" +#~ msgstr "جەدۋەل" + +#, fuzzy +#~| msgid "View" +#~ msgid "views" +#~ msgstr "قاراش" + +#, fuzzy +#~| msgid "Events" +#~ msgid "events" +#~ msgstr "ھادىسە" + +#, fuzzy +#~| msgid "Versions" +#~ msgid "functions" +#~ msgstr "نەشىر" + +#, fuzzy +#~| msgid "table name" +#~ msgid "Filter databases by name or regex" +#~ msgstr "سانلىق مەلۇمات جەدىۋېلى ئىسمى" + +#, fuzzy +#~| msgid "table name" +#~ msgid "Filter by name or regex" +#~ msgstr "سانلىق مەلۇمات جەدىۋېلى ئىسمى" + #, fuzzy #~| msgid "Tracking report" #~ msgid "Taking you to %s." diff --git a/po/uk.po b/po/uk.po index 57a5359f41..aa5abca6fd 100644 --- a/po/uk.po +++ b/po/uk.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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:19+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Ukrainian =20) ? 1 : 2;\n" "X-Generator: Weblate 2.5-dev\n" -#: changelog.php:37 license.php:30 +#: changelog.php:37 license.php:33 #, php-format msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " @@ -38,7 +38,7 @@ msgstr "Клацніть для сортування." msgid "Showing rows %1$s - %2$s." msgstr "Показано рядки %1$s - %2$s." -#: db_create.php:61 +#: db_create.php:62 #, php-format msgid "Database %1$s has been created." msgstr "Базу даних %1$s створено." @@ -47,13 +47,13 @@ msgstr "Базу даних %1$s створено." msgid "Database comment" msgstr "Коментар бази даних" -#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:601 +#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:599 #: templates/columns_definitions/column_definitions_form.phtml:84 msgid "Table comments:" msgstr "Коментарі до таблиці:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1568 +#: libraries/insert_edit.lib.php:1575 #: libraries/navigation/nodes/NodeColumn.php:34 #: libraries/plugins/export/ExportHtmlword.php:288 #: libraries/plugins/export/ExportHtmlword.php:384 @@ -63,13 +63,14 @@ msgstr "Коментарі до таблиці:" #: libraries/plugins/export/ExportTexytext.php:282 #: libraries/plugins/export/ExportTexytext.php:373 #: libraries/plugins/export/PMA_ExportPdf.php:472 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:882 libraries/tracking.lib.php:978 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 +#: libraries/tracking.lib.php:892 libraries/tracking.lib.php:990 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:10 -#: templates/table/relation/common_form.phtml:43 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:27 +#: templates/table/relation/common_form.phtml:79 #: templates/table/relation/foreign_key_row.phtml:176 #: templates/table/relation/foreign_key_row.phtml:188 #: templates/table/relation/internal_relational_row.phtml:73 @@ -89,14 +90,14 @@ msgstr "Стовпчик" #: libraries/plugins/export/ExportTexytext.php:283 #: libraries/plugins/export/ExportTexytext.php:374 #: libraries/plugins/export/PMA_ExportPdf.php:474 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 #: libraries/rte/rte_list.lib.php:78 libraries/rte/rte_list.lib.php:106 #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2606 libraries/tracking.lib.php:883 -#: libraries/tracking.lib.php:975 +#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -106,7 +107,7 @@ msgstr "Тип" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:709 -#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1577 +#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1584 #: libraries/plugins/export/ExportHtmlword.php:294 #: libraries/plugins/export/ExportHtmlword.php:390 #: libraries/plugins/export/ExportLatex.php:517 @@ -115,9 +116,9 @@ msgstr "Тип" #: libraries/plugins/export/ExportTexytext.php:284 #: libraries/plugins/export/ExportTexytext.php:375 #: libraries/plugins/export/PMA_ExportPdf.php:476 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 -#: libraries/tracking.lib.php:885 libraries/tracking.lib.php:981 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/tracking.lib.php:895 libraries/tracking.lib.php:993 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 @@ -134,9 +135,9 @@ msgstr "Нуль" #: libraries/plugins/export/ExportTexytext.php:285 #: libraries/plugins/export/ExportTexytext.php:376 #: libraries/plugins/export/PMA_ExportPdf.php:478 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 -#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:886 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:896 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 @@ -148,8 +149,8 @@ msgstr "За замовчуванням" #: libraries/plugins/export/ExportOdt.php:488 #: libraries/plugins/export/ExportTexytext.php:378 #: libraries/plugins/export/PMA_ExportPdf.php:487 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:640 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:663 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 msgid "Links to" msgstr "Посилання на" @@ -160,37 +161,38 @@ msgstr "Посилання на" #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:381 #: libraries/plugins/export/PMA_ExportPdf.php:494 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:651 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:664 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:649 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 #: templates/columns_definitions/table_fields_definitions.phtml:65 msgid "Comments" msgstr "Коментарі" -#: db_datadict.php:155 libraries/controllers/TableStructureController.php:1189 -#: libraries/controllers/TableStructureController.php:1194 -#: libraries/tracking.lib.php:925 +#: db_datadict.php:155 +#: libraries/controllers/table/TableStructureController.php:1197 +#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:79 +#: templates/table/structure/display_structure.phtml:80 msgid "Primary" msgstr "Первинний" -#: db_datadict.php:165 js/messages.php:370 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:371 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 -#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:403 -#: libraries/mult_submits.lib.php:417 +#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:408 +#: libraries/mult_submits.lib.php:422 #: libraries/plugins/export/ExportHtmlword.php:654 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:710 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2971 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3620 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1013 libraries/tracking.lib.php:1018 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2973 +#: libraries/server_privileges.lib.php:2993 +#: libraries/server_privileges.lib.php:3631 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -199,32 +201,32 @@ msgstr "Первинний" msgid "No" msgstr "Ні" -#: db_datadict.php:165 js/messages.php:515 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:516 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 #: libraries/config/FormDisplay.tpl.php:280 -#: libraries/controllers/TableStructureController.php:770 -#: libraries/controllers/TableStructureController.php:1440 -#: libraries/controllers/TableStructureController.php:1449 -#: libraries/controllers/TableStructureController.php:1454 -#: libraries/controllers/TableStructureController.php:1459 -#: libraries/controllers/TableStructureController.php:1464 -#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:199 -#: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 -#: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 +#: libraries/controllers/table/TableStructureController.php:771 +#: libraries/controllers/table/TableStructureController.php:1448 +#: libraries/controllers/table/TableStructureController.php:1457 +#: libraries/controllers/table/TableStructureController.php:1462 +#: libraries/controllers/table/TableStructureController.php:1467 +#: libraries/controllers/table/TableStructureController.php:1472 +#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:200 +#: libraries/mult_submits.lib.php:344 libraries/mult_submits.lib.php:377 +#: libraries/mult_submits.lib.php:406 libraries/mult_submits.lib.php:420 #: libraries/plugins/export/ExportHtmlword.php:655 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:788 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:711 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2968 -#: libraries/server_privileges.lib.php:2989 -#: libraries/server_privileges.lib.php:3617 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1011 libraries/tracking.lib.php:1016 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2970 +#: libraries/server_privileges.lib.php:2991 +#: libraries/server_privileges.lib.php:3628 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -237,8 +239,8 @@ msgstr "Так" msgid "View dump (schema) of database" msgstr "Переглянути дамп (схему) БД" -#: db_export.php:51 db_tracking.php:102 export.php:382 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:176 +#: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 +#: libraries/controllers/DatabaseStructureController.php:157 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "В БД не виявлено таблиць." @@ -255,7 +257,7 @@ msgstr "Таблиці" #: db_export.php:66 libraries/Menu.php:320 libraries/Menu.php:427 #: libraries/Util.php:3407 libraries/Util.php:3417 libraries/Util.php:3423 -#: libraries/Util.php:3702 libraries/Util.php:4339 libraries/Util.php:4356 +#: libraries/Util.php:3703 libraries/Util.php:4340 libraries/Util.php:4357 #: libraries/central_columns.lib.php:729 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:320 @@ -263,10 +265,10 @@ msgstr "Таблиці" #: libraries/config/user_preferences.forms.php:218 #: libraries/config/user_preferences.forms.php:259 #: libraries/config/user_preferences.forms.php:285 -#: libraries/import.lib.php:1299 libraries/navigation/nodes/NodeColumn.php:44 +#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:44 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 -#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:877 +#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:887 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -309,11 +311,11 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "Сховище конфігурації phpMyAdmin деактивовано. %sДовідайтесь чому%s." -#: db_qbe.php:135 +#: db_qbe.php:136 msgid "You have to choose at least one column to display!" msgstr "Необхідно обрати принаймні один стовпчик для відображення!" -#: db_qbe.php:152 +#: db_qbe.php:154 #, php-format msgid "Switch to %svisual builder%s" msgstr "Перейти до %sвізуального конструктора%s" @@ -341,7 +343,7 @@ msgstr "" msgid "No tables selected." msgstr "Жодної таблиці не обрано." -#: db_tracking.php:146 +#: db_tracking.php:149 msgid "Database Log" msgstr "Журнал бази даних" @@ -377,7 +379,7 @@ msgstr "Можливо, варто перезавантажити сторінк msgid "Bad type!" msgstr "Помилковий тип!" -#: export.php:276 +#: export.php:278 msgid "Bad parameters!" msgstr "Помилкові параметри!" @@ -385,99 +387,99 @@ msgstr "Помилкові параметри!" msgid "Invalid export type" msgstr "Невірний тип експорту" -#: gis_data_editor.php:119 +#: gis_data_editor.php:117 #, php-format msgid "Value for the column \"%s\"" msgstr "Значення для стовпчика \"%s\"" -#: gis_data_editor.php:147 +#: gis_data_editor.php:145 #: templates/table/gis_visualization/gis_visualization.phtml:37 msgid "Use OpenStreetMaps as Base Layer" msgstr "Використовуйте OpenStreetMaps як базовий пласт" # Ідентифікатор просторової системи координат #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:169 +#: gis_data_editor.php:167 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:192 +#: gis_data_editor.php:190 #, php-format msgid "Geometry %d:" msgstr "Геометрія %d:" -#: gis_data_editor.php:214 +#: gis_data_editor.php:212 msgid "Point:" msgstr "Точка:" -#: gis_data_editor.php:215 gis_data_editor.php:242 gis_data_editor.php:298 -#: gis_data_editor.php:371 js/messages.php:504 +#: gis_data_editor.php:213 gis_data_editor.php:240 gis_data_editor.php:296 +#: gis_data_editor.php:369 js/messages.php:505 msgid "X" msgstr "X" -#: gis_data_editor.php:218 gis_data_editor.php:246 gis_data_editor.php:302 -#: gis_data_editor.php:377 js/messages.php:505 +#: gis_data_editor.php:216 gis_data_editor.php:244 gis_data_editor.php:300 +#: gis_data_editor.php:375 js/messages.php:506 msgid "Y" msgstr "Y" -#: gis_data_editor.php:240 gis_data_editor.php:296 gis_data_editor.php:369 -#: js/messages.php:507 +#: gis_data_editor.php:238 gis_data_editor.php:294 gis_data_editor.php:367 +#: js/messages.php:508 #, php-format msgid "Point %d" msgstr "Точка %d" -#: gis_data_editor.php:253 gis_data_editor.php:309 gis_data_editor.php:387 -#: js/messages.php:513 +#: gis_data_editor.php:251 gis_data_editor.php:307 gis_data_editor.php:385 +#: js/messages.php:514 msgid "Add a point" msgstr "Додати точку" -#: gis_data_editor.php:270 +#: gis_data_editor.php:268 #, php-format msgid "Linestring %d:" msgstr "Відрізок %d:" -#: gis_data_editor.php:273 gis_data_editor.php:350 +#: gis_data_editor.php:271 gis_data_editor.php:348 msgid "Outer ring:" msgstr "Зовнішнє кільце:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:273 gis_data_editor.php:350 #, php-format msgid "Inner ring %d:" msgstr "Внутрішнє кільце %d:" -#: gis_data_editor.php:312 +#: gis_data_editor.php:310 msgid "Add a linestring" msgstr "Додати відрізок" -#: gis_data_editor.php:313 gis_data_editor.php:392 js/messages.php:514 +#: gis_data_editor.php:311 gis_data_editor.php:390 js/messages.php:515 msgid "Add an inner ring" msgstr "Додати внутрішнє кільце" -#: gis_data_editor.php:334 +#: gis_data_editor.php:332 #, php-format msgid "Polygon %d:" msgstr "Багатокутник %d:" -#: gis_data_editor.php:398 +#: gis_data_editor.php:396 msgid "Add a polygon" msgstr "Додати багатокутник" -#: gis_data_editor.php:404 +#: gis_data_editor.php:402 msgid "Add geometry" msgstr "Додати геометрію" -#: gis_data_editor.php:410 js/messages.php:345 libraries/DbSearch.php:462 -#: libraries/DisplayResults.php:1783 libraries/browse_foreigners.lib.php:142 +#: gis_data_editor.php:408 js/messages.php:346 libraries/DbSearch.php:462 +#: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:151 #: libraries/display_export.lib.php:404 libraries/display_export.lib.php:410 -#: libraries/display_import.lib.php:403 libraries/index.lib.php:42 -#: libraries/insert_edit.lib.php:1547 libraries/insert_edit.lib.php:1584 +#: libraries/display_import.lib.php:403 libraries/index.lib.php:45 +#: libraries/insert_edit.lib.php:1554 libraries/insert_edit.lib.php:1591 #: libraries/normalization.lib.php:168 libraries/normalization.lib.php:825 #: libraries/operations.lib.php:47 libraries/operations.lib.php:114 #: libraries/operations.lib.php:266 libraries/operations.lib.php:309 #: libraries/operations.lib.php:806 libraries/operations.lib.php:877 -#: libraries/operations.lib.php:926 libraries/operations.lib.php:1336 -#: libraries/operations.lib.php:1653 +#: libraries/operations.lib.php:926 libraries/operations.lib.php:1339 +#: libraries/operations.lib.php:1656 #: libraries/plugins/auth/AuthenticationCookie.php:239 #: libraries/replication_gui.lib.php:124 libraries/replication_gui.lib.php:163 #: libraries/replication_gui.lib.php:328 libraries/replication_gui.lib.php:465 @@ -486,12 +488,12 @@ msgstr "Додати геометрію" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2343 -#: libraries/server_privileges.lib.php:3114 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_user_groups.lib.php:285 -#: libraries/sql_query_form.lib.php:369 libraries/sql_query_form.lib.php:429 -#: libraries/tracking.lib.php:536 libraries/tracking.lib.php:656 +#: libraries/server_privileges.lib.php:2345 +#: libraries/server_privileges.lib.php:3116 +#: libraries/server_privileges.lib.php:3735 +#: libraries/server_user_groups.lib.php:290 +#: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 +#: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 #: prefs_manage.php:280 prefs_manage.php:358 #: templates/columns_definitions/column_definitions_form.phtml:64 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 @@ -504,11 +506,11 @@ msgstr "Додати геометрію" msgid "Go" msgstr "Вперед" -#: gis_data_editor.php:413 +#: gis_data_editor.php:411 msgid "Output" msgstr "Вивід" -#: gis_data_editor.php:416 +#: gis_data_editor.php:414 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -520,7 +522,7 @@ msgstr "" msgid "Succeeded" msgstr "Вдало" -#: import.php:59 js/messages.php:588 +#: import.php:59 js/messages.php:589 msgid "Failed" msgstr "Помилка" @@ -585,7 +587,7 @@ msgstr "" "Неможливо завантажити імпортовані плагіни, будь ласка, перевірте вашу " "установку!" -#: import.php:669 libraries/sql.lib.php:744 libraries/sql.lib.php:1468 +#: import.php:669 libraries/sql.lib.php:754 libraries/sql.lib.php:1485 #, php-format msgid "Bookmark %s has been created." msgstr "Закладку %s створено." @@ -617,7 +619,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "" -#: import_status.php:111 js/messages.php:444 libraries/Util.php:797 +#: import_status.php:111 js/messages.php:445 libraries/Util.php:797 #: libraries/export.lib.php:523 #: libraries/plugins/schema/ExportRelationSchema.php:301 user_password.php:268 msgid "Back" @@ -644,7 +646,7 @@ msgstr "" msgid "General settings" msgstr "Загальні налаштування" -#: index.php:191 js/messages.php:617 +#: index.php:191 js/messages.php:618 #: libraries/display_change_password.lib.php:54 #: libraries/display_change_password.lib.php:57 user_password.php:262 msgid "Change password" @@ -748,7 +750,11 @@ msgstr "Отримати підтримку" msgid "List of changes" msgstr "Перелік змін" -#: index.php:453 +#: index.php:438 libraries/server_plugins.lib.php:83 +msgid "License" +msgstr "Ліцензія" + +#: index.php:460 #, fuzzy #| msgid "" #| "Your configuration file contains settings (root with no password) that " @@ -766,7 +772,7 @@ msgstr "" "відкритий для вторгнення і тому Вам обов'язково слід виправити цю прогалину " "у безпеці." -#: index.php:470 +#: index.php:477 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -775,7 +781,7 @@ msgstr "" "У конфігурації PHP увімкнено mbstring.func_overload. Цей параметр несумісний " "з phpMyAdmin і може викликати пошкодження деяких даних!" -#: index.php:485 +#: index.php:492 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -785,7 +791,7 @@ msgstr "" "багатобайтові символи. Без mbstring phpMyAdmin не зможе правильно виконати " "поділ текстових рядків, що може призвести до неочікуваних результатів." -#: index.php:502 +#: index.php:509 #, fuzzy #| msgid "" #| "Your PHP parameter [a@http://php.net/manual/en/session.configuration." @@ -803,7 +809,7 @@ msgstr "" "придатності cookie в phpMyAdmin, через це термін дії вашої сесії закінчиться " "раніше, ніж налаштовано в phpMyAdmin." -#: index.php:521 +#: index.php:528 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -812,11 +818,11 @@ msgstr "" "налаштований в phpMyAdmin, через це термін дії вашої сесії закінчиться " "раніше, ніж налаштовано в phpMyAdmin." -#: index.php:537 +#: index.php:544 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Конфігураційний файл потребує секретної фрази (blowfish_secret)." -#: index.php:550 +#: index.php:557 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. It is strongly recommended to remove it " @@ -828,7 +834,7 @@ msgstr "" "видалити. В іншому випадку безпека вашого сервера може бути скомпрометована " "через вільний доступ до завантаження конфігураційного файлу." -#: index.php:566 +#: index.php:573 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -837,13 +843,13 @@ msgstr "" "Сховище конфігурації phpMyAdmin не повністю налаштовано, деякі розширені " "функції було деактивовано. %sЗ'ясуйте чому%s. " -#: index.php:573 +#: index.php:580 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" "Або перейдіть на вкладинку 'Операції' будь-якої бази даних та налаштуйте там." -#: index.php:619 +#: index.php:626 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -852,7 +858,7 @@ msgstr "" "Версія бібліотеки PHP MySQL %s відрізняється від версії сервера MySQL %s. Це " "може спричинити непередбачувані наслідки." -#: index.php:647 +#: index.php:654 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -874,7 +880,7 @@ msgstr "Підтвердити" msgid "Do you really want to execute \"%s\"?" msgstr "Ви дійсно бажаєте виконати \"%s\"?" -#: js/messages.php:45 libraries/mult_submits.lib.php:397 +#: js/messages.php:45 libraries/mult_submits.lib.php:402 msgid "You are about to DESTROY a complete database!" msgstr "Ви збираєтесь ЗНИЩИТИ базу даних!" @@ -1019,7 +1025,7 @@ msgid "Save & close" msgstr "Зберегти та закрити" #: js/messages.php:109 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1551 prefs_manage.php:364 +#: libraries/insert_edit.lib.php:1558 prefs_manage.php:364 #: prefs_manage.php:375 msgid "Reset" msgstr "Перевстановити" @@ -1081,10 +1087,10 @@ msgstr "Будь ласка, виберіть стовпець(і) для інд msgid "You have to add at least one column." msgstr "Необхідно додати принаймні один стовпчик." -#: js/messages.php:129 libraries/insert_edit.lib.php:1549 +#: js/messages.php:129 libraries/insert_edit.lib.php:1556 #: templates/columns_definitions/column_definitions_form.phtml:159 #: templates/table/index_form.phtml:237 -#: templates/table/relation/common_form.phtml:108 +#: templates/table/relation/common_form.phtml:127 msgid "Preview SQL" msgstr "Попередній перегляд SQL" @@ -1129,8 +1135,8 @@ msgstr "Паролі не однакові!" msgid "Removing Selected Users" msgstr "Видалення відмічених користувачів" -#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:461 -#: libraries/tracking.lib.php:831 +#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:471 +#: libraries/tracking.lib.php:841 msgid "Close" msgstr "Закрити" @@ -1158,7 +1164,7 @@ msgstr "Рядок видалено." #. l10n: Other, small valued, queries #: js/messages.php:155 libraries/ServerStatusData.php:130 -#: libraries/server_status_queries.lib.php:148 +#: libraries/server_status_queries.lib.php:150 msgid "Other" msgstr "Інше" @@ -1335,7 +1341,7 @@ msgstr "Питання" msgid "Traffic" msgstr "Трафік" -#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4330 +#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4331 #: libraries/server_status_monitor.lib.php:258 msgid "Settings" msgstr "Налаштування" @@ -1348,9 +1354,9 @@ msgstr "Додати графік до сітки" msgid "Please add at least one variable to the series!" msgstr "Будь ласка додайте щонайменше одну змінну до ряду!" -#: js/messages.php:216 libraries/DisplayResults.php:1477 +#: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1466,7 +1472,7 @@ msgstr "Змінити налаштування" msgid "Current settings" msgstr "Поточні налаштування" -#: js/messages.php:253 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:253 msgid "Chart title" msgstr "Назва графіку" @@ -1551,21 +1557,21 @@ msgstr "Аналізується…" msgid "Explain output" msgstr "Тлумачити вихідні дані" -#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4326 +#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4327 #: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:396 #: libraries/rte/rte_list.lib.php:104 -#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:282 -#: libraries/tracking.lib.php:1623 +#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:284 +#: libraries/tracking.lib.php:1639 msgid "Status" msgstr "Стан" -#: js/messages.php:289 js/messages.php:870 +#: js/messages.php:289 js/messages.php:862 #: libraries/plugins/export/ExportHtmlword.php:484 #: libraries/plugins/export/ExportOdt.php:600 #: libraries/plugins/export/ExportTexytext.php:445 #: libraries/plugins/export/PMA_ExportPdf.php:314 #: libraries/rte/rte_list.lib.php:93 -#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:239 +#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:243 msgid "Time" msgstr "Час" @@ -1651,10 +1657,10 @@ msgstr "" "конфігурації за замовчуванням…" #: js/messages.php:322 libraries/Menu.php:355 libraries/Menu.php:457 -#: libraries/Menu.php:578 libraries/Util.php:4329 libraries/Util.php:4344 -#: libraries/Util.php:4361 libraries/config/messages.inc.php:260 +#: libraries/Menu.php:578 libraries/Util.php:4330 libraries/Util.php:4345 +#: libraries/Util.php:4362 libraries/config/messages.inc.php:260 #: libraries/display_import.lib.php:108 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:241 +#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:241 #: setup/frames/menu.inc.php:26 msgid "Import" msgstr "Імпорт" @@ -1713,7 +1719,13 @@ msgstr "Тест" msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 libraries/server_variables.lib.php:159 +#: js/messages.php:343 +#, fuzzy +#| msgid "Bad parameters!" +msgid "No parameters found!" +msgstr "Помилкові параметри!" + +#: js/messages.php:347 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 @@ -1724,73 +1736,73 @@ msgstr "" msgid "Cancel" msgstr "Скасувати" -#: js/messages.php:349 libraries/Header.php:457 +#: js/messages.php:350 libraries/Header.php:457 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "Змінити налаштування" -#: js/messages.php:350 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:351 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Застосувати" -#: js/messages.php:353 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:354 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:124 msgid "Loading…" msgstr "Завантаження…" -#: js/messages.php:354 +#: js/messages.php:355 #, fuzzy #| msgid "Request Aborted!!" msgid "Request aborted!!" msgstr "Запит скасовано!" -#: js/messages.php:355 +#: js/messages.php:356 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "Обробка запиту" -#: js/messages.php:356 +#: js/messages.php:357 #, fuzzy #| msgid "Request Aborted!!" msgid "Request failed!!" msgstr "Запит скасовано!" -#: js/messages.php:357 +#: js/messages.php:358 #, fuzzy #| msgid "Error in processing request:" msgid "Error in processing request" msgstr "Помилка при обробці запиту:" -#: js/messages.php:358 +#: js/messages.php:359 #, php-format msgid "Error code: %s" msgstr "Код помилки: %s" -#: js/messages.php:359 +#: js/messages.php:360 #, php-format msgid "Error text: %s" msgstr "Текст помилки: %s" -#: js/messages.php:360 libraries/db_common.inc.php:73 +#: js/messages.php:361 libraries/db_common.inc.php:73 #: libraries/db_table_exists.lib.php:33 libraries/server_databases.lib.php:462 msgid "No databases selected." msgstr "Жодної бази даних не вибрано." -#: js/messages.php:361 +#: js/messages.php:362 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "Видалення стовпчика" -#: js/messages.php:362 +#: js/messages.php:363 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "Додати первинний ключ" -#: js/messages.php:363 +#: js/messages.php:364 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1800,189 +1812,189 @@ msgstr "Додати первинний ключ" msgid "OK" msgstr "OK" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Click to dismiss this notification" msgstr "Клікніть для пропуску цьго повідомлення" -#: js/messages.php:367 +#: js/messages.php:368 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "Перейменування баз даних" -#: js/messages.php:368 +#: js/messages.php:369 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "Копіювання бази даних" -#: js/messages.php:369 +#: js/messages.php:370 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "Зміна Кодування" -#: js/messages.php:373 libraries/Util.php:3289 +#: js/messages.php:374 libraries/Util.php:3289 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Відключити перевірки зовнішніх ключів" -#: js/messages.php:376 +#: js/messages.php:377 msgid "Failed to get real row count." msgstr "Не вдалося отримати реальну кількість рядків." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Searching" msgstr "Пошук" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide search results" msgstr "Сховати результати пошуку" -#: js/messages.php:381 +#: js/messages.php:382 msgid "Show search results" msgstr "Показати результати пошуку" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Browsing" msgstr "Перегляд" -#: js/messages.php:383 +#: js/messages.php:384 msgid "Deleting" msgstr "Видалення" -#: js/messages.php:387 +#: js/messages.php:388 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Визначення збереженої функції має містити оператор RETURN!" -#: js/messages.php:388 libraries/DisplayResults.php:4832 -#: libraries/DisplayResults.php:5091 libraries/Menu.php:347 -#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3709 -#: libraries/Util.php:3710 libraries/Util.php:4328 libraries/Util.php:4343 -#: libraries/Util.php:4360 libraries/config/messages.inc.php:254 +#: js/messages.php:389 libraries/DisplayResults.php:4850 +#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 +#: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 +#: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2448 -#: libraries/server_privileges.lib.php:2527 -#: libraries/server_privileges.lib.php:2873 -#: libraries/server_privileges.lib.php:3532 -#: libraries/server_status_monitor.lib.php:321 prefs_manage.php:306 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2875 +#: libraries/server_privileges.lib.php:3543 +#: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 msgid "Export" msgstr "Експортувати" -#: js/messages.php:391 libraries/rte/rte_routines.lib.php:742 +#: js/messages.php:392 libraries/rte/rte_routines.lib.php:742 msgid "ENUM/SET editor" msgstr "ENUM/SET редактор" -#: js/messages.php:392 +#: js/messages.php:393 #, php-format msgid "Values for column %s" msgstr "Значення для колонки %s" -#: js/messages.php:393 +#: js/messages.php:394 msgid "Values for a new column" msgstr "Значення для нового стовпчика" -#: js/messages.php:394 +#: js/messages.php:395 msgid "Enter each value in a separate field." msgstr "Введіть кожне значення в окреме поле." -#: js/messages.php:395 +#: js/messages.php:396 #, php-format msgid "Add %d value(s)" msgstr "Додати %d значення(ь)" -#: js/messages.php:399 +#: js/messages.php:400 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Примітка: Якщо файл містить кілька таблиць, то вони будуть об'єднані в одну." -#: js/messages.php:403 +#: js/messages.php:404 msgid "Hide query box" msgstr "Сховати блок запиту" -#: js/messages.php:404 +#: js/messages.php:405 msgid "Show query box" msgstr "Показати блок запиту" -#: js/messages.php:405 libraries/Console.php:88 libraries/Console.php:217 -#: libraries/DisplayResults.php:3457 libraries/DisplayResults.php:4816 +#: js/messages.php:406 libraries/Console.php:88 libraries/Console.php:217 +#: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4834 #: libraries/Index.php:721 libraries/Util.php:727 libraries/Util.php:1238 -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:119 +#: libraries/server_user_groups.lib.php:121 #: libraries/server_variables.lib.php:242 #: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 msgid "Edit" msgstr "Редагувати" -#: js/messages.php:406 libraries/Console.php:89 libraries/DbSearch.php:360 -#: libraries/DisplayResults.php:3526 libraries/DisplayResults.php:4800 +#: js/messages.php:407 libraries/Console.php:89 libraries/DbSearch.php:360 +#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4818 #: libraries/central_columns.lib.php:854 #: libraries/central_columns.lib.php:1200 libraries/display_export.lib.php:227 -#: libraries/server_user_groups.lib.php:129 -#: libraries/sql_query_form.lib.php:416 libraries/tracking.lib.php:480 +#: libraries/server_user_groups.lib.php:131 +#: libraries/sql_query_form.lib.php:417 libraries/tracking.lib.php:490 #: setup/frames/index.inc.php:187 setup/frames/index.inc.php:295 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Видалити" -#: js/messages.php:407 libraries/DisplayResults.php:915 -#: libraries/DisplayResults.php:923 +#: js/messages.php:408 libraries/DisplayResults.php:919 +#: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d неправильний номер рядка." -#: js/messages.php:408 -#: libraries/controllers/table/TableSearchController.php:435 -#: libraries/controllers/table/TableSearchController.php:920 -#: libraries/sql.lib.php:193 tbl_change.php:159 +#: js/messages.php:409 +#: libraries/controllers/table/TableSearchController.php:432 +#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "Огляд зовнішніх значень" -#: js/messages.php:409 +#: js/messages.php:410 msgid "No auto-saved query" msgstr "" -#: js/messages.php:410 +#: js/messages.php:411 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Змінна" -#: js/messages.php:413 libraries/normalization.lib.php:889 +#: js/messages.php:414 libraries/normalization.lib.php:889 msgid "Pick" msgstr "" -#: js/messages.php:414 +#: js/messages.php:415 msgid "Column selector" msgstr "Вибір стопчиків" -#: js/messages.php:415 +#: js/messages.php:416 msgid "Search this list" msgstr "Шукати в цьому списку" -#: js/messages.php:417 +#: js/messages.php:418 #, 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:420 +#: js/messages.php:421 msgid "See more" msgstr "Дивитись більше" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Are you sure?" msgstr "Ви впевнені?" -#: js/messages.php:423 +#: js/messages.php:424 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1990,70 +2002,70 @@ msgstr "" "Ця дія може змінити визначення деяких стовпців.
Ви впевнені, що бажаєте " "продовжувати?" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "Продовжити" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "Додати первинний ключ" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "Було додано первинний ключ." -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "Перехід до наступного кроку…" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Перший крок нормалізації для таблиці '%s' завершений." -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "Кінець кроку" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "Другий крок нормалізації (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "Готово" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "Підтвердіть часткові залежності" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "Обрані часткові залежності такі:" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "Немає обраних часткових залежностей!" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Покажіть мені можливі часткові залежності, що ґрунтуються на даних у таблиці" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "Приховати список часткових залежностей" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2061,194 +2073,194 @@ msgstr "" "Всім залишатись на місцях! Це може зайняти деякий час, залежно від розміру " "даних та кількості стовпців у таблиці." -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "Крок" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "Будуть виконані наступні дії:" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "СКИНУТИ стовпці %s для таблиці %s" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "Створити наступну таблицю" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "Третій крок нормалізації (3NF)" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "Підтвердіть перехресні залежності" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "Обрані залежності такі:" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "Жодної залежності не обрано!" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Зберегти" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "Сховати критерії пошуку" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "Показати критерії пошуку" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "Діапазон пошуку" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "Максимум стовпчика:" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "Мінімум стовпчика:" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "Мінімальне значення:" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "Максимальне значення:" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "Сховати критерії пошуку та заміни" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "Показати критерії пошуку та заміни" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "Кожна точка являє собою рядок даних." -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "Наведення курсора над крапкою відобразить, її назву." -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Щоб збільшити масштаб, виберіть ділянку діаграми за допомогою миші." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" "Натисніть кнопку Скидання масштабу, щоб повернутися до початкового стану." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "Клікніть на дані щоб переглянути та можливо редагувати дані рядка." -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Розмір графіка може бути змінений шляхом перетягування нижнього правого кута." -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "Виділити дві колонки" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "Виділити дві різні колонки" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "Вміст точки даних" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ігнорувати" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "Копіювати" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "Точка" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "Відрізок" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "Полігон" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Геометрія" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Внутрішнє кільце" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Зовнішнє кільце:" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "Ви хочете скопіювати ключ шифрування?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "Ключ шифрування" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Обрати ключі посилання" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Обрати зовнішній ключ" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "Будь ласка, оберіть первинний ключ або унікальний ключ!" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Виберіть колонку для відображення" -#: js/messages.php:532 +#: js/messages.php:533 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?" @@ -2256,79 +2268,79 @@ msgstr "" "Ви не зберегли зміни в макет. Вони будуть втрачені, якщо ви не збережете їх. " "Бажаєте продовжити?" -#: js/messages.php:535 +#: js/messages.php:536 msgid "Page name" msgstr "Назва сторінки" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Зберегти сторінку" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Save page" msgid "Save page as" msgstr "Зберегти сторінку" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Відкрити сторінку" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "Видалити сторінку" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Без назви" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "Будь ласка, оберіть сторінку для продовження" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "Ви хочете зберегти зміни до поточної сторінки?" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "Сторінка успішно видалена" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "Експортувати схему зв'язків" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Модифікації було збережено" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "Додати опцію для колонки \"%s\"." -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "Створено %d об'єкт(ів)." -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Виконати" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "Натисніть Escape для відміни редагування." -#: js/messages.php:557 +#: js/messages.php:558 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?" @@ -2336,15 +2348,15 @@ msgstr "" "Ви змінили деякі дані, і вони не були збережені. Ви впевнені, що хочете " "залишити цю сторінку перед збереженням даних?" -#: js/messages.php:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "Перетягніть для зміни порядку." -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "Клацніть для сортування за цим стовпчиком." -#: js/messages.php:563 +#: js/messages.php:564 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 " @@ -2354,28 +2366,28 @@ msgstr "" "ASC/DESC.
- Ctrl+клік чи Alt+клік (для Mac: Shift+Option+клік) для " "видалення стовпчика із списку ORDER BY" -#: js/messages.php:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "Клацніть для встановлення/зняття позначки." -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "Клацніть двічі, щоб скопіювати назву стовпчика." -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" "Клацніть на стрілку випадаючого меню
для перемикання видимості " "стовпчика." -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Показати все" -#: js/messages.php:574 +#: js/messages.php:575 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." @@ -2384,13 +2396,13 @@ msgstr "" "редагування, прапорцем, посиланнями Редагувати, Копіювати та Видаляти можуть " "не працювати після збереження." -#: js/messages.php:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Будь-ласка введіть допустимий шістнадцятковий рядок. Допустимі символи: 0-9, " "A-F." -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2398,143 +2410,104 @@ msgstr "" "Ви дійсно хочете побачити усі рядки? Для великих таблиць це може призвести " "до зависання браузеру." -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "Початковий рядок" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "скасувати" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Перервано" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "Успішно" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "Стан імпорту" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Скинути файли сюди" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "Спочатку оберіть базу даних" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Ви також можете редагувати більшість значень
двіччі клацнувши прямо " "по них." -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Ви також можете редагувати більшість колонок
клацнувши безпосередньо " "на них." -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "Перейти за посиланням:" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "Копіювати назву стовпчик(ів)." -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Клацніть правою кнопкою назву стовпчика, щоб скопіювати його в буфер обміну." -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "Згенерувати пароль" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Згенерувати" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "Більше" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Показати панель" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Приховати панель" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "Показати приховані пункти дерева навігації." -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "Зв'язати з головною панеллю" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "Видалити зв'язок з головною панеллю" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -#, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "Таблиці" - -#: js/messages.php:633 -#, fuzzy -#| msgid "Views" -msgid "views" -msgstr "Подання" - -#: js/messages.php:634 -#, fuzzy -#| msgid "Procedures" -msgid "procedures" -msgstr "Процедури" - -#: js/messages.php:635 -#, fuzzy -#| msgid "event" -msgid "events" -msgstr "подія" - -#: js/messages.php:636 -#, fuzzy -#| msgid "Functions" -msgid "functions" -msgstr "Функції" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" "Запитану сторінку не знайдено в історії, можливо минув її термін зберігання." -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2544,50 +2517,50 @@ msgstr "" "Найновіша версія %s, випущена %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", остання стабільна версія:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "оновлено" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "Створити подання" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy #| msgid "Send error reports" msgid "Send error report" msgstr "Надіслати звіти про помилку" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Надіслати звіт про помилку" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" "Трапилася фатальна помилка JavaScript. Ви хочете відіслати звіт про неї?" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Змінити налаштування звіту" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Показати подробиці звіту" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2595,7 +2568,7 @@ msgstr "" "Ваш експорт є неповним у зв'язку з низьким часовим лімітом для виконання на " "рівні PHP!" -#: js/messages.php:667 +#: js/messages.php:659 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2605,368 +2578,368 @@ msgstr "" "надсилання деякі поля може бути проігноровано через значення РНР " "max_input_vars." -#: js/messages.php:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "На сервері були виявлені деякі помилки!" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "Будь-ласка зверніть увагу на нижню частину цього вікна." -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "Ігнорувати все" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "Згідно ваших налаштувань, що наразі вносяться, будьте терплячими." -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "Виконати цей запит ще раз?" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "Ви дійсно бажаєте видалити цю закладку?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, fuzzy, php-format #| msgid "Execute" msgid "%s queries executed %s times in %s seconds." msgstr "Виконати" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Коментарі таблиці" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Сховати результати пошуку" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "Попередня" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "Наступна" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "Сьогодні" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "Січень" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "Лютий" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "Березень" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "Квітень" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Травень" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "Червень" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "Липень" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "Серпень" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "Вересень" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "Жовтень" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "Листопад" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "Грудень" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Січ" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Лют" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Бер" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Квт" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "Трв" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Чрв" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Лип" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Сер" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Вер" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Жов" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Лис" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Гру" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "Неділя" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "Понеділок" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "Вівторок" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "Середа" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "Четвер" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "П'ятниця" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "Субота" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Вт" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Сер" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Чт" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Пт" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Сб" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "Нд" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "Пн" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "Вт" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "Ср" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "Чт" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "Пт" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "Сб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "Тж" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "календар-місяць-рік" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "немає" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "Година" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "Хвилина" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "Секунда" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Використовувати текстове поле" -#: js/messages.php:886 +#: js/messages.php:878 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid email address" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:887 +#: js/messages.php:879 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "Введіть вірний номер!" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:889 +#: js/messages.php:883 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date ( ISO )" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:890 +#: js/messages.php:885 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "Введіть вірний номер!" -#: js/messages.php:891 +#: js/messages.php:888 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "Введіть вірний номер!" -#: js/messages.php:892 +#: js/messages.php:890 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" @@ -2978,53 +2951,53 @@ msgstr "Введіть вірну довжину!" msgid "Please enter the same value again" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter at least {0} characters" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a value between {0} and {1}" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:898 +#: js/messages.php:917 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" msgstr "Введіть вірну довжину!" -#: js/messages.php:899 +#: js/messages.php:922 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a value greater than or equal to {0}" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:901 +#: js/messages.php:928 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date or time" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:902 +#: js/messages.php:933 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "Введіть вірний номер!" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Помилка" @@ -3114,11 +3087,12 @@ msgstr "Повторити запит" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3161,7 +3135,7 @@ msgstr "Під час поточного сеансу" msgid "Explain" msgstr "Тлумачити" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Профілювання" @@ -3195,8 +3169,8 @@ msgid "History" msgstr "Історія" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3365,7 +3339,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Перейти до скопійованої таблиці" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3373,24 +3347,24 @@ msgstr "" "Сервер не відповідає (або локальний сокет сервера MySQL невірно " "налаштований)." -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "Сервер не відповідає." -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "Будь ласка, перевірте привілеї каталогу містить базу даних." -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Деталі…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "Помилка при вказуванні з'єднання для controluser в конфігурації." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3400,8 +3374,8 @@ msgstr "Помилка при вказуванні з'єднання для cont msgid "Ascending" msgstr "Зростаючий" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3548,8 +3522,8 @@ msgstr[1] "%1$s співпадіння у %2$s" msgstr[2] "%1$s співпадінь у %2$s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3593,121 +3567,122 @@ msgstr "Зняти всі відмітки" msgid "Inside column:" msgstr "Всередині стовпчика:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "Зберегти відредаговані дані" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "Відновити порядок стовпців" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "Фільтрувати рядки" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "Шукати в таблиці" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "Почати" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "Попередній" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "Вперед" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "Кінець" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Все" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "Число рядків:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Сортувати за ключем" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "Часткові тексти" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "Повні тексти" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Ключ відношення" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Display foreign key relationships" msgid "Display column for relations" msgstr "Відображати відносини зовнішнього ключа" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "Показати двійковий вміст" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "Показати вміст BLOB-ОБ'ЄКТІВ" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "Сховати перетворення" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "Добре відомий текст" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "Добре відомий бінарний" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "Рядок видалено." -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Вбити" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Може бути приблизним. Дивіться [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "Ваш SQL запит було виконано вдало." -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3716,40 +3691,40 @@ msgstr "" "Подання має щонайменше цю кількість рядків. Будь-ласка, зверніться до " "%sдокументації%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "Показано рядки %1s - %2s" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d total, %2$d в запиті" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "всього %d" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "Запит виконувався %01.4f с." -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "З відміченими:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3757,25 +3732,25 @@ msgstr "З відміченими:" msgid "Check all" msgstr "Відмітити все" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Версія для друку" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Операції з результатами запиту" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Відобразити діаграму" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "Візуалізація даних ГІС" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "Посилання не знайдено!" @@ -3872,19 +3847,19 @@ msgstr "Індекс не визначено!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Індекси" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3893,24 +3868,24 @@ msgid "Action" msgstr "Дія" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Назва ключа" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Унікальне" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Запакований" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Кількість елементів" @@ -3918,8 +3893,8 @@ msgstr "Кількість елементів" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3929,8 +3904,8 @@ msgid "Collation" msgstr "Порівняння" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3946,15 +3921,15 @@ msgstr "Первинний ключ було знищено." msgid "Index %s has been dropped." msgstr "Індекс %s було знищено." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Знищити" @@ -3992,12 +3967,13 @@ msgstr "Подання" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4005,7 +3981,7 @@ msgstr "Таблиця" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4014,8 +3990,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4023,41 +3999,41 @@ msgid "Search" msgstr "Шукати" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Вставити" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Привілеї" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Операції" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Відстеження" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4068,16 +4044,16 @@ msgstr "Тригери" msgid "Database seems to be empty!" msgstr "Порожня база даних!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Запит" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Процедури" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4085,20 +4061,20 @@ msgstr "Процедури" msgid "Events" msgstr "Події" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Дизайнер" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "Центральні стовпчики" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Бази даних" @@ -4109,33 +4085,33 @@ msgid "User accounts" msgstr "Групи користувачів" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Бінарний журнал" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Реплікація" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Змінні" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Кодування" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Двигуни" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "Плагіни" @@ -4436,7 +4412,7 @@ msgstr "Неможливо перейменувати індекс в PRIMARY!" msgid "No index parts defined!" msgstr "Не визначено частини індекса!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Помилка при створенні зовнішнього ключа на %1$s (перевірте типи даних)" @@ -4898,37 +4874,37 @@ msgstr "На функціональність %s впливає відома п msgid "Click to toggle" msgstr "Клікніть, щоб змінити" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "Переглянути Ваш комп'ютер:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Виберіть з каталога веб-сервера для відвантаження файлів %s:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Встановлений Вами каталог для завантаження файлів недоступний." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "Немає файлів для відвантаження!" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Очистити" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "Виконати" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Друк" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "Користувачі" @@ -5091,8 +5067,8 @@ msgid "Add new column" msgstr "Додати стовпчик" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5156,19 +5132,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "Вам необхідно оновити до %s %s або пізнішої." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "Помилка: невідповідний токен" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "спроба перезапису GLOBALS" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "можливе використання" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "виявлено цифровий ключ" @@ -6047,7 +6023,7 @@ msgid "Remember file name template" msgstr "Запам'ятати шаблон імені файлу" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "Додати значення AUTO_INCREMENT" @@ -6088,7 +6064,7 @@ msgstr "Відсутня таблиця для збереження конфіг #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "Додати %s" @@ -7845,7 +7821,7 @@ msgid "" msgstr "" "Визначає, чи має залишатися вікно запиту на екрані після надсилання запиту." -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "Залишати вікно запиту" @@ -8156,103 +8132,33 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Текст OpenDocument" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "Перелік обраного заповнено!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Таблицю %s було очищено." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "Перегляд %s було знищено." -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "Таблицю %s було знищено." -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "Перелік обраного заповнено!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "невідоме" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "Жодного стовпчика не вибрано." - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "Стовпці успішно переміщено." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "Таблицю %1$s було успішно змінено." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "Помилка запиту" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Змінити" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Індекс" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "Просторовий" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "ПовнТекст" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "Окремі значення" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8266,6 +8172,14 @@ msgstr "" msgid "No data to display" msgstr "Немає даних для відображення" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "Таблицю %1$s було успішно змінено." + #: libraries/controllers/table/TableRelationController.php:212 #, fuzzy #| msgid "Thread %s was successfully killed." @@ -8278,25 +8192,87 @@ msgstr "Процес %s припинено." msgid "Internal relations were successfully updated." msgstr "Внутрішнє відношення додано." -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Table Search" msgid "Table search" msgstr "Пошук в таблиці" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Zoom Search" msgid "Zoom search" msgstr "Збільшити Пошук" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "Find and Replace" msgid "Find and replace" msgstr "Знайти і замінити" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "Жодного стовпчика не вибрано." + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "Стовпці успішно переміщено." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "Помилка запиту" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Змінити" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Індекс" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "Просторовий" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "ПовнТекст" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "Окремі значення" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8307,7 +8283,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "можлива атака глибокої рекурсії" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Змін немає" @@ -8373,7 +8349,7 @@ msgstr "Створити" msgid "Create database:" msgstr "Створити базу даних:" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Без привілеїв" @@ -9134,71 +9110,71 @@ msgid "Dump has been saved to file %s." msgstr "Dump збережено у файл %s." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL повернула пустий результат (тобто нуль рядків)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Наступні структури були створені, або змінені. Ви можете:" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "Переглянути деталі структури клацанням по її імені." -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Змінити будь-яке налаштування клацанням по відповідному посиланню \"Параметри" "\"." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "Відредагувати структуру за посиланням \"Структура\"." -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "Перейти до бази даних: %s" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "Редагувати налаштування для %s" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "Перейти до таблиці: %s" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "Структура %s" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "Перейти до подання: %s" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "Створити індекс у  %s стовпчиках" @@ -9221,66 +9197,66 @@ msgstr "Функція" msgid "Binary" msgstr "Двійковий" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "Через велику довжину
цей стовпчик неможливо відредагувати." -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Двійкові дані - не редагуються" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Або" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "каталог веб-сервера для відвантаження файлів:" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "Редагувати/Вставити" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "Продовжити вставку з %s рядка" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "і потім" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Вставити як новий рядок" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "Вставити як новий рядок і ігнорувати помилки" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "Відображати запит вставлення" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Повернутись" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Вставити новий запис" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Повернутися на цю сторінку" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Редагувати наступний рядок" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9290,7 +9266,7 @@ msgstr "" "Для переходу від значення до значення використовуйте TAB, або CTRL+стрілки - " "для переміщення куди завгодно" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9302,11 +9278,11 @@ msgstr "" msgid "Value" msgstr "Значення" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "Показ SQL-запиту" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "Ідентифікатор доданого рядка: %1$d" @@ -9322,35 +9298,35 @@ msgstr "Немає" msgid "Convert to Kana" msgstr "Конвертувати в Кану" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "Замінити префікс таблиці:" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "Копіювати таблицю з префіксом:" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "Від" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "До" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "Додати префікс таблиці:" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "Додати префікс" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "Ви насправді хочете виконати даний запит?" @@ -9572,8 +9548,8 @@ msgstr "Процедури:" msgid "Views:" msgstr "Подання:" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Показати" @@ -9614,18 +9590,15 @@ msgstr[1] "" msgstr[2] "" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" -msgstr "Фільтрувати бази даних за іменем або регулярним виразом" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 msgid "Clear fast filter" msgstr "Очистити швидкий фільтр" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "Фільтрувати за іменем або регулярним виразом" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -10017,7 +9990,7 @@ msgstr "Перейменувати базу даних на" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -10028,7 +10001,7 @@ msgstr "Ви для цього маєте недостатньо прав!" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -10048,18 +10021,18 @@ msgstr "Видалити базу даних" msgid "Drop the database (DROP)" msgstr "Знищити базу даних (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Лише структуру" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Структуру і дані" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Лише дані" @@ -10071,7 +10044,7 @@ msgstr "Копіювати базу даних в" msgid "CREATE DATABASE before copying" msgstr "Виконайте CREATE DATABASE перед копіюванням" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Додати обмеження" @@ -10111,163 +10084,163 @@ msgstr "Тип таблиць" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Скопіювати таблицю в (база даних.таблиця)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Перейти до скопійованої таблиці" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Обслуговування таблиці" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Аналіз таблиці" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Перевірити таблицю" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Перевірити таблицю" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Дефрагментувати таблицю" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "Було очищено кеш таблиці %s." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "Очистити кеш таблиці (FLUSH)" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Оптимізувати таблицю" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Ремонтувати таблицю" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "Видалити дані або таблицю" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "Очистити таблицю (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "Видалити таблицю (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Аналізувати" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Перевірити" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Оптимізувати" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Перебудувати" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Відремонтувати" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Collapse" msgid "Coalesce" msgstr "Згорнути" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "Обслуговування розділів" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "Розділ %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "Видалити розділи" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Перевір цілісність даних на рівні посилань:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Не можу перенести таблицю саму в себе!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Не можу скопіювати таблицю саму в себе!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Таблицю %s було перенесено в %s." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Таблицю %s було скопійовано в %s." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "Таблицю %s було перенесено в %s." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "Таблицю %s було скопійовано в %s." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Порожня назва таблиці!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "Цей формат не має параметрів" @@ -10441,7 +10414,7 @@ msgstr "Параметри дампу даних" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Дамп даних таблиці" @@ -10465,21 +10438,21 @@ msgstr "Визначення" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Структура таблиці" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Структура для представлення" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Дублююча структура для представлення" @@ -10569,7 +10542,7 @@ msgid "Database:" msgstr "База даних:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "Дані:" @@ -10677,7 +10650,7 @@ msgid "Data creation options" msgstr "Параметри створення даних" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -10766,8 +10739,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10775,84 +10748,84 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Missing data for %s" msgid "Metadata" msgstr "Пропущені дані для %s" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Metadata for %s" msgstr "Пропущені дані для %s" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Створення:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Останнє оновлення:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Остання перевірка:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "використовується" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Обмеження зовнішнього ключа збережених таблиць" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Обмеження зовнішнього ключа таблиці" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "Індекси збережених таблиць" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "Індекси таблиці" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT для збережених таблиць" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT для таблиці" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "MIME-ТИПИ ТАБЛИЦІ" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "ЗВ'ЯЗКИ ТАБЛИЦІ" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "Структура для подання %s, експортованого як таблиця" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "Помилка читання даних:" @@ -11106,9 +11079,9 @@ msgstr "Схема зв'язків" msgid "Table of contents" msgstr "Зміст" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Додатково" @@ -11340,57 +11313,57 @@ msgstr "Форматує текст у вигляді SQL запиту з під msgid "Formats text as XML with syntax highlighting." msgstr "Форматує текст у вигляді SQL запиту з підсвічуванням синтаксису." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Помилка: зв'язок вже існує." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "FOREIGN KEY відношення додано." -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "Error: Relation could not be added!" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Помилка: Відношення не вдалося додати!" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "Помилка: реляційні функції вимкнені!" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "Внутрішнє відношення додано." -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "Error: Relation could not be added!" msgid "Error: Internal relation could not be added!" msgstr "Помилка: Відношення не вдалося додати!" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "FOREIGN KEY relation has been added." msgid "FOREIGN KEY relation has been removed." msgstr "FOREIGN KEY відношення додано." -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "Error: Relation could not be added!" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Помилка: Відношення не вдалося додати!" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "Error: Relation could not be added!" msgid "Error: Internal relation could not be removed!" msgstr "Помилка: Відношення не вдалося додати!" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Internal relation has been added." msgid "Internal relation has been removed." @@ -11446,65 +11419,65 @@ msgstr "" "За інформацією як поновити Вашу таблицю Column_comments прошу дивитись у " "Документації." -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Закладка на SQL-запит" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL історія" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "Нещодавно використані таблиці" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "Persistent recently used tables" msgid "Persistent favorite tables" msgstr "Нещодавно використані таблиці" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "Налаштування інтерфейсу часто використовуваних таблиць" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "Користувацькі настройки" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "Налаштовувані меню" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "Приховати/показати пункти навігації" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Remember table's sorting" msgid "Remembering Designer Settings" msgstr "Запам'ятати сортування таблиці" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "Невірний тип експорту" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "Швидкі кроки до встановлення розширених властивостей:" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, fuzzy, php-format #| msgid "" #| "Create the needed tables with the examples/create_tables.sql." @@ -11513,11 +11486,11 @@ msgstr "" "Створити необхідні таблиці за допомогою examples/create_tables.sql." -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "Створити користувача phpMyAdmin та дати йому доступ до цих таблиць." -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -11525,23 +11498,23 @@ msgstr "" "Підключіть додаткові функції в конфігураційному файлі (config.inc.php), почніть з прикладу в config.sample.inc.php." -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Перезайдіть в phpMyAdmin, щоб завантажити оновлений конфігураційний файл." -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "без опису" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11549,14 +11522,14 @@ msgid "" "configuration storage there." msgstr "Відсутня таблиця для збереження конфігурації phpMyAdmin" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Відсутня таблиця для збереження конфігурації phpMyAdmin" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -11757,8 +11730,8 @@ msgstr "Ім'я користувача:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Ім'я користувача" @@ -11766,7 +11739,7 @@ msgstr "Ім'я користувача" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Пароль" @@ -12397,7 +12370,7 @@ msgstr[2] "%1$d баз даних успішно знищено." msgid "Plugin" msgstr "Плагін" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Версія" @@ -12405,98 +12378,94 @@ msgstr "Версія" msgid "Author" msgstr "Автор" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "Ліцензія" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "відключено" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Немає прав." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "Містить всі права за винятком GRANT." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Дозволити читання даних." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Дозволити вставку та заміну даних." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Дозволити зміну даних." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Дозволяє видалення даних." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Дозволяє створювати нові бази даних і таблиці." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Дозволяє видалення баз даних та таблиць." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Дозволити перезавантаження установок та очищення кешу сервера." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Дозволити вимкнення сервера." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "Дозволяє перегляд процесів усіх користувачів." #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "Дозволити імпорт даних з файлів, та експорт у файли." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "Неефективно для цієї версії MySQL." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Дозволити створення та знищення індексів." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Дозволяє змінювати структуру наявних таблиць." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Надає доступ до повного списку баз даних." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12507,67 +12476,67 @@ msgstr "" "встановлення глобальних змінних чи припинення процесів інших користувачів." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Дозволяє створювати тимчасові таблиці." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Дозволити блокування таблиць для біжучих потоків." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Необхідно для реплікації slaves." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "Надати користувачу право запитувати де є slaves / masters." #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Дозволяє створення нових уявлень (CREATE VIEW)." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "Дозволяє налаштувати події планувальника подій." #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "Дозволяє створення та видалення тригерів." #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Дозволяє виконувати SHOW CREATE VIEW запити." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Дозволяє створення збережених процедур." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Дозволяє зміну та видалення збережених процедур." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Дозволяє створення, видалення та перейменування облікових записів " "користувачів." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Дозволяє виконання збережених процедур." @@ -12579,8 +12548,8 @@ msgstr "Немає" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12624,14 +12593,14 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Примітка: Встановлення цієї опції у 0 (нуль) знімає обмеження." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Обмежити кількість запитів, які користувач може надіслати серверу протягом " "години." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -12640,21 +12609,21 @@ msgstr "" "даних, які користувач може виконати протягом години." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Обмежити кількість нових під'єднань, які користувач може створювати протягом " "години." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "Обмежити кількість одночасних підключень, які користувач може мати." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12662,7 +12631,7 @@ msgid "Routine" msgstr "Процедури" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -12682,14 +12651,14 @@ msgstr "Дозволяє виконання збережених процеду #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Права, які стосуються таблиці" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Примітка: назви прав MySQL задаються англійською." @@ -12699,7 +12668,7 @@ msgid "Administration" msgstr "Адміністрування" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Глобальні права" @@ -12708,15 +12677,15 @@ msgid "Global" msgstr "Глобальний" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Права, які стосуються бази даних" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Дозволяє створювати нові таблиці." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Дозволяє знищувати таблиці." @@ -12739,7 +12708,7 @@ msgid "Native MySQL Authentication" msgstr "Авторизація за допомогою cookie" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Інформація авторизації" @@ -12766,8 +12735,8 @@ msgstr "Ім'я користувача:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Log name" msgid "Host name" @@ -12789,120 +12758,120 @@ msgstr "Аутентифікація" msgid "Password Hashing Method" msgstr "Хешування паролю:" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "Пароль для %s змінено вдало." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "Ви відмінили привілеї для %s." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add user group" msgid "Add user account" msgstr "Додати групу користувачів" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "База даних для користувача" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "Створити базу даних з таким самим іменем та надати всі привілеї." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Надати всі привілеї на те, що підпадає під шаблон (ім'я користувача\\_%)." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Надати всі привілеї на базу даних \"%s\"." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "Користувачі, що мають доступ до \"%s\"" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "Користувача було додано." -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Надати" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "Користувача не знайдено." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Довільний" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "глобальний" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "специфічний для бази даних" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "шаблон" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "специфічний для таблиці" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "Редагувати привілеї:" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Відмінити" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "Редагувати групу користувачів" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… зберегти попереднього." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… видалити попереднього з таблиці користувачів." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… анулювати всі активні привілеї попереднього користувача та видалити його " "після того." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12910,120 +12879,120 @@ msgstr "" "… видалити попереднього з таблиці користувачів та перевантажити права після " "того." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Змінити реєстраційні дані / Копіювати користувача" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Створити нового користувача з такими ж правами та …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Привілеї, що стосуються стовпчиків таблиці" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Видалити обраних користувачів" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Відмінити всі активні привілеї користувачів та видалити їх після того." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "Видалити бази даних, які мають такі ж назви, як імена користувачів." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "Жодного користувача не обрано для видалення!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Перезавантаження прав" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Обраних користувачів видалено вдало." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "Ви оновили привілеї для %s." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "Видалення %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Привілеї перезавантажено вдало." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "Користувач %s вже існує!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "Привілеї для %s" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Користувач" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "Новий" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "Редагувати привілеї:" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "User groups" msgid "User account" msgstr "Групи користувачів" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "Перегляд користувачів" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13036,7 +13005,7 @@ msgstr "" "сервером, якщо в цю таблицю вносилися зміни вручну. У цьому випадку Вам " "необхідно %sперезавантажити права%s перед продовженням." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13055,11 +13024,11 @@ msgstr "" "сервером, якщо в цю таблицю вносилися зміни вручну. У цьому випадку Вам " "необхідно %sперезавантажити права%s перед продовженням." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "Вказаного користувача не знайдено в таблиці прав." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Ви додали нового користувача." @@ -13317,24 +13286,24 @@ msgstr "Інструкції/Налаштування" msgid "Done dragging (rearranging) charts" msgstr "Впорядкування/перетягування діаграм завершено" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "Увімкнути перетягування діаграм" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "Інтервал оновлення" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "Діаграма стовпців" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "Розташування діаграми" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -13342,7 +13311,7 @@ msgstr "" "Розташування діаграм зберігаються у локальному сховищі браузерів. Його можна " "експортувати, якщо при налаштуванні виникають складнощі." -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "Скинути до початкових значень" @@ -13404,7 +13373,7 @@ msgid "Statements" msgstr "Параметри" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "#" @@ -13429,7 +13398,7 @@ msgstr "Показати неформатовані значення" msgid "Related links:" msgstr "Пов'язані посилання:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -13437,11 +13406,11 @@ msgstr "" "Кількість підключень, що було перервано через відключення клієнта без " "належного закриття з'єднання." -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Кількість невдалих спроб підключитися до сервера MySQL." -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -13451,16 +13420,16 @@ msgstr "" "але перевищили значення binlog_cache_size і використали тимчасовий файл для " "збереження команд транзакції." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "Кількість операцій, що використали кеш тимчасового двійкового журналу." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Кількість спроб підключення (успішних чи навпаки) до сервера MySQL." -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13472,11 +13441,11 @@ msgstr "" "значення tmp_table_size, щоб тимчасові таблиці розміщувалися в пам'яті, а не " "на диску." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "Скільки було створено тимчасових файлів mysqld." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -13484,7 +13453,7 @@ msgstr "" "Кількість тимчасових таблиць в пам'яті, автоматично створювані сервером під " "час виконання команд." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -13492,7 +13461,7 @@ msgstr "" "Кількість рядків, записаних за допомогою команди INSERT DELAYED, при яких " "виникла помилка (ймовірно через дублі ключа)." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -13500,23 +13469,23 @@ msgstr "" "Кількість використовуваних потоків обробника команди INSERT DELAYED. Кожній " "таблиці, на якій використана команда INSERT DELAYED, надається свій потік." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "Кількість рядків, записаних за допомогою команди INSERT DELAYED." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "Кількість виконаних команд FLUSH." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "Кількість внутрішніх команд COMMIT." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "Кількість разів, коли рядок було видалено з таблиці." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -13526,7 +13495,7 @@ msgstr "" "таблицю з вказаним іменем. Це називається виявлення. Handler_discover - це " "кількість виявлених таблиць." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -13536,7 +13505,7 @@ msgstr "" "можливо, сервер виконує забагато повних сканувань індексу; наприклад, " "командою SELECT col1 FROM foo, за умови, що col1 проіндексовано." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -13544,7 +13513,7 @@ msgstr "" "Кількість запитів на читання рядка на основі ключа. Високе значення означає, " "що ваші запити та таблиці правильно проіндексовані." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -13554,13 +13523,13 @@ msgstr "" "значення зростає, якщо ви створюєте запит індексу стовпчика з обмеженням " "діапазону або виконуєте сканування індексу." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13572,7 +13541,7 @@ msgstr "" "результатів. Ви, напевно, здійснюєте багато запитів, що вимагають сканування " "всієї таблиці, або маєте об'єднання, які неправильно використовують ключі." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13584,37 +13553,37 @@ msgstr "" "означає, що таблиці належним чином не індексуються, або запити не " "використовують переваг наявних індексів." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "Кількість внутрішніх команд ROLLBACK." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "Кількість запитів на оновлення рядка в таблиці." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "Кількість запитів на додавання рядка в таблицю." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "Кількість сторінок, що містять дані (брудні або чисті)." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "Поточна кількість брудних сторінок." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Кількість сторінок буферного пулу, щодо яких був виконаний запит на очищення " "(FLUSH)." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "Кількість вільних сторінок." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -13624,7 +13593,7 @@ msgstr "" "в даний момент читаються або записуються або не можуть бути очищені або " "видалені з іншої причини." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -13636,11 +13605,11 @@ msgstr "" "можна розрахувати за формулою Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "Загальний розмір буферного пулу, у сторінках." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -13649,7 +13618,7 @@ msgstr "" "відбувається при виконанні запиту на сканування великої частини таблиці, але " "у випадковому порядку." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -13657,11 +13626,11 @@ msgstr "" "Кількість послідовних випереджуючих читань, ініційованих InnoDB. Це " "відбувається, коли InnoDB здійснює послідовне повне сканування таблиці." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "Кількість логічних запитів на читання, виконаних InnoDB." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -13669,7 +13638,7 @@ msgstr "" "Кількість логічних читань, що InnoDB не зміг виконати з буферного пулу і був " "змушений здійснити посторінкове читання." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -13683,51 +13652,51 @@ msgstr "" "підраховує кількість таких очікувань. Якщо правильно налаштовано розмір " "буферного пула, це значення буде невеликим." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "Кількість записів, здійснених в буферний пул InnoDB." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "Кількість операцій fsync() до цього моменту." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "Поточна кількість незавершених операцій fsync()." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "Поточна кількість незавершених операцій читання." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "Поточна кількість незавершених операцій запису." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "Обсяг прочитаних даних до цього моменту, в байтах." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "Загальна кількість прочитаних даних." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "Загальна кількість записаних даних." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "Обсяг записаних даних до цього моменту, в байтах." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "Кількість сторінок, записаних у операціях подвійного запису." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "Кількість виконаних операцій подвійного запису." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -13735,35 +13704,35 @@ msgstr "" "Кількість затримок, що сталися через малий буфер журналу і очікування його " "очищення для продовження." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "Кількість запитів на запис у журнал." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "Кількість фізичних записів у файл журналу." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "Кількість записів fsync() здійснених до файлу журналу." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "Кількість незавершених fsyncs до файлу журналу." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "Відкладені записи у файл журналу." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "Кількість байт, записаних у файл журналу." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "Кількість створених сторінок." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -13772,52 +13741,52 @@ msgstr "" "значень наводяться у сторінках, але знаючи розмір сторінки їх легко " "перевести у байти." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "Кількість прочитаних сторінок." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "Кількість записаних сторінок." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "Кількість наразі очікуваних блокувань рядків." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Середній час виконання блокування рядка, в мілісекундах." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Загальний час, витрачений на виконання блокувань рядків, в мілісекундах." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Максимальний час виконання блокування рядка, в мілісекундах." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "Кількість разів, коли довелося чекати на блокування рядка." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "Кількість рядків, видалених з таблиць InnoDB." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "Кількість рядків, доданих до таблиць InnoDB." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "Кількість рядків, прочитаних з таблиць InnoDB." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "Кількість рядків, оновлених з таблиць InnoDB." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -13825,7 +13794,7 @@ msgstr "" "Кількість індексних блоків в кеші індексу, що змінилися, але ще не були " "перенесені на диск. Раніше вона називалася Not_flushed_key_blocks." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -13833,7 +13802,7 @@ msgstr "" "Кількість невикористаних блоків у кеші індексу. Цим значенням визначається " "ступінь використання кешу індексу." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -13842,15 +13811,15 @@ msgstr "" "Кількість використаних блоків в кеші індексу. Це значення сигналізує про " "максимальну кількість блоків, що були одночасно використані." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "Відсоток використаного кешу ключів (обчислене значення)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "Кількість запитів на читання індексного блоку з кеша." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13860,26 +13829,26 @@ msgstr "" "то значення key_buffer_size швидше за все замале. Коефіцієнт невдалих " "звернень до кешу може бути обчислений як Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "Кількість запитів запису індексного блоку до кеша." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "Кількість фізичних записів індексного блоку на диску." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13890,7 +13859,7 @@ msgstr "" "одного і того ж запиту. Початкове значення 0 означає, що запиту ще " "скомпільовано не було." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -13898,11 +13867,11 @@ msgstr "" "Максимальна кількість підключень, що були одночасно використані з моменту " "запуску сервера." -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Кількість рядків, які чекають запису в запитах INSERT DELAYED." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -13910,21 +13879,21 @@ msgstr "" "Кількість таблиць, які були відкриті. Якщо відкритих таблиць забагато, кеш " "таблиць напевно вичерпується." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "Кількість відкритих файлів." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Кількість відкритих потоків (використовуються в основному для ведення " "журналу)." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "Кількість відкритих таблиць." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13934,19 +13903,19 @@ msgstr "" "вказувати на проблеми фрагментації, яку можна виправити виконавши команду " "FLUSH QUERY CACHE." -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "Обсяг вільної пам'яті для кешу запитів." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "Кількість вдалих запитів у кеш." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "Кількість запитів, доданих до кешу." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13959,7 +13928,7 @@ msgstr "" "використовує стратегію LRU (найдовше невикористовувані сторінки замінюються " "новими)." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13967,19 +13936,19 @@ msgstr "" "Кількість некешованих запитів (не кешується, або не кешовано через параметр " "query_cache_type)." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "Кількість запитів зареєстрованих в кеші." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "Загальна кількість блоків у кеші запитів." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "Стан відмовостійкі реплікації (поки не реалізовано)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -13987,13 +13956,13 @@ msgstr "" "Число запитів-об'єднань, які не використовують індекси. Якщо це значення не " "дорівнює 0, необхідно уважно перевірити індекси таблиць." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" "Число запитів-об'єднань, які використовували пошук по діапазону таблиці, на " "яку посилаються." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -14002,7 +13971,7 @@ msgstr "" "після кожного рядка. (Якщо це не 0, необхідно уважно перевірити індекси " "таблиць.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -14010,17 +13979,17 @@ msgstr "" "Число запитів-сполук, які використовували діапазони в першій таблиці. " "(Значення не є критичним, навіть якщо завелике.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "Число запитів-об'єднань, які зробили повне сканування першої таблиці." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Кількість тимчасових таблиць, відкритих в даний момент підпорядкованим SQL " "потоком." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -14028,13 +13997,13 @@ msgstr "" "Загальна кількість (з моменту запуску) повторних транзакцій реплікації " "підпорядкованим SQL потоком." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Надається значення ON, якщо цей сервер підпорядкованим, що підключений " "керуючого сервера." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -14042,12 +14011,12 @@ msgstr "" "Кількість потоків, на створення яких знадобилося більш ніж slow_launch_time " "секунд." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Кількість запитів, які виконувалися більш ніж long_query_time секунд." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -14057,23 +14026,23 @@ msgstr "" "слід розглянути питання про збільшення значення системної змінної " "sort_buffer_size." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "Кількість сортувань, виконаних з використанням діапазонів." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "Кількість відсортованих рядків." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "Кількість сортувань, виконаних шляхом сканування таблиці." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "Кількість разів, коли блокування таблиці була виконано негайно." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14085,7 +14054,7 @@ msgstr "" "продуктивністю, необхідно спочатку оптимізувати запити і потім, або " "розділити таблицю чи таблиці, або використовувати реплікацію." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -14095,11 +14064,11 @@ msgstr "" "обчислити за формулою Threads_created/Connections. Якщо це значення червоне, " "необхідно збільшити thread_cache_size." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "Кількість наразі відкритих з'єднань." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14110,11 +14079,11 @@ msgstr "" "завелике, можна збільшити значення thread_cache_size. (Зазвичай, це не дає " "помітного зростання продуктивності при гарній реалізації потоків.)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "Відношення звернень до кешу потоку (обчислене значення)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "Кількість потоків в активному стані." @@ -14123,57 +14092,57 @@ msgstr "Кількість потоків в активному стані." msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "Групи користувачів" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "Вкладки рівня сервера" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "Вкладки рівня бази даних" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "Вкладки рівня таблиці" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "Переглянути користувачів" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "Додати групу користувачів" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "Призначення меню груп користувачів" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "Назва групи:" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "Вкладки рівня сервера" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "Вкладки рівня бази даних" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "Вкладки рівня таблиці" @@ -14237,21 +14206,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14322,113 +14287,113 @@ msgstr "Подія %1$s була створена." msgid "Variable name was expected." msgstr "Шаблон імені таблиці" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "На початку таблиці" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 #, fuzzy #| msgid "Unexpected characters on line %s." msgid "Unexpected token." msgstr "Неочікувані символи в рядку %s." -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 #, fuzzy #| msgid "The number of tables that are open." msgid "The name of the entity was expected." msgstr "Кількість відкритих таблиць." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Рядок видалено." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "Детальний профіль" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "Порядок" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "Стан" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "Загальний час" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "% Часу" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "Виклики" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "ø Час" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Закладка на даний SQL запит" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "Мітка:" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Надати всім користувачам доступ до цієї закладки" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "Закладка не створена!" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Як стандартний запит на огляд даних використовується закладка \"%s\"." -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "Показ у вигляді коду PHP" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, fuzzy, php-format #| msgid "" #| "Current selection does not contain a unique column. Grid edit, checkbox, " @@ -14440,7 +14405,7 @@ msgstr "" "Це виділення не містить унікальні стовпчики. Сітка редагування, прапорець, " "функції Редагувати, Копіювати та Видаляти недоступні." -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, fuzzy, php-format #| msgid "" #| "Current selection does not contain a unique column. Grid edit, checkbox, " @@ -14452,7 +14417,7 @@ msgstr "" "Це виділення не містить унікальні стовпчики. Сітка редагування, прапорець, " "функції Редагувати, Копіювати та Видаляти недоступні." -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблеми з індексами таблиці `%s`" @@ -14483,27 +14448,27 @@ msgstr "" msgid "Bind parameters" msgstr "Помилкові параметри!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "Закласти цей SQL запит:" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Замінити існуючу закладку з таким же ім'ям" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Розділювач" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Показати даний запит тут знову" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Лише перегляд" @@ -14548,116 +14513,116 @@ msgstr "Видалити відстеження для %s" msgid "Deactivate now" msgstr "Деактивувати зараз" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Створено" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Оновлено" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "Створити версію" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Звіт відстеження" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Знімок структури" # активна -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "активний" # не активна -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "неактивний" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "Вирази відстеження" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "Видалити рядки даних відстеження із звіту" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "Немає даних" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "SQL дамп (завантажити файл)" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "SQL дамп" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "Ця опція замінить вашу таблицю і дані в ній." -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "Виконання SQL" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "Експортувати як %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "Вираз маніпуляції з даними" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "Вираз визначення даних" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Дата" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Ім'я користувача" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Знімок версії %s (SQL код)" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "Немає" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "Дані відстеження визначення успішно видалені" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "Дані відстеження маніпуляцій успішно видалено" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -14665,63 +14630,63 @@ msgstr "" "Ви можете виконати дамп, створивши і використавши для цього тимчасову базу " "даних. Будь ласка, переконайтеся, що у вас є достатні привілеї." -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "Закоментуйте ці два рядка, якщо вони не потрібні." -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "SQL вирази експортовано. Будь ласка, скопіюйте дамп або виконайте його." -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "Звіт про відстеження для таблиці `%s`" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Відстеження за %1$s було активовано на версії %2$s." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Відстеження за %1$s було деактивоване на версії %2$s." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format #| msgid "Create version %1$s of %2$s" msgid "Version %1$s of %2$s was deleted." msgstr "Створити версію %1$s із %2$s" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Невідстежувані таблиці" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Відслідковувати таблицю" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Відслідковувані таблиці" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Остання версія" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "Видалити дані відстеження" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Версії" @@ -14729,11 +14694,11 @@ msgstr "Версії" msgid "Manage your settings" msgstr "Керування налаштуваннями" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "Конфігурація була збережена." -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14838,7 +14803,7 @@ msgstr "БД відсутні" msgid "View dump (schema) of databases" msgstr "Переглянути дамп (схему) баз даних" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14863,7 +14828,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin не може припинити процес %s. Він вже напевно був зупинений." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -15746,47 +15711,53 @@ msgstr "" msgid "Stacked" msgstr "Кладка" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "Назва графіку" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "Вісь X:" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "Серії:" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "Мітка вісі X:" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "Значення X" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "Мітка вісі Y:" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Значення Y" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside column:" msgid "Series column:" msgstr "Всередині стовпчика:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Values for column %s" msgid "Value Column:" msgstr "Значення для колонки %s" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -15847,15 +15818,49 @@ msgstr "Коментар:" msgid "Drag to reorder" msgstr "Перетягніть для зміни порядку." -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +#, fuzzy +#| msgid "Foreign key constraint" +msgid "Foreign key constraints" +msgstr "Обмеження зовнішнього ключа" + +#: templates/table/relation/common_form.phtml:9 +#, fuzzy +#| msgid "Action" +msgid "Actions" +msgstr "Дія" + +#: templates/table/relation/common_form.phtml:10 +#, fuzzy +#| msgid "Constraints for table" +msgid "Constraint properties" +msgstr "Обмеження зовнішнього ключа таблиці" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "Обмеження зовнішнього ключа" + +#: templates/table/relation/common_form.phtml:60 +#, fuzzy +#| msgid "Add constraints" +msgid "+ Add constraint" +msgstr "Додати обмеження" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "Інтернаціональні зв'язки" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "Внутрішні відносини" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15863,40 +15868,7 @@ msgstr "" "Внутрішній зв'язок не вимагається, якщо існує відповідний зв'язок за " "допомогою зовнішнього ключа (FOREIGN KEY)." -#: templates/table/relation/common_form.phtml:37 -#, fuzzy -#| msgid "Foreign key constraint" -msgid "Foreign key constraints" -msgstr "Обмеження зовнішнього ключа" - -#: templates/table/relation/common_form.phtml:40 -#, fuzzy -#| msgid "Action" -msgid "Actions" -msgstr "Дія" - -#: templates/table/relation/common_form.phtml:41 -#, fuzzy -#| msgid "Constraints for table" -msgid "Constraint properties" -msgstr "Обмеження зовнішнього ключа таблиці" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "Обмеження зовнішнього ключа" - -#: templates/table/relation/common_form.phtml:83 -#, fuzzy -#| msgid "Add constraints" -msgid "+ Add constraint" -msgstr "Додати обмеження" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "Виберіть стовпець для відображення:" @@ -16035,7 +16007,7 @@ msgid "at beginning of table" msgstr "На початку таблиці" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16084,7 +16056,7 @@ msgstr "розділений" msgid "Edit partitioning" msgstr "Видалити розділи" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "Редагувати подання" @@ -17493,6 +17465,37 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert встановлено у 0" +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "Таблиці" + +#, fuzzy +#~| msgid "Views" +#~ msgid "views" +#~ msgstr "Подання" + +#, fuzzy +#~| msgid "Procedures" +#~ msgid "procedures" +#~ msgstr "Процедури" + +#, fuzzy +#~| msgid "event" +#~ msgid "events" +#~ msgstr "подія" + +#, fuzzy +#~| msgid "Functions" +#~ msgid "functions" +#~ msgstr "Функції" + +#~ msgid "Filter databases by name or regex" +#~ msgstr "Фільтрувати бази даних за іменем або регулярним виразом" + +#~ msgid "Filter by name or regex" +#~ msgstr "Фільтрувати за іменем або регулярним виразом" + #~ msgid "Taking you to %s." #~ msgstr "Перехід до %s." diff --git a/po/ur.po b/po/ur.po index 1b9405ccfe..179683f7b1 100644 --- a/po/ur.po +++ b/po/ur.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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:05+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Urdu Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "تعاون کریں" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 #, fuzzy #| msgid "The primary key has been dropped." msgid "Primary key added." msgstr "بنیادی کلید چھوڑ دیا گیا ہے" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "کھوج رپورٹ" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "ہوچکا" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 #, fuzzy #| msgid "Check privileges for database \"%s\"." msgid "Create the following table" msgstr "کوائفیہ استحقاق کی پڑتال کریں \"%s\"." -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "تلاش کسوٹی چھپائیں" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "تلاش کسوٹی دکھائیں" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "تلاش" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Comments" msgid "Column maximum:" msgstr "آراء-رائے" -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Comments" msgid "Column minimum:" msgstr "آراء-رائے" -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "زیادہ سے زیادہ جداول" -#: js/messages.php:474 +#: js/messages.php:475 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "زیادہ سے زیادہ جداول" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "تلاش کسوٹی چھپائیں" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "تلاش کسوٹی دکھائیں" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 #, fuzzy #| msgid "Add/Delete columns" msgid "Select two columns" msgstr "کالم اضافہ/حذف کریں" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "نظر انداز کریں" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "" -#: js/messages.php:508 +#: js/messages.php:509 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "سطریں کے آخر میں" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Inner ring %d:" msgid "Inner ring" msgstr "اندرونی حد %d:" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "بیرونی حد:" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "محولہ کلید منتخب کریں" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "فارن کلید منتخب کریں" -#: js/messages.php:529 +#: js/messages.php:530 #, 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:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "کالم دکھانے کے لیے انتخاب کریں" -#: js/messages.php:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "صفحہ نمبر" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 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:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Open" msgid "Open page" msgstr "کھولیں" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "سارا منتخب کریں" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select a page to continue" msgstr "ایک بنیادی یا منفرد کلید منتخب کریں" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid page name" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "تعلق دار شجرہ کی تدوین یا برآمد کریں" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "تبدیلیاں محفوظ ہو چکی ہیں" -#: js/messages.php:550 +#: js/messages.php:551 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "کالم کے لیے ایک اختیار اضافہ کریں " -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy #| msgid "Comments" msgid "Double-click to copy column name." msgstr "آراء-رائے" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "تمام دکھائیں" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Lines terminated by" msgid "Original length" msgstr "سطریں کے آخر میں" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "منسوخ کریں" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "طے شدہ درآمد" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "سارا منتخب کریں" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 #, fuzzy #| msgid "Logo link URL" msgid "Go to link:" msgstr "علامت ربط URL" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Comments" msgid "Copy column name." msgstr "آراء-رائے" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "پاس ورڈ بنائیں" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "بنائیں" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "مزید" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "تمام دکھائیں" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "اشاریے" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "بائیں جھروکہ میں علامت دکھائیں" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "مرکزی چوکھٹے کی تخصیص کریں" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "مرکزی چوکھٹے کی تخصیص کریں" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -#, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "جداول" - -#: js/messages.php:633 -#, fuzzy -#| msgid "View" -msgid "views" -msgstr "ویو" - -#: js/messages.php:634 -#, fuzzy -#| msgid "Dropping Procedure" -msgid "procedures" -msgstr "طریقہ چھوڑا جارہا ہے" - -#: js/messages.php:635 -#, fuzzy -#| msgid "Reset" -msgid "events" -msgstr "دوبارہ سیٹ کریں" - -#: js/messages.php:636 -#, fuzzy -#| msgid "Versions" -msgid "functions" -msgstr "نسخے" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2674,136 +2647,136 @@ msgstr "" "%s, جاری کیا گیا %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ", حالیہ مستحکم نسخہ:" -#: js/messages.php:649 +#: js/messages.php:641 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "کوائفیہ جائیں" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 #, fuzzy #| msgid "Created" msgid "Create view" msgstr "تخلیق کیا گیا" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "جنرل ریلیشن فیچرز" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Show color" msgid "Show report details" msgstr "کلر دکھائیں" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "نظر انداز کریں" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 #, fuzzy msgid "Execute this query again?" msgstr "SQL طلب" -#: js/messages.php:701 +#: js/messages.php:693 #, 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:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "جدول تبصرے" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy #| msgid "Hide search criteria" msgid "Hide arguments" msgstr "تلاش کسوٹی چھپائیں" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "پچھلا" -#: js/messages.php:748 +#: js/messages.php:740 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2811,149 +2784,149 @@ msgid "Next" msgstr "اگلا" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "آج" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "جنوری" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "فروری" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "مارچ" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "اپریل" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "مئی" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "جون" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "جولائی" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "اگست" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "ستمبر" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "اکتوبر" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "نومبر" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "دسمبر" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "جنوری" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "فروری" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "مارچ" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "اپریل" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "مئی" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "جون" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "جولائی" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "اگست" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "ستمبر" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "اکتوبر" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "نومبر" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "دسمبر" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "اتوار" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "پیر" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "منگل" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "بدھ" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "جمعرات" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "جمعہ" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "ہفتہ" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2961,149 +2934,149 @@ msgid "Sun" msgstr "اتوار" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "پیر" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "منگل" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "بدھ" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "جمعرات" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "جمعہ" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "ہفتہ" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "اتوار" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "پیر" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "منگل" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "بدھ" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "جمعرات" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "جمعہ" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "ہفتہ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "ہفتہ وار" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 #, fuzzy #| msgid "Done" msgctxt "Year suffix" msgid "none" msgstr "ہوچکا" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "گھنٹہ" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "منٹ" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "سیکنڈ" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Text fields" msgid "Please fix this field" msgstr "متن قطعے" -#: js/messages.php:886 +#: js/messages.php:878 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid email address" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:887 +#: js/messages.php:879 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid URL" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:889 +#: js/messages.php:883 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date ( ISO )" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:890 +#: js/messages.php:885 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid number" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:891 +#: js/messages.php:888 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid credit card number" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:892 +#: js/messages.php:890 #, fuzzy #| msgid "Please enter a valid length" msgid "Please enter only digits" @@ -3115,53 +3088,53 @@ msgstr "برائے مہربانی درست لمبائی داخل کیجیئے" msgid "Please enter the same value again" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter at least {0} characters" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a value between {0} and {1}" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:898 +#: js/messages.php:917 #, fuzzy #| msgid "Please enter a valid length" msgid "Please enter a value less than or equal to {0}" msgstr "برائے مہربانی درست لمبائی داخل کیجیئے" -#: js/messages.php:899 +#: js/messages.php:922 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a value greater than or equal to {0}" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:901 +#: js/messages.php:928 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date or time" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:902 +#: js/messages.php:933 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid HEX input" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "نقص" @@ -3249,11 +3222,12 @@ msgstr "Submit Query" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3301,7 +3275,7 @@ msgstr "" msgid "Explain" msgstr "SQL کی تفصیل بتائیں" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "تفصیلات" @@ -3345,8 +3319,8 @@ msgid "History" msgstr "SQL جواز دھندہ" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3529,30 +3503,30 @@ msgstr "" msgid "Switch to dark theme" msgstr "نقل شدہ کوائفیہ پر جائیں" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3562,8 +3536,8 @@ msgstr "" msgid "Ascending" msgstr "صعودی" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3732,8 +3706,8 @@ msgstr[0] "%sجدول کے ساتھ مشابہ%s" msgstr[1] "%sجدول کے ساتھ مشابہات%s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3781,31 +3755,31 @@ msgstr "تمام انتخاب ختم کریں" msgid "Inside column:" msgstr "کالم میں:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 #, fuzzy #| msgid "Save directory" msgid "Save edited data" msgstr "پوشہ محفوظ کریں" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 #, fuzzy #| msgid "Startup" msgid "Filter rows" msgstr "ابتدائیہ" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Search in database" msgid "Search this table" msgstr "کوائفیہ میں تلاش کریں" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 #, fuzzy #| msgid "Begin" @@ -3813,7 +3787,7 @@ msgctxt "First page" msgid "Begin" msgstr "شروع" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 #, fuzzy @@ -3822,7 +3796,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "پچھلا" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 #, fuzzy @@ -3831,7 +3805,7 @@ msgctxt "Next page" msgid "Next" msgstr "اگلا" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 #, fuzzy #| msgid "End" @@ -3839,78 +3813,78 @@ msgctxt "Last page" msgid "End" msgstr "اختتام" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Display PDF schema" msgid "Display column for relations" msgstr "دکھائیں PDF schema" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "The bookmark has been deleted." msgid "The row has been deleted." msgstr "نشانی حذف ہو چکی ہے۔" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" "اپ لوڈ مسل کو بڑھاتے ہوئے نقص ہے, دیکھیں [doc@faq1-11]عمومی سوالات 1.11[/doc]" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -3918,7 +3892,8 @@ msgstr "" msgid "Your SQL query has been executed successfully." msgstr "آپ کی SQL طلب کامیابی سے چلائی جاچکی ہے۔" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3926,42 +3901,42 @@ msgid "" msgstr "" "اس جدول نقل میں اتنے کم از کم صفیں ہیں۔ حوالہ کے لیے %sdocumentation%s." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, fuzzy, php-format #| msgid "%s table" #| msgid_plural "%s tables" msgid "%d total" msgstr "%s جدول" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "مع منتخب:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3969,27 +3944,27 @@ msgstr "مع منتخب:" msgid "Check all" msgstr "تمام پڑتال کریں" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "چھپائی منظر" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 #, fuzzy #| msgid "Table comments" msgid "Display chart" msgstr "ٹیبل کمنٹس" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 #, fuzzy #| msgid "Theme %s not found!" msgid "Link not found!" @@ -4091,19 +4066,19 @@ msgstr "کوئی اشاریہ موجود نہیں!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "اشاریے" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -4112,24 +4087,24 @@ msgid "Action" msgstr "عمل" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "کلید نام" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "منفرد" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "باندھنا" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "درجہ تعلق داری" @@ -4137,8 +4112,8 @@ msgstr "درجہ تعلق داری" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -4148,8 +4123,8 @@ msgid "Collation" msgstr "ترتیب" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -4165,15 +4140,15 @@ msgstr "بنیادی کلید چھوڑ دیا گیا ہے" msgid "Index %s has been dropped." msgstr "اشاریہ %s چھوڑ دیا گیا ہے۔" -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "گرائیں" @@ -4212,12 +4187,13 @@ msgstr "نقل جدول" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4225,7 +4201,7 @@ msgstr "جدول" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4234,8 +4210,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4243,41 +4219,41 @@ msgid "Search" msgstr "تلاش" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "داخل کریں" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "عملیات" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4288,16 +4264,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4305,22 +4281,22 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "کوائفیے" @@ -4329,33 +4305,33 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "چربہ کاری" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4682,7 +4658,7 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5111,39 +5087,39 @@ msgstr "%s ایک نامعلوم نقص سے کام متاثر ہوا, دیکھ msgid "Click to toggle" msgstr "انتخاب کے لیے کلک کریں" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "اپنے کمپیوٹر کو براؤز کریں:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "ویب سرور اپ لوڈ پوشہ سے منتخب کریں %s:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "اپ لوڈ کام کے لیے سیٹ کیا گیا پوشہ قابل رسائی نہیں ہے۔" -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 #, fuzzy #| msgid "There are no files to upload" msgid "There are no files to upload!" msgstr "اپ لوڈ کرنے کے لیے کوئی مسل نہیں ہے" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "خالی" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "چھاپیں" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "" @@ -5318,8 +5294,8 @@ msgid "Add new column" msgstr "فیلڈ کالمز شامل یا ختم کریں" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5387,19 +5363,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "آپ اس سے درجہ فزوں کریں %s %s یا بعد۔" -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -6285,7 +6261,7 @@ msgid "Remember file name template" msgstr "مسل نام سانچا یاد رکھیں" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT قدر اضافہ کریں" @@ -6328,7 +6304,7 @@ msgstr "phpMyAdmin تشکیل ذخیرہ جداول موجود نہیں ہے" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "اضافہ کریں %s" @@ -8297,7 +8273,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 #, fuzzy #| msgid "Hide query box" msgid "Retain query box" @@ -8606,110 +8582,35 @@ msgstr "" msgid "OpenDocument Text" msgstr "اوپن دستاویز" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "جدول %s خالی ہوچکا ہے" -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "جدول نقل %s چھوڑا جاچکا ہے۔" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "جدول %s چھوڑا جاچکا ہے" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "" - -#: libraries/controllers/TableStructureController.php:484 -#, fuzzy -#| msgid "Database %s has been dropped." -msgid "The columns have been moved successfully." -msgstr "کوائفیہ %s چھوڑ دیا گیا ہے۔" - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -#, fuzzy -#| msgid "Gather errors" -msgid "Query error" -msgstr "نقائص اکھٹی کریں" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1201 -#, fuzzy -#| msgid "Use this value" -msgid "Distinct values" -msgstr "یہ قدر استعمال کریں" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -8725,6 +8626,14 @@ msgstr "" msgid "No data to display" msgstr "کوائف" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "" + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "" @@ -8735,25 +8644,92 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr "اندرونی ریلیشن شامل ہو گیا" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Search" msgid "Table search" msgstr "تلاش" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Search" msgid "Zoom search" msgstr "تلاش" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "Hide search criteria" msgid "Find and replace" msgstr "تلاش کسوٹی چھپائیں" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:485 +#, fuzzy +#| msgid "Database %s has been dropped." +msgid "The columns have been moved successfully." +msgstr "کوائفیہ %s چھوڑ دیا گیا ہے۔" + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +#, fuzzy +#| msgid "Gather errors" +msgid "Query error" +msgstr "نقائص اکھٹی کریں" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1209 +#, fuzzy +#| msgid "Use this value" +msgid "Distinct values" +msgstr "یہ قدر استعمال کریں" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -8763,7 +8739,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8836,7 +8812,7 @@ msgstr "" msgid "Create database:" msgstr "جدول بنائیں" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "" @@ -9558,73 +9534,73 @@ msgid "Dump has been saved to file %s." msgstr "ڈمپ اس مسل %s میں محفوظ ہوچکی ہے۔" #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, fuzzy, php-format #| msgid "Jump to database" msgid "Go to database: %s" msgstr "کوائفیہ جائیں" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "کوائف نہیں ملا برائے %s" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, fuzzy, php-format #| msgid "Count tables" msgid "Go to table: %s" msgstr "حداول کی گنتی کریں" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "صرف ساخت" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "" @@ -9647,75 +9623,75 @@ msgstr "" msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "یا" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 #, fuzzy #| msgid "Select from the web server upload directory %s:" msgid "web server upload directory:" msgstr "ویب سرور اپ لوڈ پوشہ سے منتخب کریں %s:" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "داخل کریں" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "اور پھر" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -9727,11 +9703,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9747,43 +9723,43 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix:" msgstr "جدول کوائف کو مسل سے بدلیں" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix:" msgstr "جدول کوائف کو مسل سے بدلیں" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 #, fuzzy #| msgid "Fr" msgid "From" msgstr "جمعہ" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Replace table data with file" msgid "Add table prefix:" msgstr "جدول کوائف کو مسل سے بدلیں" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -10013,8 +9989,8 @@ msgstr "طریقہ چھوڑا جارہا ہے" msgid "Views:" msgstr "ویو" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "ظاہر کریں" @@ -10056,10 +10032,9 @@ msgstr[0] "" msgstr[1] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "Invalid table name" -msgid "Filter databases by name or regex" -msgstr "غلط جدول نام" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -10068,12 +10043,6 @@ msgstr "غلط جدول نام" msgid "Clear fast filter" msgstr "بطور مسل محفوظ کریں" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "Invalid table name" -msgid "Filter by name or regex" -msgstr "غلط جدول نام" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -10479,7 +10448,7 @@ msgstr "کوائفیہ نام بدلیں" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -10488,7 +10457,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Reloading Privileges" @@ -10508,18 +10477,18 @@ msgstr "کوائفیہ ہٹائیں" msgid "Drop the database (DROP)" msgstr "کوائفیہ چھوڑیں (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "صرف ساخت" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "ساخت اور کوائف" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "کوائف صرف" @@ -10533,7 +10502,7 @@ msgstr "کوائفیہ نقل کریں بطرف" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE نقل سے قبل" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "پابندیاں لگائیں" @@ -10573,61 +10542,61 @@ msgstr "" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "جدول تجزیہ کریں" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "جدول پڑتال کریں" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "جدول پڑتال کریں" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "جدول احسن کریں" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "جدول مرمت کریں" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 #, fuzzy @@ -10635,105 +10604,105 @@ msgstr "جدول مرمت کریں" msgid "Delete data or table" msgstr "اس ٹیبل کیلئے ٹریکنگ ڈیٹا حذف کریں " -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 #, fuzzy #| msgid "Copy database to" msgid "Delete the table (DROP)" msgstr "ڈیٹا بیس کاپی کریں" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "بند" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Table %s has been dropped" -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Table %s has been dropped" -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "" @@ -10907,7 +10876,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -10933,21 +10902,21 @@ msgstr "وضاحت" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -11055,7 +11024,7 @@ msgid "Database:" msgstr "کوائفیہ" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11168,7 +11137,7 @@ msgid "Data creation options" msgstr "عمل" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -11237,8 +11206,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11246,94 +11215,94 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Missing data for %s" msgid "Metadata" msgstr "کوائف نہیں ملا برائے %s" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Metadata for %s" msgstr "کوائف نہیں ملا برائے %s" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 #, fuzzy #| msgid "Creation" msgid "Creation:" msgstr "بنائیں" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "آخری تازہ کاری:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "آخری پڑتال:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "استعمال میں ہے" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for dumped tables" msgstr "جدول میں:" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "جدول میں:" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "صفر قدروں کے لیے AUTO_INCREMENT استعمال مت کریں" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT قدر اضافہ کریں" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "" @@ -11585,9 +11554,9 @@ msgstr "" msgid "Table of contents" msgstr "" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "" @@ -11751,63 +11720,63 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "غلطی : ریلیشن پہلے سے موجود ہے۔" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been added." msgstr "تبدیلیاں محفوظ ہو چکی ہیں" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "غلطی:ریلیشن شامل نہیں ہوا۔" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Relational features are disabled!" msgstr "غلطی:ریلیشن شامل نہیں ہوا" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "اندرونی ریلیشن شامل ہو گیا" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "غلطی:ریلیشن شامل نہیں ہوا۔" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been removed." msgstr "تبدیلیاں محفوظ ہو چکی ہیں" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "غلطی:ریلیشن شامل نہیں ہوا۔" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "غلطی:ریلیشن شامل نہیں ہوا۔" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11858,97 +11827,97 @@ msgstr "" msgid "Please see the documentation on how to update your column_info table. " msgstr "" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 #, fuzzy #| msgid "Persistent connections" msgid "Persistent recently used tables" msgstr "بہتر جوڑ" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "Persistent connections" msgid "Persistent favorite tables" msgstr "بہتر جوڑ" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Configuration file" msgid "Configurable menus" msgstr "تشکیلی مسل" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "خراب برآمد قسم" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11956,14 +11925,14 @@ msgid "" "configuration storage there." msgstr "phpMyAdmin تشکیل ذخیرہ جداول موجود نہیں ہے" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "phpMyAdmin تشکیل ذخیرہ جداول موجود نہیں ہے" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -12144,8 +12113,8 @@ msgstr "صارف نام:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "" @@ -12153,7 +12122,7 @@ msgstr "" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "" @@ -12851,7 +12820,7 @@ msgstr[1] "کوائفیہ %s چھوڑ دیا گیا ہے۔" msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "" @@ -12859,100 +12828,96 @@ msgstr "" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "غیر فعال" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "" #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "" #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "" #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -12960,65 +12925,65 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "" #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "" #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -13030,8 +12995,8 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -13075,31 +13040,31 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Add/Delete Field Columns" @@ -13107,7 +13072,7 @@ msgid "Routine" msgstr "فیلڈ کالمز شامل یا ختم کریں" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -13122,14 +13087,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -13139,7 +13104,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "" @@ -13148,15 +13113,15 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "" @@ -13179,7 +13144,7 @@ msgid "Native MySQL Authentication" msgstr "توثیق" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "" @@ -13204,8 +13169,8 @@ msgstr "صارف نام:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Comments" msgid "Host name" @@ -13227,231 +13192,231 @@ msgstr "توثیق" msgid "Password Hashing Method" msgstr "پاس ورڈ:" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Add %s" msgid "Add user account" msgstr "اضافہ کریں %s" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Databases display options" msgid "Database for user account" msgstr "کوائفیہ دکھانے کے اختیارات" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "جدول نقل %s چھوڑا جاچکا ہے۔" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Reloading Privileges" msgid "Edit privileges" msgstr "استحقاق پھر لوڈ کرتے ہوئے" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Check Privileges" msgid "Routine-specific privileges" msgstr "استحقاق پڑتال کریں" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Removing Selected Users" msgid "Remove selected user accounts" msgstr "منتخب صارفین حذف کیے جا رہے ہیں" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, fuzzy, php-format #| msgid "Check Privileges" msgid "Privileges for %s" msgstr "استحقاق پڑتال کریں" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Reloading Privileges" msgid "Edit privileges:" msgstr "استحقاق پھر لوڈ کرتے ہوئے" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13460,7 +13425,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -13469,11 +13434,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "" @@ -13719,35 +13684,35 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 #, fuzzy #| msgid "Enable highlighting" msgid "Enable charts dragging" msgstr "نمایاں کرنے کو فعال کریں" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 #, fuzzy msgid "Refresh rate" msgstr "تازہ کریں" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" @@ -13810,7 +13775,7 @@ msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -13841,33 +13806,33 @@ msgstr "بائیں جھروکہ میں علامت دکھائیں" msgid "Related links:" msgstr "لپیٹنا" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -13875,78 +13840,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -13954,7 +13919,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -13962,42 +13927,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -14005,33 +13970,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -14040,244 +14005,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "درآمد مسل کی وضع" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -14285,99 +14250,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -14385,18 +14350,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -14404,13 +14369,13 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "کھوج غیر فعال ہے۔" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -14419,73 +14384,73 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version:" msgid "Server level tabs" msgstr "سرور نسخہ:" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Database server" msgid "Database level tabs" msgstr "کوائفیہ سرور" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table comments" msgid "Table level tabs" msgstr "جدول تبصرے" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy #| msgid "View" msgid "View users" msgstr "ویو" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Add %s" msgid "Add user group" msgstr "اضافہ کریں %s" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Comments" msgid "Group name:" msgstr "آراء-رائے" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version:" msgid "Server-level tabs" msgstr "سرور نسخہ:" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "کوائفیہ سرور" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -14551,21 +14516,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "Removing Selected Users" msgid "An alias was expected." @@ -14630,137 +14591,137 @@ msgstr "کوائفیہ $1%s بن گئی ہے۔" msgid "Variable name was expected." msgstr "جدول نام سانچا" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "Show dimension of tables" msgid "Unexpected beginning of statement." msgstr "ٹیبلز کی جسامت دیکھیں" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The bookmark has been deleted." msgid "At least one column definition was expected." msgstr "نشانی حذف ہو چکی ہے۔" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy #| msgid "Startup" msgid "State" msgstr "ابتدائیہ" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "میزان" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "وقت" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "بند کریں" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "وقت" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Label key" msgid "Label:" msgstr "سرنامہ کلید" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created!" msgstr "نشانی %s بنایا گیا" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -14791,27 +14752,27 @@ msgstr "" msgid "Bind parameters" msgstr "خراب کوائف!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "" @@ -14859,183 +14820,183 @@ msgstr "اس جدول کے لیے کھوج کوائف حذف کریں" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "بنایا" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "تازہ کی گئی" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Use light version" msgid "Delete version" msgstr "ہلکا ورژن استعمال کریں" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "کھوج رپورٹ" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "ساخت تصویر" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "فعال" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "غیر فعال" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "اس جدول کے لیے کھوج کوائف حذف کریں" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 #, fuzzy #| msgid "data" msgid "No data" msgstr "کوائف" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "کھوج فعال ہے۔" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "کھوج فعال ہے۔" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format #| msgid "General relation features" msgid "Version %1$s of %2$s was deleted." msgstr "جنرل ریلیشن فیچرز" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "بغیر کھوج جداول" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "جدول کھوج" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "کھوج شدہ جداول" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "آخری نسخہ" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "کھوج کوائف حذف کیا جا رہے ہیں" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "نسخہ جات" @@ -15045,13 +15006,13 @@ msgstr "نسخہ جات" msgid "Manage your settings" msgstr "جنرل ریلیشن فیچرز" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." msgstr "تبدیلیاں محفوظ ہو چکی ہیں" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -15150,7 +15111,7 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -15175,7 +15136,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -16089,49 +16050,55 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Default" +msgid "Chart title:" +msgstr "ڈیفالٹ" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 #, fuzzy #| msgid "SQL queries" msgid "Series:" msgstr "SQL طلب" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Y قدریں" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside column:" msgid "Series column:" msgstr "کالم میں:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Values for the column \"%s\"" msgid "Value Column:" msgstr "کالم کی قدریں\"%s\"" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -16198,56 +16165,57 @@ msgstr "تبصرہ" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 -#, fuzzy -#| msgid "Internal relation added" -msgid "Internal relations" -msgstr "اندرونی ریلیشن شامل ہو گیا" - -#: templates/table/relation/common_form.phtml:11 -msgid "Internal relation" -msgstr "" - -#: templates/table/relation/common_form.phtml:14 -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "" - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 #, fuzzy #| msgid "Foreign key limit" msgid "Foreign key constraints" msgstr "فارن کلید حد" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 #, fuzzy #| msgid "Action" msgid "Actions" msgstr "عمل" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 #, fuzzy #| msgid "Comments" msgid "Constraint properties" msgstr "آراء-رائے" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "پابندیاں لگائیں" -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +#, fuzzy +#| msgid "Internal relation added" +msgid "Internal relations" +msgstr "اندرونی ریلیشن شامل ہو گیا" + +#: templates/table/relation/common_form.phtml:80 +msgid "Internal relation" +msgstr "" + +#: templates/table/relation/common_form.phtml:83 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "" + +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16406,7 +16374,7 @@ msgid "at beginning of table" msgstr "ٹیبلز کی جسامت دیکھیں" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Relations" msgid "Partitions" @@ -16451,7 +16419,7 @@ msgstr "تعلقات" msgid "Edit partitioning" msgstr "تدوین موڈ" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -17739,6 +17707,41 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "جداول" + +#, fuzzy +#~| msgid "View" +#~ msgid "views" +#~ msgstr "ویو" + +#, fuzzy +#~| msgid "Dropping Procedure" +#~ msgid "procedures" +#~ msgstr "طریقہ چھوڑا جارہا ہے" + +#, fuzzy +#~| msgid "Reset" +#~ msgid "events" +#~ msgstr "دوبارہ سیٹ کریں" + +#, fuzzy +#~| msgid "Versions" +#~ msgid "functions" +#~ msgstr "نسخے" + +#, fuzzy +#~| msgid "Invalid table name" +#~ msgid "Filter databases by name or regex" +#~ msgstr "غلط جدول نام" + +#, fuzzy +#~| msgid "Invalid table name" +#~ msgid "Filter by name or regex" +#~ msgstr "غلط جدول نام" + #, fuzzy #~| msgid "Tracking report" #~ msgid "Taking you to %s." diff --git a/po/uz.po b/po/uz.po index c4efb534ed..62ba699782 100644 --- a/po/uz.po +++ b/po/uz.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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:39+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uzbek 1);\n" "X-Generator: Weblate 2.5-dev\n" -#: changelog.php:37 license.php:30 +#: changelog.php:37 license.php:33 #, php-format msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " @@ -40,7 +40,7 @@ msgstr "Танлаш учун сичқонча тугмасини босинг" msgid "Showing rows %1$s - %2$s." msgstr "Ёзувларни кўрсатиш" -#: db_create.php:61 +#: db_create.php:62 #, php-format msgid "Database %1$s has been created." msgstr "%1$s маълумотлар базаси тузилди." @@ -49,13 +49,13 @@ msgstr "%1$s маълумотлар базаси тузилди." msgid "Database comment" msgstr "Маълумотлар базасига изоҳ" -#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:601 +#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:599 #: templates/columns_definitions/column_definitions_form.phtml:84 msgid "Table comments:" msgstr "Изоҳлар жадвали:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1568 +#: libraries/insert_edit.lib.php:1575 #: libraries/navigation/nodes/NodeColumn.php:34 #: libraries/plugins/export/ExportHtmlword.php:288 #: libraries/plugins/export/ExportHtmlword.php:384 @@ -65,13 +65,14 @@ msgstr "Изоҳлар жадвали:" #: libraries/plugins/export/ExportTexytext.php:282 #: libraries/plugins/export/ExportTexytext.php:373 #: libraries/plugins/export/PMA_ExportPdf.php:472 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:882 libraries/tracking.lib.php:978 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 +#: libraries/tracking.lib.php:892 libraries/tracking.lib.php:990 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:10 -#: templates/table/relation/common_form.phtml:43 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:27 +#: templates/table/relation/common_form.phtml:79 #: templates/table/relation/foreign_key_row.phtml:176 #: templates/table/relation/foreign_key_row.phtml:188 #: templates/table/relation/internal_relational_row.phtml:73 @@ -91,14 +92,14 @@ msgstr "Устун" #: libraries/plugins/export/ExportTexytext.php:283 #: libraries/plugins/export/ExportTexytext.php:374 #: libraries/plugins/export/PMA_ExportPdf.php:474 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 #: libraries/rte/rte_list.lib.php:78 libraries/rte/rte_list.lib.php:106 #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2606 libraries/tracking.lib.php:883 -#: libraries/tracking.lib.php:975 +#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -108,7 +109,7 @@ msgstr "Тур" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:709 -#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1577 +#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1584 #: libraries/plugins/export/ExportHtmlword.php:294 #: libraries/plugins/export/ExportHtmlword.php:390 #: libraries/plugins/export/ExportLatex.php:517 @@ -117,9 +118,9 @@ msgstr "Тур" #: libraries/plugins/export/ExportTexytext.php:284 #: libraries/plugins/export/ExportTexytext.php:375 #: libraries/plugins/export/PMA_ExportPdf.php:476 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 -#: libraries/tracking.lib.php:885 libraries/tracking.lib.php:981 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/tracking.lib.php:895 libraries/tracking.lib.php:993 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 @@ -136,9 +137,9 @@ msgstr "Null" #: libraries/plugins/export/ExportTexytext.php:285 #: libraries/plugins/export/ExportTexytext.php:376 #: libraries/plugins/export/PMA_ExportPdf.php:478 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 -#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:886 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:896 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 @@ -150,8 +151,8 @@ msgstr "Андоза" #: libraries/plugins/export/ExportOdt.php:488 #: libraries/plugins/export/ExportTexytext.php:378 #: libraries/plugins/export/PMA_ExportPdf.php:487 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:640 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:663 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 msgid "Links to" msgstr "Алоқалар" @@ -162,37 +163,38 @@ msgstr "Алоқалар" #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:381 #: libraries/plugins/export/PMA_ExportPdf.php:494 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:651 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:664 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:649 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 #: templates/columns_definitions/table_fields_definitions.phtml:65 msgid "Comments" msgstr "Изоҳлар" -#: db_datadict.php:155 libraries/controllers/TableStructureController.php:1189 -#: libraries/controllers/TableStructureController.php:1194 -#: libraries/tracking.lib.php:925 +#: db_datadict.php:155 +#: libraries/controllers/table/TableStructureController.php:1197 +#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:79 +#: templates/table/structure/display_structure.phtml:80 msgid "Primary" msgstr "Бирламчи" -#: db_datadict.php:165 js/messages.php:370 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:371 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 -#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:403 -#: libraries/mult_submits.lib.php:417 +#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:408 +#: libraries/mult_submits.lib.php:422 #: libraries/plugins/export/ExportHtmlword.php:654 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:710 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2971 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3620 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1013 libraries/tracking.lib.php:1018 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2973 +#: libraries/server_privileges.lib.php:2993 +#: libraries/server_privileges.lib.php:3631 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -201,32 +203,32 @@ msgstr "Бирламчи" msgid "No" msgstr "Йўқ" -#: db_datadict.php:165 js/messages.php:515 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:516 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 #: libraries/config/FormDisplay.tpl.php:280 -#: libraries/controllers/TableStructureController.php:770 -#: libraries/controllers/TableStructureController.php:1440 -#: libraries/controllers/TableStructureController.php:1449 -#: libraries/controllers/TableStructureController.php:1454 -#: libraries/controllers/TableStructureController.php:1459 -#: libraries/controllers/TableStructureController.php:1464 -#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:199 -#: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 -#: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 +#: libraries/controllers/table/TableStructureController.php:771 +#: libraries/controllers/table/TableStructureController.php:1448 +#: libraries/controllers/table/TableStructureController.php:1457 +#: libraries/controllers/table/TableStructureController.php:1462 +#: libraries/controllers/table/TableStructureController.php:1467 +#: libraries/controllers/table/TableStructureController.php:1472 +#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:200 +#: libraries/mult_submits.lib.php:344 libraries/mult_submits.lib.php:377 +#: libraries/mult_submits.lib.php:406 libraries/mult_submits.lib.php:420 #: libraries/plugins/export/ExportHtmlword.php:655 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:788 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:711 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2968 -#: libraries/server_privileges.lib.php:2989 -#: libraries/server_privileges.lib.php:3617 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1011 libraries/tracking.lib.php:1016 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2970 +#: libraries/server_privileges.lib.php:2991 +#: libraries/server_privileges.lib.php:3628 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -239,8 +241,8 @@ msgstr "Ҳа" msgid "View dump (schema) of database" msgstr "Маълумотлар базаси дампини (схемасини) намойиш этиш" -#: db_export.php:51 db_tracking.php:102 export.php:382 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:176 +#: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 +#: libraries/controllers/DatabaseStructureController.php:157 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "Маълумотлар базасида биронта ҳам жадвал мавжуд эмас." @@ -257,7 +259,7 @@ msgstr "Жадваллар" #: db_export.php:66 libraries/Menu.php:320 libraries/Menu.php:427 #: libraries/Util.php:3407 libraries/Util.php:3417 libraries/Util.php:3423 -#: libraries/Util.php:3702 libraries/Util.php:4339 libraries/Util.php:4356 +#: libraries/Util.php:3703 libraries/Util.php:4340 libraries/Util.php:4357 #: libraries/central_columns.lib.php:729 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:320 @@ -265,10 +267,10 @@ msgstr "Жадваллар" #: libraries/config/user_preferences.forms.php:218 #: libraries/config/user_preferences.forms.php:259 #: libraries/config/user_preferences.forms.php:285 -#: libraries/import.lib.php:1299 libraries/navigation/nodes/NodeColumn.php:44 +#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:44 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 -#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:877 +#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:887 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -320,13 +322,13 @@ msgstr "" "PhpMyAdmin нинг баъзи қўшимча имкониятлари фаол эмас. Сабабларини аниқлаш " "учун %sбу ерга%s босинг." -#: db_qbe.php:135 +#: db_qbe.php:136 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to choose at least one column to display!" msgstr "Сўровни бажариш учун, майдон/майдонлар танланган бўлиши керак" -#: db_qbe.php:152 +#: db_qbe.php:154 #, php-format msgid "Switch to %svisual builder%s" msgstr "%sсўровларнинг визуал таркибига%s ўтиш" @@ -357,7 +359,7 @@ msgstr "%s версия тузилди, \"%s.%s\" ни кузатишш фаол msgid "No tables selected." msgstr "Биронта ҳам маълумотлар базаси танланмаган." -#: db_tracking.php:146 +#: db_tracking.php:149 msgid "Database Log" msgstr "База лог файлини" @@ -393,7 +395,7 @@ msgstr "" msgid "Bad type!" msgstr "Суров тури нотугри!" -#: export.php:276 +#: export.php:278 msgid "Bad parameters!" msgstr "Параметрлар нотугри!" @@ -401,110 +403,110 @@ msgstr "Параметрлар нотугри!" msgid "Invalid export type" msgstr "Экспорт тури нотугри" -#: gis_data_editor.php:119 +#: gis_data_editor.php:117 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:147 +#: gis_data_editor.php:145 #: templates/table/gis_visualization/gis_visualization.phtml:37 msgid "Use OpenStreetMaps as Base Layer" msgstr "" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:169 +#: gis_data_editor.php:167 msgid "SRID:" msgstr "SRID:" -#: gis_data_editor.php:192 +#: gis_data_editor.php:190 #, php-format msgid "Geometry %d:" msgstr "" -#: gis_data_editor.php:214 +#: gis_data_editor.php:212 msgid "Point:" msgstr "" -#: gis_data_editor.php:215 gis_data_editor.php:242 gis_data_editor.php:298 -#: gis_data_editor.php:371 js/messages.php:504 +#: gis_data_editor.php:213 gis_data_editor.php:240 gis_data_editor.php:296 +#: gis_data_editor.php:369 js/messages.php:505 msgid "X" msgstr "" -#: gis_data_editor.php:218 gis_data_editor.php:246 gis_data_editor.php:302 -#: gis_data_editor.php:377 js/messages.php:505 +#: gis_data_editor.php:216 gis_data_editor.php:244 gis_data_editor.php:300 +#: gis_data_editor.php:375 js/messages.php:506 msgid "Y" msgstr "" -#: gis_data_editor.php:240 gis_data_editor.php:296 gis_data_editor.php:369 -#: js/messages.php:507 +#: gis_data_editor.php:238 gis_data_editor.php:294 gis_data_editor.php:367 +#: js/messages.php:508 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:253 gis_data_editor.php:309 gis_data_editor.php:387 -#: js/messages.php:513 +#: gis_data_editor.php:251 gis_data_editor.php:307 gis_data_editor.php:385 +#: js/messages.php:514 #, fuzzy #| msgid "Apply index(s)" msgid "Add a point" msgstr "Индекс(лар)ни сақлаш" -#: gis_data_editor.php:270 +#: gis_data_editor.php:268 #, fuzzy, php-format #| msgid "Lines terminated by" msgid "Linestring %d:" msgstr "Қаторлар бўлувчиси" -#: gis_data_editor.php:273 gis_data_editor.php:350 +#: gis_data_editor.php:271 gis_data_editor.php:348 msgid "Outer ring:" msgstr "" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:273 gis_data_editor.php:350 #, php-format msgid "Inner ring %d:" msgstr "" -#: gis_data_editor.php:312 +#: gis_data_editor.php:310 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Янги фойдаланувчи қўшиш" -#: gis_data_editor.php:313 gis_data_editor.php:392 js/messages.php:514 +#: gis_data_editor.php:311 gis_data_editor.php:390 js/messages.php:515 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Янги фойдаланувчи қўшиш" -#: gis_data_editor.php:334 +#: gis_data_editor.php:332 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Polygon %d:" msgstr "Устун(лар) қўшиш" -#: gis_data_editor.php:398 +#: gis_data_editor.php:396 #, fuzzy #| msgid "Add column(s)" msgid "Add a polygon" msgstr "Устун(лар) қўшиш" -#: gis_data_editor.php:404 +#: gis_data_editor.php:402 #, fuzzy #| msgid "Add a new server" msgid "Add geometry" msgstr "Янги фойдаланувчи қўшиш" -#: gis_data_editor.php:410 js/messages.php:345 libraries/DbSearch.php:462 -#: libraries/DisplayResults.php:1783 libraries/browse_foreigners.lib.php:142 +#: gis_data_editor.php:408 js/messages.php:346 libraries/DbSearch.php:462 +#: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:151 #: libraries/display_export.lib.php:404 libraries/display_export.lib.php:410 -#: libraries/display_import.lib.php:403 libraries/index.lib.php:42 -#: libraries/insert_edit.lib.php:1547 libraries/insert_edit.lib.php:1584 +#: libraries/display_import.lib.php:403 libraries/index.lib.php:45 +#: libraries/insert_edit.lib.php:1554 libraries/insert_edit.lib.php:1591 #: libraries/normalization.lib.php:168 libraries/normalization.lib.php:825 #: libraries/operations.lib.php:47 libraries/operations.lib.php:114 #: libraries/operations.lib.php:266 libraries/operations.lib.php:309 #: libraries/operations.lib.php:806 libraries/operations.lib.php:877 -#: libraries/operations.lib.php:926 libraries/operations.lib.php:1336 -#: libraries/operations.lib.php:1653 +#: libraries/operations.lib.php:926 libraries/operations.lib.php:1339 +#: libraries/operations.lib.php:1656 #: libraries/plugins/auth/AuthenticationCookie.php:239 #: libraries/replication_gui.lib.php:124 libraries/replication_gui.lib.php:163 #: libraries/replication_gui.lib.php:328 libraries/replication_gui.lib.php:465 @@ -513,12 +515,12 @@ msgstr "Янги фойдаланувчи қўшиш" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2343 -#: libraries/server_privileges.lib.php:3114 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_user_groups.lib.php:285 -#: libraries/sql_query_form.lib.php:369 libraries/sql_query_form.lib.php:429 -#: libraries/tracking.lib.php:536 libraries/tracking.lib.php:656 +#: libraries/server_privileges.lib.php:2345 +#: libraries/server_privileges.lib.php:3116 +#: libraries/server_privileges.lib.php:3735 +#: libraries/server_user_groups.lib.php:290 +#: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 +#: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 #: prefs_manage.php:280 prefs_manage.php:358 #: templates/columns_definitions/column_definitions_form.phtml:64 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 @@ -531,11 +533,11 @@ msgstr "Янги фойдаланувчи қўшиш" msgid "Go" msgstr "OK" -#: gis_data_editor.php:413 +#: gis_data_editor.php:411 msgid "Output" msgstr "" -#: gis_data_editor.php:416 +#: gis_data_editor.php:414 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -547,7 +549,7 @@ msgstr "" msgid "Succeeded" msgstr "Рухсат берилмади!" -#: import.php:59 js/messages.php:588 +#: import.php:59 js/messages.php:589 msgid "Failed" msgstr "" @@ -618,7 +620,7 @@ msgstr "" "Импорт модуллари мавжуд эмас! Ўрнатилган phpMyAdmin нусхасининг libraries/" "export каталогини текширинг." -#: import.php:669 libraries/sql.lib.php:744 libraries/sql.lib.php:1468 +#: import.php:669 libraries/sql.lib.php:754 libraries/sql.lib.php:1485 #, fuzzy, php-format #| msgid "Bookmark %s created" msgid "Bookmark %s has been created." @@ -655,7 +657,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "" -#: import_status.php:111 js/messages.php:444 libraries/Util.php:797 +#: import_status.php:111 js/messages.php:445 libraries/Util.php:797 #: libraries/export.lib.php:523 #: libraries/plugins/schema/ExportRelationSchema.php:301 user_password.php:268 msgid "Back" @@ -681,7 +683,7 @@ msgstr "" msgid "General settings" msgstr "Алоқаларнинг асосий имкониятлари" -#: index.php:191 js/messages.php:617 +#: index.php:191 js/messages.php:618 #: libraries/display_change_password.lib.php:54 #: libraries/display_change_password.lib.php:57 user_password.php:262 msgid "Change password" @@ -811,7 +813,11 @@ msgstr "" msgid "List of changes" msgstr "Ўзгариш йўқ" -#: index.php:453 +#: index.php:438 libraries/server_plugins.lib.php:83 +msgid "License" +msgstr "" + +#: index.php:460 #, fuzzy #| msgid "" #| "Your configuration file contains settings (root with no password) that " @@ -829,7 +835,7 @@ msgstr "" "созланган MySQL сервери хавфсизлик жиҳатидан анча заиф ҳисобланади, шунинг " "учун \"root\" суперфойдаланувчисига парол ўрнатиш қатъиян тавсия этилади." -#: index.php:470 +#: index.php:477 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -839,7 +845,7 @@ msgstr "" "func_overload параметри ёқилган. Маълумот йўқолиши олдини олиш учун, ушбу " "параметр ўчирилиши керак!" -#: index.php:485 +#: index.php:492 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -850,7 +856,7 @@ msgstr "" "маълумот йўқолишига олиб келиши мумкин. PHP \"mbstring\" кенгайтмасини " "ўрнатиш қатъий тавсия этилади." -#: index.php:502 +#: index.php:509 #, fuzzy #| msgid "" #| "Your PHP parameter [a@http://php.net/manual/en/session.configuration." @@ -869,7 +875,7 @@ msgstr "" "давомийлигидан кичикроқ, шунинг учун логин сессиянгиз phpMyAdmin дастурида " "конфигурация қилганингиздан тезроқ тугайди." -#: index.php:521 +#: index.php:528 #, fuzzy #| msgid "" #| "r PHP parameter [a@http://php.net/manual/en/session.configuration.#ini." @@ -886,13 +892,13 @@ msgstr "" "давомийлигидан кичикроқ, шунинг учун логин сессиянгиз phpMyAdmin дастурида " "конфигурация қилганингиздан тезроқ тугайди." -#: index.php:537 +#: index.php:544 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "cookie-аутентификация ишлатилганда, конфигурацион файлдаги " "$cfg[\"blowfish_secret\"] директиваси қийматини ўрнатиб парол белгилаш керак." -#: index.php:550 +#: index.php:557 #, fuzzy #| msgid "" #| "Directory [code]config[/code], which is used by the setup script, still " @@ -908,7 +914,7 @@ msgstr "" "каталоги ҳалиям мавжуд. phpMyAdmin муваффақиятли ўрнатилгандан кейин, уни " "ўчириш тавсия этилади." -#: index.php:566 +#: index.php:573 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -920,12 +926,12 @@ msgstr "" "Алоқадор жадваллар билан ишлаш учун қўшимча имкониятлар мавжуд эмас. " "Сабабларини аниқлаш учун %sбу ерга%s босинг." -#: index.php:573 +#: index.php:580 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" -#: index.php:619 +#: index.php:626 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -934,7 +940,7 @@ msgstr "" "MySQL-клиент версияси (\"%s\") ўрнатилган MySQL-сервер версияси(\"%s\")дан " "фарқ қилмоқда. Бу ҳолат нохуш оқибатларга олиб келиши мумкин." -#: index.php:647 +#: index.php:654 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -957,7 +963,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "Ҳақиқатан ҳам сўровни бажармоқчимисиз?" -#: js/messages.php:45 libraries/mult_submits.lib.php:397 +#: js/messages.php:45 libraries/mult_submits.lib.php:402 msgid "You are about to DESTROY a complete database!" msgstr "Маълумотлар базаси тўлиқ ЎЧИРИЛАДИ!" @@ -1121,7 +1127,7 @@ msgid "Save & close" msgstr "Файл каби сақлаш" #: js/messages.php:109 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1551 prefs_manage.php:364 +#: libraries/insert_edit.lib.php:1558 prefs_manage.php:364 #: prefs_manage.php:375 msgid "Reset" msgstr "Тозалаш" @@ -1202,10 +1208,10 @@ msgstr "Устун(лар) қўшиш" msgid "You have to add at least one column." msgstr "Ҳеч бўлмаганда битта майдон киритиш шарт." -#: js/messages.php:129 libraries/insert_edit.lib.php:1549 +#: js/messages.php:129 libraries/insert_edit.lib.php:1556 #: templates/columns_definitions/column_definitions_form.phtml:159 #: templates/table/index_form.phtml:237 -#: templates/table/relation/common_form.phtml:108 +#: templates/table/relation/common_form.phtml:127 msgid "Preview SQL" msgstr "" @@ -1258,8 +1264,8 @@ msgstr "Киритилган пароллар бир хил эмас!" msgid "Removing Selected Users" msgstr "Белгиланган фойдаланувчиларни ўчириш" -#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:461 -#: libraries/tracking.lib.php:831 +#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:471 +#: libraries/tracking.lib.php:841 msgid "Close" msgstr "Ёпиш" @@ -1287,7 +1293,7 @@ msgstr "Ёзув ўчирилди" #. l10n: Other, small valued, queries #: js/messages.php:155 libraries/ServerStatusData.php:130 -#: libraries/server_status_queries.lib.php:148 +#: libraries/server_status_queries.lib.php:150 msgid "Other" msgstr "" @@ -1477,7 +1483,7 @@ msgstr "Версиялар" msgid "Traffic" msgstr "Трафик" -#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4330 +#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4331 #: libraries/server_status_monitor.lib.php:258 #, fuzzy #| msgid "settings" @@ -1494,9 +1500,9 @@ msgstr "Тўрга боғлаб қўйиш" msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:216 libraries/DisplayResults.php:1477 +#: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1613,7 +1619,7 @@ msgstr "Бошқа созланишлар" msgid "Current settings" msgstr "танловлар" -#: js/messages.php:253 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:253 #, fuzzy #| msgid "Report title" msgid "Chart title" @@ -1709,21 +1715,21 @@ msgstr "Таҳлил" msgid "Explain output" msgstr "Сўров таҳлили" -#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4326 +#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4327 #: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:396 #: libraries/rte/rte_list.lib.php:104 -#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:282 -#: libraries/tracking.lib.php:1623 +#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:284 +#: libraries/tracking.lib.php:1639 msgid "Status" msgstr "Ҳолат" -#: js/messages.php:289 js/messages.php:870 +#: js/messages.php:289 js/messages.php:862 #: libraries/plugins/export/ExportHtmlword.php:484 #: libraries/plugins/export/ExportOdt.php:600 #: libraries/plugins/export/ExportTexytext.php:445 #: libraries/plugins/export/PMA_ExportPdf.php:314 #: libraries/rte/rte_list.lib.php:93 -#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:239 +#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:243 msgid "Time" msgstr "Вақт" @@ -1821,10 +1827,10 @@ msgid "" msgstr "" #: js/messages.php:322 libraries/Menu.php:355 libraries/Menu.php:457 -#: libraries/Menu.php:578 libraries/Util.php:4329 libraries/Util.php:4344 -#: libraries/Util.php:4361 libraries/config/messages.inc.php:260 +#: libraries/Menu.php:578 libraries/Util.php:4330 libraries/Util.php:4345 +#: libraries/Util.php:4362 libraries/config/messages.inc.php:260 #: libraries/display_import.lib.php:108 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:241 +#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:241 #: setup/frames/menu.inc.php:26 msgid "Import" msgstr "Импорт" @@ -1893,7 +1899,13 @@ msgstr "" msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 libraries/server_variables.lib.php:159 +#: js/messages.php:343 +#, fuzzy +#| msgid "Bad parameters!" +msgid "No parameters found!" +msgstr "Параметрлар нотугри!" + +#: js/messages.php:347 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 @@ -1904,73 +1916,73 @@ msgstr "" msgid "Cancel" msgstr "Бекор қилиш" -#: js/messages.php:349 libraries/Header.php:457 +#: js/messages.php:350 libraries/Header.php:457 #, fuzzy #| msgid "Other core settings" msgid "Page-related settings" msgstr "Бошқа созланишлар" -#: js/messages.php:350 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:351 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:353 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:354 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:124 #, fuzzy #| msgid "Load" msgid "Loading…" msgstr "Юклаш" -#: js/messages.php:354 +#: js/messages.php:355 msgid "Request aborted!!" msgstr "" -#: js/messages.php:355 +#: js/messages.php:356 #, fuzzy #| msgid "Processes" msgid "Processing request" msgstr "Жараёнлар" -#: js/messages.php:356 +#: js/messages.php:357 #, fuzzy #| msgid "Query cache" msgid "Request failed!!" msgstr "Сўровлар кеши" -#: js/messages.php:357 +#: js/messages.php:358 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Жараёнлар" -#: js/messages.php:358 +#: js/messages.php:359 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:359 +#: js/messages.php:360 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:360 libraries/db_common.inc.php:73 +#: js/messages.php:361 libraries/db_common.inc.php:73 #: libraries/db_table_exists.lib.php:33 libraries/server_databases.lib.php:462 msgid "No databases selected." msgstr "Биронта ҳам маълумотлар базаси танланмаган." -#: js/messages.php:361 +#: js/messages.php:362 #, fuzzy #| msgid "Dropping Procedure" msgid "Dropping column" msgstr "Муолажалар" -#: js/messages.php:362 +#: js/messages.php:363 #, fuzzy #| msgid "Add column(s)" msgid "Adding primary key" msgstr "Устун(лар) қўшиш" -#: js/messages.php:363 +#: js/messages.php:364 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1980,241 +1992,241 @@ msgstr "Устун(лар) қўшиш" msgid "OK" msgstr "OK" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:367 +#: js/messages.php:368 #, fuzzy #| msgid "Rename database to" msgid "Renaming databases" msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" -#: js/messages.php:368 +#: js/messages.php:369 #, fuzzy #| msgid "Copy database to" msgid "Copying database" msgstr "Маълумотлар базасидан қуйидагига нусха олиш" -#: js/messages.php:369 +#: js/messages.php:370 #, fuzzy #| msgid "Charset" msgid "Changing charset" msgstr "Кодировка" -#: js/messages.php:373 libraries/Util.php:3289 +#: js/messages.php:374 libraries/Util.php:3289 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Ташқи калитларни текширишни ўчириш" -#: js/messages.php:376 +#: js/messages.php:377 #, fuzzy msgid "Failed to get real row count." msgstr "Файлни дискка ёзишдахатолик юз берди." -#: js/messages.php:379 +#: js/messages.php:380 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Қидириш" -#: js/messages.php:380 +#: js/messages.php:381 #, fuzzy #| msgid "SQL Query box" msgid "Hide search results" msgstr "SQL сўровлари қутиси" -#: js/messages.php:381 +#: js/messages.php:382 #, fuzzy #| msgid "SQL Query box" msgid "Show search results" msgstr "SQL сўровлари қутиси" -#: js/messages.php:382 +#: js/messages.php:383 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Кўриб чиқиш" -#: js/messages.php:383 +#: js/messages.php:384 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "\"%s\" ўчирилмоқда" -#: js/messages.php:387 +#: js/messages.php:388 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:388 libraries/DisplayResults.php:4832 -#: libraries/DisplayResults.php:5091 libraries/Menu.php:347 -#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3709 -#: libraries/Util.php:3710 libraries/Util.php:4328 libraries/Util.php:4343 -#: libraries/Util.php:4360 libraries/config/messages.inc.php:254 +#: js/messages.php:389 libraries/DisplayResults.php:4850 +#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 +#: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 +#: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2448 -#: libraries/server_privileges.lib.php:2527 -#: libraries/server_privileges.lib.php:2873 -#: libraries/server_privileges.lib.php:3532 -#: libraries/server_status_monitor.lib.php:321 prefs_manage.php:306 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2875 +#: libraries/server_privileges.lib.php:3543 +#: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 msgid "Export" msgstr "Экспорт" -#: js/messages.php:391 libraries/rte/rte_routines.lib.php:742 +#: js/messages.php:392 libraries/rte/rte_routines.lib.php:742 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:392 +#: js/messages.php:393 #, php-format msgid "Values for column %s" msgstr "%s устуни учун қийматлар" -#: js/messages.php:393 +#: js/messages.php:394 msgid "Values for a new column" msgstr "" -#: js/messages.php:394 +#: js/messages.php:395 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:395 +#: js/messages.php:396 #, fuzzy, php-format #| msgid "Add a new server" msgid "Add %d value(s)" msgstr "Янги фойдаланувчи қўшиш" -#: js/messages.php:399 +#: js/messages.php:400 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:403 +#: js/messages.php:404 #, fuzzy #| msgid "SQL Query box" msgid "Hide query box" msgstr "SQL сўровлари қутиси" -#: js/messages.php:404 +#: js/messages.php:405 #, fuzzy #| msgid "SQL Query box" msgid "Show query box" msgstr "SQL сўровлари қутиси" -#: js/messages.php:405 libraries/Console.php:88 libraries/Console.php:217 -#: libraries/DisplayResults.php:3457 libraries/DisplayResults.php:4816 +#: js/messages.php:406 libraries/Console.php:88 libraries/Console.php:217 +#: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4834 #: libraries/Index.php:721 libraries/Util.php:727 libraries/Util.php:1238 -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:119 +#: libraries/server_user_groups.lib.php:121 #: libraries/server_variables.lib.php:242 #: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 msgid "Edit" msgstr "Таҳрирлаш" -#: js/messages.php:406 libraries/Console.php:89 libraries/DbSearch.php:360 -#: libraries/DisplayResults.php:3526 libraries/DisplayResults.php:4800 +#: js/messages.php:407 libraries/Console.php:89 libraries/DbSearch.php:360 +#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4818 #: libraries/central_columns.lib.php:854 #: libraries/central_columns.lib.php:1200 libraries/display_export.lib.php:227 -#: libraries/server_user_groups.lib.php:129 -#: libraries/sql_query_form.lib.php:416 libraries/tracking.lib.php:480 +#: libraries/server_user_groups.lib.php:131 +#: libraries/sql_query_form.lib.php:417 libraries/tracking.lib.php:490 #: setup/frames/index.inc.php:187 setup/frames/index.inc.php:295 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "Ўчириш" -#: js/messages.php:407 libraries/DisplayResults.php:915 -#: libraries/DisplayResults.php:923 +#: js/messages.php:408 libraries/DisplayResults.php:919 +#: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d сони тўғри қатор рақами эмас." -#: js/messages.php:408 -#: libraries/controllers/table/TableSearchController.php:435 -#: libraries/controllers/table/TableSearchController.php:920 -#: libraries/sql.lib.php:193 tbl_change.php:159 +#: js/messages.php:409 +#: libraries/controllers/table/TableSearchController.php:432 +#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "Ташқи қийматларни кўриб чиқиш" -#: js/messages.php:409 +#: js/messages.php:410 msgid "No auto-saved query" msgstr "" -#: js/messages.php:410 +#: js/messages.php:411 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Ўзгарувчи" -#: js/messages.php:413 libraries/normalization.lib.php:889 +#: js/messages.php:414 libraries/normalization.lib.php:889 msgid "Pick" msgstr "" -#: js/messages.php:414 +#: js/messages.php:415 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "Амални амалга ошириш учун битта ёки бир нечта қаторни танлаш керак." -#: js/messages.php:415 +#: js/messages.php:416 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Маълумотлар базасида қидириш" -#: js/messages.php:417 +#: js/messages.php:418 #, 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:420 +#: js/messages.php:421 msgid "See more" msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Are you sure?" msgstr "" -#: js/messages.php:423 +#: js/messages.php:424 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Атрибутлар" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "\"%s\" га бирламчи калит қўшилди" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Кузатиш ҳисоботи" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 #, fuzzy @@ -2222,576 +2234,537 @@ msgstr "" msgid "End of step" msgstr "Сатр охири" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Садақа" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Биронта ҳам маълумотлар базаси танланмаган." -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 #, fuzzy #| msgid "The following queries have been executed:" msgid "The following actions will be performed:" msgstr "Қуйидаги сўровлар бажарилди:" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Қуйидаги жадвалга привилегия қўшиш" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Биронта ҳам маълумотлар базаси танланмаган." -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Сақлаш" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy #| msgid "SQL Query box" msgid "Hide search criteria" msgstr "SQL сўровлари қутиси" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy #| msgid "SQL Query box" msgid "Show search criteria" msgstr "SQL сўровлари қутиси" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Қидириш" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Майдон номлари" -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Майдон номлари" -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "Максимал жадваллар сони" -#: js/messages.php:474 +#: js/messages.php:475 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "Максимал жадваллар сони" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "SQL Query box" msgid "Hide find and replace criteria" msgstr "SQL сўровлари қутиси" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "SQL Query box" msgid "Show find and replace criteria" msgstr "SQL сўровлари қутиси" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Устун қўшиш/ўчириш" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Маълумотлар файли кўрсатгичи ҳажми" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Эътибор бермаслик" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "" -#: js/messages.php:508 +#: js/messages.php:509 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Қаторлар бўлувчиси" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Add a new User" msgid "Inner ring" msgstr "Янги фойдаланувчи қўшиш" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Қаторлар бўлувчиси" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Боғлиқ калитни танланг" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Ташқи калитни танланг" -#: js/messages.php:529 +#: js/messages.php:530 #, 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:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Саҳифа рақами: " -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 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:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 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:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 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:539 +#: js/messages.php:540 #, fuzzy #| msgid "Select Tables" msgid "Delete page" msgstr "Жадвалларни танланг" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Таҳрирлаш лозим бўлган саҳифани танлаш" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "Нотўғри порт номери" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Алоқалар схемасини тахрирлаш ёки экспорт қилиш" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "Ўзгариришлар сақланди" -#: js/messages.php:550 +#: js/messages.php:551 #, fuzzy, php-format #| msgid "Values for column %s" msgid "Add an option for column \"%s\"." msgstr "%s устуни учун қийматлар" -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Бажариш" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Майдон номлари" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Барчасини кўрсатиш" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Асл позиция" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Бекор қилиш" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Узилди" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "Импорт" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "Журнал файли остонаси" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Жадвалларни танланг" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 #, fuzzy #| msgid "Go to view" msgid "Go to link:" msgstr "Ушбу кўринишга ўтиш" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Майдон номлари" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Парол ўрнатиш" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Генерация қилиш" -#: js/messages.php:620 +#: js/messages.php:621 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Душ" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Барчасини кўрсатиш" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Apply index(s)" msgid "Hide panel" msgstr "Индекс(лар)ни сақлаш" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "Чап рамкада логотипни кўрсатиш" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "Асосий рамкани мослаштириш" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "Асосий рамкани мослаштириш" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 #, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "Жадваллар" - -#: js/messages.php:633 -#, fuzzy -#| msgid "View" -msgid "views" -msgstr "Намойиш" - -#: js/messages.php:634 -#, fuzzy -#| msgid "Procedures" -msgid "procedures" -msgstr "Муолажалар" - -#: js/messages.php:635 -#, fuzzy -#| msgid "Event" -msgid "events" -msgstr "Ҳодиса" - -#: js/messages.php:636 -#, fuzzy -#| msgid "Functions" -msgid "functions" -msgstr "Функциялар" - -#: js/messages.php:640 -#, 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:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2802,143 +2775,143 @@ msgstr "" "чиқарилган." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "Охирги версияни текшириш" -#: js/messages.php:649 +#: js/messages.php:641 #, fuzzy #| msgid "Go to database" msgid "up to date" msgstr "Ушбу базага ўтиш" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Версиясини тузиш" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Сервер порти" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "Сервер порти" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "Other core settings" msgid "Change report settings" msgstr "Бошқа созланишлар" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Очиқ жадваллар рўйхати" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Эътибор бермаслик" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Ушбу сўровни қайта кўрсатиш" -#: js/messages.php:701 +#: js/messages.php:693 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Ҳақиқатан ҳам сўровни бажармоқчимисиз?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL сўровлари" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Жадвал изоҳи" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy #| msgid "SQL Query box" msgid "Hide arguments" msgstr "SQL сўровлари қутиси" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Орқага" -#: js/messages.php:748 +#: js/messages.php:740 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2946,96 +2919,96 @@ msgid "Next" msgstr "Кейинги" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Жами" -#: js/messages.php:755 +#: js/messages.php:747 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Иккилик" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:749 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Мар" -#: js/messages.php:758 +#: js/messages.php:750 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Апр" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "Май" -#: js/messages.php:760 +#: js/messages.php:752 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Июн" -#: js/messages.php:761 +#: js/messages.php:753 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Июл" -#: js/messages.php:762 +#: js/messages.php:754 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Авг" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:756 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Окт" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Янв" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Фев" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Мар" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Апр" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -3043,78 +3016,78 @@ msgid "May" msgstr "Май" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Июн" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Июл" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Авг" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Сен" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Окт" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Ноя" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Дек" -#: js/messages.php:801 +#: js/messages.php:793 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Якш" -#: js/messages.php:802 +#: js/messages.php:794 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Душ" -#: js/messages.php:803 +#: js/messages.php:795 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Сеш" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:798 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Жум" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3122,86 +3095,86 @@ msgid "Sun" msgstr "Якш" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Душ" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Сеш" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Чор" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Пай" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Жум" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Шан" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Якш" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Душ" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Сеш" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Чор" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Пай" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Жум" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Шан" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 #, fuzzy #| msgid "Wiki" msgid "Wk" @@ -3210,81 +3183,81 @@ msgstr "Вики" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Йўқ" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:864 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "ишлатилмоқда" -#: js/messages.php:873 +#: js/messages.php:865 #, fuzzy #| msgid "per second" msgid "Second" msgstr "секундига" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Матнмайдонини ишлатиш" -#: js/messages.php:886 +#: js/messages.php:878 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "Нотўғри порт номери" -#: js/messages.php:887 +#: js/messages.php:879 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "Нотўғри порт номери" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "Нотўғри порт номери" -#: js/messages.php:889 +#: js/messages.php:883 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "Нотўғри порт номери" -#: js/messages.php:890 +#: js/messages.php:885 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "Нотўғри порт номери" -#: js/messages.php:891 +#: js/messages.php:888 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "Нотўғри порт номери" -#: js/messages.php:892 +#: js/messages.php:890 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" @@ -3296,53 +3269,53 @@ msgstr "Нотўғри порт номери" msgid "Please enter the same value again" msgstr "Нотўғри порт номери" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "Нотўғри порт номери" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "Нотўғри порт номери" -#: js/messages.php:898 +#: js/messages.php:917 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "Нотўғри порт номери" -#: js/messages.php:899 +#: js/messages.php:922 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "Нотўғри порт номери" -#: js/messages.php:901 +#: js/messages.php:928 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "Нотўғри порт номери" -#: js/messages.php:902 +#: js/messages.php:933 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "Нотўғри порт номери" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Хатолик" @@ -3431,11 +3404,12 @@ msgstr "сўров бўйича" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3484,7 +3458,7 @@ msgstr "Жорий хатоликларни ташлаб кетиш" msgid "Explain" msgstr "Сўров таҳлили" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Профиллаштириш" @@ -3528,8 +3502,8 @@ msgid "History" msgstr "SQL-сўровлар тарихи" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3712,7 +3686,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Нусха олинган жадвалга ўтиш" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -3720,28 +3694,28 @@ msgid "" "configured)." msgstr "(ёки локал MySQL сервернинг сокети нотўғри созланган)" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Сервер жавоб бермаяпти" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Тафсилотлар…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "\"config.inc.php\" конфигурацион файлининг \"controluser\" директивасида " "кўрсатилган фойдаланувчи ёрдамида уланиб бўлмади." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3751,8 +3725,8 @@ msgstr "" msgid "Ascending" msgstr "Ўсиш тартибида" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3920,8 +3894,8 @@ msgstr[0] "\"%s\" жадвалида ўхшашликлар сони \"%s msgstr[1] "\"%s\" жадвалида ўхшашликлар сони \"%s\" та" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3965,30 +3939,30 @@ msgstr "Белгилашни бекор қилиш" msgid "Inside column:" msgstr "Майдондан:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 #, fuzzy #| msgid "Save directory" msgid "Save edited data" msgstr "Сақлаш директорияси" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 #, fuzzy #| msgid "CHAR textarea columns" msgid "Restore column order" msgstr "CHAR майдонидаги устунлар сони" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 #, fuzzy msgid "Filter rows" msgstr "Фильтр" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Search in database" msgid "Search this table" msgstr "Маълумотлар базасида қидириш" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 #, fuzzy #| msgid "Begin" @@ -3996,7 +3970,7 @@ msgctxt "First page" msgid "Begin" msgstr "Боши" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 #, fuzzy @@ -4005,7 +3979,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Орқага" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 #, fuzzy @@ -4014,7 +3988,7 @@ msgctxt "Next page" msgid "Next" msgstr "Кейинги" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 #, fuzzy #| msgid "End" @@ -4022,85 +3996,85 @@ msgctxt "Last page" msgid "End" msgstr "Охири" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Барча" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of fields" msgid "Number of rows:" msgstr "Майдонлар сони " -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Индекс бўйича сортировка қилиш" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Маълумотларни қисқартириб кўрсатиш" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Маълумотларни кенгайтирилган ҳолда кўрсатиш" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Алоқадор калит" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Disable foreign key checks" msgid "Display column for relations" msgstr "Ташқи калитларни текширишни ўчириш" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "Иккилик маълумотларни кўрсатиш" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "BLOB туридаги маълумотларни кўрсатиш" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Ўгириш" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Ёзув ўчирилди" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Тугатиш" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Тахминий бўлиши мумкин. [doc@faq3-11]\"FAQ 3.11\"[/doc]га қаранг" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -4108,7 +4082,8 @@ msgstr "Тахминий бўлиши мумкин. [doc@faq3-11]\"FAQ 3.11\"[/d msgid "Your SQL query has been executed successfully." msgstr "SQL сўрови муваффақиятли бажарилди" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -4117,43 +4092,43 @@ msgstr "" "Ушбу намойиш камида кўрсатилган миқдорда қаторларга эга. Батафсил маълумот " "учун %sдокументацияга%s қаранг." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Ёзувларни кўрсатиш" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "жами" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "Сўров %01.4f секунд вақт олди" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Белгиланганларни:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -4161,27 +4136,27 @@ msgstr "Белгиланганларни:" msgid "Check all" msgstr "Барчасини белгилаш" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Чоп этиш версияси" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "Сўров натижаларини ишлатиш" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF-схемани кўрсатиш" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 #, fuzzy #| msgid "Link not found" msgid "Link not found!" @@ -4291,19 +4266,19 @@ msgstr "Индекс белгиланмаган!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Индекслар" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -4312,24 +4287,24 @@ msgid "Action" msgstr "Амал" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Индекс номи" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Уникал" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Қисилган" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Элементлар сони" @@ -4337,8 +4312,8 @@ msgstr "Элементлар сони" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -4348,8 +4323,8 @@ msgid "Collation" msgstr "Таққослаш" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -4365,15 +4340,15 @@ msgstr "Бирламчи калит ўчирилди." msgid "Index %s has been dropped." msgstr "\"%s\" индекси ўчирилди." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Ўчириш" @@ -4410,12 +4385,13 @@ msgstr "Намойиш" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4423,7 +4399,7 @@ msgstr "Жадвал" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4432,8 +4408,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4441,41 +4417,41 @@ msgid "Search" msgstr "Қидириш" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Қўйиш" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Привилегиялар" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Операциялар" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Кузатиш" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4486,16 +4462,16 @@ msgstr "Триггерлар" msgid "Database seems to be empty!" msgstr "Маълумотлар базаси бўш!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "Сўров" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Муолажалар" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4503,22 +4479,22 @@ msgstr "Муолажалар" msgid "Events" msgstr "Ҳодисалар" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Дизайнер" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "CHAR textarea columns" msgid "Central columns" msgstr "CHAR майдонидаги устунлар сони" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Маълумотлар базалари" @@ -4529,33 +4505,33 @@ msgid "User accounts" msgstr "Фойдаланувчи" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Иккилик журнал" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Репликация (захира нусха кўчириш)" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "Ўзгарувчилар" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Кодировкалар" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Жадвал турлари" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4888,7 +4864,7 @@ msgstr "Индексни \"PRIMARY\"га қайта номлаб бўлмади! msgid "No index parts defined!" msgstr "Индекс қисмлари белгиланмаган!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5322,40 +5298,40 @@ msgstr "" msgid "Click to toggle" msgstr "Танлаш учун сичқонча тугмасини босинг" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "Юклаш каталогидан" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Кўрсатилган каталокка юклаб бўлмади." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 #, fuzzy #| msgid "There are no configured servers" msgid "There are no files to upload!" msgstr "Биронта ҳам конфигурацияланган сервер мавжуд эмас" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Тозалаш" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Чоп этиш" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 #, fuzzy #| msgid "User" msgid "Users" @@ -5540,8 +5516,8 @@ msgid "Add new column" msgstr "Устун(лар) қўшиш" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5614,19 +5590,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "\"%s\" ни \"%s\" версияга ёки каттароқ версияга янгилаш зарур." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -6647,7 +6623,7 @@ msgid "Remember file name template" msgstr "Файл номи шаблонини ёдда сақлаш" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT қўшиш" @@ -6695,7 +6671,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "\"%s\" қўшиш" @@ -8757,7 +8733,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 #, fuzzy #| msgid "SQL Query box" msgid "Retain query box" @@ -9104,112 +9080,35 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "OpenDocument матн" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "\"%s\" жадвали тозаланди." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "\"%s\" намойиши ўчирилди" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "\"%s\" жадвали ўчирилди" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "номаълум" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" - -#: libraries/controllers/TableStructureController.php:250 -#, fuzzy -#| msgid "No rows selected" -msgid "No column selected." -msgstr "Амални амалга ошириш учун битта ёки бир нечта қаторни танлаш керак." - -#: libraries/controllers/TableStructureController.php:484 -#, fuzzy -#| msgid "The selected users have been deleted successfully." -msgid "The columns have been moved successfully." -msgstr "Белгиланган фойдаланувчилар муваффақиятли ўчирилди." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "%1$s жадвали муваффақиятли ўзгартирилди." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -#, fuzzy -#| msgid "Ignore errors" -msgid "Query error" -msgstr "Хатоларга эътибор бермаслик" - -#: libraries/controllers/TableStructureController.php:967 -#, 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.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "Ўзгартириш" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Индекс" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Матн тўлалигича" - -#: libraries/controllers/TableStructureController.php:1201 -#, fuzzy -#| msgid "Browse distinct values" -msgid "Distinct values" -msgstr "Турли қийматларни кўриб чиқиш" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -9225,6 +9124,14 @@ msgstr "" msgid "No data to display" msgstr "Маълумотлар базаси мавжуд эмас" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "%1$s жадвали муваффақиятли ўзгартирилди." + #: libraries/controllers/table/TableRelationController.php:212 #, fuzzy #| msgid "Thread %s was successfully killed." @@ -9237,25 +9144,94 @@ msgstr "\"%s\" жараёни муваффақиятли якунланди." msgid "Internal relations were successfully updated." msgstr "Ички алоқа ўрнатилди" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Search" msgid "Table search" msgstr "Қидириш" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Search" msgid "Zoom search" msgstr "Қидириш" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "SQL Query box" msgid "Find and replace" msgstr "SQL сўровлари қутиси" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" + +#: libraries/controllers/table/TableStructureController.php:251 +#, fuzzy +#| msgid "No rows selected" +msgid "No column selected." +msgstr "Амални амалга ошириш учун битта ёки бир нечта қаторни танлаш керак." + +#: libraries/controllers/table/TableStructureController.php:485 +#, fuzzy +#| msgid "The selected users have been deleted successfully." +msgid "The columns have been moved successfully." +msgstr "Белгиланган фойдаланувчилар муваффақиятли ўчирилди." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +#, fuzzy +#| msgid "Ignore errors" +msgid "Query error" +msgstr "Хатоларга эътибор бермаслик" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "Ўзгартириш" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Индекс" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Матн тўлалигича" + +#: libraries/controllers/table/TableStructureController.php:1209 +#, fuzzy +#| msgid "Browse distinct values" +msgid "Distinct values" +msgstr "Турли қийматларни кўриб чиқиш" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -9265,7 +9241,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "Ўзгариш йўқ" @@ -9341,7 +9317,7 @@ msgstr "Тузиш" msgid "Create database:" msgstr "Янги маълумотлар базаси тузиш" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Привилегиялар йўқ" @@ -10158,29 +10134,29 @@ msgid "Dump has been saved to file %s." msgstr "Дамп \"%s\" файлида сақланди." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL бўш натижа берди (яъни нольта сатр)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Қуйидаги тузилишлар ё тузилди ё ўзгартирилди. Бу ерда сиз қуйидаги амалларни " "бажаришингиз мумкин:" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 #, fuzzy #| msgid "View a structure`s contents by clicking on its name" msgid "View a structure's contents by clicking on its name." msgstr "Тузилмани кўриш учун унинг номи устига сичқонча тугмасини босинг" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -10188,53 +10164,53 @@ msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "Қуйидаги танловларни ўзгартириш учун, \"Танловлар\" боғига босинг" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link." msgstr "Тузилмани ўзгартириш учун, \"Тузилма\" боғига киринг" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "Ушбу базага ўтиш" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "\"%s\" майдонида маълумот йўқ" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "Ушбу жадвалга ўтиш" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Фақат тузилиши" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" msgstr "Ушбу кўринишга ўтиш" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" @@ -10258,73 +10234,73 @@ msgstr "Функция" msgid "Binary" msgstr "Иккилик" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "Маълумотлар кўплиги сабали
ўзгартириш қийишлашиши мумкин" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Иккилик маълумот - таҳрирлаш мумкин эмас" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Ёки" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "Юклаш каталогидан" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Қўйиш" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Қўйилаётган қаторлар сони: \"%s\"" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "ва сўнг" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Ёзув киритиш" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "Янги қатор сифатида қўшиш ва хатоликларга эътибор бермаслик" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "Киритилган сўровни кўрсатиш" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Олдинги саҳифага ўтиш" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Янги ёзув киритиш" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Ушбу саҳифага қайтиш" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Кейинги қаторни таҳрирлаш" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -10333,7 +10309,7 @@ msgid "" msgstr "" "Майдонлараро ўтиш учун TAB тугмаси ёки CTRL+стрелка тугмаларидан фойдаланинг" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -10345,11 +10321,11 @@ msgstr "" msgid "Value" msgstr "Қиймати" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "SQL-сўровни кўрсатиш" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "Киритилган қатор идентификатори: %1$d" @@ -10367,45 +10343,45 @@ msgstr "Йўқ" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table prefix:" msgstr "Жадвал префиксини алмаштириш" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Copy table with prefix" msgid "Copy table with prefix:" msgstr "Жадвални префикси билан нусхалаш" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Жум" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Apply index(s)" msgid "Add table prefix:" msgstr "Индекс(лар)ни сақлаш" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 #, fuzzy #| msgid "Apply index(s)" msgid "Add prefix" msgstr "Индекс(лар)ни сақлаш" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -10637,8 +10613,8 @@ msgstr "Муолажалар" msgid "Views:" msgstr "Намойиш" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Кўрсатиш" @@ -10680,10 +10656,9 @@ msgstr[0] "" msgstr[1] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "table name" -msgid "Filter databases by name or regex" -msgstr "жадвал номи" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -10692,12 +10667,6 @@ msgstr "жадвал номи" msgid "Clear fast filter" msgstr "Файл каби сақлаш" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "table name" -msgid "Filter by name or regex" -msgstr "жадвал номи" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -11104,7 +11073,7 @@ msgstr "Маълумотлар базаси номини қуйидагига ў #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -11115,7 +11084,7 @@ msgstr "Ушбу саҳифага кириш учун Сизда етарли ҳ #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -11135,18 +11104,18 @@ msgstr "Маълумотлар базаси ўчириш" msgid "Drop the database (DROP)" msgstr "Маълумотлар базасини ўчириш (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Фақат тузилиши" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Тузилиши ва маълумотлари" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Фақат маълумотлар" @@ -11160,7 +11129,7 @@ msgstr "Маълумотлар базасидан қуйидагига нусх msgid "CREATE DATABASE before copying" msgstr "Нусха кўчиришдан олдин маълумотлар базаси тузинг (CREATE DATABASE)" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Чекловлар қўшиш" @@ -11200,63 +11169,63 @@ msgstr "Жадвал тури" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Жадвалдан (маълумотлар омбори.жадвал) га нусха кўчириш" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Нусха олинган жадвалга ўтиш" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Жадвалга хизмат кўрсатиш" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Жадвал таҳлили" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Жадвални текшириш" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Жадвални текшириш" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Жадвални дефрагментациялаш" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "\"%s\" жадвали кеши янгиланди." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Жадвал кешини янгилаш (\"FLUSH\")" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Жадвални оптималлаштириш" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Жадвални тиклаш" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 #, fuzzy @@ -11264,105 +11233,105 @@ msgstr "Жадвални тиклаш" msgid "Delete data or table" msgstr "Ушбу жадвал учун кузатув маълумотлари ўчириш" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 #, fuzzy #| msgid "Go to database" msgid "Delete the table (DROP)" msgstr "Ушбу базага ўтиш" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Таҳлил" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Текшириш" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Оптимизация" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Қайта қуриш" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Тиклаш" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "Ёпиш" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "бўлакларга хизмат кўрсатиш" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "\"%s\" бўлаги" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "Бўлакларни (PARTITIONS) ўчириш" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Маълумотлар яхлитлигини текшириш:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Жадвални ўз-ўзига кўчириб бўлмайди!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Жадвалнинг ўзидан ўзига нусха кўчириш мумкин эмас!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "\"%s\" жадвали \"%s\" га кўчирилди." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "\"%s\" жадвалидан \"%s\" га нусха кўчирилди." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "\"%s\" жадвали \"%s\" га кўчирилди." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "\"%s\" жадвалидан \"%s\" га нусха кўчирилди." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Жадвал номи кўрсатилмаган!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -11560,7 +11529,7 @@ msgstr "Маълумотлар базаларини кўрсатиш афзал #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Жадвал маълумотларини дамп қилиш" @@ -11586,21 +11555,21 @@ msgstr "Тавсифи" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Жадвал тузилиши" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Намойиш этиш учун тузилма" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Намойиш этиш учун тузилма" @@ -11714,7 +11683,7 @@ msgid "Database:" msgstr "Маълумотлар базаси" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11832,7 +11801,7 @@ msgid "Data creation options" msgstr "Ўгиришлар параметрлари" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -11901,8 +11870,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11910,93 +11879,93 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Missing data for %s" msgid "Metadata" msgstr "\"%s\" майдонида маълумот йўқ" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Metadata for %s" msgstr "\"%s\" майдонида маълумот йўқ" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Тузиш:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Охирги янгиланиш:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Охирги текширув:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "ишлатилмоқда" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Сақланган жадвалларнинг ташқи калитида чекловлар" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Жадвалларнинг ташқи калитида чекловлар" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Сақланган жадвалларнинг ташқи калитида чекловлар" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Жадваллардан:" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "Ноль қийматлари учун \"AUTO_INCREMENT\" ишлатмаслик" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT қўшиш" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "ЖАДВАЛ УЧУН MIME ТУРЛАРИ" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "Жадвал алоқалари" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Намойиш этиш учун тузилма" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -12268,9 +12237,9 @@ msgstr "Алоқалар схемаси" msgid "Table of contents" msgstr "Мундарижа" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Қўшимча" @@ -12523,63 +12492,63 @@ msgid "Formats text as XML with syntax highlighting." msgstr "" "Матнни синтаксиси ранг билан белгиланган SQL сўров сифатида форматлайди." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Хатолик: Боғлиқлик аллақачон мавжуд." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "Ташқи калитга (FOREIGN KEY) алоқа ўрнатилди" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Хатолик: Боғлиқлик ўрнатилмади." -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Relational features are disabled!" msgstr "Хатолик: Боғлиқлик ўрнатилмади." -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "Ички алоқа ўрнатилди" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "Хатолик: Боғлиқлик ўрнатилмади." -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "Ташқи калитга (FOREIGN KEY) алоқа ўрнатилди" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Хатолик: Боғлиқлик ўрнатилмади." -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "Хатолик: Боғлиқлик ўрнатилмади." -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -12637,71 +12606,71 @@ msgstr "" "\"column_comments\" жадвалини янгилаш зарур. Батафсил маълумот учун " "документацияга қаранг." -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Хатчўп қўйилган SQL сўрови" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL-сўровлар тарихи" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 #, fuzzy #| msgid "Persistent connections" msgid "Persistent recently used tables" msgstr "Доимий уланишлар" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "Persistent connections" msgid "Persistent favorite tables" msgstr "Доимий уланишлар" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Configuration file" msgid "Configurable menus" msgstr "Конфигурацион файл" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 #, fuzzy #| msgid "Reload navigation frame" msgid "Hide/show navigation items" msgstr "Навигация ойнасини қайта юклаш" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Rename table to" msgid "Remembering Designer Settings" msgstr "Жадвал номини ўзгартириш" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "Экспорт тури нотугри" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "Муфассал танловларни тез созлаш учун қадамларs:" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, fuzzy, php-format #| msgid "" #| "Create the needed tables with the examples/create_tables.sql." @@ -12710,11 +12679,11 @@ msgstr "" "Керакли жадвалларни examples/create_tables.sql код ёрдамида " "тузиш." -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "phpMyAdmin фойдаланувчиси қўшиш ва ушбу жадвалларга рухсат бериш." -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -12722,24 +12691,24 @@ msgstr "" "(config.inc.php) файлидаги муфассал танловларни фаоллаштириш, " "масалан, config.sample.inc.php дан бошлаб." -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Янгиланган конфигурация файли ишга тушиши учун, phpMyAdmin дастуридан чиқиб, " "қайта киринг." -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "тавсиф мавжуд эмас" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, fuzzy, php-format #| msgid "" #| "Empty phpMyAdmin control user while using phpMyAdmin configuration storage" @@ -12750,13 +12719,13 @@ msgstr "" "pmadb усули ишлатилмоқда, лекин phpMyAdmin конфигурацион файлида " "фойдаланувчи белгиланмаган" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, fuzzy, php-format #| msgid "" #| "Empty phpMyAdmin control user while using phpMyAdmin configuration storage" @@ -12975,8 +12944,8 @@ msgstr "Фойдаланувчи номи" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Фойдаланувчи номи" @@ -12984,7 +12953,7 @@ msgstr "Фойдаланувчи номи" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Парол" @@ -13725,7 +13694,7 @@ msgstr[0] "\"%s\" маълумотлар базаси муваффақиятли msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Версия" @@ -13733,104 +13702,100 @@ msgstr "Версия" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Фаолсизлантирилган" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Привилегиялар йўқ." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "GRANT дан ташқари барча привилегияларни ўз ичига олади." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Маълумотларни чақиришга рухсат беради." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Маълумот қўйиш ва ўзгартиришга рухсат беради." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Маълумотларни ўзгартиришга рухсат беради." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Маълумотларни ўчиришга рухсат беради." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Янги маълумотлар базалари ва жадваллар тузишга рухсат беради." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Маълумотлар базаларини ва жадвалларни ўчиришга рухсат беради." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Сервер созланишларини қайта юклашга ва унинг кешларини тозалашга рухсат " "беради." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Сервер ишини якунлашга рухсат беради." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 #, fuzzy #| msgid "Allows viewing processes of all users" msgid "Allows viewing processes of all users." msgstr "Барча фойдаланувчиларнинг жараёнларини кўришга рухсат беради" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "Маълумотларни файлдан импорт ва файлга экспорт қилишга рухсат беради." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "MySQL-сервернинг ушбу версияда бундай хусусият мавжуд эмас." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Индекслар қўшиш ва уларни ўчиришга рухсат беради." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Мавжуд жадвалларнинг тузилишини ўзгартиришга рухсат беради." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Маълумотлар базаларининг тўлиқ рўйхатига рухсат беради." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -13841,22 +13806,22 @@ msgstr "" "ўзгарувчилар ўрнатиш ёки бошқа фойдаланувчи жараёнини ўчириш)." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Вақтинчалик жадваллар тузишга рухсат беради." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Жорий оқим учун жадвални блокировку қилишга рухсат беради." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "Репликация (захира нусха кўчириш) вақтида тобе серверлар учун керак." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Бош ва тобе серверларнинг жойлашиши ҳақидаги маълумотни талаб қилишга рухсат " @@ -13865,19 +13830,19 @@ msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Янги намойишлар тузиш(CREATE VIEW)га рухсат беради." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "Кечиктирилган ҳодисаларни созлашга рухсат беради." #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 #, fuzzy #| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." @@ -13887,27 +13852,27 @@ msgstr "" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Намойиш тузадиган сўров(SHOW CREATE VIEW)ни бажаришга рухсат беради." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Сақланадиган муолажалар тузишга рухсат беради." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Сақланадиган муолажаларни ўзгартириш ва ўчиришга рухсат беради." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "Фойдаланувчилар ҳисобини қўшиш, ўчириш ва ўзгартиришга рухсат беради." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Сақланадиган муолажаларни бажаришга рухсат беради." @@ -13921,8 +13886,8 @@ msgstr "Йўқ" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -13968,12 +13933,12 @@ msgstr "" "қилади." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Фойдаланувчи бир соат давомида юбориши мумкин бўлган сўровлар сони." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -13982,22 +13947,22 @@ msgstr "" "маълумотлар базасини ўзгартирадиган буйруқлар сони." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Фойдаланувчи бир соат давомида ўрнатиши мумкин бўлган янги уланишлар сони." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Бир фойдаланувчи томонидан бир вақтнинг ўзида ўрнатиши мумкин бўлган " "уланишлар сони." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -14005,7 +13970,7 @@ msgid "Routine" msgstr "Муолажалар" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -14026,14 +13991,14 @@ msgstr "Сақланадиган муолажаларни бажаришга р #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Жадвал даражасижаги привилегиялар" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -14045,7 +14010,7 @@ msgid "Administration" msgstr "Администрация" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Глобал привилегиялар" @@ -14056,15 +14021,15 @@ msgid "Global" msgstr "Глобал" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Маълумотлар базаси привилегиялари" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Янги жадваллар тузишга рухсат беради." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Жадвалларни ўчиришга рухъсат беради." @@ -14087,7 +14052,7 @@ msgid "Native MySQL Authentication" msgstr "Аутентификация тартиби" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Фойдаланувчи ҳисоби ҳақида маълумот" @@ -14112,8 +14077,8 @@ msgstr "Фойдаланувчи номи" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Log name" msgid "Host name" @@ -14135,252 +14100,252 @@ msgstr "Аутентификация усули" msgid "Password Hashing Method" msgstr "Паролни хешлаш" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "\"%s\" фойдаланувчининг пароли муваффақиятли ўзгартирилди." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "\"%s\" фойдаланувчининг привилегиялари бекор қилинди." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Ҳар қайси фойдаланувчи" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Фойдаланувчи учун маълумотлар базаси" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" "Фойдаланувчи номи билан аталган маълумотлар базаси тузиш ва унга тўлиқ " "привилегияларни бериш." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "(фойдаланувчи\\_%) шаблонига тўғри келадиган барча маълумотлар базаларига " "тўлиқ привилегияларни бериш." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "\"%s\" маълумотлар базасига барча привилегияларни бериш." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\"га рухсати бўлган фойдаланувчилар" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "\"%s\" намойиши ўчирилди" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "GRANT" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Биронта ҳам фойдаланувчи топилмади." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Ҳар қайси" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "Глобал" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "Маълумотлар базаси даражасида" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "Гуруҳлаш белгиси" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Маълумотлар базаси даражасида" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Привилегияларни таҳрирлаш" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Бекор қилиш" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Серверларни таҳрирлаш" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "ва эскисини сақлаш." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "ва фойдаланувчилар жадвалидан эскисини ўчириш." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr ", эскисининг барча фаол привилегияларини бекор қилиб ўчириш." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" ", фойдаланувчилар жадвалидан эскисини ўчириб привилегияларни қайта юклаш." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Фойдаланувчининг логинини ўзгартириш / Фойдаланувчидан нусха олиш" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Худди шундай привилегияли янги фойдаланувчи киритиш…" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Майдон привилегиялари" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Белгиланган фойдаланувчиларни ўчириш" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Фойдаланувчиларнинг барча фаол привилегияларини бекор қилиш, сўнг уларни " "ўчириш." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "Фойдаланувчилар номлари билан аталган маълумотлар базаларини ўчириш." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "Ўчириш лозим бўлган фойдаланувчилар танланмаган!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Привилегиялар қайта юкланмоқда" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Белгиланган фойдаланувчилар муваффақиятли ўчирилди." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "\"%s\" учун привилегиялар ўзгартирилди." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "\"%s\" ўчирилмоқда" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Привилегиялар муваффақиятли қайта юкланди." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "\"%s\" номли фойдаланувчи мавжуд!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Привилегиялар" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Фойдаланувчи" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Привилегияларни таҳрирлаш" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "User" msgid "User account" msgstr "Фойдаланувчи" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Фойдаланувчилар ҳисобини кўриб чиқиш" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -14393,7 +14358,7 @@ msgstr "" "маълумотлар сервер томонидан ишлатилаётган привилегиялардан фарқ қилиши " "мумкин. Бу ҳолда %sпривилегияларни қайта юклаш%s керак." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -14412,11 +14377,11 @@ msgstr "" "маълумотлар сервер томонидан ишлатилаётган привилегиялардан фарқ қилиши " "мумкин. Бу ҳолда %sпривилегияларни қайта юклаш%s керак." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "Белгиланган фойдаланувчи привилегиялар жадвалида топилмади." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Сиз янги фойдаланувчи қўшдингиз." @@ -14675,37 +14640,37 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 #, fuzzy #| msgid "Enable highlighting" msgid "Enable charts dragging" msgstr "Белгилашни ёқиш" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 #, fuzzy msgid "Refresh rate" msgstr "Янгилаш" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 #, fuzzy #| msgid "CHAR textarea columns" msgid "Chart columns" msgstr "CHAR майдонидаги устунлар сони" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "Хатоликларни бошқариш:" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" @@ -14777,7 +14742,7 @@ msgid "Statements" msgstr "Тавсиф" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -14810,19 +14775,19 @@ msgstr "Очиқ жадваллар рўйхати" msgid "Related links:" msgstr "Алоқалар" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL-серверга уланиб бўлмади" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -14831,16 +14796,16 @@ msgstr "" "Бинар журнали кешини ишлатиб, \"binlog_cache_size\" қийматидан ошиб, ўз " "ичига олган SQL-жумлалари вақтинчалик файлга сақланган транзакциялар сони." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "Бинар журнал кешини ишлатган транзакциялар сони." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -14853,11 +14818,11 @@ msgstr "" "сақланишини таъминлаш мақсадида tmp_table_size ўзгарувчисининг қийматини " "ошириш тавсия этилади." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "MySQL сервери (mysqld) томонидан тузилган вақтинчалик файллар сони." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -14865,7 +14830,7 @@ msgstr "" "Сервер томонидан SQL-жумлалари бажарилаётган вақтда хотирада автоматик " "тузилган вақтинчалик жадваллар сони." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -14873,31 +14838,31 @@ msgstr "" "\"INSERT DELAYED\" сўровларини қайта ишлаш жараёнида юз берган хатолар " "(масалан, калитлар такрорланиши оқибатида) сони." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "Бажариладиган \"INSERT DELAYED\" сўровлар сони." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" "Маълумотларни кечиктириб қўйиш (\"INSERT DELAYED\") режимида ёзилган " "қаторлар сони." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "Бажарилган \"FLUSH\" буйруқлар сони." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "Ички \"COMMIT\" буйруқлари сони." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "Жадвалдал ёзувларни ўчириш бўйича сшровлар сони." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -14907,7 +14872,7 @@ msgstr "" "бериши мумкин. Бу жараён топиш деб номланади. Handler_discover - топилган " "жадваллар сони." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -14916,7 +14881,7 @@ msgstr "" "Индексдан биринчи ёзувни ўқишга бўлган сўровлар сони. Ўзгарувчининг қиймати " "катта бўлса, сервер бир неча маротиба индексни кўриб чиқади." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -14925,7 +14890,7 @@ msgstr "" "Ўзгарувчининг қиймати катталиги сўров ва жадваллар тўғри индексланганидан " "далолат беради." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -14935,7 +14900,7 @@ msgstr "" "Ҳажми чекланган индекс устунига бўлган сўров ёки индексни кўриб чиқиш " "вақтида ўзгарувчи қиймати ошади." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -14944,7 +14909,7 @@ msgstr "" "бўлган сўровлар сони. Одатда оптималлаштириш учун қўлланилади: ORDER BY … " "DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -14957,7 +14922,7 @@ msgstr "" "чиқишни талаб этадиган сўровларнинг тез-ез бажарилиши; индекслардан нотўғри " "фойдаланадиган бирлашмаларнинг мавжудлиги." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -14969,35 +14934,35 @@ msgstr "" "индексланганлигини ёки сўровлар индексларнинг афзалликларидан " "фойдаланмаётганлигини билдиради." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "ROLLBACK ички буйруқлар сони." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "Жадвалдаги ёзувларни янгилашга бўлган сўровлар сони." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "Жадвалга ёзув қўйишга бўлган сўровлар сони." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "Маълумот мавжуд бўлган саҳифалар сони (\"кир\" ва \"тоза\")." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "\"Кир\" саҳифаларнинг жорий сони." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Буфер пулидаги тозалаш жараёни (FLUSH) қўлланилган саҳифалар сони." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "Бўш саҳифалар сони." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -15007,7 +14972,7 @@ msgstr "" "устидан ўқиш ёки ёзиш жараёни бажарилмоқда, ёки уларни бошқа сабабларга кўра " "тозалаш ёки ўчириш имконияти йўқ." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -15019,11 +14984,11 @@ msgstr "" "\"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data\"." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "Буфер пулининг умумий ҳажми (саҳифаларда)." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -15032,7 +14997,7 @@ msgstr "" "сони. Ушбу ҳол сўров жадвални тасодифий тартибда кўриб чиқаётганда рўй " "беради." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -15041,12 +15006,12 @@ msgstr "" "сони. Ушбу ҳол InnoDB жадвални тўлалигича кетма-кет кўриб чиқаётганда рўй " "беради." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" "InnoDB томонидан амалга оширилган ўқишга бўлган кетма-кет сўровлар сони." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -15054,7 +15019,7 @@ msgstr "" "InnoDB буфер пулидан бажар олмаган ва саҳифалаб ўқишдан фойдаланган ўқишга " "бўлган кетма-кет сўровлар сони." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -15067,51 +15032,51 @@ msgstr "" "Ушбу ҳисоблагич шундай кутишлар сонини билдиради. Агар буфер пулининг ҳажми " "тўғри белгиланган бўлса, унда кутишлар сони катта бўлмаслиги керак." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB буфер пулига амалга оширилган ёзувлар сони." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "Жорий вақтда амалга оширилган \"fsync()\" операциялари сони." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "Тугалланмаган \"fsync()\" операциялари сони." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "Тугалланмаган ўқиш операциялари сони." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "Тугалланмаган ёзиш операциялари сони." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "Жорий вақтда ўқилган маълумотлар йиғиндиси (байтларда)." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "Умумий маълумотларни ўқиш операциялари сони." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "Умумий маълумотларни ёзиш операциялари сони." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "Жорий вақтда ёзилган маълумотлар йиғиндиси (байтларда)." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "\"doublewrite\" операциялари учун ёзилган саҳифалар сони." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "Бажарилган \"doublewrite\" операциялари сони." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -15119,35 +15084,35 @@ msgstr "" "Журнал буферининг ҳажми кичик бўлганлиги сабабли, унинг тозаланиши кутаётган " "ёзувлар сони." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "Журналга ёзишга бўлган сўровларсони." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "Журнал файлидаги жисмоний ёзувлар сони." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "Журнал файлига \"fsync()\" ёрдамида амалга оширилган ёзувлар сони." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "\"fsync()\" ёрдамида амалга оширилиши кутилаётган ёзувлар сони." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "Тугалланмаган журналга ёзиш сўровлари сони." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "Журнал файлига ёзилган маълумотлар ҳажми (байтларда)." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "Тузилган саҳифалар сони." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -15156,51 +15121,51 @@ msgstr "" "Кўпгина қийматлар саҳифаларда келтирилади, лекин саҳифа ҳажми билган ҳолда, " "уларни байтларга ўтказиш мумкин." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "Ўқилган саҳифалар сони." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "Ёзилган саҳифалар сони." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "Ҳозирда кутилаётган қатор блокировкалари сони." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Қатор блокировкасини кутишнинг ўртача вақти (миллисекундларда)." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Қатор блокировкасини кутишнинг умумий вақти (миллисекундларда)." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Қатор блокировкасини кутишнинг максимал вақти (миллисекундларда)." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "Умумий кутилаётган қатор блокировкалари сони." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB жадвалидан ўчирилган қаторлар сони." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB жадвалига ёзилган қаторлар сони." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB жадвалларидан ўқилган қаторлар сони." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB жадвалларида янгиланган қаторлар сони." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -15208,7 +15173,7 @@ msgstr "" "Индекс кешидаги ўзгартирилган, лекин ҳали дискка ёзилмаган блоклар сони. " "Ушбу параметр, шунингдек, \"Not_flushed_key_blocks\" номи билан ҳам маълум." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -15216,7 +15181,7 @@ msgstr "" "Индекс кешидаги ишлатилмаётган блоклар сони. Ушбу параметр индекс кеши " "ишлатилиш даражасини белгилайди." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -15225,17 +15190,17 @@ msgstr "" "Индекс кешидаги ишлатилаётган блоклар сони. Ушбу қиймат бир вақтнинг ўзида " "ишлатилиши мумкин бўлган блоклар сонини билдиради." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Импорт қилинаётган файл формати" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "Индекс кешидаги блокларни ўқишга бўлган сўровлар сони." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -15246,26 +15211,26 @@ msgstr "" "қилиб белгиланган. Кешга бўлган муваффақиятсиз мурожаатлар коэффициенти " "қуйидагича ҳисобланди: Key_reads/Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "Блокни индекс кешига ёзишга бўлган сўровлар сони." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "Дискдан индекс блокларини жисмоний ёзиш операциялари сони." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -15276,19 +15241,19 @@ msgstr "" "эффективлигини таққослашда фойдали ҳисобланади. Асл ноль қиймат ҳали сўров " "компиляция жараёни бажарилмаганлигини билдиради." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Количество строк, ожидающих вставки в запросах \"INSERT DELAYED\" " "сўровларида қўйилишини кутаётган қаторлар сони." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -15296,42 +15261,42 @@ msgstr "" "Очилаётган жадвалларнинг умумий сони. Агар ўзгарувчининг қиймати катта " "бўлса, жадвал кеши (table_cache) ҳажмини ошириш тавсия этилади." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "Очиқ файллар сони." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб " "\"fopen()\" функцияси ёрдамида очилган файлга айтилади." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "Очиқ жадваллар сони." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "Сўровлар кеши учун бўш хотира ҳажми." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" "Сўровлар кешига \"тушишлар\" сони, яъни кешда турган сўровлар томонидан " "қониқтирилган сўровлар сони." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "Сўровлар кешига қўшилган сўровлар сони." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -15343,7 +15308,7 @@ msgstr "" "кешдан сўровларни ўчиришда \"LRU\" (Least Recently Used - энг олдинги " "ишлатилган) стратегиясидан фойдаланади." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -15351,19 +15316,19 @@ msgstr "" "Кешлаб бўлмайдиган ёки кешлаш \"SQL_NO_CACHE\" калит сўзи ёрдамида " "сўндирилган сўровлар сони." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "Кешда регистрация қилинган сўровлар сони." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "Сўровлар кешига ажратилган хотира блокларнинг умумий сони." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "Барқарор репликациялар сони (ҳали амалга оширилмаган)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -15371,13 +15336,13 @@ msgstr "" "Индекс ишлатмасдан бажарилган бирлашма сўровлар сони. Агар ўзгарувчи қиймати " "0 бўлмаса, жадвал индексларини текшириш тавсия этилади." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" "Боғланиш мавжуд бўлган жадвалда диапазон бўйича қидирув ишлатган ҳолда " "бажарилган бирлашма сўровлар сони." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -15386,7 +15351,7 @@ msgstr "" "ишлатган ҳолда бажарилган бирлашма сўровлар сони. Агар ўзгарувчи қиймати 0 " "бўлмаса, жадвал индексларини текшириш тавсия этилади." -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -15395,17 +15360,17 @@ msgstr "" "сўровлар сони. Одатда, ушбу ўзгарувчининг қиймати, ҳатто жуда катта бўлса " "ҳам, унчалик муҳим эмас." -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" "Биринчи жадвалга нисбатан тўлалигича қидирув ишлатган ҳолда бажарилган " "бирлашма сўровлар сони." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Тобе оқим томонидан жорий вақтда очилган вақтинчалик жадваллар сони." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -15413,13 +15378,13 @@ msgstr "" "Ишга туширилгандан буён репликациянинг тобе оқими томонидан бажарилган қайта " "транзакцияларнинг умумий сони." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Агар ушбу сервер бош серверга уланган ҳолда тобе сервер сифатида ишлаётган " "бўлса, ушбу ўзгарувчига \"ON\" қиймати белгиланади." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -15427,12 +15392,12 @@ msgstr "" "Тузилиши учун slow_launch_time секунддан кўпроқ вақт талаб этилган оқимлар " "сони." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "long_query_time секунддан кўпроқ вақт бажарилган сўровлар сони." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -15442,25 +15407,25 @@ msgstr "" "қиймати катта бўлса, \"sort_buffer_size\" ўзгарувчисининг қийматини ошириш " "зарур." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "Диапазон ёрдамида бажарилган сортировка операциялари сони." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "Сортировка қилинган қаторлар сони." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" "Жадвални тўлалигича кўриб чиқиш ёрдамида бажарилган сортировка операциялари " "сони." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "Дарҳол қониқтирилган жадвални блокировка қилишга бўлган сўровлар сони." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -15472,7 +15437,7 @@ msgstr "" "пайдо бўлаётган бўлса, аввал сўровларни оптималлаштириш, сўнгра эса " "жадвал(лар)ни қисмларга бўлиш ёки репликация ишлатиш керак." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -15483,11 +15448,11 @@ msgstr "" "ушбу қиймат қизил ранг билан белгиланган бўлса, унда \"thread_cache_size\" " "ўзгарувчисининг қийматини ошириш зарур." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "Очиқ жорий уланишлар сони." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -15499,13 +15464,13 @@ msgstr "" "ўзгарувчисининг қийматини ошириш мумкин (лекин у унумдорликни унчалик ҳам " "оширмайди)." -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Кузатиш фаол эмас." -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "Фаол ҳолатда бўлган жараёнлар сони." @@ -15514,77 +15479,77 @@ msgstr "Фаол ҳолатда бўлган жараёнлар сони." msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 #, fuzzy #| msgid "User" msgid "User groups" msgstr "Фойдаланувчи" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "Сервер версияси" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Database for user" msgid "Database level tabs" msgstr "Фойдаланувчи учун маълумотлар базаси" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table removal" msgid "Table level tabs" msgstr "Жадвал номи" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy #| msgid "View" msgid "View users" msgstr "Намойиш" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Any user" msgid "Add user group" msgstr "Ҳар қайси фойдаланувчи" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Привилегиялар йўқ" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "Майдон номлари" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Сервер версияси" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Database for user" msgid "Database-level tabs" msgstr "Фойдаланувчи учун маълумотлар базаси" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table removal" msgid "Table-level tabs" @@ -15650,21 +15615,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -15733,141 +15694,141 @@ msgstr "%1$s жадвали тузилди." msgid "Variable name was expected." msgstr "Жадвал номи шаблони" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Жадвал бошига" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 #, fuzzy #| msgid "The number of tables that are open." msgid "The name of the entity was expected." msgstr "Очиқ жадваллар сони." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Ёзув ўчирилди" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Маълумотлар файлларининг ошиш ҳажми" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy #| msgid "Startup" msgid "State" msgstr "Бошланғич" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Жами" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Вақт" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Ёпиш" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Вақт" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Ушбу SQL сўровига хатчўп тузиш" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Label" msgid "Label:" msgstr "Хатчўп белгиси" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Барча фойдаланувчиларга рухсат бериш" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created!" msgstr "\"%s\" хатчўпи тузилди" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "PHP-код сифатида кўрсатиш" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`\"%s\"` жадвалидаги индексларда муаммо мавжуд" @@ -15898,29 +15859,29 @@ msgstr "" msgid "Bind parameters" msgstr "Параметрлар нотугри!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 #, fuzzy #| msgid "Bookmark this SQL query" msgid "Bookmark this SQL query:" msgstr "Ушбу SQL сўровига хатчўп тузиш" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Шу номли хатчўпни алмаштириш" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Тақсимловчи" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Ушбу сўровни қайта кўрсатиш" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Фақат кўриш" @@ -15968,105 +15929,105 @@ msgstr "\"%s.%s\" жадвалини кузатишни фаолсизланти msgid "Deactivate now" msgstr "Ҳозир фаолсизлантириш" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Тузилди" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Янгиланди" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "Версиясини тузиш" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Кузатиш ҳисоботи" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Тузилма расми" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "фаол" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "фаол эмас" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "Кузатиш операторлари" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Ушбу жадвал учун кузатув маълумотлари ўчириш" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Маълумотлар базаси мавжуд эмас" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, fuzzy, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "\"%s\"ни кўрсатиш, %s дан %s санагача, фойдаланувчи %s %s" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "SQL дампи (файлни юклаб олиш)" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "SQL дамп" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "Ушбу танлов жадвал ва унинг таркибини амаштиради." -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "SQL бажаруви" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "\"%s\" деб экспорт қилиш" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "Маълумотларни бошқариш операторини" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "Маълумотлар таърифи операторини" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Санани" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Фойдаланувчи" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "%s версия расми (SQL коди)" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -16074,19 +16035,19 @@ msgctxt "None for default" msgid "None" msgstr "Йўқ" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 #, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" msgstr "Ушбу маълумотлар таърифи операторларини кузатиш:" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 #, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "Ушбу маълумотлар бошқаруви операторларини кузатиш:" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -16094,67 +16055,67 @@ msgstr "" "Дампни бажариш учун вақтинчалик база тузинг ё борини ишлатинг. Бунинг учун " "етарли привилегияларга эга бўлишингиз керак." -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "Агар керак бўлмаса, ушбу икки қатор олдига шарҳ белгисини қўйинг." -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL сўрови экспорт қилинди. Дампдан нусха олинг ёки уни бажаринг." -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "\"%s\" жадвали учун кузатув ҳисоботи" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." msgstr "\"%s.%s\" жадвалини кузатиш фаоллаштирилди." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "\"%s.%s\" жадвалини кузатиш фаоллаштирилди." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Version %1$s of %2$s was deleted." msgstr "\"%s.%s\" жадвалининг %s рақамли версиясини тузиш" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "%s версия тузилди, \"%s.%s\" ни кузатишш фаоллаштирилган." -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Кузатилмаган жадваллар" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Жадвални кузатиш" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Кузатилган жадваллар" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Охирги версия" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking" msgstr "Ушбу жадвал учун кузатув маълумотлари ўчириш" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Версиялар" @@ -16164,13 +16125,13 @@ msgstr "Версиялар" msgid "Manage your settings" msgstr "Бошқа созланишлар" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." msgstr "Ўзгариришлар сақланди" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -16281,7 +16242,7 @@ msgstr "Маълумотлар базаси мавжуд эмас" msgid "View dump (schema) of databases" msgstr "Маълумотлар базалари дампини (схемасини) намойиш этиш" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -16306,7 +16267,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin \"%s\" оқим ишини тугута олмади. Эҳтимол, у аллақачон ёпиқ." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -17279,53 +17240,59 @@ msgstr "" msgid "Stacked" msgstr "Қисилган" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Report title" +msgid "Chart title:" +msgstr "Ҳисобот сарлавҳаси" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 #, fuzzy #| msgid "SQL queries" msgid "Series:" msgstr "SQL сўровлари" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Қиймати" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Қиймати" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside column:" msgid "Series column:" msgstr "Майдондан:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Values for column %s" msgid "Value Column:" msgstr "%s устуни учун қийматлар" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -17394,17 +17361,51 @@ msgstr "Изоҳ" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +#, fuzzy +#| msgid "Foreign key limit" +msgid "Foreign key constraints" +msgstr "Ташқи калит чегаралари" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "Амаллар" + +#: templates/table/relation/common_form.phtml:10 +#, fuzzy +#| msgid "Constraints for table" +msgid "Constraint properties" +msgstr "Жадвалларнинг ташқи калитида чекловлар" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" + +#: templates/table/relation/common_form.phtml:18 +#, fuzzy +#| msgid "Foreign key limit" +msgid "Foreign key constraint" +msgstr "Ташқи калит чегаралари" + +#: templates/table/relation/common_form.phtml:60 +#, fuzzy +#| msgid "Add constraints" +msgid "+ Add constraint" +msgstr "Чекловлар қўшиш" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "Ички алоқалар" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Ички алоқалар" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -17412,40 +17413,7 @@ msgstr "" "Агар ташқи калит (FOREIGN KEY) орқали алоқа мавжуд бўлса, ички алоқа ўрнатиш " "шарт эмас." -#: templates/table/relation/common_form.phtml:37 -#, fuzzy -#| msgid "Foreign key limit" -msgid "Foreign key constraints" -msgstr "Ташқи калит чегаралари" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "Амаллар" - -#: templates/table/relation/common_form.phtml:41 -#, fuzzy -#| msgid "Constraints for table" -msgid "Constraint properties" -msgstr "Жадвалларнинг ташқи калитида чекловлар" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" - -#: templates/table/relation/common_form.phtml:49 -#, fuzzy -#| msgid "Foreign key limit" -msgid "Foreign key constraint" -msgstr "Ташқи калит чегаралари" - -#: templates/table/relation/common_form.phtml:83 -#, fuzzy -#| msgid "Add constraints" -msgid "+ Add constraint" -msgstr "Чекловлар қўшиш" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -17609,7 +17577,7 @@ msgid "at beginning of table" msgstr "Жадвал бошига" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -17658,7 +17626,7 @@ msgstr "бўлакларга бўлинган" msgid "Edit partitioning" msgstr "Бўлакларни (PARTITIONS) ўчириш" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -18994,6 +18962,41 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Максимал уланишлар сони " +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "Жадваллар" + +#, fuzzy +#~| msgid "View" +#~ msgid "views" +#~ msgstr "Намойиш" + +#, fuzzy +#~| msgid "Procedures" +#~ msgid "procedures" +#~ msgstr "Муолажалар" + +#, fuzzy +#~| msgid "Event" +#~ msgid "events" +#~ msgstr "Ҳодиса" + +#, fuzzy +#~| msgid "Functions" +#~ msgid "functions" +#~ msgstr "Функциялар" + +#, fuzzy +#~| msgid "table name" +#~ msgid "Filter databases by name or regex" +#~ msgstr "жадвал номи" + +#, fuzzy +#~| msgid "table name" +#~ msgid "Filter by name or regex" +#~ msgstr "жадвал номи" + #, fuzzy #~| msgid "Tracking report" #~ msgid "Taking you to %s." diff --git a/po/uz@latin.po b/po/uz@latin.po index bb51c8ec24..a8c731b6ab 100644 --- a/po/uz@latin.po +++ b/po/uz@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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:22+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uzbek (latin) Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Atributlar" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "\"%s\" ga birlamchi kalit qo‘shildi" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Kuzatish hisoboti" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 #, fuzzy @@ -2231,577 +2243,538 @@ msgstr "" msgid "End of step" msgstr "Satr oxiri" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Sadaqa" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Bironta ham ma`lumotlar bazasi tanlanmagan." -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 #, fuzzy #| msgid "The following queries have been executed:" msgid "The following actions will be performed:" msgstr "Quyidagi so‘rovlar bajarildi:" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Quyidagi jadvalga privilegiya qo‘shish" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Bironta ham ma`lumotlar bazasi tanlanmagan." -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Saqlash" -#: js/messages.php:468 +#: js/messages.php:469 #, fuzzy #| msgid "SQL Query box" msgid "Hide search criteria" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy #| msgid "SQL Query box" msgid "Show search criteria" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Qidirish" -#: js/messages.php:471 +#: js/messages.php:472 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Maydon nomlari" -#: js/messages.php:472 +#: js/messages.php:473 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Maydon nomlari" -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "Maksimal jadvallar soni" -#: js/messages.php:474 +#: js/messages.php:475 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "Maksimal jadvallar soni" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy #| msgid "SQL Query box" msgid "Hide find and replace criteria" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy #| msgid "SQL Query box" msgid "Show find and replace criteria" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Ustun qo‘shish/o‘chirish" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Ma`lumotlar fayli ko‘rsatgichi hajmi" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "E`tibor bermaslik" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "" -#: js/messages.php:508 +#: js/messages.php:509 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Qatorlar bo‘luvchisi" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:511 +#: js/messages.php:512 #, fuzzy #| msgid "Add a new User" msgid "Inner ring" msgstr "Yangi foydalanuvchi qo‘shish" -#: js/messages.php:512 +#: js/messages.php:513 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Qatorlar bo‘luvchisi" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "Bog‘liq kalitni tanlang" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "Tashqi kalitni tanlang" -#: js/messages.php:529 +#: js/messages.php:530 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the primary key or a unique key!" msgstr "" "Birlamchi (PRIMARY) yoki unikal (UNIQUE) indeks bo‘lgan maydonni tanlang!" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 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 "Ko‘rsatiladigan maydonni tanlash" -#: js/messages.php:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Sahifa raqami: " -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select Tables" msgid "Save page" msgstr "Jadvallarni tanlang" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select Tables" msgid "Save page as" msgstr "Jadvallarni tanlang" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "Bo‘sh sahifalar soni" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy #| msgid "Select Tables" msgid "Delete page" msgstr "Jadvallarni tanlang" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Tahrirlash lozim bo‘lgan sahifani tanlash" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 #, fuzzy #| msgid "Relational schema" msgid "Export relational schema" msgstr "Aloqalar sxemasi" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "O‘zgaririshlar saqlandi" -#: js/messages.php:550 +#: js/messages.php:551 #, fuzzy, php-format #| msgid "Number of fields" msgid "Add an option for column \"%s\"." msgstr "Maydonlar soni " -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Bajarish" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Maydon nomlari" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "Barchasini ko‘rsatish" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Asl pozitsiya" -#: js/messages.php:586 +#: js/messages.php:587 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Bekor qilish" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "Uzildi" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "Import" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "Jurnal fayli ostonasi" -#: js/messages.php:592 +#: js/messages.php:593 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Jadvallarni tanlang" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 #, fuzzy #| msgid "Go to view" msgid "Go to link:" msgstr "Ushbu ko‘rinishga o‘tish" -#: js/messages.php:610 +#: js/messages.php:611 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Maydon nomlari" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Parol o‘rnatish" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "Generatsiya qilish" -#: js/messages.php:620 +#: js/messages.php:621 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Dush" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Barchasini ko‘rsatish" -#: js/messages.php:624 +#: js/messages.php:625 #, fuzzy #| msgid "Apply index(s)" msgid "Hide panel" msgstr "Indеks(lar)ni saqlash" -#: js/messages.php:625 +#: js/messages.php:626 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "Chap ramkada logotipni ko‘rsatish" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "Asosiy ramkani moslashtirish" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "Asosiy ramkani moslashtirish" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 #, fuzzy -#| msgid "Tables" -msgid "tables" -msgstr "Jadvallar" - -#: js/messages.php:633 -#, fuzzy -#| msgid "View" -msgid "views" -msgstr "Namoyish" - -#: js/messages.php:634 -#, fuzzy -#| msgid "Procedures" -msgid "procedures" -msgstr "Muolajalar" - -#: js/messages.php:635 -#, fuzzy -#| msgid "Event" -msgid "events" -msgstr "Hodisa" - -#: js/messages.php:636 -#, fuzzy -#| msgid "Functions" -msgid "functions" -msgstr "Funksiyalar" - -#: js/messages.php:640 -#, 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 "Belgilangan foydalanuvchi privilegiyalar jadvalida topilmadi." -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2812,143 +2785,143 @@ msgstr "" "sanada chiqarilgan." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "Oxirgi versiyani tekshirish" -#: js/messages.php:649 +#: js/messages.php:641 #, fuzzy #| msgid "Go to database" msgid "up to date" msgstr "Ushbu bazaga o‘tish" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Vеrsiyasini tuzish" -#: js/messages.php:654 +#: js/messages.php:646 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Server porti" -#: js/messages.php:655 +#: js/messages.php:647 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "Server porti" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 #, fuzzy #| msgid "Other core settings" msgid "Change report settings" msgstr "Boshqa sozlanishlar" -#: js/messages.php:660 +#: js/messages.php:652 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Ochiq jadvallar ro‘yxati" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "E`tibor bermaslik" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Ushbu so‘rovni qayta ko‘rsatish" -#: js/messages.php:701 +#: js/messages.php:693 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Haqiqatan ham so‘rovni bajarmoqchimisiz?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL so‘rovlari" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Jadval izohi" -#: js/messages.php:708 +#: js/messages.php:700 #, fuzzy #| msgid "SQL Query box" msgid "Hide arguments" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Orqaga" -#: js/messages.php:748 +#: js/messages.php:740 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2956,96 +2929,96 @@ msgid "Next" msgstr "Keyingi" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Jami" -#: js/messages.php:755 +#: js/messages.php:747 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Ikkilik" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:749 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:758 +#: js/messages.php:750 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "May" -#: js/messages.php:760 +#: js/messages.php:752 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Iyun" -#: js/messages.php:761 +#: js/messages.php:753 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Iyul" -#: js/messages.php:762 +#: js/messages.php:754 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Avg" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:756 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "Yanv" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -3053,78 +3026,78 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "Iyun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "Iyul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "Avg" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "Sen" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "Noya" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "Dek" -#: js/messages.php:801 +#: js/messages.php:793 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Yaksh" -#: js/messages.php:802 +#: js/messages.php:794 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Dush" -#: js/messages.php:803 +#: js/messages.php:795 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Sesh" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:798 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Jum" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3132,86 +3105,86 @@ msgid "Sun" msgstr "Yaksh" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "Dush" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "Sesh" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "Chor" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "Pay" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "Shan" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Yaksh" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Dush" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Sesh" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Chor" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Pay" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Jum" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Shan" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 #, fuzzy #| msgid "Wiki" msgid "Wk" @@ -3220,81 +3193,81 @@ msgstr "Viki" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Yo‘q" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:864 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "ishlatilmoqda" -#: js/messages.php:873 +#: js/messages.php:865 #, fuzzy #| msgid "per second" msgid "Second" msgstr "sekundiga" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Matnmaydonini ishlatish" -#: js/messages.php:886 +#: js/messages.php:878 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:887 +#: js/messages.php:879 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:888 +#: js/messages.php:880 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:889 +#: js/messages.php:883 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:890 +#: js/messages.php:885 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:891 +#: js/messages.php:888 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:892 +#: js/messages.php:890 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" @@ -3306,53 +3279,53 @@ msgstr "Noto‘g‘ri port nomeri" msgid "Please enter the same value again" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:898 +#: js/messages.php:917 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:899 +#: js/messages.php:922 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:901 +#: js/messages.php:928 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:902 +#: js/messages.php:933 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "Xatolik" @@ -3442,11 +3415,12 @@ msgstr "so‘rov bo‘yicha" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -3495,7 +3469,7 @@ msgstr "Joriy xatoliklarni tashlab kеtish" msgid "Explain" msgstr "So‘rov tahlili" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "Profillashtirish" @@ -3539,8 +3513,8 @@ msgid "History" msgstr "SQL-so‘rovlar tarixi" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3723,7 +3697,7 @@ msgstr "" msgid "Switch to dark theme" msgstr "Nusxa olingan jadvalga o‘tish" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -3731,28 +3705,28 @@ msgid "" "configured)." msgstr "(yoki lokal MySQL serverning soketi noto‘g‘ri sozlangan)" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Server javob bermayapti" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "Tafsilotlar…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "\"config.inc.php\" konfiguratsion faylining \"controluser\" direktivasida " "ko‘rsatilgan foydalanuvchi yordamida ulanib bo‘lmadi." -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3762,8 +3736,8 @@ msgstr "" msgid "Ascending" msgstr "O‘sish tartibida" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3936,8 +3910,8 @@ msgstr[0] "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta" msgstr[1] "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3989,30 +3963,30 @@ msgstr "Belgilashni bekor qilish" msgid "Inside column:" msgstr "Quyidagi maydon(lar)da qidirish: " -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 #, fuzzy #| msgid "Save directory" msgid "Save edited data" msgstr "Saqlash direktoriyasi" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 #, fuzzy #| msgid "CHAR textarea columns" msgid "Restore column order" msgstr "CHAR maydonidagi ustunlar soni" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 #, fuzzy msgid "Filter rows" msgstr "Filtr" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 #, fuzzy #| msgid "Search in database" msgid "Search this table" msgstr "Ma`lumotlar bazasida qidirish" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 #, fuzzy #| msgid "Begin" @@ -4020,7 +3994,7 @@ msgctxt "First page" msgid "Begin" msgstr "Boshi" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 #, fuzzy @@ -4029,7 +4003,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Orqaga" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 #, fuzzy @@ -4038,7 +4012,7 @@ msgctxt "Next page" msgid "Next" msgstr "Keyingi" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 #, fuzzy #| msgid "End" @@ -4046,85 +4020,85 @@ msgctxt "Last page" msgid "End" msgstr "Oxiri" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "Barcha" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 #, fuzzy #| msgid "Number of fields" msgid "Number of rows:" msgstr "Maydonlar soni " -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "Indeks bo‘yicha sortirovka qilish" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Ma`lumotlarni qisqartirib ko‘rsatish" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Ma`lumotlarni kengaytirilgan holda ko‘rsatish" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "Aloqador kalit" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 #, fuzzy #| msgid "Disable foreign key checks" msgid "Display column for relations" msgstr "Tashqi kalitlarni tekshirishni o‘chirish" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "Ikkilik ma`lumotlarni ko‘rsatish" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "BLOB turidagi ma`lumotlarni ko‘rsatish" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "O‘girish" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Yozuv o‘chirildi" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "Tugatish" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Taxminiy bo‘lishi mumkin. [doc@faq3-11]\"FAQ 3.11\"[/doc]ga qarang" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -4132,7 +4106,8 @@ msgstr "Taxminiy bo‘lishi mumkin. [doc@faq3-11]\"FAQ 3.11\"[/doc]ga qarang" msgid "Your SQL query has been executed successfully." msgstr "SQL so‘rovi muvaffaqiyatli bajarildi" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -4141,43 +4116,43 @@ msgstr "" "Ushbu namoyish kamida ko‘rsatilgan miqdorda qatorlarga ega. Batafsil " "ma`lumot uchun %sdokumentatsiyaga%s qarang." -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Yozuvlarni ko‘rsatish" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "jami" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "So‘rov %01.4f sekund vaqt oldi" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "Belgilanganlarni:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -4185,27 +4160,27 @@ msgstr "Belgilanganlarni:" msgid "Check all" msgstr "Barchasini belgilash" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Chop etish versiyasi" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "So‘rov natijalarini ishlatish" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF-sxemani ko‘rsatish" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 #, fuzzy #| msgid "Link not found" msgid "Link not found!" @@ -4315,19 +4290,19 @@ msgstr "Indeks belgilanmagan!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "Indekslar" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -4336,24 +4311,24 @@ msgid "Action" msgstr "Amal" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "Indeks nomi" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "Unikal" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "Qisilgan" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "Elementlar soni" @@ -4361,8 +4336,8 @@ msgstr "Elementlar soni" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -4372,8 +4347,8 @@ msgid "Collation" msgstr "Taqqoslash" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -4389,15 +4364,15 @@ msgstr "Birlamchi kalit o‘chirildi." msgid "Index %s has been dropped." msgstr "\"%s\" indeksi o‘chirildi." -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "O‘chirish" @@ -4434,12 +4409,13 @@ msgstr "Namoyish" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -4447,7 +4423,7 @@ msgstr "Jadval" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -4456,8 +4432,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -4465,41 +4441,41 @@ msgid "Search" msgstr "Qidirish" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Qo‘yish" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilegiyalar" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "Operatsiyalar" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "Kuzatish" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4510,16 +4486,16 @@ msgstr "Triggerlar" msgid "Database seems to be empty!" msgstr "Ma`lumotlar bazasi bo‘sh!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "So‘rov" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Muolajalar" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -4527,22 +4503,22 @@ msgstr "Muolajalar" msgid "Events" msgstr "Hodisalar" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "Dizayner" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 #, fuzzy #| msgid "CHAR textarea columns" msgid "Central columns" msgstr "CHAR maydonidagi ustunlar soni" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "Ma`lumotlar bazalari" @@ -4553,33 +4529,33 @@ msgid "User accounts" msgstr "Foydalanuvchi" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "Ikkilik jurnal" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikatsiya (zaxira nusxa ko‘chirish)" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "O‘zgaruvchilar" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "Kodirovkalar" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "Jadval turlari" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4912,7 +4888,7 @@ msgstr "Indeksni \"PRIMARY\"ga qayta nomlab bo‘lmadi!" msgid "No index parts defined!" msgstr "Indeks qismlari belgilanmagan!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -5347,40 +5323,40 @@ msgstr "" msgid "Click to toggle" msgstr "Tanlash uchun sichqoncha tugmasini bosing" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "Yuklash katalogidan" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "Ko‘rsatilgan katalokka yuklab bo‘lmadi." -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 #, fuzzy #| msgid "There are no configured servers" msgid "There are no files to upload!" msgstr "Bironta ham konfiguratsiyalangan server mavjud emas" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "Tozalash" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "Chop etish" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 #, fuzzy #| msgid "User" msgid "Users" @@ -5565,8 +5541,8 @@ msgid "Add new column" msgstr "Ustun(lar) qo‘shish" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -5640,19 +5616,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "\"%s\" ni \"%s\" versiyaga yoki kattaroq versiyaga yangilash zarur." -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -6677,7 +6653,7 @@ msgid "Remember file name template" msgstr "Fayl nomi shablonini yodda saqlash" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT qo‘shish" @@ -6725,7 +6701,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "\"%s\" qo‘shish" @@ -8793,7 +8769,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 #, fuzzy #| msgid "SQL Query box" msgid "Retain query box" @@ -9142,112 +9118,35 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "OpenDocument matn" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "\"%s\" jadvali tozalandi." -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." msgstr "\"%s\" namoyishi o‘chirildi" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, fuzzy, php-format #| msgid "Table %s has been dropped." msgid "Table %s has been dropped." msgstr "\"%s\" jadvali o‘chirildi" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "noma`lum" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" - -#: libraries/controllers/TableStructureController.php:250 -#, fuzzy -#| msgid "No rows selected" -msgid "No column selected." -msgstr "" -"Amalni amalga oshirish uchun bitta yoki bir nechta qatorni tanlash kerak." - -#: libraries/controllers/TableStructureController.php:484 -#, fuzzy -#| msgid "The selected users have been deleted successfully." -msgid "The columns have been moved successfully." -msgstr "Belgilangan foydalanuvchilar muvaffaqiyatli o‘chirildi." - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "%1$s jadvali muvaffaqiyatli o‘zgartirildi." - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -#, fuzzy -#| msgid "Ignore errors" -msgid "Query error" -msgstr "Xatolarga e`tibor bermaslik" - -#: libraries/controllers/TableStructureController.php:967 -#, 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 jadvali muvaffaqiyatli o‘zgartirildi." - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "O‘zgartirish" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "Indeks" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "Matn to‘laligicha" - -#: libraries/controllers/TableStructureController.php:1201 -#, fuzzy -#| msgid "Browse distinct values" -msgid "Distinct values" -msgstr "Turli qiymatlarni ko‘rib chiqish" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -9263,6 +9162,14 @@ msgstr "" msgid "No data to display" msgstr "Ma`lumotlar bazasi mavjud emas" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "%1$s jadvali muvaffaqiyatli o‘zgartirildi." + #: libraries/controllers/table/TableRelationController.php:212 #, fuzzy #| msgid "Thread %s was successfully killed." @@ -9275,25 +9182,94 @@ msgstr "\"%s\" jarayoni muvaffaqiyatli yakunlandi." msgid "Internal relations were successfully updated." msgstr "Ichki aloqa o‘rnatildi" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 #, fuzzy #| msgid "Search" msgid "Table search" msgstr "Qidirish" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Search" msgid "Zoom search" msgstr "Qidirish" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "SQL Query box" msgid "Find and replace" msgstr "SQL so‘rovlari qutisi" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" + +#: libraries/controllers/table/TableStructureController.php:251 +#, fuzzy +#| msgid "No rows selected" +msgid "No column selected." +msgstr "" +"Amalni amalga oshirish uchun bitta yoki bir nechta qatorni tanlash kerak." + +#: libraries/controllers/table/TableStructureController.php:485 +#, fuzzy +#| msgid "The selected users have been deleted successfully." +msgid "The columns have been moved successfully." +msgstr "Belgilangan foydalanuvchilar muvaffaqiyatli o‘chirildi." + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +#, fuzzy +#| msgid "Ignore errors" +msgid "Query error" +msgstr "Xatolarga e`tibor bermaslik" + +#: libraries/controllers/table/TableStructureController.php:975 +#, 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 jadvali muvaffaqiyatli o‘zgartirildi." + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "O‘zgartirish" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "Indeks" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "Matn to‘laligicha" + +#: libraries/controllers/table/TableStructureController.php:1209 +#, fuzzy +#| msgid "Browse distinct values" +msgid "Distinct values" +msgstr "Turli qiymatlarni ko‘rib chiqish" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -9303,7 +9279,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "O‘zgarish yo‘q" @@ -9380,7 +9356,7 @@ msgstr "Tuzish" msgid "Create database:" msgstr "Yangi ma`lumotlar bazasi tuzish" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "Privilegiyalar yo‘q" @@ -10199,29 +10175,29 @@ msgid "Dump has been saved to file %s." msgstr "Damp \"%s\" faylida saqlandi." #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL bo‘sh natija berdi (ya`ni nolta satr)." -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Quyidagi tuzilishlar yo tuzildi yo o‘zgartirildi. Bu yerda siz quyidagi " "amallarni bajarishingiz mumkin:" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 #, fuzzy #| msgid "View a structure`s contents by clicking on its name" msgid "View a structure's contents by clicking on its name." msgstr "Tuzilmani ko‘rish uchun uning nomi ustiga sichqoncha tugmasini bosing" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -10229,53 +10205,53 @@ msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "Quyidagi tanlovlarni o‘zgartirish uchun, \"Tanlovlar\" bog‘iga bosing" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link." msgstr "Tuzilmani o‘zgartirish uchun, \"Tuzilma\" bog‘iga kiring" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "Ushbu bazaga o‘tish" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "\"%s\" maydonida ma`lumot yo‘q" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "Ushbu jadvalga o‘tish" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Faqat tuzilishi" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" msgstr "Ushbu ko‘rinishga o‘tish" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" @@ -10299,73 +10275,73 @@ msgstr "Funksiya" msgid "Binary" msgstr "Ikkilik" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "Ma`lumotlar ko‘pligi sabali
o‘zgartirish qiyishlashishi mumkin" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "Ikkilik ma`lumot - tahrirlash mumkin emas" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "Yoki" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 #, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" msgstr "Yuklash katalogidan" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Qo‘yish" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Qo‘yilayotgan qatorlar soni: \"%s\"" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "va so‘ng" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "Yozuv kiritish" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "Yangi qator sifatida qo‘shish va xatoliklarga e’tibor bеrmaslik" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "Kiritilgan so‘rovni ko‘rsatish" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "Oldingi sahifaga o‘tish" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "Yangi yozuv kiritish" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "Ushbu sahifaga qaytish" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "Keyingi qatorni tahrirlash" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -10375,7 +10351,7 @@ msgstr "" "Maydonlararo o‘tish uchun TAB tugmasi yoki CTRL+strelka tugmalaridan " "foydalaning" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -10387,11 +10363,11 @@ msgstr "" msgid "Value" msgstr "Qiymati" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "SQL-so‘rovni ko‘rsatish" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "Kiritilgan qator identifikatori: %1$d" @@ -10409,45 +10385,45 @@ msgstr "Yo‘q" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix:" msgstr "Jadval ma`lumotlarini fayl ma`lumotlari bilan almashtirish" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix:" msgstr "Jadval ma`lumotlarini fayl ma`lumotlari bilan almashtirish" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Jum" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 #, fuzzy #| msgid "Apply index(s)" msgid "Add table prefix:" msgstr "Indеks(lar)ni saqlash" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 #, fuzzy #| msgid "Apply index(s)" msgid "Add prefix" msgstr "Indеks(lar)ni saqlash" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -10679,8 +10655,8 @@ msgstr "Muolajalar" msgid "Views:" msgstr "Namoyish" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Ko‘rsatish" @@ -10721,10 +10697,9 @@ msgid_plural "%s results found" msgstr[0] "" #: libraries/navigation/NavigationTree.php:1369 -#, fuzzy -#| msgid "table name" -msgid "Filter databases by name or regex" -msgstr "jadval nomi" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -10733,12 +10708,6 @@ msgstr "jadval nomi" msgid "Clear fast filter" msgstr "Fayl kabi saqlash" -#: libraries/navigation/NavigationTree.php:1406 -#, fuzzy -#| msgid "table name" -msgid "Filter by name or regex" -msgstr "jadval nomi" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -11145,7 +11114,7 @@ msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" @@ -11156,7 +11125,7 @@ msgstr "Ushbu sahifaga kirish uchun Sizda yetarli huquq mavjud emas!" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 #, fuzzy #| msgid "Edit Privileges" @@ -11180,18 +11149,18 @@ msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" msgid "Drop the database (DROP)" msgstr "Ushbu bazaga o‘tish" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "Faqat tuzilishi" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "Tuzilishi va ma`lumotlari" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "Faqat ma`lumotlar" @@ -11205,7 +11174,7 @@ msgstr "Ma`lumotlar bazasidan quyidagiga nusxa olish" msgid "CREATE DATABASE before copying" msgstr "Nusxa ko‘chirishdan oldin ma`lumotlar bazasi tuzing (CREATE DATABASE)" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "Cheklovlar qo‘shish" @@ -11245,63 +11214,63 @@ msgstr "Jadval turi" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "Jadvaldan (ma`lumotlar ombori.jadval) ga nusxa ko‘chirish" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "Nusxa olingan jadvalga o‘tish" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "Jadvalga xizmat ko‘rsatish" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "Jadval tahlili" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "Jadvalni tekshirish" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "Jadvalni tekshirish" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "Jadvalni defragmentatsiyalash" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "\"%s\" jadvali keshi yangilandi." -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Jadval keshini yangilash (\"FLUSH\")" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "Jadvalni optimallashtirish" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "Jadvalni tiklash" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 #, fuzzy @@ -11309,105 +11278,105 @@ msgstr "Jadvalni tiklash" msgid "Delete data or table" msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 #, fuzzy #| msgid "Go to database" msgid "Delete the table (DROP)" msgstr "Ushbu bazaga o‘tish" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "Tahlil" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "Tekshirish" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "Optimizatsiya" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "Qayta qurish" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "Tiklash" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "Yopish" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "bo‘laklarga xizmat ko‘rsatish" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "\"%s\" bo‘lagi" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "Bo‘laklarni (PARTITIONS) o‘chirish" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "Ma`lumotlar yaxlitligini tekshirish:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "Jadvalni o‘z-o‘ziga ko‘chirib bo‘lmaydi!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "Jadvalning o‘zidan o‘ziga nusxa ko‘chirish mumkin emas!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "\"%s\" jadvali \"%s\" ga ko‘chirildi." -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, fuzzy, php-format #| msgid "Table %s has been copied to %s." msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "\"%s\" jadvalidan \"%s\" ga nusxa ko‘chirildi." -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "\"%s\" jadvali \"%s\" ga ko‘chirildi." -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "\"%s\" jadvalidan \"%s\" ga nusxa ko‘chirildi." -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "Jadval nomi ko‘rsatilmagan!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 #, fuzzy #| msgid "This format has no options" msgid "This format has no options" @@ -11605,7 +11574,7 @@ msgstr "Ma`lumotlar bazalarini ko‘rsatish afzalliklari" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Jadval ma`lumotlarini damp qilish" @@ -11631,21 +11600,21 @@ msgstr "Tavsifi" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Jadval tuzilishi" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Namoyish etish uchun tuzilma" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Namoyish etish uchun tuzilma" @@ -11759,7 +11728,7 @@ msgid "Database:" msgstr "Ma`lumotlar bazasi" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11878,7 +11847,7 @@ msgid "Data creation options" msgstr "O‘girishlar parametrlari" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -11947,8 +11916,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11956,99 +11925,99 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Missing data for %s" msgid "Metadata" msgstr "\"%s\" maydonida ma`lumot yo‘q" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Metadata for %s" msgstr "\"%s\" maydonida ma`lumot yo‘q" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 #, fuzzy #| msgid "Creation" msgid "Creation:" msgstr "Tuzish" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 #, fuzzy #| msgid "Last update" msgid "Last update:" msgstr "Oxirgi yangilanish" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 #, fuzzy #| msgid "Last check" msgid "Last check:" msgstr "Oxirgi tekshiruv" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "ishlatilmoqda" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "Saqlangan jadvallarning tashqi kalitida cheklovlar" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "Jadvallarning tashqi kalitida cheklovlar" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Saqlangan jadvallarning tashqi kalitida cheklovlar" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "Quyidagi jadval(lar)da qidirish:" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "Nol qiymatlari uchun \"AUTO_INCREMENT\" ishlatmaslik" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT qo‘shish" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "JADVAL UCHUN MIME TURLARI" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "Jadval aloqalari" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Namoyish etish uchun tuzilma" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -12322,9 +12291,9 @@ msgstr "Aloqalar sxemasi" msgid "Table of contents" msgstr "Mundarija" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "Qo‘shimcha" @@ -12580,63 +12549,63 @@ msgid "Formats text as XML with syntax highlighting." msgstr "" "Matnni sintaksisi rang bilan belgilangan SQL so‘rov sifatida formatlaydi." -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "Xatolik: Bog‘liqlik allaqachon mavjud." -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "Tashqi kalitga (FOREIGN KEY) aloqa o‘rnatildi" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Xatolik: Bog‘liqlik o‘rnatilmadi." -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Relational features are disabled!" msgstr "Xatolik: Bog‘liqlik o‘rnatilmadi." -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "Ichki aloqa o‘rnatildi" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "Xatolik: Bog‘liqlik o‘rnatilmadi." -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "Tashqi kalitga (FOREIGN KEY) aloqa o‘rnatildi" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Xatolik: Bog‘liqlik o‘rnatilmadi." -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "Xatolik: Bog‘liqlik o‘rnatilmadi." -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -12694,71 +12663,71 @@ msgstr "" "\"column_comments\" jadvalini yangilash zarur. Batafsil ma`lumot uchun " "dokumentatsiyaga qarang." -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "Xatcho‘p qo‘yilgan SQL so‘rovi" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL-so‘rovlar tarixi" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 #, fuzzy #| msgid "Persistent connections" msgid "Persistent recently used tables" msgstr "Doimiy ulanishlar" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "Persistent connections" msgid "Persistent favorite tables" msgstr "Doimiy ulanishlar" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Configuration file" msgid "Configurable menus" msgstr "Konfiguratsion fayl" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 #, fuzzy #| msgid "Reload navigation frame" msgid "Hide/show navigation items" msgstr "Navigatsiya oynasini qayta yuklash" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Rename table to" msgid "Remembering Designer Settings" msgstr "Jadval nomini o‘zgartirish" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Export tables" msgid "Saving export templates" msgstr "Jadvallarni eksport qilish" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "Mufassal tanlovlarni tеz sozlash uchun qadamlars:" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, fuzzy, php-format #| msgid "" #| "Create the needed tables with the examples/create_tables.sql." @@ -12767,12 +12736,12 @@ msgstr "" "Kеrakli jadvallarni examples/create_tables.sql kod yordamida " "tuzish." -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" "phpMyAdmin foydalanuvchisi qo‘shish va ushbu jadvallarga ruxsat bеrish." -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -12780,24 +12749,24 @@ msgstr "" "(config.inc.php) faylidagi mufassal tanlovlarni faollashtirish, " "masalan, config.sample.inc.php dan boshlab." -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Yangilangan konfiguratsiya fayli ishga tushishi uchun, phpMyAdmin dasturidan " "chiqib, qayta kiring." -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "tavsif mavjud emas" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, fuzzy, php-format #| msgid "" #| "Empty phpMyAdmin control user while using phpMyAdmin configuration storage" @@ -12808,13 +12777,13 @@ msgstr "" "pmadb usuli ishlatilmoqda, lekin phpMyAdmin konfiguratsion faylida " "foydalanuvchi belgilanmagan" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, fuzzy, php-format #| msgid "" #| "Empty phpMyAdmin control user while using phpMyAdmin configuration storage" @@ -13035,8 +13004,8 @@ msgstr "Foydalanuvchi nomi" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Foydalanuvchi nomi" @@ -13044,7 +13013,7 @@ msgstr "Foydalanuvchi nomi" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "Parol" @@ -13785,7 +13754,7 @@ msgstr[0] "\"%s\" ma`lumotlar bazasi muvaffaqiyatli o‘chirildi." msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "Vеrsiya" @@ -13793,104 +13762,100 @@ msgstr "Vеrsiya" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Faolsizlantirilgan" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "Privilegiyalar yo‘q." -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "GRANT dan tashqari barcha privilegiyalarni o‘z ichiga oladi." #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "Ma`lumotlarni chaqirishga ruxsat beradi." #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "Ma`lumot qo‘yish va o‘zgartirishga ruxsat beradi." #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "Ma`lumotlarni o‘zgartirishga ruxsat beradi." #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "Ma`lumotlarni o‘chirishga ruxsat beradi." #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "Yangi ma`lumotlar bazalari va jadvallar tuzishga ruxsat beradi." #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "Ma`lumotlar bazalarini va jadvallarni o‘chirishga ruxsat beradi." #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Server sozlanishlarini qayta yuklashga va uning keshlarini tozalashga ruxsat " "beradi." #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "Server ishini yakunlashga ruxsat beradi." #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 #, fuzzy #| msgid "Allows viewing processes of all users" msgid "Allows viewing processes of all users." msgstr "Barcha foydalanuvchilarning jarayonlarini ko‘rishga ruxsat beradi" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "Ma`lumotlarni fayldan import va faylga eksport qilishga ruxsat beradi." #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "MySQL-serverning ushbu versiyada bunday xususiyat mavjud emas." #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "Indekslar qo‘shish va ularni o‘chirishga ruxsat beradi." #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "Mavjud jadvallarning tuzilishini o‘zgartirishga ruxsat beradi." #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "Ma`lumotlar bazalarining to‘liq ro‘yxatiga ruxsat beradi." #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -13902,23 +13867,23 @@ msgstr "" "o‘chirish)." #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "Vaqtinchalik jadvallar tuzishga ruxsat beradi." #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "Joriy oqim uchun jadvalni blokirovku qilishga ruxsat beradi." #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" "Replikatsiya (zaxira nusxa ko‘chirish) vaqtida tobe serverlar uchun kerak." #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Bosh va tobe serverlarning joylashishi haqidagi ma`lumotni talab qilishga " @@ -13927,19 +13892,19 @@ msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "Yangi namoyishlar tuzish(CREATE VIEW)ga ruxsat beradi." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "Kechiktirilgan hodisalarni sozlashga ruxsat beradi" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 #, fuzzy #| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." @@ -13949,30 +13914,30 @@ msgstr "" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" "Namoyish tuzadigan so‘rov(SHOW CREATE VIEW)ni bajarishga ruxsat beradi." #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "Saqlanadigan muolajalar tuzishga ruxsat beradi." #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "Saqlanadigan muolajalarni o‘zgartirish va o‘chirishga ruxsat beradi." #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Foydalanuvchilar hisobini qo‘shish, o‘chirish va o‘zgartirishga ruxsat " "beradi." #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "Saqlanadigan muolajalarni bajarishga ruxsat beradi." @@ -13986,8 +13951,8 @@ msgstr "Yo‘q" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -14033,13 +13998,13 @@ msgstr "" "qiladi." #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Foydalanuvchi bir soat davomida yuborishi mumkin bo‘lgan so‘rovlar soni." #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -14048,23 +14013,23 @@ msgstr "" "yoki ma`lumotlar bazasini o‘zgartiradigan buyruqlar soni." #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Foydalanuvchi bir soat davomida o‘rnatishi mumkin bo‘lgan yangi ulanishlar " "soni." #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Bir foydalanuvchi tomonidan bir vaqtning o‘zida o‘rnatishi mumkin bo‘lgan " "ulanishlar soni." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -14072,7 +14037,7 @@ msgid "Routine" msgstr "Muolajalar" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -14093,14 +14058,14 @@ msgstr "Saqlanadigan muolajalarni bajarishga ruxsat beradi." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Jadval darajasijagi privilegiyalar" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -14112,7 +14077,7 @@ msgid "Administration" msgstr "Administratsiya" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "Global privilegiyalar" @@ -14123,15 +14088,15 @@ msgid "Global" msgstr "Global" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "Ma`lumotlar bazasi privilegiyalari" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "Yangi jadvallar tuzishga ruxsat beradi." -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "Jadvallarni o‘chirishga rux`sat beradi." @@ -14154,7 +14119,7 @@ msgid "Native MySQL Authentication" msgstr "Autentifikatsiya tartibi" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "Foydalanuvchi hisobi haqida ma`lumot" @@ -14179,8 +14144,8 @@ msgstr "Foydalanuvchi nomi" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Log name" msgid "Host name" @@ -14202,129 +14167,129 @@ msgstr "Autentifikatsiya usuli" msgid "Password Hashing Method" msgstr "Parolni xeshlash" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "\"%s\" foydalanuvchining paroli muvaffaqiyatli o‘zgartirildi." -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "\"%s\" foydalanuvchining privilegiyalari bekor qilindi." -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Har qaysi foydalanuvchi" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Foydalanuvchi uchun ma`lumotlar bazasi" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" "Foydalanuvchi nomi bilan atalgan ma`lumotlar bazasi tuzish va unga to‘liq " "privilegiyalarni berish." -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "(foydalanuvchi\\_%) shabloniga to‘g‘ri keladigan barcha ma`lumotlar " "bazalariga to‘liq privilegiyalarni berish." -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "\"%s\" ma`lumotlar bazasiga barcha privilegiyalarni berish." -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\"ga ruxsati bo‘lgan foydalanuvchilar" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "\"%s\" namoyishi o‘chirildi" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "GRANT" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Bironta ham foydalanuvchi topilmadi." -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "Har qaysi" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "Global" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "Ma`lumotlar bazasi darajasida" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "Guruhlash belgisi" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Ma`lumotlar bazasi darajasida" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Privilegiyalarni tahrirlash" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "Bekor qilish" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Serverlarni tahrirlash" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "va eskisini saqlash." -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "va foydalanuvchilar jadvalidan eskisini o‘chirish." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr ", eskisining barcha faol privilegiyalarini bekor qilib o‘chirish." -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -14332,124 +14297,124 @@ msgstr "" ", foydalanuvchilar jadvalidan eskisini o‘chirib privilegiyalarni qayta " "yuklash." -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Foydalanuvchining loginini o‘zgartirish / Foydalanuvchidan nusxa olish" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Xuddi shunday privilegiyali yangi foydalanuvchi kiritish…" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Maydon privilegiyalari" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Belgilangan foydalanuvchilarni o‘chirish" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Foydalanuvchilarning barcha faol privilegiyalarini bekor qilish, so‘ng " "ularni o‘chirish." -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" "Foydalanuvchilar nomlari bilan atalgan ma`lumotlar bazalarini o‘chirish." -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "O‘chirish lozim bo‘lgan foydalanuvchilar tanlanmagan!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "Privilegiyalar qayta yuklanmoqda" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "Belgilangan foydalanuvchilar muvaffaqiyatli o‘chirildi." -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "\"%s\" uchun privilegiyalar o‘zgartirildi." -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "\"%s\" o‘chirilmoqda" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "Privilegiyalar muvaffaqiyatli qayta yuklandi." -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "\"%s\" nomli foydalanuvchi mavjud!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilegiyalar" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Foydalanuvchi" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Privilegiyalarni tahrirlash" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 #, fuzzy #| msgid "User" msgid "User account" msgstr "Foydalanuvchi" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Foydalanuvchilar hisobini ko‘rib chiqish" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -14462,7 +14427,7 @@ msgstr "" "ma`lumotlar server tomonidan ishlatilayotgan privilegiyalardan farq qilishi " "mumkin. Bu holda %sprivilegiyalarni qayta yuklash%s kerak." -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -14481,11 +14446,11 @@ msgstr "" "ma`lumotlar server tomonidan ishlatilayotgan privilegiyalardan farq qilishi " "mumkin. Bu holda %sprivilegiyalarni qayta yuklash%s kerak." -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "Belgilangan foydalanuvchi privilegiyalar jadvalida topilmadi." -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "Siz yangi foydalanuvchi qo‘shdingiz." @@ -14749,37 +14714,37 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 #, fuzzy #| msgid "Enable highlighting" msgid "Enable charts dragging" msgstr "Belgilashni yoqish" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 #, fuzzy msgid "Refresh rate" msgstr "Yangilash" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 #, fuzzy #| msgid "CHAR textarea columns" msgid "Chart columns" msgstr "CHAR maydonidagi ustunlar soni" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "Xatoliklarni boshqarish:" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" @@ -14851,7 +14816,7 @@ msgid "Statements" msgstr "Tavsif" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -14884,19 +14849,19 @@ msgstr "Ochiq jadvallar ro‘yxati" msgid "Related links:" msgstr "Aloqalar" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL-serverga ulanib bo‘lmadi" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -14905,16 +14870,16 @@ msgstr "" "Binar jurnali keshini ishlatib, \"binlog_cache_size\" qiymatidan oshib, o‘z " "ichiga olgan SQL-jumlalari vaqtinchalik faylga saqlangan tranzaksiyalar soni." -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "Binar jurnal keshini ishlatgan tranzaksiyalar soni." -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -14927,11 +14892,11 @@ msgstr "" "saqlanishini ta`minlash maqsadida tmp_table_size o‘zgaruvchisining qiymatini " "oshirish tavsiya etiladi." -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "MySQL serveri (mysqld) tomonidan tuzilgan vaqtinchalik fayllar soni." -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -14939,7 +14904,7 @@ msgstr "" "Server tomonidan SQL-jumlalari bajarilayotgan vaqtda xotirada avtomatik " "tuzilgan vaqtinchalik jadvallar soni." -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -14947,31 +14912,31 @@ msgstr "" "\"INSERT DELAYED\" so‘rovlarini qayta ishlash jarayonida yuz bergan xatolar " "(masalan, kalitlar takrorlanishi oqibatida) soni." -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "Bajariladigan \"INSERT DELAYED\" so‘rovlar soni." -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" "Ma`lumotlarni kechiktirib qo‘yish (\"INSERT DELAYED\") rejimida yozilgan " "qatorlar soni." -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "Bajarilgan \"FLUSH\" buyruqlar soni." -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "Ichki \"COMMIT\" buyruqlari soni." -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "Jadvaldal yozuvlarni o‘chirish bo‘yicha sshrovlar soni." -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -14981,7 +14946,7 @@ msgstr "" "berishi mumkin. Bu jarayon topish deb nomlanadi. Handler_discover - topilgan " "jadvallar soni." -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -14990,7 +14955,7 @@ msgstr "" "Indeksdan birinchi yozuvni o‘qishga bo‘lgan so‘rovlar soni. O‘zgaruvchining " "qiymati katta bo‘lsa, server bir necha marotiba indeksni ko‘rib chiqadi." -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -14999,7 +14964,7 @@ msgstr "" "soni. O‘zgaruvchining qiymati kattaligi so‘rov va jadvallar to‘g‘ri " "indekslanganidan dalolat beradi." -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -15009,7 +14974,7 @@ msgstr "" "soni. Hajmi cheklangan indeks ustuniga bo‘lgan so‘rov yoki indeksni ko‘rib " "chiqish vaqtida o‘zgaruvchi qiymati oshadi." -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -15018,7 +14983,7 @@ msgstr "" "o‘qishga bo‘lgan so‘rovlar soni. Odatda optimallashtirish uchun " "qo‘llaniladi: ORDER BY … DESC." -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -15032,7 +14997,7 @@ msgstr "" "bajarilishi; indekslardan noto‘g‘ri foydalanadigan birlashmalarning " "mavjudligi." -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -15044,35 +15009,35 @@ msgstr "" "jadvallar noto‘g‘ri indekslanganligini yoki so‘rovlar indekslarning " "afzalliklaridan foydalanmayotganligini bildiradi." -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "ROLLBACK ichki buyruqlar soni." -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "Jadvaldagi yozuvlarni yangilashga bo‘lgan so‘rovlar soni." -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "Jadvalga yozuv qo‘yishga bo‘lgan so‘rovlar soni." -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "Ma`lumot mavjud bo‘lgan sahifalar soni (\"kir\" va \"toza\")." -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "\"Kir\" sahifalarning joriy soni." -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Bufer pulidagi tozalash jarayoni (FLUSH) qo‘llanilgan sahifalar soni." -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "Bo‘sh sahifalar soni." -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -15082,7 +15047,7 @@ msgstr "" "ustidan o‘qish yoki yozish jarayoni bajarilmoqda, yoki ularni boshqa " "sabablarga ko‘ra tozalash yoki o‘chirish imkoniyati yo‘q." -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -15094,11 +15059,11 @@ msgstr "" "mumkin: \"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data\"." -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "Bufer pulining umumiy hajmi (sahifalarda)." -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -15107,7 +15072,7 @@ msgstr "" "o‘qishlar soni. Ushbu hol so‘rov jadvalni tasodifiy tartibda ko‘rib " "chiqayotganda ro‘y beradi." -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -15116,12 +15081,12 @@ msgstr "" "soni. Ushbu hol InnoDB jadvalni to‘laligicha ketma-ket ko‘rib chiqayotganda " "ro‘y beradi." -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" "InnoDB tomonidan amalga oshirilgan o‘qishga bo‘lgan ketma-ket so‘rovlar soni." -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -15129,7 +15094,7 @@ msgstr "" "InnoDB bufer pulidan bajar olmagan va sahifalab o‘qishdan foydalangan " "o‘qishga bo‘lgan ketma-ket so‘rovlar soni." -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -15143,51 +15108,51 @@ msgstr "" "bufer pulining hajmi to‘g‘ri belgilangan bo‘lsa, unda kutishlar soni katta " "bo‘lmasligi kerak." -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB bufer puliga amalga oshirilgan yozuvlar soni." -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "Joriy vaqtda amalga oshirilgan \"fsync()\" operatsiyalari soni." -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "Tugallanmagan \"fsync()\" operatsiyalari soni." -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "Tugallanmagan o‘qish operatsiyalari soni." -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "Tugallanmagan yozish operatsiyalari soni." -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "Joriy vaqtda o‘qilgan ma`lumotlar yig‘indisi (baytlarda)." -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "Umumiy ma`lumotlarni o‘qish operatsiyalari soni." -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "Umumiy ma`lumotlarni yozish operatsiyalari soni." -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "Joriy vaqtda yozilgan ma`lumotlar yig‘indisi (baytlarda)." -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "\"doublewrite\" operatsiyalari uchun yozilgan sahifalar soni." -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "Bajarilgan \"doublewrite\" operatsiyalari soni." -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -15195,35 +15160,35 @@ msgstr "" "Jurnal buferining hajmi kichik bo‘lganligi sababli, uning tozalanishi " "kutayotgan yozuvlar soni." -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "Jurnalga yozishga bo‘lgan so‘rovlarsoni." -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "Jurnal faylidagi jismoniy yozuvlar soni." -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "Jurnal fayliga \"fsync()\" yordamida amalga oshirilgan yozuvlar soni." -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "\"fsync()\" yordamida amalga oshirilishi kutilayotgan yozuvlar soni." -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "Tugallanmagan jurnalga yozish so‘rovlari soni." -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "Jurnal fayliga yozilgan ma`lumotlar hajmi (baytlarda)." -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "Tuzilgan sahifalar soni." -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -15232,51 +15197,51 @@ msgstr "" "Ko‘pgina qiymatlar sahifalarda keltiriladi, lekin sahifa hajmi bilgan holda, " "ularni baytlarga o‘tkazish mumkin." -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "O‘qilgan sahifalar soni." -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "Yozilgan sahifalar soni." -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "Hozirda kutilayotgan qator blokirovkalari soni." -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Qator blokirovkasini kutishning o‘rtacha vaqti (millisekundlarda)." -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Qator blokirovkasini kutishning umumiy vaqti (millisekundlarda)." -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Qator blokirovkasini kutishning maksimal vaqti (millisekundlarda)." -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "Umumiy kutilayotgan qator blokirovkalari soni." -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB jadvalidan o‘chirilgan qatorlar soni." -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB jadvaliga yozilgan qatorlar soni." -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB jadvallaridan o‘qilgan qatorlar soni." -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB jadvallarida yangilangan qatorlar soni." -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -15284,7 +15249,7 @@ msgstr "" "Indeks keshidagi o‘zgartirilgan, lekin hali diskka yozilmagan bloklar soni. " "Ushbu parametr, shuningdek, \"Not_flushed_key_blocks\" nomi bilan ham ma`lum." -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -15292,7 +15257,7 @@ msgstr "" "Indeks keshidagi ishlatilmayotgan bloklar soni. Ushbu parametr indeks keshi " "ishlatilish darajasini belgilaydi." -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -15301,17 +15266,17 @@ msgstr "" "Indeks keshidagi ishlatilayotgan bloklar soni. Ushbu qiymat bir vaqtning " "o‘zida ishlatilishi mumkin bo‘lgan bloklar sonini bildiradi." -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Import qilinayotgan fayl formati" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "Indeks keshidagi bloklarni o‘qishga bo‘lgan so‘rovlar soni." -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -15323,26 +15288,26 @@ msgstr "" "murojaatlar koeffitsiyenti quyidagicha hisoblandi: Key_reads/" "Key_read_requests." -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "Blokni indeks keshiga yozishga bo‘lgan so‘rovlar soni." -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "Diskdan indeks bloklarini jismoniy yozish operatsiyalari soni." -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -15353,19 +15318,19 @@ msgstr "" "effektivligini taqqoslashda foydali hisoblanadi. Asl nol qiymat hali so‘rov " "kompilyatsiya jarayoni bajarilmaganligini bildiradi." -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Kolichestvo strok, ojidayushix vstavki v zaprosax \"INSERT DELAYED\" " "so‘rovlarida qo‘yilishini kutayotgan qatorlar soni." -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -15373,42 +15338,42 @@ msgstr "" "Ochilayotgan jadvallarning umumiy soni. Agar o‘zgaruvchining qiymati katta " "bo‘lsa, jadval keshi (table_cache) hajmini oshirish tavsiya etiladi." -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "Ochiq fayllar soni." -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Ochiq oqimlar soni (jurnal fayllarida ko‘llaniladi). Oqim deb " "\"fopen()\" funksiyasi yordamida ochilgan faylga aytiladi." -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "Ochiq jadvallar soni." -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "So‘rovlar keshi uchun bo‘sh xotira hajmi." -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" "So‘rovlar keshiga \"tushishlar\" soni, ya`ni keshda turgan so‘rovlar " "tomonidan qoniqtirilgan so‘rovlar soni." -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "So‘rovlar keshiga qo‘shilgan so‘rovlar soni." -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -15420,7 +15385,7 @@ msgstr "" "beradi. So‘rovlar keshi keshdan so‘rovlarni o‘chirishda \"LRU\" (Least " "Recently Used - eng oldingi ishlatilgan) strategiyasidan foydalanadi." -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -15428,19 +15393,19 @@ msgstr "" "Keshlab bo‘lmaydigan yoki keshlash \"SQL_NO_CACHE\" kalit so‘zi yordamida " "so‘ndirilgan so‘rovlar soni." -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "Keshda registratsiya qilingan so‘rovlar soni." -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "So‘rovlar keshiga ajratilgan xotira bloklarning umumiy soni." -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "Barqaror replikatsiyalar soni (hali amalga oshirilmagan)." -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -15448,13 +15413,13 @@ msgstr "" "Indeks ishlatmasdan bajarilgan birlashma so‘rovlar soni. Agar o‘zgaruvchi " "qiymati 0 bo‘lmasa, jadval indekslarini tekshirish tavsiya etiladi." -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" "Bog‘lanish mavjud bo‘lgan jadvalda diapazon bo‘yicha qidiruv ishlatgan holda " "bajarilgan birlashma so‘rovlar soni." -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -15464,7 +15429,7 @@ msgstr "" "o‘zgaruvchi qiymati 0 bo‘lmasa, jadval indekslarini tekshirish tavsiya " "etiladi.)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -15473,17 +15438,17 @@ msgstr "" "birlashma so‘rovlar soni. (Odatda, ushbu o‘zgaruvchining qiymati, hatto juda " "katta bo‘lsa ham, unchalik muhim emas.)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" "Birinchi jadvalga nisbatan to‘laligicha qidiruv ishlatgan holda bajarilgan " "birlashma so‘rovlar soni." -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Tobe oqim tomonidan joriy vaqtda ochilgan vaqtinchalik jadvallar soni." -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -15491,13 +15456,13 @@ msgstr "" "Ishga tushirilgandan buyon replikatsiyaning tobe oqimi tomonidan bajarilgan " "qayta tranzaksiyalarning umumiy soni." -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Agar ushbu server bosh serverga ulangan holda tobe server sifatida " "ishlayotgan bo‘lsa, ushbu o‘zgaruvchiga \"ON\" qiymati belgilanadi." -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -15505,12 +15470,12 @@ msgstr "" "Tuzilishi uchun slow_launch_time sekunddan ko‘proq vaqt talab etilgan " "oqimlar soni." -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "long_query_time sekunddan ko‘proq vaqt bajarilgan so‘rovlar soni." -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -15520,26 +15485,26 @@ msgstr "" "o‘zgaruvchi qiymati katta bo‘lsa, \"sort_buffer_size\" o‘zgaruvchisining " "qiymatini oshirish zarur." -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "Diapazon yordamida bajarilgan sortirovka operatsiyalari soni." -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "Sortirovka qilingan qatorlar soni." -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" "Jadvalni to‘laligicha ko‘rib chiqish yordamida bajarilgan sortirovka " "operatsiyalari soni." -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" "Darhol qoniqtirilgan jadvalni blokirovka qilishga bo‘lgan so‘rovlar soni." -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -15552,7 +15517,7 @@ msgstr "" "so‘ngra esa jadval(lar)ni qismlarga bo‘lish yoki replikatsiya ishlatish " "kerak." -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -15563,11 +15528,11 @@ msgstr "" "Connections. Agar ushbu qiymat qizil rang bilan belgilangan bo‘lsa, unda " "\"thread_cache_size\" o‘zgaruvchisining qiymatini oshirish zarur." -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "Ochiq joriy ulanishlar soni." -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -15579,13 +15544,13 @@ msgstr "" "o‘zgaruvchisining qiymatini oshirish mumkin (lekin u unumdorlikni unchalik " "ham oshirmaydi)." -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Kuzatish faol emas." -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "Faol holatda bo‘lgan jarayonlar soni." @@ -15594,77 +15559,77 @@ msgstr "Faol holatda bo‘lgan jarayonlar soni." msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 #, fuzzy #| msgid "User" msgid "User groups" msgstr "Foydalanuvchi" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "Server versiyasi" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Database for user" msgid "Database level tabs" msgstr "Foydalanuvchi uchun ma`lumotlar bazasi" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table removal" msgid "Table level tabs" msgstr "Jadval nomi" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy #| msgid "View" msgid "View users" msgstr "Namoyish" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Any user" msgid "Add user group" msgstr "Har qaysi foydalanuvchi" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "Privilegiyalar yo‘q." -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Column names" msgid "Group name:" msgstr "Maydon nomlari" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "Server versiyasi" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Database for user" msgid "Database-level tabs" msgstr "Foydalanuvchi uchun ma`lumotlar bazasi" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table removal" msgid "Table-level tabs" @@ -15730,21 +15695,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -15814,141 +15775,141 @@ msgstr "%1$s jadvali tuzildi." msgid "Variable name was expected." msgstr "Jadval nomi shabloni" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Jadval boshiga" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 #, fuzzy #| msgid "The number of tables that are open." msgid "The name of the entity was expected." msgstr "Ochiq jadvallar soni." -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Yozuv o‘chirildi" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Ma`lumotlar fayllarining oshish hajmi" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy #| msgid "Startup" msgid "State" msgstr "Boshlang‘ich" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Jami" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Vaqt" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Yopish" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Vaqt" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "Ushbu SQL so‘roviga xatcho‘p tuzish" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Label" msgid "Label:" msgstr "Xatcho‘p belgisi" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "Barcha foydalanuvchilarga ruxsat berish" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created!" msgstr "\"%s\" xatcho‘pi tuzildi" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "PHP-kod sifatida ko‘rsatish" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`\"%s\"` jadvalidagi indekslarda muammo mavjud" @@ -15979,29 +15940,29 @@ msgstr "" msgid "Bind parameters" msgstr "Indеks(lar)ni saqlash" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 #, fuzzy #| msgid "Bookmark this SQL query" msgid "Bookmark this SQL query:" msgstr "Ushbu SQL so‘roviga xatcho‘p tuzish" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "Shu nomli xatcho‘pni almashtirish" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "Taqsimlovchi" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "Ushbu so‘rovni qayta ko‘rsatish" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "Faqat ko‘rish" @@ -16049,105 +16010,105 @@ msgstr "\"%s.%s\" jadvalini kuzatishni faolsizlantirish" msgid "Deactivate now" msgstr "Hozir faolsizlantirish" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Tuzildi" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Yangilandi" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "Vеrsiyasini tuzish" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Kuzatish hisoboti" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Tuzilma rasmi" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "faol" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "faol emas" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "Kuzatish opеratorlari" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Ma`lumotlar bazasi mavjud emas" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, fuzzy, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "\"%s\"ni ko‘rsatish, %s dan %s sanagacha, foydalanuvchi %s %s" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "SQL dampi (faylni yuklab olish)" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "SQL damp" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "Ushbu tanlov jadval va uning tarkibini amashtiradi." -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "SQL bajaruvi" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "\"%s\" dеb eksport qilish" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "Ma’lumotlarni boshqarish opеratorini" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "Ma’lumotlar ta’rifi opеratorini" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "Sanani" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Foydalanuvchi" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "%s vеrsiya rasmi (SQL kodi)" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 #, fuzzy #| msgid "None" @@ -16155,19 +16116,19 @@ msgctxt "None for default" msgid "None" msgstr "Yo‘q" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 #, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" msgstr "Ushbu ma’lumotlar ta’rifi opеratorlarini kuzatish:" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 #, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "Ushbu ma’lumotlar boshqaruvi opеratorlarini kuzatish:" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -16175,67 +16136,67 @@ msgstr "" "Dampni bajarish uchun vaqtinchalik baza tuzing yo borini ishlating. Buning " "uchun yetarli privilеgiyalarga ega bo‘lishingiz kеrak." -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "Agar kеrak bo‘lmasa, ushbu ikki qator oldiga sharh bеlgisini qo‘ying." -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL so‘rovi eksport qilindi. Dampdan nusxa oling yoki uni bajaring." -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "\"%s\" jadvali uchun kuzatuv hisoboti" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." msgstr "\"%s.%s\" jadvalini kuzatish faollashtirildi." -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "\"%s.%s\" jadvalini kuzatish faollashtirildi." -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Version %1$s of %2$s was deleted." msgstr "\"%s.%s\" jadvalining %s raqamli vеrsiyasini tuzish" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "%s vеrsiya tuzildi, \"%s.%s\" ni kuzatishsh faollashtirilgan." -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Kuzatilmagan jadvallar" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Jadvalni kuzatish" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Kuzatilgan jadvallar" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "Oxirgi vеrsiya" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking" msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Vеrsiyalar" @@ -16245,13 +16206,13 @@ msgstr "Vеrsiyalar" msgid "Manage your settings" msgstr "Boshqa sozlanishlar" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved." msgstr "O‘zgaririshlar saqlandi" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -16362,7 +16323,7 @@ msgstr "Ma`lumotlar bazasi mavjud emas" msgid "View dump (schema) of databases" msgstr "Ma`lumotlar bazalari dampini (sxemasini) namoyish etish" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -16388,7 +16349,7 @@ msgid "" msgstr "" "phpMyAdmin \"%s\" oqim ishini tuguta olmadi. Ehtimol, u allaqachon yopiq." -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -17371,53 +17332,59 @@ msgstr "" msgid "Stacked" msgstr "Qisilgan" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Report title" +msgid "Chart title:" +msgstr "Hisobot sarlavhasi" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 #, fuzzy #| msgid "SQL queries" msgid "Series:" msgstr "SQL so‘rovlari" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Qiymati" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Qiymati" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 #, fuzzy #| msgid "Inside field:" msgid "Series column:" msgstr "Quyidagi maydon(lar)da qidirish: " -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Number of fields" msgid "Value Column:" msgstr "Maydonlar soni " -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -17486,17 +17453,51 @@ msgstr "Izoh" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +#, fuzzy +#| msgid "Foreign key limit" +msgid "Foreign key constraints" +msgstr "Tashqi kalit chegaralari" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "Amallar" + +#: templates/table/relation/common_form.phtml:10 +#, fuzzy +#| msgid "Constraints for table" +msgid "Constraint properties" +msgstr "Jadvallarning tashqi kalitida cheklovlar" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" + +#: templates/table/relation/common_form.phtml:18 +#, fuzzy +#| msgid "Foreign key limit" +msgid "Foreign key constraint" +msgstr "Tashqi kalit chegaralari" + +#: templates/table/relation/common_form.phtml:60 +#, fuzzy +#| msgid "Add constraints" +msgid "+ Add constraint" +msgstr "Cheklovlar qo‘shish" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "Ichki aloqalar" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Ichki aloqalar" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -17504,40 +17505,7 @@ msgstr "" "Agar tashqi kalit (FOREIGN KEY) orqali aloqa mavjud bo‘lsa, ichki aloqa " "o‘rnatish shart emas." -#: templates/table/relation/common_form.phtml:37 -#, fuzzy -#| msgid "Foreign key limit" -msgid "Foreign key constraints" -msgstr "Tashqi kalit chegaralari" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "Amallar" - -#: templates/table/relation/common_form.phtml:41 -#, fuzzy -#| msgid "Constraints for table" -msgid "Constraint properties" -msgstr "Jadvallarning tashqi kalitida cheklovlar" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" - -#: templates/table/relation/common_form.phtml:49 -#, fuzzy -#| msgid "Foreign key limit" -msgid "Foreign key constraint" -msgstr "Tashqi kalit chegaralari" - -#: templates/table/relation/common_form.phtml:83 -#, fuzzy -#| msgid "Add constraints" -msgid "+ Add constraint" -msgstr "Cheklovlar qo‘shish" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -17701,7 +17669,7 @@ msgid "at beginning of table" msgstr "Jadval boshiga" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -17750,7 +17718,7 @@ msgstr "bo‘laklarga bo‘lingan" msgid "Edit partitioning" msgstr "Bo‘laklarni (PARTITIONS) o‘chirish" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -19087,6 +19055,41 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Maksimal ulanishlar soni " +#, fuzzy +#~| msgid "Tables" +#~ msgid "tables" +#~ msgstr "Jadvallar" + +#, fuzzy +#~| msgid "View" +#~ msgid "views" +#~ msgstr "Namoyish" + +#, fuzzy +#~| msgid "Procedures" +#~ msgid "procedures" +#~ msgstr "Muolajalar" + +#, fuzzy +#~| msgid "Event" +#~ msgid "events" +#~ msgstr "Hodisa" + +#, fuzzy +#~| msgid "Functions" +#~ msgid "functions" +#~ msgstr "Funksiyalar" + +#, fuzzy +#~| msgid "table name" +#~ msgid "Filter databases by name or regex" +#~ msgstr "jadval nomi" + +#, fuzzy +#~| msgid "table name" +#~ msgid "Filter by name or regex" +#~ msgstr "jadval nomi" + #, fuzzy #~| msgid "Tracking report" #~ msgid "Taking you to %s." diff --git a/po/vi.po b/po/vi.po index 9407e7f016..2bb52689c6 100644 --- a/po/vi.po +++ b/po/vi.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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-10-15 11:36+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Vietnamese Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 msgid "Page name" msgstr "" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:550 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:551 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:552 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "" -#: js/messages.php:623 +#: js/messages.php:624 #, fuzzy #| msgid "Table comments:" msgid "Show panel" msgstr "Các chú thích của Bảng" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -#, fuzzy -#| msgid "Table" -msgid "tables" -msgstr "Bảng" - -#: js/messages.php:633 -msgid "views" -msgstr "" - -#: js/messages.php:634 -msgid "procedures" -msgstr "" - -#: js/messages.php:635 -msgid "events" -msgstr "" - -#: js/messages.php:636 -#, fuzzy -#| msgid "Action" -msgid "functions" -msgstr "Hành động" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2355,398 +2334,398 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr "" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "" -#: js/messages.php:660 +#: js/messages.php:652 msgid "Show report details" msgstr "" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 #, fuzzy #| msgid "Table comments:" msgid "Show arguments" msgstr "Các chú thích của Bảng" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "" @@ -2754,41 +2733,41 @@ msgstr "" msgid "Please enter the same value again" msgstr "" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "" @@ -2873,11 +2852,12 @@ msgstr "" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -2918,7 +2898,7 @@ msgstr "" msgid "Explain" msgstr "" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "" @@ -2952,8 +2932,8 @@ msgid "History" msgstr "" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3100,30 +3080,30 @@ msgstr "" msgid "Switch to dark theme" msgstr "" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3133,8 +3113,8 @@ msgstr "" msgid "Ascending" msgstr "" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3275,8 +3255,8 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3320,159 +3300,160 @@ msgstr "Bỏ chọn tất cả" msgid "Inside column:" msgstr "" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 msgid "Display column for relations" msgstr "" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 #, fuzzy @@ -3480,25 +3461,25 @@ msgstr "" msgid "Check all" msgstr "Theo dõi bảng" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "" @@ -3590,19 +3571,19 @@ msgstr "" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3611,24 +3592,24 @@ msgid "Action" msgstr "Hành động" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "" @@ -3636,8 +3617,8 @@ msgstr "" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3647,8 +3628,8 @@ msgid "Collation" msgstr "" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3664,15 +3645,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "Xóa" @@ -3709,12 +3690,13 @@ msgstr "" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3722,7 +3704,7 @@ msgstr "Bảng" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3731,8 +3713,8 @@ msgid "SQL" msgstr "" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3740,41 +3722,41 @@ msgid "Search" msgstr "" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3785,16 +3767,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3802,20 +3784,20 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "" @@ -3824,33 +3806,33 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4136,7 +4118,7 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4549,37 +4531,37 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "" @@ -4738,8 +4720,8 @@ msgid "Add new column" msgstr "" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -4798,19 +4780,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -5582,7 +5564,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -5621,7 +5603,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "" @@ -7168,7 +7150,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "" @@ -7440,100 +7422,33 @@ msgstr "" msgid "OpenDocument Text" msgstr "" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "" - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "" - -#: libraries/controllers/TableStructureController.php:967 -#, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "" - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -7547,6 +7462,14 @@ msgstr "" msgid "No data to display" msgstr "" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "" + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "" @@ -7555,19 +7478,78 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr "" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:975 +#, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -7577,7 +7559,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7642,7 +7624,7 @@ msgstr "" msgid "Create database:" msgstr "" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "" @@ -8310,69 +8292,69 @@ msgid "Dump has been saved to file %s." msgstr "" #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "" @@ -8395,71 +8377,71 @@ msgstr "" msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -8471,11 +8453,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -8491,35 +8473,35 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "" @@ -8737,8 +8719,8 @@ msgstr "" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "Hiển thị" @@ -8775,7 +8757,8 @@ msgid_plural "%s results found" msgstr[0] "" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" msgstr "" #: libraries/navigation/NavigationTree.php:1371 @@ -8783,10 +8766,6 @@ msgstr "" msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -9159,7 +9138,7 @@ msgstr "" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9168,7 +9147,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "" @@ -9186,18 +9165,18 @@ msgstr "" msgid "Drop the database (DROP)" msgstr "" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "" @@ -9209,7 +9188,7 @@ msgstr "" msgid "CREATE DATABASE before copying" msgstr "" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "" @@ -9249,159 +9228,159 @@ msgstr "" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Track table" msgid "Checksum table" msgstr "Theo dõi bảng" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "" @@ -9566,7 +9545,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -9590,21 +9569,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -9694,7 +9673,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "" @@ -9786,7 +9765,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -9855,8 +9834,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9864,81 +9843,81 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 msgid "Metadata" msgstr "" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Khởi tạo:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Lần sửa đối cuối:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Lần cuối kiểm tra:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "Thông dụng" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "" @@ -10167,9 +10146,9 @@ msgstr "" msgid "Table of contents" msgstr "" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "" @@ -10333,47 +10312,47 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 msgid "Error: Internal relation could not be added!" msgstr "" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 msgid "FOREIGN KEY relation has been removed." msgstr "" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 msgid "Error: Internal relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "" @@ -10418,104 +10397,104 @@ msgstr "" msgid "Please see the documentation on how to update your column_info table. " msgstr "" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 msgid "Persistent favorite tables" msgstr "" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "Sai kiểu tập tin xuất" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -10687,8 +10666,8 @@ msgstr "" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "" @@ -10696,7 +10675,7 @@ msgstr "" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "" @@ -11308,7 +11287,7 @@ msgstr[0] "" msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "" @@ -11316,98 +11295,94 @@ msgstr "" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "" #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "" #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "" #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -11415,65 +11390,65 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "" #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "" #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -11485,8 +11460,8 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -11526,37 +11501,37 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -11571,14 +11546,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11588,7 +11563,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "" @@ -11597,15 +11572,15 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "" @@ -11622,7 +11597,7 @@ msgid "Native MySQL Authentication" msgstr "" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "" @@ -11645,8 +11620,8 @@ msgstr "" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 msgid "Host name" msgstr "" @@ -11662,218 +11637,218 @@ msgstr "" msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 #, fuzzy #| msgid "Database comment" msgid "Database for user account" msgstr "Chú thích của Database:" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 msgid "Remove selected user accounts" msgstr "" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11882,7 +11857,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11891,11 +11866,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "" @@ -12117,30 +12092,30 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -12194,7 +12169,7 @@ msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "" @@ -12219,33 +12194,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12253,78 +12228,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12332,7 +12307,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12340,42 +12315,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12383,33 +12358,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12418,242 +12393,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12661,99 +12636,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12761,18 +12736,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12780,11 +12755,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -12793,57 +12768,57 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "" @@ -12905,21 +12880,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -12977,121 +12948,121 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "No tables selected." msgid "At least one column definition was expected." msgstr "Chưa có bảng nào được chọn." -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -13121,27 +13092,27 @@ msgstr "" msgid "Bind parameters" msgstr "Tham số không đúng!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "" @@ -13186,174 +13157,174 @@ msgstr "" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "Đã tạo" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "Đã cập nhật" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Last version" msgid "Delete version" msgstr " " -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "Báo cáo theo dõi" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "Cấu trúc ảnh chụp" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "Kích hoạt" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "Chưa kích hoạt" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "Những bảng chưa theo dõi" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "Theo dõi bảng" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "Các bảng đã theo dõi" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr " " -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "Xoá theo dõi" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "Phiên bản" @@ -13361,11 +13332,11 @@ msgstr "Phiên bản" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -13464,7 +13435,7 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -13489,7 +13460,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -14278,45 +14249,49 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +msgid "Chart title:" +msgstr "" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 #, fuzzy #| msgid "Column" msgid "Value Column:" msgstr "Trường" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "" @@ -14369,46 +14344,47 @@ msgstr "" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +msgid "Foreign key constraints" +msgstr "" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "" + +#: templates/table/relation/common_form.phtml:10 +msgid "Constraint properties" +msgstr "" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "" + +#: templates/table/relation/common_form.phtml:60 +msgid "+ Add constraint" +msgstr "" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:37 -msgid "Foreign key constraints" -msgstr "" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "" - -#: templates/table/relation/common_form.phtml:41 -msgid "Constraint properties" -msgstr "" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "" - -#: templates/table/relation/common_form.phtml:83 -msgid "+ Add constraint" -msgstr "" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "" @@ -14534,7 +14510,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 msgid "Partitions" msgstr "" @@ -14569,7 +14545,7 @@ msgstr "Khởi tạo:" msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "" @@ -15726,6 +15702,16 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Table" +#~ msgid "tables" +#~ msgstr "Bảng" + +#, fuzzy +#~| msgid "Action" +#~ msgid "functions" +#~ msgstr "Hành động" + #~ msgid "Select All" #~ msgstr "Chọn tất cả" diff --git a/po/vls.po b/po/vls.po index 9f1354cba6..1aee6d1f5d 100644 --- a/po/vls.po +++ b/po/vls.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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2014-12-23 23:39+0200\n" "Last-Translator: Robin van der Vliet \n" "Language-Team: West Flemish Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 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:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 msgid "Page name" msgstr "" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:550 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:551 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:552 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:563 +#: js/messages.php:564 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:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "" -#: js/messages.php:574 +#: js/messages.php:575 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:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "" -#: js/messages.php:623 +#: js/messages.php:624 msgid "Show panel" msgstr "" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "" - #: js/messages.php:632 -msgid "tables" -msgstr "" - -#: js/messages.php:633 -msgid "views" -msgstr "" - -#: js/messages.php:634 -msgid "procedures" -msgstr "" - -#: js/messages.php:635 -msgid "events" -msgstr "" - -#: js/messages.php:636 -msgid "functions" -msgstr "" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2335,396 +2316,396 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr "" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "" -#: js/messages.php:660 +#: js/messages.php:652 msgid "Show report details" msgstr "" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:667 +#: js/messages.php:659 #, 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:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:707 +#: js/messages.php:699 msgid "Show arguments" msgstr "" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "" -#: js/messages.php:711 +#: js/messages.php:703 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:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "januoari" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "februoari" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "moarte" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "april" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "meie" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "juni" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "juli" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "ogustus" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "september" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "oktober" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "november" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "mrt" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "mei" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "ogu" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "dec" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "zundag" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "moandag" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "diesndag" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "woensdag" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "dunderdag" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "vrydag" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "zoaterdag" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "zu" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "mo" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "di" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "wo" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "du" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "vr" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "zo" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "mo" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "di" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "wo" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "du" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "vr" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "zo" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "" @@ -2732,41 +2713,41 @@ msgstr "" msgid "Please enter the same value again" msgstr "" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "" @@ -2851,11 +2832,12 @@ msgstr "" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -2897,7 +2879,7 @@ msgstr "" msgid "Explain" msgstr "" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "" @@ -2931,8 +2913,8 @@ msgid "History" msgstr "Geschiedenisse" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3077,30 +3059,30 @@ msgstr "" msgid "Switch to dark theme" msgstr "" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3110,8 +3092,8 @@ msgstr "" msgid "Ascending" msgstr "" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3254,8 +3236,8 @@ msgstr[0] "" msgstr[1] "" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3297,183 +3279,184 @@ msgstr "" msgid "Inside column:" msgstr "" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 msgid "Display column for relations" msgstr "" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 msgid "Check all" msgstr "" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "" @@ -3565,19 +3548,19 @@ msgstr "" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3586,24 +3569,24 @@ msgid "Action" msgstr "" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "" @@ -3611,8 +3594,8 @@ msgstr "" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3622,8 +3605,8 @@ msgid "Collation" msgstr "" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3639,15 +3622,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "" @@ -3684,12 +3667,13 @@ msgstr "" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3697,7 +3681,7 @@ msgstr "" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3706,8 +3690,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3715,41 +3699,41 @@ msgid "Search" msgstr "" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3760,16 +3744,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3777,20 +3761,20 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "" @@ -3799,33 +3783,33 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "" @@ -4116,7 +4100,7 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -4525,37 +4509,37 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "Gebrukers" @@ -4714,8 +4698,8 @@ msgid "Add new column" msgstr "" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -4774,19 +4758,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "" @@ -5552,7 +5536,7 @@ msgid "Remember file name template" msgstr "" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -5591,7 +5575,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "" @@ -7131,7 +7115,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "" @@ -7403,101 +7387,33 @@ msgstr "" msgid "OpenDocument Text" msgstr "" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -msgid "The name '%s' is a MySQL reserved keyword." -msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" - -#: libraries/controllers/TableStructureController.php:250 -msgid "No column selected." -msgstr "" - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "" - -#: libraries/controllers/TableStructureController.php:967 -#, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "" - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -7511,6 +7427,14 @@ msgstr "" msgid "No data to display" msgstr "" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "" + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "" @@ -7519,19 +7443,79 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr "" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "" +msgstr[1] "" + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:975 +#, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -7541,7 +7525,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -7606,7 +7590,7 @@ msgstr "" msgid "Create database:" msgstr "" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "" @@ -8268,69 +8252,69 @@ msgid "Dump has been saved to file %s." msgstr "" #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "" @@ -8353,71 +8337,71 @@ msgstr "" msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -8429,11 +8413,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -8449,35 +8433,35 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "" @@ -8695,8 +8679,8 @@ msgstr "" msgid "Views:" msgstr "" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "" @@ -8734,7 +8718,8 @@ msgstr[0] "" msgstr[1] "" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" msgstr "" #: libraries/navigation/NavigationTree.php:1371 @@ -8742,10 +8727,6 @@ msgstr "" msgid "Clear fast filter" msgstr "" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "" @@ -9118,7 +9099,7 @@ msgstr "" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9127,7 +9108,7 @@ msgstr "" #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "" @@ -9145,18 +9126,18 @@ msgstr "" msgid "Drop the database (DROP)" msgstr "" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "" @@ -9168,7 +9149,7 @@ msgstr "" msgid "CREATE DATABASE before copying" msgstr "" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "" @@ -9208,157 +9189,157 @@ msgstr "" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 msgid "Checksum table" msgstr "" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "" -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 msgid "Coalesce" msgstr "" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "" @@ -9523,7 +9504,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -9547,21 +9528,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -9651,7 +9632,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "" @@ -9743,7 +9724,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "" @@ -9812,8 +9793,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9821,81 +9802,81 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 msgid "Metadata" msgstr "" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "" @@ -10124,9 +10105,9 @@ msgstr "" msgid "Table of contents" msgstr "" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "" @@ -10290,47 +10271,47 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 msgid "Error: Internal relation could not be added!" msgstr "" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 msgid "FOREIGN KEY relation has been removed." msgstr "" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 msgid "Error: Internal relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "" @@ -10375,102 +10356,102 @@ msgstr "" msgid "Please see the documentation on how to update your column_info table. " msgstr "" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 msgid "Persistent favorite tables" msgstr "" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 msgid "Saving export templates" msgstr "" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -10642,8 +10623,8 @@ msgstr "Gebrukersnoame:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "Gebrukersnoame" @@ -10651,7 +10632,7 @@ msgstr "Gebrukersnoame" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "" @@ -11263,7 +11244,7 @@ msgstr[1] "" msgid "Plugin" msgstr "" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "" @@ -11271,98 +11252,94 @@ msgstr "" msgid "Author" msgstr "" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "" -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "" #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "" #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "" #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -11370,65 +11347,65 @@ msgid "" msgstr "" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "" #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "" #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "" @@ -11440,8 +11417,8 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -11481,37 +11458,37 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -11526,14 +11503,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11543,7 +11520,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "" @@ -11552,15 +11529,15 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "" -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "" @@ -11577,7 +11554,7 @@ msgid "Native MySQL Authentication" msgstr "" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "" @@ -11602,8 +11579,8 @@ msgstr "Gebrukersnoame:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "User name" msgid "Host name" @@ -11621,216 +11598,216 @@ msgstr "" msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 msgid "Database for user account" msgstr "" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 msgid "Remove selected user accounts" msgstr "" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Gebruker" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11839,7 +11816,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11848,11 +11825,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "" @@ -12074,30 +12051,30 @@ msgstr "" msgid "Done dragging (rearranging) charts" msgstr "" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "" @@ -12151,7 +12128,7 @@ msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "#" @@ -12176,33 +12153,33 @@ msgstr "" msgid "Related links:" msgstr "" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12210,78 +12187,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." msgstr "" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12289,7 +12266,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12297,42 +12274,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12340,33 +12317,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12375,242 +12352,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12618,99 +12595,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12718,18 +12695,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12737,11 +12714,11 @@ msgid "" "implementation.)" msgstr "" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "" @@ -12750,57 +12727,57 @@ msgstr "" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "" @@ -12860,21 +12837,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 msgid "An alias was expected." msgstr "" @@ -12930,119 +12903,119 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 msgid "At least one column definition was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "% Tyd" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -13070,27 +13043,27 @@ msgstr "" msgid "Bind parameters" msgstr "" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "" @@ -13134,172 +13107,172 @@ msgstr "" msgid "Deactivate now" msgstr "" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 msgid "Delete version" msgstr "" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "Gebrukersnoame" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "" @@ -13307,11 +13280,11 @@ msgstr "" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -13410,7 +13383,7 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -13435,7 +13408,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -14215,43 +14188,47 @@ msgstr "" msgid "Stacked" msgstr "" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +msgid "Chart title:" +msgstr "" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 msgid "Value Column:" msgstr "" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "" @@ -14306,46 +14283,47 @@ msgstr "" msgid "Drag to reorder" msgstr "" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +msgid "Foreign key constraints" +msgstr "" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "" + +#: templates/table/relation/common_form.phtml:10 +msgid "Constraint properties" +msgstr "" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "" + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "" + +#: templates/table/relation/common_form.phtml:60 +msgid "+ Add constraint" +msgstr "" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:37 -msgid "Foreign key constraints" -msgstr "" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "" - -#: templates/table/relation/common_form.phtml:41 -msgid "Constraint properties" -msgstr "" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "" - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "" - -#: templates/table/relation/common_form.phtml:83 -msgid "+ Add constraint" -msgstr "" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "" @@ -14471,7 +14449,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 msgid "Partitions" msgstr "" @@ -14504,7 +14482,7 @@ msgstr "" msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 7ffbb11719..8fda65ef4c 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-11-02 02:33+0200\n" "Last-Translator: San \n" -"Language-Team: Chinese (China) " -"\n" +"Language-Team: Chinese (China) \n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 2.5-dev\n" -#: changelog.php:37 license.php:30 +#: changelog.php:37 license.php:33 #, php-format msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " @@ -35,7 +35,7 @@ msgstr "点击以排序。" msgid "Showing rows %1$s - %2$s." msgstr "正在显示第 %1$s - %2$s 行。" -#: db_create.php:61 +#: db_create.php:62 #, php-format msgid "Database %1$s has been created." msgstr "已创建数据库 %1$s。" @@ -44,13 +44,13 @@ msgstr "已创建数据库 %1$s。" msgid "Database comment" msgstr "数据库备注" -#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:601 +#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:599 #: templates/columns_definitions/column_definitions_form.phtml:84 msgid "Table comments:" msgstr "表注释:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1568 +#: libraries/insert_edit.lib.php:1575 #: libraries/navigation/nodes/NodeColumn.php:34 #: libraries/plugins/export/ExportHtmlword.php:288 #: libraries/plugins/export/ExportHtmlword.php:384 @@ -60,13 +60,14 @@ msgstr "表注释:" #: libraries/plugins/export/ExportTexytext.php:282 #: libraries/plugins/export/ExportTexytext.php:373 #: libraries/plugins/export/PMA_ExportPdf.php:472 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:882 libraries/tracking.lib.php:978 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 +#: libraries/tracking.lib.php:892 libraries/tracking.lib.php:990 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:10 -#: templates/table/relation/common_form.phtml:43 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:27 +#: templates/table/relation/common_form.phtml:79 #: templates/table/relation/foreign_key_row.phtml:176 #: templates/table/relation/foreign_key_row.phtml:188 #: templates/table/relation/internal_relational_row.phtml:73 @@ -86,14 +87,14 @@ msgstr "字段" #: libraries/plugins/export/ExportTexytext.php:283 #: libraries/plugins/export/ExportTexytext.php:374 #: libraries/plugins/export/PMA_ExportPdf.php:474 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 #: libraries/rte/rte_list.lib.php:78 libraries/rte/rte_list.lib.php:106 #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2606 libraries/tracking.lib.php:883 -#: libraries/tracking.lib.php:975 +#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -103,7 +104,7 @@ msgstr "类型" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:709 -#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1577 +#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1584 #: libraries/plugins/export/ExportHtmlword.php:294 #: libraries/plugins/export/ExportHtmlword.php:390 #: libraries/plugins/export/ExportLatex.php:517 @@ -112,9 +113,9 @@ msgstr "类型" #: libraries/plugins/export/ExportTexytext.php:284 #: libraries/plugins/export/ExportTexytext.php:375 #: libraries/plugins/export/PMA_ExportPdf.php:476 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 -#: libraries/tracking.lib.php:885 libraries/tracking.lib.php:981 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/tracking.lib.php:895 libraries/tracking.lib.php:993 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 @@ -131,9 +132,9 @@ msgstr "空" #: libraries/plugins/export/ExportTexytext.php:285 #: libraries/plugins/export/ExportTexytext.php:376 #: libraries/plugins/export/PMA_ExportPdf.php:478 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 -#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:886 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:896 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 @@ -145,8 +146,8 @@ msgstr "默认" #: libraries/plugins/export/ExportOdt.php:488 #: libraries/plugins/export/ExportTexytext.php:378 #: libraries/plugins/export/PMA_ExportPdf.php:487 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:640 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:663 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 msgid "Links to" msgstr "链接到" @@ -157,37 +158,38 @@ msgstr "链接到" #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:381 #: libraries/plugins/export/PMA_ExportPdf.php:494 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:651 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:664 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:649 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 #: templates/columns_definitions/table_fields_definitions.phtml:65 msgid "Comments" msgstr "注释" -#: db_datadict.php:155 libraries/controllers/TableStructureController.php:1189 -#: libraries/controllers/TableStructureController.php:1194 -#: libraries/tracking.lib.php:925 +#: db_datadict.php:155 +#: libraries/controllers/table/TableStructureController.php:1197 +#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:79 +#: templates/table/structure/display_structure.phtml:80 msgid "Primary" msgstr "主键" -#: db_datadict.php:165 js/messages.php:370 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:371 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 -#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:403 -#: libraries/mult_submits.lib.php:417 +#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:408 +#: libraries/mult_submits.lib.php:422 #: libraries/plugins/export/ExportHtmlword.php:654 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:710 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2971 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3620 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1013 libraries/tracking.lib.php:1018 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2973 +#: libraries/server_privileges.lib.php:2993 +#: libraries/server_privileges.lib.php:3631 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -196,32 +198,32 @@ msgstr "主键" msgid "No" msgstr "否" -#: db_datadict.php:165 js/messages.php:515 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:516 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 #: libraries/config/FormDisplay.tpl.php:280 -#: libraries/controllers/TableStructureController.php:770 -#: libraries/controllers/TableStructureController.php:1440 -#: libraries/controllers/TableStructureController.php:1449 -#: libraries/controllers/TableStructureController.php:1454 -#: libraries/controllers/TableStructureController.php:1459 -#: libraries/controllers/TableStructureController.php:1464 -#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:199 -#: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 -#: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 +#: libraries/controllers/table/TableStructureController.php:771 +#: libraries/controllers/table/TableStructureController.php:1448 +#: libraries/controllers/table/TableStructureController.php:1457 +#: libraries/controllers/table/TableStructureController.php:1462 +#: libraries/controllers/table/TableStructureController.php:1467 +#: libraries/controllers/table/TableStructureController.php:1472 +#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:200 +#: libraries/mult_submits.lib.php:344 libraries/mult_submits.lib.php:377 +#: libraries/mult_submits.lib.php:406 libraries/mult_submits.lib.php:420 #: libraries/plugins/export/ExportHtmlword.php:655 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:788 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:711 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2968 -#: libraries/server_privileges.lib.php:2989 -#: libraries/server_privileges.lib.php:3617 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1011 libraries/tracking.lib.php:1016 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2970 +#: libraries/server_privileges.lib.php:2991 +#: libraries/server_privileges.lib.php:3628 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -234,8 +236,8 @@ msgstr "是" msgid "View dump (schema) of database" msgstr "查看数据库的转储(大纲)" -#: db_export.php:51 db_tracking.php:102 export.php:382 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:176 +#: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 +#: libraries/controllers/DatabaseStructureController.php:157 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "数据库中没有表。" @@ -252,7 +254,7 @@ msgstr "表" #: db_export.php:66 libraries/Menu.php:320 libraries/Menu.php:427 #: libraries/Util.php:3407 libraries/Util.php:3417 libraries/Util.php:3423 -#: libraries/Util.php:3702 libraries/Util.php:4339 libraries/Util.php:4356 +#: libraries/Util.php:3703 libraries/Util.php:4340 libraries/Util.php:4357 #: libraries/central_columns.lib.php:729 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:320 @@ -260,10 +262,10 @@ msgstr "表" #: libraries/config/user_preferences.forms.php:218 #: libraries/config/user_preferences.forms.php:259 #: libraries/config/user_preferences.forms.php:285 -#: libraries/import.lib.php:1299 libraries/navigation/nodes/NodeColumn.php:44 +#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:44 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 -#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:877 +#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:887 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -306,11 +308,11 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "phpMyAdmin 设置存储功能已停用。%s查看原因%s。" -#: db_qbe.php:135 +#: db_qbe.php:136 msgid "You have to choose at least one column to display!" msgstr "您最少要选择显示一列!" -#: db_qbe.php:152 +#: db_qbe.php:154 #, php-format msgid "Switch to %svisual builder%s" msgstr "切换到%s可视化查询生成器%s" @@ -336,7 +338,7 @@ msgstr "已为选中的表创建版本 %1$s,对于它们的追踪已启用。" msgid "No tables selected." msgstr "没有已选择的表。" -#: db_tracking.php:146 +#: db_tracking.php:149 msgid "Database Log" msgstr "数据库日志" @@ -368,7 +370,7 @@ msgstr "您需要刷新当前页面。" msgid "Bad type!" msgstr "类型无效!" -#: export.php:276 +#: export.php:278 msgid "Bad parameters!" msgstr "参数无效!" @@ -376,98 +378,98 @@ msgstr "参数无效!" msgid "Invalid export type" msgstr "导出类型无效" -#: gis_data_editor.php:119 +#: gis_data_editor.php:117 #, php-format msgid "Value for the column \"%s\"" msgstr "字段“%s”的值" -#: gis_data_editor.php:147 +#: gis_data_editor.php:145 #: templates/table/gis_visualization/gis_visualization.phtml:37 msgid "Use OpenStreetMaps as Base Layer" msgstr "以 OpenStreetMaps 为背景" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:169 +#: gis_data_editor.php:167 msgid "SRID:" msgstr "空间参照标识符:" -#: gis_data_editor.php:192 +#: gis_data_editor.php:190 #, php-format msgid "Geometry %d:" msgstr "几何体 %d:" -#: gis_data_editor.php:214 +#: gis_data_editor.php:212 msgid "Point:" msgstr "点:" -#: gis_data_editor.php:215 gis_data_editor.php:242 gis_data_editor.php:298 -#: gis_data_editor.php:371 js/messages.php:504 +#: gis_data_editor.php:213 gis_data_editor.php:240 gis_data_editor.php:296 +#: gis_data_editor.php:369 js/messages.php:505 msgid "X" msgstr "X" -#: gis_data_editor.php:218 gis_data_editor.php:246 gis_data_editor.php:302 -#: gis_data_editor.php:377 js/messages.php:505 +#: gis_data_editor.php:216 gis_data_editor.php:244 gis_data_editor.php:300 +#: gis_data_editor.php:375 js/messages.php:506 msgid "Y" msgstr "Y" -#: gis_data_editor.php:240 gis_data_editor.php:296 gis_data_editor.php:369 -#: js/messages.php:507 +#: gis_data_editor.php:238 gis_data_editor.php:294 gis_data_editor.php:367 +#: js/messages.php:508 #, php-format msgid "Point %d" msgstr "点 %d" -#: gis_data_editor.php:253 gis_data_editor.php:309 gis_data_editor.php:387 -#: js/messages.php:513 +#: gis_data_editor.php:251 gis_data_editor.php:307 gis_data_editor.php:385 +#: js/messages.php:514 msgid "Add a point" msgstr "添加点" -#: gis_data_editor.php:270 +#: gis_data_editor.php:268 #, php-format msgid "Linestring %d:" msgstr "线 %d:" -#: gis_data_editor.php:273 gis_data_editor.php:350 +#: gis_data_editor.php:271 gis_data_editor.php:348 msgid "Outer ring:" msgstr "外环:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:273 gis_data_editor.php:350 #, php-format msgid "Inner ring %d:" msgstr "内环 %d:" -#: gis_data_editor.php:312 +#: gis_data_editor.php:310 msgid "Add a linestring" msgstr "添加线" -#: gis_data_editor.php:313 gis_data_editor.php:392 js/messages.php:514 +#: gis_data_editor.php:311 gis_data_editor.php:390 js/messages.php:515 msgid "Add an inner ring" msgstr "添加内环" -#: gis_data_editor.php:334 +#: gis_data_editor.php:332 #, php-format msgid "Polygon %d:" msgstr "多边形 %d:" -#: gis_data_editor.php:398 +#: gis_data_editor.php:396 msgid "Add a polygon" msgstr "添加多边形" -#: gis_data_editor.php:404 +#: gis_data_editor.php:402 msgid "Add geometry" msgstr "添加几何体" -#: gis_data_editor.php:410 js/messages.php:345 libraries/DbSearch.php:462 -#: libraries/DisplayResults.php:1783 libraries/browse_foreigners.lib.php:142 +#: gis_data_editor.php:408 js/messages.php:346 libraries/DbSearch.php:462 +#: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:151 #: libraries/display_export.lib.php:404 libraries/display_export.lib.php:410 -#: libraries/display_import.lib.php:403 libraries/index.lib.php:42 -#: libraries/insert_edit.lib.php:1547 libraries/insert_edit.lib.php:1584 +#: libraries/display_import.lib.php:403 libraries/index.lib.php:45 +#: libraries/insert_edit.lib.php:1554 libraries/insert_edit.lib.php:1591 #: libraries/normalization.lib.php:168 libraries/normalization.lib.php:825 #: libraries/operations.lib.php:47 libraries/operations.lib.php:114 #: libraries/operations.lib.php:266 libraries/operations.lib.php:309 #: libraries/operations.lib.php:806 libraries/operations.lib.php:877 -#: libraries/operations.lib.php:926 libraries/operations.lib.php:1336 -#: libraries/operations.lib.php:1653 +#: libraries/operations.lib.php:926 libraries/operations.lib.php:1339 +#: libraries/operations.lib.php:1656 #: libraries/plugins/auth/AuthenticationCookie.php:239 #: libraries/replication_gui.lib.php:124 libraries/replication_gui.lib.php:163 #: libraries/replication_gui.lib.php:328 libraries/replication_gui.lib.php:465 @@ -476,12 +478,12 @@ msgstr "添加几何体" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2343 -#: libraries/server_privileges.lib.php:3114 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_user_groups.lib.php:285 -#: libraries/sql_query_form.lib.php:369 libraries/sql_query_form.lib.php:429 -#: libraries/tracking.lib.php:536 libraries/tracking.lib.php:656 +#: libraries/server_privileges.lib.php:2345 +#: libraries/server_privileges.lib.php:3116 +#: libraries/server_privileges.lib.php:3735 +#: libraries/server_user_groups.lib.php:290 +#: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 +#: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 #: prefs_manage.php:280 prefs_manage.php:358 #: templates/columns_definitions/column_definitions_form.phtml:64 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 @@ -494,11 +496,11 @@ msgstr "添加几何体" msgid "Go" msgstr "执行" -#: gis_data_editor.php:413 +#: gis_data_editor.php:411 msgid "Output" msgstr "输出" -#: gis_data_editor.php:416 +#: gis_data_editor.php:414 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -508,7 +510,7 @@ msgstr "从“函数”列中选择“GeomFromText”并粘贴下列内容到“ msgid "Succeeded" msgstr "成功" -#: import.php:59 js/messages.php:588 +#: import.php:59 js/messages.php:589 msgid "Failed" msgstr "失败" @@ -567,7 +569,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "无法加载导入插件,请检查您的安装!" -#: import.php:669 libraries/sql.lib.php:744 libraries/sql.lib.php:1468 +#: import.php:669 libraries/sql.lib.php:754 libraries/sql.lib.php:1485 #, php-format msgid "Bookmark %s has been created." msgstr "已创建书签 %s。" @@ -597,7 +599,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "无法加载导入进度。" -#: import_status.php:111 js/messages.php:444 libraries/Util.php:797 +#: import_status.php:111 js/messages.php:445 libraries/Util.php:797 #: libraries/export.lib.php:523 #: libraries/plugins/schema/ExportRelationSchema.php:301 user_password.php:268 msgid "Back" @@ -621,7 +623,7 @@ msgstr "" msgid "General settings" msgstr "常规设置" -#: index.php:191 js/messages.php:617 +#: index.php:191 js/messages.php:618 #: libraries/display_change_password.lib.php:54 #: libraries/display_change_password.lib.php:57 user_password.php:262 msgid "Change password" @@ -721,7 +723,11 @@ msgstr "获取支持" msgid "List of changes" msgstr "更新列表" -#: index.php:453 +#: index.php:438 libraries/server_plugins.lib.php:83 +msgid "License" +msgstr "授权" + +#: index.php:460 msgid "" "You are connected as 'root' with no password, which corresponds to the " "default MySQL privileged account. Your MySQL server is running with this " @@ -732,7 +738,7 @@ msgstr "" "正在使用这个默认设置运行,这样容易被入侵,我们强烈建议您立即给“root”用户设置" "一个密码来修复这个安全漏洞。" -#: index.php:470 +#: index.php:477 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -741,7 +747,7 @@ msgstr "" "您在 PHP 设置中启用了 mbstring.func_overload。该选项和 phpMyAdmin 不兼容并可" "能会导致一些数据损坏!" -#: index.php:485 +#: index.php:492 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -750,7 +756,7 @@ msgstr "" "没有找到 PHP 扩展 mbstring,而您现在正在使用多字节字符集。没有 mbstring 扩展" "的 phpMyAdmin 不能正确分割字符串并可能产生意料之外的结果。" -#: index.php:502 +#: index.php:509 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than " @@ -762,7 +768,7 @@ msgstr "" "中设置的 Cookies 有效期,因此您的登录会话有效期可能会比您在 phpMyAdmin 中设置" "的时间要更短。" -#: index.php:521 +#: index.php:528 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -770,11 +776,11 @@ msgstr "" "phpMyAdmin 中所设置的登录 cookie 存储小于 cookie 有效期,因此您的登录过期时间" "将会比您在 phpMyAdmin 中设置的时间要更短。" -#: index.php:537 +#: index.php:544 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "配置文件现在需要一个短语密码。" -#: index.php:550 +#: index.php:557 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. It is strongly recommended to remove it " @@ -785,19 +791,19 @@ msgstr "" "phpMyAdmin 安装后立即删除该文件夹。否则未经授权的用户都可以下载您的配置文件从" "而使服务器陷入危险。" -#: index.php:566 +#: index.php:573 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. %sFind out why%s. " msgstr "phpMyAdmin 高级功能尚未完全设置,部分功能未激活。%s查找原因%s。 " -#: index.php:573 +#: index.php:580 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "或者也可以去某个数据库的“操作”选项卡那里进行设置。" -#: index.php:619 +#: index.php:626 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -806,7 +812,7 @@ msgstr "" "您的 PHP MySQL 库版本 %s 与您的 MySQL 服务器版本 %s 不同。这可能导致无法预料" "的问题。" -#: index.php:647 +#: index.php:654 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -826,7 +832,7 @@ msgstr "确认" msgid "Do you really want to execute \"%s\"?" msgstr "您真的要执行“%s”吗?" -#: js/messages.php:45 libraries/mult_submits.lib.php:397 +#: js/messages.php:45 libraries/mult_submits.lib.php:402 msgid "You are about to DESTROY a complete database!" msgstr "您将要完全删除一个数据库!" @@ -944,13 +950,6 @@ msgid "Are you sure you wish to change the collation and convert the data?" msgstr "您确定您希望改变排序规则并进行数据转换吗?" #: js/messages.php:95 -#| msgid "" -#| "Through this operation, MySQL attempts to map the data values between " -#| "collations. If the character sets are incompatible, there may be data " -#| "loss and this lost data may NOT be recoverable simply by changing " -#| "back the column collation(s). To convert existing data, it is " -#| "suggested to use the column(s) editing feature (the \"Change\" Link) on " -#| "the table structure page. " msgid "" "Through this operation, MySQL attempts to map the data values between " "collations. If the character sets are incompatible, there may be data loss " @@ -959,8 +958,10 @@ msgid "" "column(s) editing feature (the \"Change\" Link) on the table structure page. " "" msgstr "" -"通过这一操作,MySQL将会尝试映射不同排序规则之间的数据值。若字符集不兼容,可能会出现数据损失,而且这些损失可能无法简单地通过转换回原有的" -"列排序规则来进行恢复。若要转换已经存在的数据,建议您使用表结构的页面上的列编辑功能(“修改”链接)。" +"通过这一操作,MySQL将会尝试映射不同排序规则之间的数据值。若字符集不兼容,可能" +"会出现数据损失,而且这些损失可能无法简单地通过转换回原有的列排序规则来" +"进行恢复。若要转换已经存在的数据,建议您使用表结构的页面上的列编辑功能" +"(“修改”链接)。" #: js/messages.php:104 msgid "" @@ -973,7 +974,7 @@ msgid "Save & close" msgstr "保存并关闭" #: js/messages.php:109 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1551 prefs_manage.php:364 +#: libraries/insert_edit.lib.php:1558 prefs_manage.php:364 #: prefs_manage.php:375 msgid "Reset" msgstr "重置" @@ -1031,10 +1032,10 @@ msgstr "请为索引选择列。" msgid "You have to add at least one column." msgstr "至少要添加一个字段。" -#: js/messages.php:129 libraries/insert_edit.lib.php:1549 +#: js/messages.php:129 libraries/insert_edit.lib.php:1556 #: templates/columns_definitions/column_definitions_form.phtml:159 #: templates/table/index_form.phtml:237 -#: templates/table/relation/common_form.phtml:108 +#: templates/table/relation/common_form.phtml:127 msgid "Preview SQL" msgstr "预览 SQL 语句" @@ -1077,8 +1078,8 @@ msgstr "两次密码不一致!" msgid "Removing Selected Users" msgstr "正在删除选中的用户" -#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:461 -#: libraries/tracking.lib.php:831 +#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:471 +#: libraries/tracking.lib.php:841 msgid "Close" msgstr "关闭" @@ -1100,7 +1101,7 @@ msgstr "模板已被删除。" #. l10n: Other, small valued, queries #: js/messages.php:155 libraries/ServerStatusData.php:130 -#: libraries/server_status_queries.lib.php:148 +#: libraries/server_status_queries.lib.php:150 msgid "Other" msgstr "其它" @@ -1265,7 +1266,7 @@ msgstr "内部查询" msgid "Traffic" msgstr "流量" -#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4330 +#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4331 #: libraries/server_status_monitor.lib.php:258 msgid "Settings" msgstr "设置" @@ -1278,9 +1279,9 @@ msgstr "添加图表" msgid "Please add at least one variable to the series!" msgstr "请至少添加一个数据!" -#: js/messages.php:216 libraries/DisplayResults.php:1477 +#: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1391,7 +1392,7 @@ msgstr "修改设置" msgid "Current settings" msgstr "当前设置" -#: js/messages.php:253 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:253 msgid "Chart title" msgstr "图表标题" @@ -1475,21 +1476,21 @@ msgstr "正在分析…" msgid "Explain output" msgstr "解析输出" -#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4326 +#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4327 #: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:396 #: libraries/rte/rte_list.lib.php:104 -#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:282 -#: libraries/tracking.lib.php:1623 +#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:284 +#: libraries/tracking.lib.php:1639 msgid "Status" msgstr "状态" -#: js/messages.php:289 js/messages.php:870 +#: js/messages.php:289 js/messages.php:862 #: libraries/plugins/export/ExportHtmlword.php:484 #: libraries/plugins/export/ExportOdt.php:600 #: libraries/plugins/export/ExportTexytext.php:445 #: libraries/plugins/export/PMA_ExportPdf.php:314 #: libraries/rte/rte_list.lib.php:93 -#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:239 +#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:243 msgid "Time" msgstr "时间" @@ -1571,10 +1572,10 @@ msgid "" msgstr "使用导入的设置建立图表失败。正在重设为默认设置…" #: js/messages.php:322 libraries/Menu.php:355 libraries/Menu.php:457 -#: libraries/Menu.php:578 libraries/Util.php:4329 libraries/Util.php:4344 -#: libraries/Util.php:4361 libraries/config/messages.inc.php:260 +#: libraries/Menu.php:578 libraries/Util.php:4330 libraries/Util.php:4345 +#: libraries/Util.php:4362 libraries/config/messages.inc.php:260 #: libraries/display_import.lib.php:108 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:241 +#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:241 #: setup/frames/menu.inc.php:26 msgid "Import" msgstr "导入" @@ -1631,7 +1632,13 @@ msgstr "检验" msgid "Formatting SQL…" msgstr "正在格式化SQL……" -#: js/messages.php:346 libraries/server_variables.lib.php:159 +#: js/messages.php:343 +#, fuzzy +#| msgid "Bad parameters!" +msgid "No parameters found!" +msgstr "参数无效!" + +#: js/messages.php:347 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 @@ -1642,59 +1649,59 @@ msgstr "正在格式化SQL……" msgid "Cancel" msgstr "取消" -#: js/messages.php:349 libraries/Header.php:457 +#: js/messages.php:350 libraries/Header.php:457 msgid "Page-related settings" msgstr "页面相关设置" -#: js/messages.php:350 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:351 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "应用" -#: js/messages.php:353 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:354 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:124 msgid "Loading…" msgstr "正在加载…" -#: js/messages.php:354 +#: js/messages.php:355 msgid "Request aborted!!" msgstr "请求已放弃!!" -#: js/messages.php:355 +#: js/messages.php:356 msgid "Processing request" msgstr "正在处理请求" -#: js/messages.php:356 +#: js/messages.php:357 msgid "Request failed!!" msgstr "请求失败!!" -#: js/messages.php:357 +#: js/messages.php:358 msgid "Error in processing request" msgstr "处理请求时的错误" -#: js/messages.php:358 +#: js/messages.php:359 #, php-format msgid "Error code: %s" msgstr "错误代码:%s" -#: js/messages.php:359 +#: js/messages.php:360 #, php-format msgid "Error text: %s" msgstr "错误信息:%s" -#: js/messages.php:360 libraries/db_common.inc.php:73 +#: js/messages.php:361 libraries/db_common.inc.php:73 #: libraries/db_table_exists.lib.php:33 libraries/server_databases.lib.php:462 msgid "No databases selected." msgstr "没有已选择的数据库。" -#: js/messages.php:361 +#: js/messages.php:362 msgid "Dropping column" msgstr "正在删除字段" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Adding primary key" msgstr "正在添加主键" -#: js/messages.php:363 +#: js/messages.php:364 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1704,164 +1711,164 @@ msgstr "正在添加主键" msgid "OK" msgstr "确定" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Click to dismiss this notification" msgstr "点击隐藏该提示" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Renaming databases" msgstr "正在重命名数据库" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Copying database" msgstr "正在复制数据库" -#: js/messages.php:369 +#: js/messages.php:370 msgid "Changing charset" msgstr "正在修改字符集" -#: js/messages.php:373 libraries/Util.php:3289 +#: js/messages.php:374 libraries/Util.php:3289 msgid "Enable foreign key checks" msgstr "启用外键约束" -#: js/messages.php:376 +#: js/messages.php:377 msgid "Failed to get real row count." msgstr "获取实际行数失败。" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Searching" msgstr "正在搜索" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide search results" msgstr "隐藏搜索结果" -#: js/messages.php:381 +#: js/messages.php:382 msgid "Show search results" msgstr "显示搜索结果" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Browsing" msgstr "正在浏览" -#: js/messages.php:383 +#: js/messages.php:384 msgid "Deleting" msgstr "正在删除" -#: js/messages.php:387 +#: js/messages.php:388 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "函数定义中必须包含 RETURN 语句!" -#: js/messages.php:388 libraries/DisplayResults.php:4832 -#: libraries/DisplayResults.php:5091 libraries/Menu.php:347 -#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3709 -#: libraries/Util.php:3710 libraries/Util.php:4328 libraries/Util.php:4343 -#: libraries/Util.php:4360 libraries/config/messages.inc.php:254 +#: js/messages.php:389 libraries/DisplayResults.php:4850 +#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 +#: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 +#: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2448 -#: libraries/server_privileges.lib.php:2527 -#: libraries/server_privileges.lib.php:2873 -#: libraries/server_privileges.lib.php:3532 -#: libraries/server_status_monitor.lib.php:321 prefs_manage.php:306 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2875 +#: libraries/server_privileges.lib.php:3543 +#: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 msgid "Export" msgstr "导出" -#: js/messages.php:391 libraries/rte/rte_routines.lib.php:742 +#: js/messages.php:392 libraries/rte/rte_routines.lib.php:742 msgid "ENUM/SET editor" msgstr "ENUM/SET 编辑器" -#: js/messages.php:392 +#: js/messages.php:393 #, php-format msgid "Values for column %s" msgstr "字段 %s 的值" -#: js/messages.php:393 +#: js/messages.php:394 msgid "Values for a new column" msgstr "新字段的值" -#: js/messages.php:394 +#: js/messages.php:395 msgid "Enter each value in a separate field." msgstr "每个输入框一个值。" -#: js/messages.php:395 +#: js/messages.php:396 #, php-format msgid "Add %d value(s)" msgstr "添加 %d 个值" -#: js/messages.php:399 +#: js/messages.php:400 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "注意:如果文件包含多张表,它们将会被合并到一起。" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Hide query box" msgstr "隐藏查询框" -#: js/messages.php:404 +#: js/messages.php:405 msgid "Show query box" msgstr "显示查询框" -#: js/messages.php:405 libraries/Console.php:88 libraries/Console.php:217 -#: libraries/DisplayResults.php:3457 libraries/DisplayResults.php:4816 +#: js/messages.php:406 libraries/Console.php:88 libraries/Console.php:217 +#: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4834 #: libraries/Index.php:721 libraries/Util.php:727 libraries/Util.php:1238 -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:119 +#: libraries/server_user_groups.lib.php:121 #: libraries/server_variables.lib.php:242 #: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 msgid "Edit" msgstr "编辑" -#: js/messages.php:406 libraries/Console.php:89 libraries/DbSearch.php:360 -#: libraries/DisplayResults.php:3526 libraries/DisplayResults.php:4800 +#: js/messages.php:407 libraries/Console.php:89 libraries/DbSearch.php:360 +#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4818 #: libraries/central_columns.lib.php:854 #: libraries/central_columns.lib.php:1200 libraries/display_export.lib.php:227 -#: libraries/server_user_groups.lib.php:129 -#: libraries/sql_query_form.lib.php:416 libraries/tracking.lib.php:480 +#: libraries/server_user_groups.lib.php:131 +#: libraries/sql_query_form.lib.php:417 libraries/tracking.lib.php:490 #: setup/frames/index.inc.php:187 setup/frames/index.inc.php:295 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "删除" -#: js/messages.php:407 libraries/DisplayResults.php:915 -#: libraries/DisplayResults.php:923 +#: js/messages.php:408 libraries/DisplayResults.php:919 +#: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d 不是有效行数。" -#: js/messages.php:408 -#: libraries/controllers/table/TableSearchController.php:435 -#: libraries/controllers/table/TableSearchController.php:920 -#: libraries/sql.lib.php:193 tbl_change.php:159 +#: js/messages.php:409 +#: libraries/controllers/table/TableSearchController.php:432 +#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "浏览不相关的值" -#: js/messages.php:409 +#: js/messages.php:410 msgid "No auto-saved query" msgstr "不自动保存查询" -#: js/messages.php:410 +#: js/messages.php:411 #, php-format msgid "Variable %d:" msgstr "变量 %d:" -#: js/messages.php:413 libraries/normalization.lib.php:889 +#: js/messages.php:414 libraries/normalization.lib.php:889 msgid "Pick" msgstr "检出" -#: js/messages.php:414 +#: js/messages.php:415 msgid "Column selector" msgstr "列选择器" -#: js/messages.php:415 +#: js/messages.php:416 msgid "Search this list" msgstr "在该列表中搜索" -#: js/messages.php:417 +#: js/messages.php:418 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1869,360 +1876,360 @@ msgid "" msgstr "" "中心列表中没有列。请确保数据库 %s 的中心列表存在没有显示在当前表中的列。" -#: js/messages.php:420 +#: js/messages.php:421 msgid "See more" msgstr "显示更多" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Are you sure?" msgstr "请核实信息?" -#: js/messages.php:423 +#: js/messages.php:424 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "该操作有可能影响一些列的定义
你确认做此更改吗?" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "继续" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "添加主键" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "主键已添加。" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "等待进入下一步…" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "表“%s”标准化过程的第一步已经完成。" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "完成" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "标准化第二步(2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "完成" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "确认局部依赖" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "下面是已经选择的局部依赖:" -#: js/messages.php:440 +#: js/messages.php:441 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 "注意: a, b -> d,f 表示a和b两列结合起来决定d和f两列的值。" -#: js/messages.php:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "没有已选择的局部依赖!" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "显示基于表中数据可能的局部依赖" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "隐藏局部依赖列表" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "坐好啦!取决于数据大小和表的列数,这可能需要几秒钟。" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "步骤" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "下列操作将被执行:" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "将列 %s 从表 %s 中删除" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "创建下列表" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "标准化第三步(3NF)" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "确认传递依赖" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "下面是已经选择的依赖:" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "没有已选择的依赖!" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "保存" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "隐藏搜索条件" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "显示搜索条件" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "范围搜索" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "最大列数目:" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "最小列数目:" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "最小值:" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "最大值:" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "隐藏搜索替换条件" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "显示搜索替换条件" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "每个点代表一个数据行。" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "悬浮至一个点上会显示它的标签。" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "要放大,请用鼠标选择图表的一块区域。" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "点击重置缩放按钮以回到初始状态。" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "点击数据点以查看或编辑数据行。" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "拖拽右下角以改变图表大小。" -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "选择两列" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "选择两个不同的列" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "数据点内容" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "忽略" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "复制" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "点" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "线" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "多边形" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "几何体" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "内环" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "外环" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "是否要复制加密密匙?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "加密密匙" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "检测到您已经对页面做出了修改。因此在您放弃改动时会提示您确认" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "选择外键" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "选择外键" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "请选择主键或唯一键!" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "选择要显示的字段" -#: js/messages.php:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 msgid "Page name" msgstr "页面名称" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "保存页面" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "保存页面为" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "打开页面" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "删除页面" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "未命名" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "请选择一个页面" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "请输入有效页面名称" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "是否保存对该页面的更改?" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "成功删除页面" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "导出关系模式" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "已保存修改" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "给字段“%s”添加选项。" -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "已创建 %d 个对象。" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "提交" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "按 Esc 键取消编辑。" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "拖拽以调整顺序。" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "点此排序此列的结果。" -#: js/messages.php:563 +#: js/messages.php:564 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 " @@ -2232,26 +2239,26 @@ msgstr "" "
使用 Ctrl+Click 或者 Alt+Click (Mac:Shift+Option+Click )即可将列从 " "ORDER BY 语句中移除" -#: js/messages.php:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "点击以标记/取消标记。" -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "双击以复制字段名。" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "点击下箭头
以设置显示的字段。" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "显示全部" -#: js/messages.php:574 +#: js/messages.php:575 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." @@ -2259,131 +2266,102 @@ msgstr "" "该表没有唯一字段。在保存后单元格编辑、多选、编辑、复制和删除等功能可能无法正" "常使用。" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "请输入一个有效的十六进制字符串。只有0-9和A-F为有效字符。" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "您真的想要查看所有的行吗?若表过大可能会导致浏览器崩溃。" -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "原始长度" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "取消" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "已取消" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "成功" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "导入状态" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "将文件拖动至此" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "先选择数据库" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "您可以直接双击大部分
单元格以修改其值。" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "您可以直接点击大部分
单元格以修改其值。" -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "前往:" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "复制字段名。" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "在字段名上右键以复制到剪贴板。" -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "生成密码" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "生成" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "更多" -#: js/messages.php:623 +#: js/messages.php:624 msgid "Show panel" msgstr "显示导航面板" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "隐藏导航面板" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "显示隐藏的导航树节点。" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "与主面板链接" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "从主面板取消链接" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "在搜索项目后回车即可在服务器上所有的数据库中进行过滤" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "在搜索项目后回车以过滤在数据库中所有的 %s" - #: js/messages.php:632 -msgid "tables" -msgstr "表" - -#: js/messages.php:633 -msgid "views" -msgstr "视图" - -#: js/messages.php:634 -msgid "procedures" -msgstr "存储过程" - -#: js/messages.php:635 -msgid "events" -msgstr "事件" - -#: js/messages.php:636 -msgid "functions" -msgstr "函数" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "没有在历史记录中找到所请求的页面,页面可能已过期。" -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2391,47 +2369,47 @@ msgid "" msgstr "phpMyAdmin 有新版本了,请您考虑升级。最新的版本是 %s,于 %s 发布。" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ",最新稳定版本:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "已更新" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "新建视图" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "发送错误报告" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "提交错误报告" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "发生致命JavaScript错误。是否发送错误报告?" -#: js/messages.php:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "更改报告设置" -#: js/messages.php:660 +#: js/messages.php:652 msgid "Show report details" msgstr "显示报告详细信息" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "由于PHP设置的执行限制时间过低,您的导入未能完成!" -#: js/messages.php:667 +#: js/messages.php:659 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2440,58 +2418,58 @@ msgstr "" "警告:当前表单包含的字段多于 %d,受限于 PHP 中 max_input_vars 值的配置,该次" "提交有可能忽略其中一部分。" -#: js/messages.php:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "在服务上检测到错误!" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "请查看此窗口的底部。" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "忽略全部" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "正在提交您的设置,请耐心等待。" -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "再次执行该查询?" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "您真的要删除该书签吗?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "获取SQL调试信息时出错。" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s查询已执行%s次,耗时%s秒。" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "%s 个参数已传递" -#: js/messages.php:707 +#: js/messages.php:699 msgid "Show arguments" msgstr "显示注释" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "隐藏注释" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "用时:" -#: js/messages.php:711 +#: js/messages.php:703 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 " @@ -2500,291 +2478,291 @@ msgstr "" "您所使用的浏览器设置不支持本地存储或配额已达到限制,某些功能可能无法正常使" "用。在Safari浏览器里通常是由“私人浏览模式”导致的。" -#: js/messages.php:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "上个月" -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "下个月" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "今天" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "一月" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "二月" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "三月" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "四月" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "五月" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "六月" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "七月" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "八月" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "九月" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "十月" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "十一月" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "十二月" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "一月" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "二月" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "三月" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "四月" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "五月" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "六月" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "七月" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "八月" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "九月" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "十月" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "十一月" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "十二月" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "星期日" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "星期一" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "星期二" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "星期三" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "星期四" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "星期五" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "星期六" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "周日" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "周一" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "周二" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "周三" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "周四" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "周五" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "周六" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "日" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "一" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "二" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "三" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "四" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "五" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "六" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "周" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "calendar-year-month" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "年" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "时" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "分" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "秒" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "此字段为必须字段" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "请修改这个字段" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "请输入有效的Email地址" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "请输入一个有效的链接地址" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "请输入有效的日期" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "请输入有效的日期(ISO标准格式)" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "请输入一个有效的数字" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "请输入一个有效的银行卡号码" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "请输入纯数字" @@ -2792,41 +2770,41 @@ msgstr "请输入纯数字" msgid "Please enter the same value again" msgstr "请重输一遍" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "请输入不超过{0}位字符" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "请输入大于{0}位字符" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "请输入一个 {0} 和 {1} 字符长度之间的值" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "请输入 {0} 和 {1}之间的一个值" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "请输入一个小于或等于 {0} 的值" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "请输入一个大于或等于 {0} 的值" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "请输入有效的日期或时间" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "请输入一个有效的HEX值" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "错误" @@ -2911,11 +2889,12 @@ msgstr "重新查询" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -2956,7 +2935,7 @@ msgstr "在当前会话期间" msgid "Explain" msgstr "解析" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "性能分析" @@ -2990,8 +2969,8 @@ msgid "History" msgstr "历史" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3136,30 +3115,30 @@ msgstr "浏览设置,使按Shift+Enter键执行输入和插入新行作为永 msgid "Switch to dark theme" msgstr "切换到黑色主题" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "服务器没有响应(或本地服务器的套接字没有正确设置)。" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "服务器没有响应。" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "请检查数据库所在文件夹的权限。" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "详细…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "使用配置文件中定义的控制用户连接失败。" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3169,8 +3148,8 @@ msgstr "使用配置文件中定义的控制用户连接失败。" msgid "Ascending" msgstr "递增" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3311,8 +3290,8 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "在 %2$s 中找到 %1$s 个" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3354,183 +3333,184 @@ msgstr "全不选" msgid "Inside column:" msgstr "包含字段:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "保存已修改的数据" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "恢复字段顺序" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "过滤行" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "在表中搜索" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "首页" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" msgid "Previous" msgstr "上一页" -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "下一页" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "尾页" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "全部" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "行数:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "按索引排序" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "部分内容" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "完整内容" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "关联键" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 msgid "Display column for relations" msgstr "显示关联的字段" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "显示二进制内容" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "显示 BLOB 内容" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "隐藏浏览器转换" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "WKT 文本表达" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "WKB 二进制表达" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "已删除该行。" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "杀死" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "可能是近似值。参见[doc@faq3-11]常见问题 3.11[/doc]。" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "您的 SQL 语句已成功运行。" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "此视图的行数最少有这么多。请参阅%s档案%s。" -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "正在显示第 %1s - %2s 行" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "总数为 %1$d,查询包含 %2$d" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "共 %d 行" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "查询花费 %01.4f 秒。" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "选中项:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 msgid "Check all" msgstr "全选" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "打印预览" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "查询结果操作" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "显示图表" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "可视化 GIS 数据" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "找不到链接!" @@ -3622,19 +3602,19 @@ msgstr "没有已定义的索引!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "索引" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3643,24 +3623,24 @@ msgid "Action" msgstr "操作" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "键名" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "唯一" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "紧凑" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "基数" @@ -3668,8 +3648,8 @@ msgstr "基数" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3679,8 +3659,8 @@ msgid "Collation" msgstr "排序规则" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3696,15 +3676,15 @@ msgstr "已删除主键。" msgid "Index %s has been dropped." msgstr "已删除索引 %s。" -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "删除" @@ -3741,12 +3721,13 @@ msgstr "视图" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3754,7 +3735,7 @@ msgstr "表" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3763,8 +3744,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3772,41 +3753,41 @@ msgid "Search" msgstr "搜索" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "插入" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "权限" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "操作" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "追踪" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3817,16 +3798,16 @@ msgstr "触发器" msgid "Database seems to be empty!" msgstr "数据库是空的!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "查询" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "程序" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3834,20 +3815,20 @@ msgstr "程序" msgid "Events" msgstr "事件" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "设计器" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "文本框列" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "数据库" @@ -3856,33 +3837,33 @@ msgid "User accounts" msgstr "用户账户" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "二进制日志" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "复制" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "变量" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "字符集" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "引擎" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "插件" @@ -4169,7 +4150,7 @@ msgstr "无法将索引改为主键 (PRIMARY) !" msgid "No index parts defined!" msgstr "没有定义的索引部分!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "在 %1$s 创建外键时发生错误 (检查数据类型)" @@ -4561,12 +4542,10 @@ msgid "Analyze Explain at %s" msgstr "分析解释了%s" #: libraries/Util.php:1252 -#| msgid "Without PHP Code" msgid "Without PHP code" msgstr "无 PHP 代码" #: libraries/Util.php:1264 -#| msgid "Submit Query" msgid "Submit query" msgstr "提交查询" @@ -4614,37 +4593,37 @@ msgstr "功能 %s 受到一个已知缺陷的影响,参见 %s" msgid "Click to toggle" msgstr "点击切换" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "从计算机中上传:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "从网站服务器上传文件夹 %s 中选择:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "无法访问用于上传的文件夹。" -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "没有可上传的文件!" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "清空" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "执行" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "打印" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "用户" @@ -4803,8 +4782,8 @@ msgid "Add new column" msgstr "添加新字段" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -4865,19 +4844,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "您应升级到 %s %s 或更高版本。" -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "错误:令牌不符" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "企图覆盖 GLOBALS" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "检测到有利用漏洞的企图" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "检测到数字索引" @@ -5672,7 +5651,7 @@ msgid "Remember file name template" msgstr "记住文件名模板" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "添加自增值" @@ -5711,7 +5690,7 @@ msgstr "从phpMyAdmin设置存储中导出相关元数据" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "添加 %s" @@ -7053,7 +7032,6 @@ msgid "" msgstr "不使用 PDF 大纲功能请留空,推荐: [kbd]pma__table_coords[/kbd]。" #: libraries/config/messages.inc.php:765 -#| msgid "PDF schema: table coordinates" msgid "Designer and PDF schema: table coordinates" msgstr "设计器与PDF 大纲: 数据表并发" @@ -7269,7 +7247,6 @@ msgid "Show field types" msgstr "显示字段类型" #: libraries/config/messages.inc.php:868 -#| msgid "Display the function fields in edit/insert mode" msgid "Display the function fields in edit/insert mode." msgstr "在编辑/插入模式中显示函数列." @@ -7310,13 +7287,11 @@ msgid "Show SQL queries" msgstr "显示 SQL 查询" #: libraries/config/messages.inc.php:884 -#| msgid "" -#| "Defines whether the query box should stay on-screen after its submission" msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "查询框在提交后是否依然显示在屏幕上。" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "保留查询框" @@ -7329,8 +7304,6 @@ msgid "Show statistics" msgstr "显示统计" #: libraries/config/messages.inc.php:892 -#| msgid "" -#| "Mark used tables and make it possible to show databases with locked tables" msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "将已锁定的数据表在数据库中显示为使用中." @@ -7359,7 +7332,6 @@ msgstr "" "警告。" #: libraries/config/messages.inc.php:910 -#| msgid "Login cookie validity" msgid "Login cookie validity warning" msgstr "登录cookie 有效期警告" @@ -7606,100 +7578,33 @@ msgstr "微软 Word 2000" msgid "OpenDocument Text" msgstr "OpenOffice 文档" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "收藏夹数量已达上限!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "已清空表 %s。" -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "已删除视图 %s。" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "已删除表 %s。" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "收藏夹数量已达上限!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "未知" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -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.php:250 -msgid "No column selected." -msgstr "没有选中任何列。" - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "已成功移动字段。" - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "已成功修改表 %1$s。" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "查询错误" - -#: libraries/controllers/TableStructureController.php:967 -#, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "已成功修改表 %1$s。已调整权限。" - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "修改" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "索引" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "空间" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "全文搜索" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "非重复值 (DISTINCT)" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -7713,6 +7618,14 @@ msgstr "在将表格转为图表时没有找到数字类型的列。" msgid "No data to display" msgstr "没有可显示数据" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "已成功修改表 %1$s。" + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "显示字段已成功更新。" @@ -7723,22 +7636,80 @@ msgstr "显示字段已成功更新。" msgid "Internal relations were successfully updated." msgstr "成功更新内联关系。" -#: libraries/controllers/table/TableSearchController.php:844 -#| msgid "Table Search" +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "普通搜索" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 #, fuzzy #| msgid "Zoom Search" msgid "Zoom search" msgstr "缩放搜索" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "查找和替换" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "名称 '%s' 是一个MySQL 保留关键字。" + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "没有选中任何列。" + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "已成功移动字段。" + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "查询错误" + +#: libraries/controllers/table/TableStructureController.php:975 +#, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "已成功修改表 %1$s。已调整权限。" + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "修改" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "索引" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "空间" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "全文搜索" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "非重复值 (DISTINCT)" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -7748,7 +7719,7 @@ msgstr "缺少 %s 扩展。请检查 PHP 配置。" msgid "possible deep recursion attack" msgstr "可能的深度递归攻击" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "无更改" @@ -7766,7 +7737,6 @@ msgid "" msgstr "phpMyAdmin不推荐使用mysql扩展。请考虑使用mysqli扩展代替。" #: libraries/db_designer.lib.php:119 -#| msgid "Could not load import plugins, please check your installation!" msgid "Could not load schema plugins, please check your installation!" msgstr "无法加载schema插件,请检查您的安装!" @@ -7816,7 +7786,7 @@ msgstr "创建" msgid "Create database:" msgstr "新建数据库:" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "无权限" @@ -8004,7 +7974,6 @@ msgid "Select database" msgstr "选择数据库" #: libraries/display_export.lib.php:943 -#| msgid "Select Tables" msgid "Select table" msgstr "选择表" @@ -8095,7 +8064,6 @@ msgid "File uploads are not allowed on this server." msgstr "此服务器禁止了文件上传。" #: libraries/display_import.lib.php:287 -#| msgid "Partial Import:" msgid "Partial import:" msgstr "部分导入:" @@ -8505,64 +8473,63 @@ msgid "Dump has been saved to file %s." msgstr "已保存转储到文件 %s 中。" #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL 返回的查询结果为空 (即零行)。" -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "[发生 ROLLBACK.]" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "下列结构被创建或修改。你可以:" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "请通过点击结构的名称来查看它的内容。" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "点击相应的“选项”链接修改设置。" -#: libraries/import.lib.php:1261 -#| msgid "Edit structure by following the \"Structure\" link" +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "请通过点击 \"结构\" 链接来编辑结构." -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "转到数据库: %s" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "编辑 %s 的设置" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "转到表: %s" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "%s 的结构" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "转到视图: %s" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "只能预览单一数据表的UPDATE和DELETE查询。" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 #, fuzzy msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " @@ -8571,7 +8538,7 @@ msgstr "" "回滚操作需要数据表采用支持事务处理的存储引擎,且SQL查询仅限INSERT、UPDATE、" "DELETE和REPLACE。" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "在第 %s 个字段创建索引" @@ -8594,73 +8561,71 @@ msgstr "函数" msgid "Binary" msgstr "二进制" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "因长度问题,
该字段可能无法编辑。" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "二进制 - 无法编辑" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "或" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "网站服务器上传文件夹:" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "编辑/插入" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "继续插入 %s 行" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "然后" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "以新行插入" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "以新行插入 (忽略错误)" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "显示插入语句" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "返回上一页" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "插入新数据" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "返回到本页" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "编辑下一行" -#: libraries/insert_edit.lib.php:1541 -#| msgid "" -#| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" +#: libraries/insert_edit.lib.php:1548 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "按 TAB 键跳到下一个数值,或 CTRL+方向键 作随意移动." -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -8672,11 +8637,11 @@ msgstr "按 TAB 键跳到下一个数值,或 CTRL+方向键 作随意移动." msgid "Value" msgstr "值" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "显示 SQL 查询" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "插入的行 id: %1$d" @@ -8692,35 +8657,35 @@ msgstr "无" msgid "Convert to Kana" msgstr "转换为假名" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "成功!" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "修改表前缀:" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "复制表为新前缀:" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "从" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "到" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "添加表前缀:" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "添加前缀" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "您真的要执行下面的查询吗?" @@ -8938,8 +8903,8 @@ msgstr "存储过程:" msgid "Views:" msgstr "视图:" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "显示" @@ -8976,19 +8941,15 @@ msgid_plural "%s results found" msgstr[0] "找到 %s 条结果" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" -msgstr "根据名称或正则表达式筛选数据库" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 -#| msgid "Clear Fast Filter" msgid "Clear fast filter" msgstr "清除快速筛选数据" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "根据名称或正则表达式筛选" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "全部折叠" @@ -9383,7 +9344,7 @@ msgstr "将数据库改名为" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9392,7 +9353,7 @@ msgstr "您的权限不足以执行此操作,请参考说明文档了解详情 #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "调整权限" @@ -9410,18 +9371,18 @@ msgstr "删除数据库" msgid "Drop the database (DROP)" msgstr "删除数据库 (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "仅结构" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "结构和数据" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "仅数据" @@ -9435,7 +9396,7 @@ msgstr "复制数据库到" msgid "CREATE DATABASE before copying" msgstr "复制前创建数据库 (CREATE DATABASE)" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "添加约束" @@ -9475,161 +9436,161 @@ msgstr "存储引擎" msgid "Change all column collations" msgstr "" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "将数据表复制到(数据库名.数据表名)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "切换到复制的数据表" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "表维护" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "分析表" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "检查表" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 #, fuzzy #| msgid "Check table" msgid "Checksum table" msgstr "检查表" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "整理表碎片" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "已强制更新表 %s。" -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "刷新表 (FLUSH)" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "优化表" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "修复表" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "删除数据或数据表" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "清空数据表 (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "删除数据表 (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "分析" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "检查" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "优化" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "重建" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "修复" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 #, fuzzy #| msgid "Close" msgid "Coalesce" msgstr "关闭" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "分区维护" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "分区 %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "删除分区" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "检查引用完整性:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "目标数据表不能为源数据表!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "目标数据表不能为源数据表!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "已将数据表 %s 移动到 %s。已调整权限。" -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "已将数据表 %s 复制为 %s。已调整权限。" -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "已将数据表 %s 移动到 %s。" -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "已将数据表 %s 复制为 %s。" -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "表名不能为空!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "该格式没有选项" @@ -9799,7 +9760,7 @@ msgstr "数据转储选项" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "转存表中的数据" @@ -9823,21 +9784,21 @@ msgstr "定义" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "表的结构" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "视图结构" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "替换视图以便查看" @@ -9943,7 +9904,7 @@ msgid "Database:" msgstr "数据库" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10049,7 +10010,7 @@ msgid "Data creation options" msgstr "数据创建选项" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "插入之前先把表清空(truncate)" @@ -10132,8 +10093,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10141,89 +10102,89 @@ msgstr "" msgid "It appears your database uses functions;" msgstr "" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 #, fuzzy #| msgid "Metadata Headers" msgid "Metadata" msgstr "元数据头" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, fuzzy, php-format #| msgid "Metadata Headers" msgid "Metadata for %s" msgstr "元数据头" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "创建时间:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "最后更新:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "最后检查:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "使用中" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "限制导出的表" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "限制表" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "限制导出的表" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "于下列表:" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "在导出的表使用AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "使用表AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "MIME 类型表" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "表的关联" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "视图结构" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "读取数据时发生错误:" @@ -10479,9 +10440,9 @@ msgstr "关系大纲" msgid "Table of contents" msgstr "目录" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "额外" @@ -10692,61 +10653,61 @@ msgstr "将文本以 SQL 语法高亮显示。" msgid "Formats text as XML with syntax highlighting." msgstr "将文本以 SQL 语法高亮显示。" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "错误:关系已存在。" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "已添加外键关联" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "错误:关系未添加。" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "错误:关系功能被禁用!" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "已添加内联关系" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "错误:关系未添加。" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "已添加外键关联" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "错误:关系未添加。" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "错误:关系未添加。" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -10800,80 +10761,80 @@ msgstr "浏览器转换" msgid "Please see the documentation on how to update your column_info table. " msgstr "请参见文档中关于如何更新您的 column_comments 表。" -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "SQL 查询书签" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL 历史" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "持久最近使用的表" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 #, fuzzy #| msgid "Persistent recently used tables" msgid "Persistent favorite tables" msgstr "持久最近使用的表" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "持久表界面设置" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "用户偏好" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 #, fuzzy #| msgid "Configuration: %s" msgid "Configurable menus" msgstr "配置: %s" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 #, fuzzy #| msgid "Reload navigation frame" msgid "Hide/show navigation items" msgstr "刷新导航框架" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 #, fuzzy #| msgid "Remember table's sorting" msgid "Remembering Designer Settings" msgstr "记录表排序" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 #, fuzzy #| msgid "Invalid export type" msgid "Saving export templates" msgstr "导出类型无效" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "快速设置高级功能:" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, fuzzy, php-format #| msgid "" #| "Create the needed tables with the examples/create_tables.sql." msgid "Create the needed tables with the %screate_tables.sql." msgstr "通过 examples/create_tables.sql 创建必需的数据表。" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "创建一个用户并授予其访问上一步操作中创建的数据表的权限。" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -10881,15 +10842,15 @@ msgstr "" "在配置文件 (config.inc.php) 中启用高级功能,参见 config." "sample.inc.php 中的范例。" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "请重新登录 phpMyAdmin 以加载新配置并使其生效。" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "无说明" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -10898,7 +10859,7 @@ msgstr "" "您没有权限建立名为“phpmyadmin”的数据库。您可能需要到任一数据库的“操作”页面设" "置 phpMyAdmin的储存位置 。" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -10906,14 +10867,14 @@ msgid "" "configuration storage there." msgstr "丢失 phpMyAdmin 高级功能数据表" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "丢失 phpMyAdmin 高级功能数据表" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -11108,8 +11069,8 @@ msgstr "用户名" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "用户名" @@ -11117,7 +11078,7 @@ msgstr "用户名" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "密码" @@ -11776,7 +11737,7 @@ msgstr[0] "已成功删除 %1$d 个数据库。" msgid "Plugin" msgstr "插件" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "版本" @@ -11784,100 +11745,96 @@ msgstr "版本" msgid "Author" msgstr "作者" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "授权" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "已禁用" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "无权限。" -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "除了授权 (GRANT) 以外的所有权限。" #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "允许读取数据。" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "允许插入和替换数据。" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "允许修改数据。" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "允许删除数据。" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "允许创建新数据库和数据表。" #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "允许删除数据库和数据表。" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "允许重新载入服务器设置并刷新服务器的缓存。" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "允许关闭服务器。" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 #, fuzzy #| msgid "Allows viewing processes of all users" msgid "Allows viewing processes of all users." msgstr "允许查看所有用户的进程" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "允许从文件中导入数据以及将数据导出至文件。" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "在此版本的 MySQL 中无效。" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "允许创建和删除索引。" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "允许修改现有数据表的结构。" #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "允许访问完整的数据库列表。" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -11887,41 +11844,41 @@ msgstr "" "管理操作是必需的。" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "允许创建临时表。" #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "允许锁定当前线程的表。" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "回复附属者所需。" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "用户有权询问附属者/控制者在哪里。" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "允许创建视图。" #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 #, fuzzy #| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." msgstr "允许为事件触发器设置事件" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 #, fuzzy #| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." @@ -11929,27 +11886,27 @@ msgstr "允许创建和删除触发器" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "允许执行 SHOW CREATE VIEW 查询。" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "允许创建存储过程。" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "允许修改或删除储存过程。" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "允许创建、删除和重命名用户账户。" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "允许运行存储过程。" @@ -11961,8 +11918,8 @@ msgstr "无" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12006,31 +11963,31 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "注意:若将这些选项设为 0(零) 即不限制。" #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "限制用户每小时可发送到服务器的查询数。" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "限制用户每小时可执行的修改任何数据表或数据库的命令数。" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "限制用户每小时打开的新连接数。" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "限制该用户的并发连接数。" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12038,7 +11995,7 @@ msgid "Routine" msgstr "程序" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "允许添加用户和权限而不重新载入权限表。" @@ -12057,14 +12014,14 @@ msgstr "允许运行存储过程。" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "按表指定权限" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -12076,7 +12033,7 @@ msgid "Administration" msgstr "管理" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "全局权限" @@ -12087,15 +12044,15 @@ msgid "Global" msgstr "全局" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "按数据库指定权限" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "允许创建新数据表。" -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "允许删除数据表。" @@ -12118,7 +12075,7 @@ msgid "Native MySQL Authentication" msgstr "Cookie 认证" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "登录信息" @@ -12143,8 +12100,8 @@ msgstr "用户名" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 #, fuzzy #| msgid "Log name" msgid "Host name" @@ -12166,222 +12123,222 @@ msgstr "认证" msgid "Password Hashing Method" msgstr "密码加密方式:" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "%s 的密码已修改。" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "您已撤销 %s 的权限。" -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 msgid "Add user account" msgstr "新增用户账户" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 msgid "Database for user account" msgstr "用户账户数据库" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "创建与用户同名的数据库并授予所有权限。" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "给以 用户名_ 开头的数据库 (username\\_%) 授予所有权限。" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "授予数据库“%s”的所有权限。" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "用户可以访问“%s”" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "用户已添加。" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "授权" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "未找到用户。" -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "任意" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "全局" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "按数据库指定" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "通配符" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "按数据库指定" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 msgid "Edit privileges" msgstr "修改权限" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "撤销" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "编辑服务器" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… 保留旧用户。" -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… 从用户表中删除旧用户。" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… 撤销旧用户的所有权限,然后删除旧用户。" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… 从用户表中删除旧用户,然后重新载入权限。" -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "修改登录信息/复制用户账户" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "创建具有相同权限的新用户账户然后 …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "按字段指定权限" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 msgid "Remove selected user accounts" msgstr "删除选中的用户账户" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "撤销用户所有权限,然后删除用户。" -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "删除与用户同名的数据库。" -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "没有选择要删除的用户!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "重新载入权限" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "已成功删除选中的用户。" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "您已更新了 %s 的权限。" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "正在删除 %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "已成功重新载入权限。" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "用户 %s 己存在!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "%s 的权限" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "用户" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "新建" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 msgid "Edit privileges:" msgstr "修改权限:" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "用户账户" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "注意:您正在尝试修改您正在使用的账号的权限。" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "用户账户概况" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12393,7 +12350,7 @@ msgstr "" "将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权" "限%s。" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12405,11 +12362,11 @@ msgstr "" "内容将可能与服务器使用的用户权限有异。在这种情况下,应当重新载入权限表,但您" "没有RELOAD权限。" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "在权限表内找不到选中的用户。" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "您已添加了一个新用户。" @@ -12651,33 +12608,33 @@ msgstr "说明/设置" msgid "Done dragging (rearranging) charts" msgstr "完成排列/编辑图表" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 #, fuzzy #| msgid "Enable highlighting" msgid "Enable charts dragging" msgstr "启用高亮" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "刷新频率" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "每行图表个数" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "图表排列" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" "图表排列存储在浏览器本地存储。如果你设置了一个复杂的排列,请导出该设置。" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "恢复默认" @@ -12734,7 +12691,7 @@ msgid "Statements" msgstr "说明" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "查询数量" @@ -12759,17 +12716,17 @@ msgstr "显示原始值" msgid "Related links:" msgstr "相关链接:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "因客户端没有关闭连接而中止的连接数。" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "尝试连接到 MySQL 服务器但失败的连接数。" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -12778,16 +12735,16 @@ msgstr "" "因事务使用的临时二进制日志缓存超出 binlog_cache_size 的设置而使用临时文件存储" "的数量。" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "事务所用的临时二进制日志缓存的数量。" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "尝试连接到 MySQL 服务器的连接数 (不论成功或失败) 。" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12797,17 +12754,17 @@ msgstr "" "服务器执行语句时自动在磁盘上创建的临时表的数量。如果 Created_tmp_disk_tables " "很大,你可以增加 tmp_table_size 的值,让服务器使用内存来存储临时表而非磁盘。" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "mysqld 已创建的临时文件的数量。" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "服务器执行语句时自动在内存中创建的临时表的数量。" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -12815,29 +12772,29 @@ msgstr "" "发生错误的延迟插入 (INSERT DELAYED) 行数 (可能是因为在唯一字段中存在重复" "值) 。" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "正在使用的延迟插入处理线程的数量。每张使用延迟插入的表都有自己的线程。" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "延迟插入已写入的行数。" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "已执行的强制更新 (FLUSH) 语句数。" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "已执行的内部提交 (COMMIT) 语句数。" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "从表中删除行的次数。" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -12846,7 +12803,7 @@ msgstr "" "如果知道一张表的名字,MySQL 服务器可以询问 NDB 集群存储引擎,这被称为“发现”。" "Handler_discovery 表明了一张表被发现的次数。" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -12855,14 +12812,14 @@ msgstr "" "读取一个索引入口点的次数。如果该值很大,说明你的服务器执行了很多完整索引扫" "描。例如,假设字段 col1 已经建立了索引,然后执行 SELECT col1 FROM foo 。" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" "根据索引读取行的请求数。如果该值很大,说明你的查询和表都建立了很好的索引。" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -12871,7 +12828,7 @@ msgstr "" "根据索引顺序读取下一行的请求数。如果你在查询一个已索引的字段且限制了范围,或" "进行完整表扫描,该值将会不断增长。" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -12879,7 +12836,7 @@ msgstr "" "根据索引顺序读取上一行的请求数。这种读取方式通常用于优化带有 ORDER BY … DESC " "的查询。" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12889,7 +12846,7 @@ msgstr "" "根据固定位置读取行的请求数。如果你执行很多需要排序的查询,该值会很高。你可能" "有很多需要完整表扫描的查询,或者你使用了不正确的索引用来多表查询。" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12899,35 +12856,35 @@ msgstr "" "从数据文件中读取行的请求数。如果你在扫描很多表,该值会很大。通常情况下这意味" "着你的表没有做好索引,或者你的查询语句没有使用好索引字段。" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "内部回滚 (ROLLBACK) 语句数。" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "表中更新行的请求数。" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "表中插入行的请求数。" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "非空页数 (含脏页) 。" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "当前脏页数。" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "请求更新的缓冲池页数。" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "空闲页数。" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -12936,7 +12893,7 @@ msgstr "" "InnoDB 缓冲池中锁定页的数量。这些页是正在被读取或写入的,或者是因其他原因不能" "被刷新或删除的。" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12947,11 +12904,11 @@ msgstr "" "公式计算: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data 。" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "缓冲池总大小 (单位:页)。" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -12959,24 +12916,24 @@ msgstr "" "InnoDB 初始化的“随机”预读数。这通常会在对一张表进行大范围的随机排序查询时发" "生。" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" "InnoDB 初始化的顺序预读数。这会在 InnoDB 执行一个顺序完整表扫描时发生。" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB 完成的逻辑读请求数。" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "InnoDB 进行逻辑读取时无法从缓冲池中获取而执行单页读取的次数。" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12988,85 +12945,85 @@ msgstr "" "必要先等待页被刷新。该计数器统计了这种等待的数量。如果缓冲池大小设置正确,这" "个值应该会很小。" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "写入 InnoDB 缓冲池的次数。" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "fsync() 总操作的次数。" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "当前挂起 fsync() 操作的数量。" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "当前挂起的读操作数。" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "当前挂起的写操作数。" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "读取的总数据量 (单位:字节)。" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "数据读取总数。" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "数据写入总数。" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "写入的总数据量 (单位:字节)。" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "以双写入操作写入的页数。" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "已经执行的双写入次数。" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "因日志缓存太小而必须等待其被写入所造成的等待数。" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "日志写入请求数。" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "日志物理写入次数。" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "使用 fsync() 写入日志文件的次数。" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "当前挂起的 fsync 日志文件数。" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "当前挂起的日志写入数。" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "写入日志文件的字节数。" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "创建的页数。" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -13074,79 +13031,79 @@ msgstr "" "编译的 InnoDB 页大小 (默认 16KB)。许多值都以页为单位进行统计,页大小可以很方" "便地将这些值转化为字节数。" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "读取的页数。" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "写入的页数。" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "正在等待行锁的数量。" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "等待获得行锁的平均时间 (单位:毫秒)。" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "等待获得行锁的总时间 (单位:毫秒)。" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "等待获得行锁的最大时间 (单位:毫秒)。" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "等待行锁的次数。" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "从 InnoDB 表中删除的行数。" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "插入到 InnoDB 表中的行数。" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "从 InnoDB 表中读取的行数。" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB 中更新的行数。" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" "键缓存中还没有被写入到磁盘的键块数。该值过去名为 Not_flushed_key_blocks 。" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "键缓存中未使用的块数。你可以根据这个值判断当前使用了多少键缓存。" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "键缓存中已经使用的块数。该值指示在某个时刻使用了最多块数的数量。" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "已用键缓存百分比(计算值)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "从缓存中读取键块的请求次数。" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -13155,27 +13112,27 @@ msgstr "" "从磁盘中物理读取键块的次数。如果 Key_reads 很大,则说明您的 key_buffer_size " "可能设置得太小了。缓存缺失率可以由 Key_reads/Key_read_requests 计算得出。" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 #, fuzzy msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "由物理读取数与读取请求数相比计算出的键缓存未命中率(计算值)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "将一个键块写入缓存的请求数。" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "将键块物理写入到磁盘的次数。" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "物理写入数与写入请求数的百分比比值(计算值)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13184,35 +13141,35 @@ msgstr "" "最后编译的查询的总开销由查询优化器计算得出,可用于比较使用不同的查询语句进行" "相同的查询时的效率差异。默认值0表示还没有查询被编译。" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "自服务器启动以来的最高并发连接数。" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "等待写入延迟插入队列的行数。" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "已经打开的表个数。如果该值很大,则说明表缓冲大小可能设置过小。" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "打开的文件个数。" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "打开的流个数 (主要用于日志记录)。" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "打开的数据表个数。" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13221,19 +13178,19 @@ msgstr "" "查询缓存中的空闲内存块。过多的空闲内存块可能产生碎片,可通过执行 FLUSH QUERY " "CACHE 语句解决。" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "查询缓存中空闲的内存总数。" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "缓存命中数。" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "加入到缓存的查询数。" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13243,7 +13200,7 @@ msgstr "" "为缓存新的查询而被删除的已缓存查询的个数,由最近最少使用算法 (LRU) 确定应删除" "哪个已缓存的查询。该信息可帮助您调整查询缓存大小。" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13251,19 +13208,19 @@ msgstr "" "未缓存的查询数 (包括不能被缓存,或因为 query_cache_type 的设置而没有被缓存的" "查询)。" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "在缓存中注册的查询数。" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "查询缓存中的总块数。" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "失败保护器的状态 (尚未应用)。" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -13271,11 +13228,11 @@ msgstr "" "没有使用索引的多表查询数。如果该值不为0,您应该仔细检查是否已经为表建立了适当" "的索引。" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "使用在关联表上使用范围搜索的多表查询的数量。" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -13283,7 +13240,7 @@ msgstr "" "没有使用索引但在每行之后检查索引使用的多表查询数。(如果该值不为 0,您应该仔细" "检查是否已经为表建立了适当的索引。)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13291,36 +13248,36 @@ msgstr "" "在第一张表上使用范围查询的多表查询数。(即使该值很大,通常也不会有致命的影" "响。)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "在第一张表上进行了完整表扫描的多表查询数。" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "当前由从 SQL 线程打开的临时表的数量。" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "从 SQL 线程总共重试事务复制数。" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "如果该值为 ON,则这台服务器是一台已经连接到主服务器的从服务器。" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "使用了比 slow_launch_time 更多的时间来启动的线程数量。" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "使用了比 long_query_time 更多时间的查询数。" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13329,23 +13286,23 @@ msgstr "" "排序算法使用归并的次数。如果该值很大,您应该考虑增加系统变量 " "sort_buffer_size 的值。" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "局部范围完成的排序次数。" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "排序的行数。" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "扫描表完成的排序次数。" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "立即需要锁定表的次数。" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13355,7 +13312,7 @@ msgstr "" "无法立即获得锁定表而必须等待的次数。如果该值很高,且您遇到了性能方面的问题," "则应该首先检查您的查询语句,然后使用复制操作来分开表。" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13364,11 +13321,11 @@ msgstr "" "线程缓存中线程的数量。缓存命中率可以由 Threads_created/Connections 计算得出。" "如果该值是红色的,则应该增加 thread_cache_size 的值。" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "当前打开的连接数。" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13379,11 +13336,11 @@ msgstr "" "thread_cache_size 的值。(如果线程状况良好,这么做通常并不会带来显著的性能提" "升。)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "线程缓存命中率 (计算值)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "非睡眠状态的线程数量。" @@ -13392,77 +13349,77 @@ msgstr "非睡眠状态的线程数量。" msgid "Users of '%s' user group" msgstr "" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 #, fuzzy #| msgid "Users" msgid "User groups" msgstr "用户" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 #, fuzzy #| msgid "Server version" msgid "Server level tabs" msgstr "服务器版本" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 #, fuzzy #| msgid "Database server" msgid "Database level tabs" msgstr "数据库服务器" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 #, fuzzy #| msgid "Table comments" msgid "Table level tabs" msgstr "表注释" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 #, fuzzy #| msgid "Views" msgid "View users" msgstr "视图" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 #, fuzzy #| msgid "Add user" msgid "Add user group" msgstr "添加用户" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 #, fuzzy #| msgid "No privileges." msgid "User group menu assignments" msgstr "无权限。" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 #, fuzzy #| msgid "Column names: " msgid "Group name:" msgstr "字段名: " -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 #, fuzzy #| msgid "Server version" msgid "Server-level tabs" msgstr "服务器版本" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 #, fuzzy #| msgid "Database server" msgid "Database-level tabs" msgstr "数据库服务器" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 #, fuzzy #| msgid "Table comments" msgid "Table-level tabs" @@ -13528,21 +13485,17 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -13613,132 +13566,132 @@ msgstr "已创建事件 %1$s 。" msgid "Variable name was expected." msgstr "表名称模板" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "于表开头" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 #, fuzzy #| msgid "Unexpected characters on line %s." msgid "Unexpected token." msgstr "第 %s 行有不应出现的字符。" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 #, fuzzy #| msgid "The number of tables that are open." msgid "The name of the entity was expected." msgstr "打开的数据表个数。" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "已删除该行。" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "数据文件增长大小" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 #, fuzzy #| msgid "Other" msgid "Order" msgstr "其它" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "起始时间" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "总时间:" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "时间" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "关闭" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "时间" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "将此 SQL 查询加为书签" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 #, fuzzy #| msgid "Label" msgid "Label:" msgstr "标签" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "让所有用户均可访问此书签" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 #, fuzzy #| msgid "Bookmark not created" msgid "Bookmark not created!" msgstr "未创建书签" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "使用书签 \"%s\" 作为默认的查询。" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "显示为 PHP 代码" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Grid edit, checkbox, Edit, " @@ -13748,7 +13701,7 @@ msgid "" "Edit, Copy and Delete features are not available. %s" msgstr "该表没有唯一字段。单元格编辑、复选框、编辑、复制和删除无法正常使用。" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Grid edit, checkbox, Edit, " @@ -13758,7 +13711,7 @@ msgid "" "and Delete features may result in undesired behavior. %s" msgstr "该表没有唯一字段。单元格编辑、复选框、编辑、复制和删除无法正常使用。" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "数据表 `%s` 的索引存在问题" @@ -13789,29 +13742,29 @@ msgstr "" msgid "Bind parameters" msgstr "参数无效!" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 #, fuzzy #| msgid "Bookmark this SQL query" msgid "Bookmark this SQL query:" msgstr "将此 SQL 查询加为书签" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "替换现有的同名书签" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "语句定界符" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "在此再次显示此查询" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "仅查看" @@ -13856,176 +13809,176 @@ msgstr "禁用 %s 的追踪" msgid "Deactivate now" msgstr "立即禁用" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "创建" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "更新" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 #, fuzzy #| msgid "Create version" msgid "Delete version" msgstr "创建版本" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "追踪报告" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "结构快照" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "启用" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "禁用" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "追踪语句" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "从报告中删除追踪数据" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "无数据" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, fuzzy, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "显示自 %2$s 起至 %3$s 用户 %4$s 执行的 %1$s %5$s" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "SQL 转储 (文件下载)" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "SQL 转储" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "该选项将导致当前表的结构和数据被替换。" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "执行 SQL 语句" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "导出为 %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "数据操作语句" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "数据定义语句" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "日期" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "用户名" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "版本 %s 的快照 (SQL 代码)" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "无" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "追踪数据定义删除成功" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "追踪数据操作删除成功" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "你可以通过创建一个临时数据库来执行这个转储。请确保你有足够的权限。" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "如果你不需要,请注释以下两行。" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL 语句已导出。请复制保存或运行它。" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "`%s` 的追踪报告" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "对%1$s 的追踪从版本 %2$s 已启用。" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "对%1$s 的追踪从版本 %2$s 已停用。" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, fuzzy, php-format #| msgid "Create version %1$s of %2$s" msgid "Version %1$s of %2$s was deleted." msgstr "为 %2$s 创建版本 %1$s" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "已创建版本 %1$s,%2$s 的追踪已启用。" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "未追踪的表" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "追踪表" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "已追踪的表" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "最新版本" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "删除追踪数据" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "版本" @@ -14033,11 +13986,11 @@ msgstr "版本" msgid "Manage your settings" msgstr "管理我的设置" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "设置已保存。" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -14139,7 +14092,7 @@ msgstr "无数据库" msgid "View dump (schema) of databases" msgstr "查看数据库的转存(大纲)" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -14164,7 +14117,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin 无法杀死线程 %s。该线程可能已经关闭。" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "" @@ -15061,43 +15014,49 @@ msgstr "散点图" msgid "Stacked" msgstr "堆叠" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "图表标题" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "横坐标:" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "图例项(系列):" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "横坐标标签:" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "横值" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "纵坐标标签:" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "纵轴值" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "图例项(系列)为一个字段中的数据而非字段名" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "图例项(系列)所在字段:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 msgid "Value Column:" msgstr "数据值字段:" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 #, fuzzy #| msgid "Save as file" msgid "Save chart as image" @@ -15158,54 +15117,55 @@ msgstr "注释:" msgid "Drag to reorder" msgstr "拖拽以调整顺序。" -#: templates/table/relation/common_form.phtml:7 -msgid "Internal relations" -msgstr "内联" - -#: templates/table/relation/common_form.phtml:11 -msgid "Internal relation" -msgstr "内联" - -#: templates/table/relation/common_form.phtml:14 -msgid "" -"An internal relation is not necessary when a corresponding FOREIGN KEY " -"relation exists." -msgstr "不需要一个和外键关系一致的内联关系。" - -#: templates/table/relation/common_form.phtml:37 +#: templates/table/relation/common_form.phtml:6 #, fuzzy #| msgid "Foreign key constraint" msgid "Foreign key constraints" msgstr "外键约束" -#: templates/table/relation/common_form.phtml:40 +#: templates/table/relation/common_form.phtml:9 #, fuzzy #| msgid "Action" msgid "Actions" msgstr "操作" -#: templates/table/relation/common_form.phtml:41 +#: templates/table/relation/common_form.phtml:10 #, fuzzy #| msgid "Constraints for table" msgid "Constraint properties" msgstr "限制表" -#: templates/table/relation/common_form.phtml:44 +#: templates/table/relation/common_form.phtml:13 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:49 +#: templates/table/relation/common_form.phtml:18 msgid "Foreign key constraint" msgstr "外键约束" -#: templates/table/relation/common_form.phtml:83 +#: templates/table/relation/common_form.phtml:60 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "添加约束" -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 +msgid "Internal relations" +msgstr "内联" + +#: templates/table/relation/common_form.phtml:80 +msgid "Internal relation" +msgstr "内联" + +#: templates/table/relation/common_form.phtml:83 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "不需要一个和外键关系一致的内联关系。" + +#: templates/table/relation/common_form.phtml:111 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -15344,8 +15304,7 @@ msgid "at beginning of table" msgstr "于表开头" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 -#| msgid "Partition %s" +#: templates/table/structure/display_structure.phtml:201 msgid "Partitions" msgstr "分区" @@ -15392,7 +15351,7 @@ msgstr "已分区" msgid "Edit partitioning" msgstr "删除分区" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "编辑视图" @@ -16464,18 +16423,14 @@ msgid "Too many connections are aborted." msgstr "太多连接已中止。" #: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 -#| msgid "" -#| "Connections are usually aborted when they cannot be authorized. This article might help you track down " -#| "the source." msgid "" "Connections are usually aborted when they cannot be authorized. This article might help you track down the source." msgstr "" -"连接通常因为无法被授权而中止。这篇文章对您追踪来源可能有所帮助。" +"连接通常因为无法被授权而中止。这篇文章" +"对您追踪来源可能有所帮助。" #: libraries/advisory_rules.txt:397 #, php-format @@ -16677,6 +16632,33 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert 被设为 0" +#~ msgid "To filter all databases on server, press Enter after a search term" +#~ msgstr "在搜索项目后回车即可在服务器上所有的数据库中进行过滤" + +#~ msgid "To filter all %s in database, press Enter after a search term" +#~ msgstr "在搜索项目后回车以过滤在数据库中所有的 %s" + +#~ msgid "tables" +#~ msgstr "表" + +#~ msgid "views" +#~ msgstr "视图" + +#~ msgid "procedures" +#~ msgstr "存储过程" + +#~ msgid "events" +#~ msgstr "事件" + +#~ msgid "functions" +#~ msgstr "函数" + +#~ msgid "Filter databases by name or regex" +#~ msgstr "根据名称或正则表达式筛选数据库" + +#~ msgid "Filter by name or regex" +#~ msgstr "根据名称或正则表达式筛选" + #~ msgid "Taking you to %s." #~ msgstr "正在前往%s。" diff --git a/po/zh_TW.po b/po/zh_TW.po index 2fa7f46fe9..30bc287def 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.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-10-26 20:01-0400\n" +"POT-Creation-Date: 2015-11-13 19:14-0500\n" "PO-Revision-Date: 2015-11-04 16:31+0000\n" "Last-Translator: Kelvin Lee \n" -"Language-Team: Chinese (Taiwan) " -"\n" +"Language-Team: Chinese (Taiwan) \n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 2.5-dev\n" -#: changelog.php:37 license.php:30 +#: changelog.php:37 license.php:33 #, php-format msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " @@ -35,7 +35,7 @@ msgstr "點選排序。" msgid "Showing rows %1$s - %2$s." msgstr "顯示第 %1$s - %2$s 列。" -#: db_create.php:61 +#: db_create.php:62 #, php-format msgid "Database %1$s has been created." msgstr "己建立資料庫 %1$s。" @@ -44,13 +44,13 @@ msgstr "己建立資料庫 %1$s。" msgid "Database comment" msgstr "資料庫備註" -#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:601 +#: db_datadict.php:104 libraries/plugins/schema/pdf/PdfRelationSchema.php:599 #: templates/columns_definitions/column_definitions_form.phtml:84 msgid "Table comments:" msgstr "資料表備註:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1568 +#: libraries/insert_edit.lib.php:1575 #: libraries/navigation/nodes/NodeColumn.php:34 #: libraries/plugins/export/ExportHtmlword.php:288 #: libraries/plugins/export/ExportHtmlword.php:384 @@ -60,13 +60,14 @@ msgstr "資料表備註:" #: libraries/plugins/export/ExportTexytext.php:282 #: libraries/plugins/export/ExportTexytext.php:373 #: libraries/plugins/export/PMA_ExportPdf.php:472 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 -#: libraries/tracking.lib.php:882 libraries/tracking.lib.php:978 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:632 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:655 +#: libraries/tracking.lib.php:892 libraries/tracking.lib.php:990 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:10 -#: templates/table/relation/common_form.phtml:43 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:27 +#: templates/table/relation/common_form.phtml:79 #: templates/table/relation/foreign_key_row.phtml:176 #: templates/table/relation/foreign_key_row.phtml:188 #: templates/table/relation/internal_relational_row.phtml:73 @@ -86,14 +87,14 @@ msgstr "欄位" #: libraries/plugins/export/ExportTexytext.php:283 #: libraries/plugins/export/ExportTexytext.php:374 #: libraries/plugins/export/PMA_ExportPdf.php:474 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:633 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:656 #: libraries/rte/rte_list.lib.php:78 libraries/rte/rte_list.lib.php:106 #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2606 libraries/tracking.lib.php:883 -#: libraries/tracking.lib.php:975 +#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 #: templates/table/search/table_header.phtml:7 @@ -103,7 +104,7 @@ msgstr "型態" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:709 -#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1577 +#: libraries/central_columns.lib.php:1385 libraries/insert_edit.lib.php:1584 #: libraries/plugins/export/ExportHtmlword.php:294 #: libraries/plugins/export/ExportHtmlword.php:390 #: libraries/plugins/export/ExportLatex.php:517 @@ -112,9 +113,9 @@ msgstr "型態" #: libraries/plugins/export/ExportTexytext.php:284 #: libraries/plugins/export/ExportTexytext.php:375 #: libraries/plugins/export/PMA_ExportPdf.php:476 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 -#: libraries/tracking.lib.php:885 libraries/tracking.lib.php:981 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:635 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:658 +#: libraries/tracking.lib.php:895 libraries/tracking.lib.php:993 #: templates/columns_definitions/table_fields_definitions.phtml:39 #: templates/table/search/zoom_result_form.phtml:34 #: templates/table/structure/table_structure_header.phtml:11 @@ -131,9 +132,9 @@ msgstr "空值" #: libraries/plugins/export/ExportTexytext.php:285 #: libraries/plugins/export/ExportTexytext.php:376 #: libraries/plugins/export/PMA_ExportPdf.php:478 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 -#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:886 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/replication_gui.lib.php:155 libraries/tracking.lib.php:896 #: templates/columns_definitions/table_fields_definitions.phtml:25 #: templates/database/structure/body_for_table_summary.phtml:55 #: templates/table/structure/table_structure_header.phtml:12 @@ -145,8 +146,8 @@ msgstr "預設值" #: libraries/plugins/export/ExportOdt.php:488 #: libraries/plugins/export/ExportTexytext.php:378 #: libraries/plugins/export/PMA_ExportPdf.php:487 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:640 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:663 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:638 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:661 msgid "Links to" msgstr "連結到" @@ -157,37 +158,38 @@ msgstr "連結到" #: libraries/plugins/export/ExportOdt.php:493 #: libraries/plugins/export/ExportTexytext.php:381 #: libraries/plugins/export/PMA_ExportPdf.php:494 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:651 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:664 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:649 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 #: templates/columns_definitions/table_fields_definitions.phtml:65 msgid "Comments" msgstr "備註" -#: db_datadict.php:155 libraries/controllers/TableStructureController.php:1189 -#: libraries/controllers/TableStructureController.php:1194 -#: libraries/tracking.lib.php:925 +#: db_datadict.php:155 +#: libraries/controllers/table/TableStructureController.php:1197 +#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 -#: templates/table/structure/display_structure.phtml:79 +#: templates/table/structure/display_structure.phtml:80 msgid "Primary" msgstr "主鍵" -#: db_datadict.php:165 js/messages.php:370 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:371 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 -#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:403 -#: libraries/mult_submits.lib.php:417 +#: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:408 +#: libraries/mult_submits.lib.php:422 #: libraries/plugins/export/ExportHtmlword.php:654 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:710 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2971 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3620 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1013 libraries/tracking.lib.php:1018 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2973 +#: libraries/server_privileges.lib.php:2993 +#: libraries/server_privileges.lib.php:3631 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -196,32 +198,32 @@ msgstr "主鍵" msgid "No" msgstr "否" -#: db_datadict.php:165 js/messages.php:515 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:516 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:140 #: libraries/central_columns.lib.php:967 #: libraries/config/FormDisplay.tpl.php:280 -#: libraries/controllers/TableStructureController.php:770 -#: libraries/controllers/TableStructureController.php:1440 -#: libraries/controllers/TableStructureController.php:1449 -#: libraries/controllers/TableStructureController.php:1454 -#: libraries/controllers/TableStructureController.php:1459 -#: libraries/controllers/TableStructureController.php:1464 -#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:199 -#: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 -#: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 +#: libraries/controllers/table/TableStructureController.php:771 +#: libraries/controllers/table/TableStructureController.php:1448 +#: libraries/controllers/table/TableStructureController.php:1457 +#: libraries/controllers/table/TableStructureController.php:1462 +#: libraries/controllers/table/TableStructureController.php:1467 +#: libraries/controllers/table/TableStructureController.php:1472 +#: libraries/mult_submits.inc.php:86 libraries/mult_submits.inc.php:200 +#: libraries/mult_submits.lib.php:344 libraries/mult_submits.lib.php:377 +#: libraries/mult_submits.lib.php:406 libraries/mult_submits.lib.php:420 #: libraries/plugins/export/ExportHtmlword.php:655 #: libraries/plugins/export/ExportLatex.php:592 #: libraries/plugins/export/ExportOdt.php:788 #: libraries/plugins/export/ExportTexytext.php:606 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:711 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2783 -#: libraries/server_privileges.lib.php:2968 -#: libraries/server_privileges.lib.php:2989 -#: libraries/server_privileges.lib.php:3617 -#: libraries/server_privileges.lib.php:3643 libraries/tracking.lib.php:936 -#: libraries/tracking.lib.php:1011 libraries/tracking.lib.php:1016 +#: libraries/server_privileges.lib.php:2785 +#: libraries/server_privileges.lib.php:2970 +#: libraries/server_privileges.lib.php:2991 +#: libraries/server_privileges.lib.php:3628 +#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 #: templates/privileges/privileges_summary_row.phtml:7 @@ -234,8 +236,8 @@ msgstr "是" msgid "View dump (schema) of database" msgstr "檢視資料庫結構的匯出資料" -#: db_export.php:51 db_tracking.php:102 export.php:382 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:176 +#: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 +#: libraries/controllers/DatabaseStructureController.php:157 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "資料庫中沒有任何資料表。" @@ -252,7 +254,7 @@ msgstr "資料表" #: db_export.php:66 libraries/Menu.php:320 libraries/Menu.php:427 #: libraries/Util.php:3407 libraries/Util.php:3417 libraries/Util.php:3423 -#: libraries/Util.php:3702 libraries/Util.php:4339 libraries/Util.php:4356 +#: libraries/Util.php:3703 libraries/Util.php:4340 libraries/Util.php:4357 #: libraries/central_columns.lib.php:729 libraries/config.values.php:39 #: libraries/config.values.php:47 libraries/config.values.php:110 #: libraries/config.values.php:116 libraries/config/setup.forms.php:320 @@ -260,10 +262,10 @@ msgstr "資料表" #: libraries/config/user_preferences.forms.php:218 #: libraries/config/user_preferences.forms.php:259 #: libraries/config/user_preferences.forms.php:285 -#: libraries/import.lib.php:1299 libraries/navigation/nodes/NodeColumn.php:44 +#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:44 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 -#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:877 +#: libraries/server_privileges.lib.php:1244 libraries/tracking.lib.php:887 #: templates/columns_definitions/table_fields_definitions.phtml:3 #: templates/database/designer/table_list.phtml:28 msgid "Structure" @@ -306,11 +308,11 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "phpMyAdmin 設定儲存空間己停用。 %s了解原因%s。" -#: db_qbe.php:135 +#: db_qbe.php:136 msgid "You have to choose at least one column to display!" msgstr "您必須至少選擇一個要顯示的欄位!" -#: db_qbe.php:152 +#: db_qbe.php:154 #, php-format msgid "Switch to %svisual builder%s" msgstr "切換至 %sVisual Builder%s" @@ -336,7 +338,7 @@ msgstr "已建立版本 %1$s,已對選取的資料表啟用追蹤。" msgid "No tables selected." msgstr "尚未選擇任何資料表。" -#: db_tracking.php:146 +#: db_tracking.php:149 msgid "Database Log" msgstr "資料庫記錄" @@ -368,7 +370,7 @@ msgstr "您需要重新整理頁面。" msgid "Bad type!" msgstr "型態錯誤!" -#: export.php:276 +#: export.php:278 msgid "Bad parameters!" msgstr "參數錯誤!" @@ -376,98 +378,98 @@ msgstr "參數錯誤!" msgid "Invalid export type" msgstr "無效的匯出類型" -#: gis_data_editor.php:119 +#: gis_data_editor.php:117 #, php-format msgid "Value for the column \"%s\"" msgstr "\"%s\" 欄位的值" -#: gis_data_editor.php:147 +#: gis_data_editor.php:145 #: templates/table/gis_visualization/gis_visualization.phtml:37 msgid "Use OpenStreetMaps as Base Layer" msgstr "使用 OpenStreetMaps 做為基礎圖層" #. l10n: Spatial Reference System Identifier -#: gis_data_editor.php:169 +#: gis_data_editor.php:167 msgid "SRID:" msgstr "空間參考識別碼(SRID):" -#: gis_data_editor.php:192 +#: gis_data_editor.php:190 #, php-format msgid "Geometry %d:" msgstr "幾何體 %d:" -#: gis_data_editor.php:214 +#: gis_data_editor.php:212 msgid "Point:" msgstr "點:" -#: gis_data_editor.php:215 gis_data_editor.php:242 gis_data_editor.php:298 -#: gis_data_editor.php:371 js/messages.php:504 +#: gis_data_editor.php:213 gis_data_editor.php:240 gis_data_editor.php:296 +#: gis_data_editor.php:369 js/messages.php:505 msgid "X" msgstr "X" -#: gis_data_editor.php:218 gis_data_editor.php:246 gis_data_editor.php:302 -#: gis_data_editor.php:377 js/messages.php:505 +#: gis_data_editor.php:216 gis_data_editor.php:244 gis_data_editor.php:300 +#: gis_data_editor.php:375 js/messages.php:506 msgid "Y" msgstr "Y" -#: gis_data_editor.php:240 gis_data_editor.php:296 gis_data_editor.php:369 -#: js/messages.php:507 +#: gis_data_editor.php:238 gis_data_editor.php:294 gis_data_editor.php:367 +#: js/messages.php:508 #, php-format msgid "Point %d" msgstr "點 %d" -#: gis_data_editor.php:253 gis_data_editor.php:309 gis_data_editor.php:387 -#: js/messages.php:513 +#: gis_data_editor.php:251 gis_data_editor.php:307 gis_data_editor.php:385 +#: js/messages.php:514 msgid "Add a point" msgstr "新增一個點" -#: gis_data_editor.php:270 +#: gis_data_editor.php:268 #, php-format msgid "Linestring %d:" msgstr "一維折線 %d:" -#: gis_data_editor.php:273 gis_data_editor.php:350 +#: gis_data_editor.php:271 gis_data_editor.php:348 msgid "Outer ring:" msgstr "外環:" -#: gis_data_editor.php:275 gis_data_editor.php:352 +#: gis_data_editor.php:273 gis_data_editor.php:350 #, php-format msgid "Inner ring %d:" msgstr "內環 %d:" -#: gis_data_editor.php:312 +#: gis_data_editor.php:310 msgid "Add a linestring" msgstr "新增一維折線" -#: gis_data_editor.php:313 gis_data_editor.php:392 js/messages.php:514 +#: gis_data_editor.php:311 gis_data_editor.php:390 js/messages.php:515 msgid "Add an inner ring" msgstr "新增內環" -#: gis_data_editor.php:334 +#: gis_data_editor.php:332 #, php-format msgid "Polygon %d:" msgstr "多邊形 %d:" -#: gis_data_editor.php:398 +#: gis_data_editor.php:396 msgid "Add a polygon" msgstr "新增多邊形" -#: gis_data_editor.php:404 +#: gis_data_editor.php:402 msgid "Add geometry" msgstr "新增幾何形" -#: gis_data_editor.php:410 js/messages.php:345 libraries/DbSearch.php:462 -#: libraries/DisplayResults.php:1783 libraries/browse_foreigners.lib.php:142 +#: gis_data_editor.php:408 js/messages.php:346 libraries/DbSearch.php:462 +#: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:151 #: libraries/display_export.lib.php:404 libraries/display_export.lib.php:410 -#: libraries/display_import.lib.php:403 libraries/index.lib.php:42 -#: libraries/insert_edit.lib.php:1547 libraries/insert_edit.lib.php:1584 +#: libraries/display_import.lib.php:403 libraries/index.lib.php:45 +#: libraries/insert_edit.lib.php:1554 libraries/insert_edit.lib.php:1591 #: libraries/normalization.lib.php:168 libraries/normalization.lib.php:825 #: libraries/operations.lib.php:47 libraries/operations.lib.php:114 #: libraries/operations.lib.php:266 libraries/operations.lib.php:309 #: libraries/operations.lib.php:806 libraries/operations.lib.php:877 -#: libraries/operations.lib.php:926 libraries/operations.lib.php:1336 -#: libraries/operations.lib.php:1653 +#: libraries/operations.lib.php:926 libraries/operations.lib.php:1339 +#: libraries/operations.lib.php:1656 #: libraries/plugins/auth/AuthenticationCookie.php:239 #: libraries/replication_gui.lib.php:124 libraries/replication_gui.lib.php:163 #: libraries/replication_gui.lib.php:328 libraries/replication_gui.lib.php:465 @@ -476,12 +478,12 @@ msgstr "新增幾何形" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2343 -#: libraries/server_privileges.lib.php:3114 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_user_groups.lib.php:285 -#: libraries/sql_query_form.lib.php:369 libraries/sql_query_form.lib.php:429 -#: libraries/tracking.lib.php:536 libraries/tracking.lib.php:656 +#: libraries/server_privileges.lib.php:2345 +#: libraries/server_privileges.lib.php:3116 +#: libraries/server_privileges.lib.php:3735 +#: libraries/server_user_groups.lib.php:290 +#: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 +#: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 #: prefs_manage.php:280 prefs_manage.php:358 #: templates/columns_definitions/column_definitions_form.phtml:64 #: templates/database/create_table.phtml:21 templates/header_location.phtml:28 @@ -494,11 +496,11 @@ msgstr "新增幾何形" msgid "Go" msgstr "執行" -#: gis_data_editor.php:413 +#: gis_data_editor.php:411 msgid "Output" msgstr "輸出" -#: gis_data_editor.php:416 +#: gis_data_editor.php:414 msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." @@ -509,7 +511,7 @@ msgstr "" msgid "Succeeded" msgstr "已成功" -#: import.php:59 js/messages.php:588 +#: import.php:59 js/messages.php:589 msgid "Failed" msgstr "已失敗" @@ -568,7 +570,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "無法載入匯入外掛程式,請檢查您的安裝!" -#: import.php:669 libraries/sql.lib.php:744 libraries/sql.lib.php:1468 +#: import.php:669 libraries/sql.lib.php:754 libraries/sql.lib.php:1485 #, php-format msgid "Bookmark %s has been created." msgstr "已建立書籤 %s。" @@ -599,7 +601,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "無法讀取匯入的進度。" -#: import_status.php:111 js/messages.php:444 libraries/Util.php:797 +#: import_status.php:111 js/messages.php:445 libraries/Util.php:797 #: libraries/export.lib.php:523 #: libraries/plugins/schema/ExportRelationSchema.php:301 user_password.php:268 msgid "Back" @@ -623,7 +625,7 @@ msgstr "" msgid "General settings" msgstr "一般設定" -#: index.php:191 js/messages.php:617 +#: index.php:191 js/messages.php:618 #: libraries/display_change_password.lib.php:54 #: libraries/display_change_password.lib.php:57 user_password.php:262 msgid "Change password" @@ -723,7 +725,11 @@ msgstr "技術支援" msgid "List of changes" msgstr "版本沿革" -#: index.php:453 +#: index.php:438 libraries/server_plugins.lib.php:83 +msgid "License" +msgstr "授權" + +#: index.php:460 msgid "" "You are connected as 'root' with no password, which corresponds to the " "default MySQL privileged account. Your MySQL server is running with this " @@ -734,7 +740,7 @@ msgstr "" "預設 MySQL 管理帳號執行伺服器,可能會導致伺服器被入侵,強烈建議您設定管理者帳" "號 'root' 的密碼以避免此安全漏洞。" -#: index.php:470 +#: index.php:477 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -743,7 +749,7 @@ msgstr "" "您已啟用了 PHP 設定中的 mbstring.func_overload。此選項與 phpMyAdmin 不相容," "可能會導致一些資料損壞!" -#: index.php:485 +#: index.php:492 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -753,7 +759,7 @@ msgstr "" "有 mbstring 擴充套件 phpMyAdmin 將無法正確分割字串,這可能造成意料之外的錯" "誤。" -#: index.php:502 +#: index.php:509 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than " @@ -765,7 +771,7 @@ msgstr "" "短於您在 phpMyAdmin 中設定的 Cookies 有效期間,因此您的登入連線有效期間可能比" "您在 phpMyAdmin 中設定的時間要更短。" -#: index.php:521 +#: index.php:528 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -773,11 +779,11 @@ msgstr "" "phpMyAdmin 中所設定的登入 cookie 儲存時間小於 cookie 有效期間,因此您的登入連" "線有效期間將會比您在 phpMyAdmin 中設定的時間要更短。" -#: index.php:537 +#: index.php:544 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "設定檔案需要設定一組加密密碼 (blowfish_secret)。" -#: index.php:550 +#: index.php:557 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. It is strongly recommended to remove it " @@ -788,7 +794,7 @@ msgstr "" "完成之後移除該資料夾,否則會有未經授權的人下載你的設定檔而對伺服器安全性造成" "威脅。" -#: index.php:566 +#: index.php:573 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -796,12 +802,12 @@ msgid "" msgstr "" "尚未設定 phpMyAdmin 設定儲存空間,部份延伸功能將無法使用。 %s了解原因%s。 " -#: index.php:573 +#: index.php:580 msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "或者前往任一個資料庫的 '操作' 頁籤設定。" -#: index.php:619 +#: index.php:626 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -810,7 +816,7 @@ msgstr "" "您的 PHP MySQL 函式庫版本 %s 與您的 MySQL 伺服器版本 %s 不同,這可能造成一些" "無法預期的問題。" -#: index.php:647 +#: index.php:654 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -830,7 +836,7 @@ msgstr "確認" msgid "Do you really want to execute \"%s\"?" msgstr "您確定要執行 \"%s\"?" -#: js/messages.php:45 libraries/mult_submits.lib.php:397 +#: js/messages.php:45 libraries/mult_submits.lib.php:402 msgid "You are about to DESTROY a complete database!" msgstr "您正要刪除(DESTROY)一個完整的資料庫!" @@ -922,7 +928,6 @@ msgid "Do you really want to remove partitioning?" msgstr "您確定要清空(TRUNCATE)選擇的分區?" #: js/messages.php:83 -#| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to RESET SLAVE?" msgstr "您確定要執行 RESET SLAVE?" @@ -979,7 +984,7 @@ msgid "Save & close" msgstr "儲存並關閉" #: js/messages.php:109 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1551 prefs_manage.php:364 +#: libraries/insert_edit.lib.php:1558 prefs_manage.php:364 #: prefs_manage.php:375 msgid "Reset" msgstr "重新設定" @@ -1037,10 +1042,10 @@ msgstr "請選擇要建立索引的欄位。" msgid "You have to add at least one column." msgstr "至少要增加一個欄位。" -#: js/messages.php:129 libraries/insert_edit.lib.php:1549 +#: js/messages.php:129 libraries/insert_edit.lib.php:1556 #: templates/columns_definitions/column_definitions_form.phtml:159 #: templates/table/index_form.phtml:237 -#: templates/table/relation/common_form.phtml:108 +#: templates/table/relation/common_form.phtml:127 msgid "Preview SQL" msgstr "預覽 SQL" @@ -1083,8 +1088,8 @@ msgstr "兩次輸入的密碼不一致!" msgid "Removing Selected Users" msgstr "正在刪除已選擇的使用者" -#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:461 -#: libraries/tracking.lib.php:831 +#: js/messages.php:146 js/messages.php:213 libraries/tracking.lib.php:471 +#: libraries/tracking.lib.php:841 msgid "Close" msgstr "關閉" @@ -1106,7 +1111,7 @@ msgstr "已刪除樣板。" #. l10n: Other, small valued, queries #: js/messages.php:155 libraries/ServerStatusData.php:130 -#: libraries/server_status_queries.lib.php:148 +#: libraries/server_status_queries.lib.php:150 msgid "Other" msgstr "其他" @@ -1271,7 +1276,7 @@ msgstr "查詢次數" msgid "Traffic" msgstr "流量" -#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4330 +#: js/messages.php:211 libraries/Menu.php:582 libraries/Util.php:4331 #: libraries/server_status_monitor.lib.php:258 msgid "Settings" msgstr "設定" @@ -1284,9 +1289,9 @@ msgstr "新增圖表至格線" msgid "Please add at least one variable to the series!" msgstr "請至少增加一個變數到資料序列!" -#: js/messages.php:216 libraries/DisplayResults.php:1477 +#: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1397,7 +1402,7 @@ msgstr "更改設定" msgid "Current settings" msgstr "目前設定" -#: js/messages.php:253 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:253 msgid "Chart title" msgstr "圖表標題" @@ -1481,21 +1486,21 @@ msgstr "分析中…" msgid "Explain output" msgstr "輸出說明" -#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4326 +#: js/messages.php:288 libraries/Menu.php:548 libraries/Util.php:4327 #: libraries/config.values.php:105 libraries/rte/rte_events.lib.php:396 #: libraries/rte/rte_list.lib.php:104 -#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:282 -#: libraries/tracking.lib.php:1623 +#: libraries/server_status_processes.lib.php:96 libraries/tracking.lib.php:284 +#: libraries/tracking.lib.php:1639 msgid "Status" msgstr "狀態" -#: js/messages.php:289 js/messages.php:870 +#: js/messages.php:289 js/messages.php:862 #: libraries/plugins/export/ExportHtmlword.php:484 #: libraries/plugins/export/ExportOdt.php:600 #: libraries/plugins/export/ExportTexytext.php:445 #: libraries/plugins/export/PMA_ExportPdf.php:314 #: libraries/rte/rte_list.lib.php:93 -#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:239 +#: libraries/server_status_processes.lib.php:92 libraries/sql.lib.php:243 msgid "Time" msgstr "時間" @@ -1579,10 +1584,10 @@ msgid "" msgstr "無法使用匯入的設定檔建立圖表,將重設為預設的設定值…" #: js/messages.php:322 libraries/Menu.php:355 libraries/Menu.php:457 -#: libraries/Menu.php:578 libraries/Util.php:4329 libraries/Util.php:4344 -#: libraries/Util.php:4361 libraries/config/messages.inc.php:260 +#: libraries/Menu.php:578 libraries/Util.php:4330 libraries/Util.php:4345 +#: libraries/Util.php:4362 libraries/config/messages.inc.php:260 #: libraries/display_import.lib.php:108 -#: libraries/server_status_monitor.lib.php:317 prefs_manage.php:241 +#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:241 #: setup/frames/menu.inc.php:26 msgid "Import" msgstr "匯入" @@ -1639,7 +1644,13 @@ msgstr "檢驗方式" msgid "Formatting SQL…" msgstr "格式化 SQL…" -#: js/messages.php:346 libraries/server_variables.lib.php:159 +#: js/messages.php:343 +#, fuzzy +#| msgid "Bad parameters!" +msgid "No parameters found!" +msgstr "參數錯誤!" + +#: js/messages.php:347 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 @@ -1650,59 +1661,59 @@ msgstr "格式化 SQL…" msgid "Cancel" msgstr "取消" -#: js/messages.php:349 libraries/Header.php:457 +#: js/messages.php:350 libraries/Header.php:457 msgid "Page-related settings" msgstr "頁面相關設定" -#: js/messages.php:350 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:351 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "套用" -#: js/messages.php:353 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:354 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:124 msgid "Loading…" msgstr "載入中…" -#: js/messages.php:354 +#: js/messages.php:355 msgid "Request aborted!!" msgstr "已放棄請求!!" -#: js/messages.php:355 +#: js/messages.php:356 msgid "Processing request" msgstr "請求處理中" -#: js/messages.php:356 +#: js/messages.php:357 msgid "Request failed!!" msgstr "請求失敗!!" -#: js/messages.php:357 +#: js/messages.php:358 msgid "Error in processing request" msgstr "處理要求時發生錯誤" -#: js/messages.php:358 +#: js/messages.php:359 #, php-format msgid "Error code: %s" msgstr "錯誤代碼: %s" -#: js/messages.php:359 +#: js/messages.php:360 #, php-format msgid "Error text: %s" msgstr "錯誤訊息: %s" -#: js/messages.php:360 libraries/db_common.inc.php:73 +#: js/messages.php:361 libraries/db_common.inc.php:73 #: libraries/db_table_exists.lib.php:33 libraries/server_databases.lib.php:462 msgid "No databases selected." msgstr "尚未選擇任何資料庫。" -#: js/messages.php:361 +#: js/messages.php:362 msgid "Dropping column" msgstr "刪除欄位" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Adding primary key" msgstr "新增主鍵中" -#: js/messages.php:363 +#: js/messages.php:364 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1712,164 +1723,164 @@ msgstr "新增主鍵中" msgid "OK" msgstr "確定" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Click to dismiss this notification" msgstr "點選關閉此通知" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Renaming databases" msgstr "更改資料庫名稱中" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Copying database" msgstr "複製資料庫中" -#: js/messages.php:369 +#: js/messages.php:370 msgid "Changing charset" msgstr "更改字元編碼" -#: js/messages.php:373 libraries/Util.php:3289 +#: js/messages.php:374 libraries/Util.php:3289 msgid "Enable foreign key checks" msgstr "開啟外鍵(Foreign Key)檢查" -#: js/messages.php:376 +#: js/messages.php:377 msgid "Failed to get real row count." msgstr "取得實際列數失敗。" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Searching" msgstr "搜尋中" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide search results" msgstr "隱藏搜尋結果" -#: js/messages.php:381 +#: js/messages.php:382 msgid "Show search results" msgstr "顯示搜尋結果" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Browsing" msgstr "瀏覽" -#: js/messages.php:383 +#: js/messages.php:384 msgid "Deleting" msgstr "刪除" -#: js/messages.php:387 +#: js/messages.php:388 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Stored Function 的定義中必須要有 RETURN 敘述句!" -#: js/messages.php:388 libraries/DisplayResults.php:4832 -#: libraries/DisplayResults.php:5091 libraries/Menu.php:347 -#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3709 -#: libraries/Util.php:3710 libraries/Util.php:4328 libraries/Util.php:4343 -#: libraries/Util.php:4360 libraries/config/messages.inc.php:254 +#: js/messages.php:389 libraries/DisplayResults.php:4850 +#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 +#: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 +#: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2448 -#: libraries/server_privileges.lib.php:2527 -#: libraries/server_privileges.lib.php:2873 -#: libraries/server_privileges.lib.php:3532 -#: libraries/server_status_monitor.lib.php:321 prefs_manage.php:306 +#: libraries/server_privileges.lib.php:2450 +#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2875 +#: libraries/server_privileges.lib.php:3543 +#: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 msgid "Export" msgstr "匯出" -#: js/messages.php:391 libraries/rte/rte_routines.lib.php:742 +#: js/messages.php:392 libraries/rte/rte_routines.lib.php:742 msgid "ENUM/SET editor" msgstr "ENUM/SET 編輯器" -#: js/messages.php:392 +#: js/messages.php:393 #, php-format msgid "Values for column %s" msgstr "%s 欄位的值" -#: js/messages.php:393 +#: js/messages.php:394 msgid "Values for a new column" msgstr "新欄位的值" -#: js/messages.php:394 +#: js/messages.php:395 msgid "Enter each value in a separate field." msgstr "請分別將資料填入以下欄位。" -#: js/messages.php:395 +#: js/messages.php:396 #, php-format msgid "Add %d value(s)" msgstr "增加 %d 個值" -#: js/messages.php:399 +#: js/messages.php:400 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "備註:若檔案中包含多個資料表,它們會被結合成同一個資料表。" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Hide query box" msgstr "隱藏查詢框" -#: js/messages.php:404 +#: js/messages.php:405 msgid "Show query box" msgstr "顯示查詢框" -#: js/messages.php:405 libraries/Console.php:88 libraries/Console.php:217 -#: libraries/DisplayResults.php:3457 libraries/DisplayResults.php:4816 +#: js/messages.php:406 libraries/Console.php:88 libraries/Console.php:217 +#: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4834 #: libraries/Index.php:721 libraries/Util.php:727 libraries/Util.php:1238 -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:119 +#: libraries/server_user_groups.lib.php:121 #: libraries/server_variables.lib.php:242 #: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 msgid "Edit" msgstr "編輯" -#: js/messages.php:406 libraries/Console.php:89 libraries/DbSearch.php:360 -#: libraries/DisplayResults.php:3526 libraries/DisplayResults.php:4800 +#: js/messages.php:407 libraries/Console.php:89 libraries/DbSearch.php:360 +#: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4818 #: libraries/central_columns.lib.php:854 #: libraries/central_columns.lib.php:1200 libraries/display_export.lib.php:227 -#: libraries/server_user_groups.lib.php:129 -#: libraries/sql_query_form.lib.php:416 libraries/tracking.lib.php:480 +#: libraries/server_user_groups.lib.php:131 +#: libraries/sql_query_form.lib.php:417 libraries/tracking.lib.php:490 #: setup/frames/index.inc.php:187 setup/frames/index.inc.php:295 #: templates/database/designer/delete_relation_panel.phtml:27 msgid "Delete" msgstr "刪除" -#: js/messages.php:407 libraries/DisplayResults.php:915 -#: libraries/DisplayResults.php:923 +#: js/messages.php:408 libraries/DisplayResults.php:919 +#: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d 不是有效的資料列號。" -#: js/messages.php:408 -#: libraries/controllers/table/TableSearchController.php:435 -#: libraries/controllers/table/TableSearchController.php:920 -#: libraries/sql.lib.php:193 tbl_change.php:159 +#: js/messages.php:409 +#: libraries/controllers/table/TableSearchController.php:432 +#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "瀏覽關聯的值" -#: js/messages.php:409 +#: js/messages.php:410 msgid "No auto-saved query" msgstr "無自動儲存的查詢" -#: js/messages.php:410 +#: js/messages.php:411 #, php-format msgid "Variable %d:" msgstr "變數 %d:" -#: js/messages.php:413 libraries/normalization.lib.php:889 +#: js/messages.php:414 libraries/normalization.lib.php:889 msgid "Pick" msgstr "選取" -#: js/messages.php:414 +#: js/messages.php:415 msgid "Column selector" msgstr "欄位選擇器" -#: js/messages.php:415 +#: js/messages.php:416 msgid "Search this list" msgstr "搜尋此清單" -#: js/messages.php:417 +#: js/messages.php:418 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1878,361 +1889,361 @@ msgstr "" "無欄位於中央清單。請確定資料庫 %s 的中央欄位清單中的欄位不存在於目前的資料" "表。" -#: js/messages.php:420 +#: js/messages.php:421 msgid "See more" msgstr "查看更多資訊" -#: js/messages.php:421 +#: js/messages.php:422 msgid "Are you sure?" msgstr "您確定?" -#: js/messages.php:423 +#: js/messages.php:424 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "此動作可能會變更部份欄位的定義。
您是否確定要繼續執行?" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Continue" msgstr "繼續" -#: js/messages.php:429 +#: js/messages.php:430 msgid "Add primary key" msgstr "新增主鍵" -#: js/messages.php:430 +#: js/messages.php:431 msgid "Primary key added." msgstr "已新增主鍵(Primary key)。" -#: js/messages.php:431 libraries/normalization.lib.php:194 +#: js/messages.php:432 libraries/normalization.lib.php:194 msgid "Taking you to next step…" msgstr "帶您至下一步驟 …" -#: js/messages.php:433 +#: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "表格 '%s' 正規化的第一步驟已經完成。" -#: js/messages.php:434 libraries/normalization.lib.php:455 +#: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 #: libraries/normalization.lib.php:647 msgid "End of step" msgstr "結束步驟" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Second step of normalization (2NF)" msgstr "第二正規化 (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:436 js/messages.php:739 libraries/normalization.lib.php:291 +#: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 msgid "Done" msgstr "完成" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Confirm partial dependencies" msgstr "確認部份相依" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Selected partial dependencies are as follows:" msgstr "己選擇部份相依如下:" -#: js/messages.php:440 +#: js/messages.php:441 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 "" "注意:a, b -> d,f 代表 a 與 b 的欄位值合併後可以決定欄位 d 與欄位 f 的值。" -#: js/messages.php:443 +#: js/messages.php:444 msgid "No partial dependencies selected!" msgstr "尚未選擇部份相依!" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Show me the possible partial dependencies based on data in the table" msgstr "根據資料表中的資料顯示可能的部份相依" -#: js/messages.php:447 +#: js/messages.php:448 msgid "Hide partial dependencies list" msgstr "隱藏部份相依清單" -#: js/messages.php:449 +#: js/messages.php:450 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "稍坐一下!這可能要花一些時間,實際時間將取決於您的資料大小以及資料量。" -#: js/messages.php:452 +#: js/messages.php:453 msgid "Step" msgstr "步驟" -#: js/messages.php:454 +#: js/messages.php:455 msgid "The following actions will be performed:" msgstr "將會執行以下動作:" -#: js/messages.php:455 +#: js/messages.php:456 #, php-format msgid "DROP columns %s from the table %s" msgstr "從資料表 %s 移除(DROP)欄位 %s" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Create the following table" msgstr "建立下列資料表" -#: js/messages.php:459 +#: js/messages.php:460 msgid "Third step of normalization (3NF)" msgstr "第三正規化 (3NF)" -#: js/messages.php:460 +#: js/messages.php:461 msgid "Confirm transitive dependencies" msgstr "確認遞移相依" -#: js/messages.php:461 +#: js/messages.php:462 msgid "Selected dependencies are as follows:" msgstr "己選擇的相依如下:" -#: js/messages.php:462 +#: js/messages.php:463 msgid "No dependencies selected!" msgstr "尚未選擇任何相依!" -#: js/messages.php:465 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1459 libraries/server_variables.lib.php:157 +#: js/messages.php:466 libraries/central_columns.lib.php:1216 +#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:109 +#: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "儲存" -#: js/messages.php:468 +#: js/messages.php:469 msgid "Hide search criteria" msgstr "隱藏搜尋條件" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Show search criteria" msgstr "顯示搜尋條件" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Range search" msgstr "範圍搜尋" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Column maximum:" msgstr "欄位最大值:" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Column minimum:" msgstr "欄位最小值:" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Minimum value:" msgstr "最小值:" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Maximum value:" msgstr "最大值:" -#: js/messages.php:477 +#: js/messages.php:478 msgid "Hide find and replace criteria" msgstr "隱藏搜尋與取代條件" -#: js/messages.php:478 +#: js/messages.php:479 msgid "Show find and replace criteria" msgstr "顯示尋找並替換條件" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Each point represents a data row." msgstr "每一個點代表一筆資料。" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Hovering over a point will show its label." msgstr "將滑鼠指到資料點上可以顯示其標籤。" -#: js/messages.php:486 +#: js/messages.php:487 msgid "To zoom in, select a section of the plot with the mouse." msgstr "放大,請使用滑鼠選擇一個區域。" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Click reset zoom button to come back to original state." msgstr "點選「重設縮放大小」按鈕可以回到原始大小。" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click a data point to view and possibly edit the data row." msgstr "點選資料點以瀏覽或修改該筆資料。" -#: js/messages.php:492 +#: js/messages.php:493 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "此圖表可拖曳右下角邊框進行縮放。" -#: js/messages.php:495 +#: js/messages.php:496 msgid "Select two columns" msgstr "請選擇兩個欄位" -#: js/messages.php:497 +#: js/messages.php:498 msgid "Select two different columns" msgstr "請選擇兩個不同的欄位" -#: js/messages.php:499 +#: js/messages.php:500 msgid "Data point content" msgstr "資料點內容" -#: js/messages.php:502 js/messages.php:661 js/messages.php:678 -#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2566 +#: js/messages.php:503 js/messages.php:653 js/messages.php:670 +#: libraries/ErrorHandler.php:336 libraries/insert_edit.lib.php:2580 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "略過" -#: js/messages.php:503 libraries/DisplayResults.php:3460 -#: libraries/DisplayResults.php:4821 +#: js/messages.php:504 libraries/DisplayResults.php:3475 +#: libraries/DisplayResults.php:4839 msgid "Copy" msgstr "複製" -#: js/messages.php:506 +#: js/messages.php:507 msgid "Point" msgstr "點" -#: js/messages.php:508 +#: js/messages.php:509 msgid "Linestring" msgstr "一維折線" -#: js/messages.php:509 +#: js/messages.php:510 msgid "Polygon" msgstr "多邊形" -#: js/messages.php:510 libraries/DisplayResults.php:1767 +#: js/messages.php:511 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "幾何形" -#: js/messages.php:511 +#: js/messages.php:512 msgid "Inner ring" msgstr "內環" -#: js/messages.php:512 +#: js/messages.php:513 msgid "Outer ring" msgstr "外環" -#: js/messages.php:516 +#: js/messages.php:517 msgid "Do you want to copy encryption key?" msgstr "您是否要複製加密金鑰?" -#: js/messages.php:517 +#: js/messages.php:518 msgid "Encryption key" msgstr "加密金鑰" -#: js/messages.php:521 +#: js/messages.php:522 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "代表您已對此頁做了變更,在您放棄這些變更前會先提示您" -#: js/messages.php:526 +#: js/messages.php:527 msgid "Select referenced key" msgstr "請選擇參考鍵(Reference Key)" -#: js/messages.php:527 +#: js/messages.php:528 msgid "Select Foreign Key" msgstr "請選擇外鍵(Foreign Key)" -#: js/messages.php:529 +#: js/messages.php:530 msgid "Please select the primary key or a unique key!" msgstr "請選擇主鍵(Primary Key)或唯一鍵(Unique Key)!" -#: js/messages.php:530 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:531 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "請選擇要顯示的欄位" -#: js/messages.php:532 +#: js/messages.php:533 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:535 +#: js/messages.php:536 msgid "Page name" msgstr "頁面名稱" -#: js/messages.php:536 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:537 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "儲存頁面" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:538 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "儲存頁面為" -#: js/messages.php:538 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:539 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "開啟頁面" -#: js/messages.php:539 +#: js/messages.php:540 msgid "Delete page" msgstr "刪除頁面" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:541 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "未命名" -#: js/messages.php:541 +#: js/messages.php:542 msgid "Please select a page to continue" msgstr "請選擇頁面以繼續執行" -#: js/messages.php:542 +#: js/messages.php:543 msgid "Please enter a valid page name" msgstr "請輸入一個有效的頁面名稱" -#: js/messages.php:544 +#: js/messages.php:545 msgid "Do you want to save the changes to the current page?" msgstr "您是否要儲存變更至目前頁面?" -#: js/messages.php:545 +#: js/messages.php:546 msgid "Successfully deleted the page" msgstr "已成功刪除頁面" -#: js/messages.php:546 +#: js/messages.php:547 msgid "Export relational schema" msgstr "匯出關聯式網要" -#: js/messages.php:547 +#: js/messages.php:548 msgid "Modifications have been saved" msgstr "已儲存修改" -#: js/messages.php:550 +#: js/messages.php:551 #, php-format msgid "Add an option for column \"%s\"." msgstr "新增欄位 \"%s\" 的選項。" -#: js/messages.php:551 +#: js/messages.php:552 #, php-format msgid "%d object(s) created." msgstr "已建立 %d 個物件。" -#: js/messages.php:552 libraries/mult_submits.lib.php:340 -#: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 +#: js/messages.php:553 libraries/mult_submits.lib.php:345 +#: libraries/mult_submits.lib.php:378 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "送出" -#: js/messages.php:555 +#: js/messages.php:556 msgid "Press escape to cancel editing." msgstr "按下 ESC 取消編輯。" -#: js/messages.php:557 +#: js/messages.php:558 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:560 +#: js/messages.php:561 msgid "Drag to reorder." msgstr "使用拖曳來重新排序。" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Click to sort results by this column." msgstr "使用本欄位進行資料排序。" -#: js/messages.php:563 +#: js/messages.php:564 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 " @@ -2242,26 +2253,26 @@ msgstr "" "鼠點選 或 Alt+滑鼠點選 (Mac: Shift+Option+滑鼠點選) 來從 ORDER BY 子句中移除" "欄位" -#: js/messages.php:567 +#: js/messages.php:568 msgid "Click to mark/unmark." msgstr "點此標記或取消標記。" -#: js/messages.php:568 +#: js/messages.php:569 msgid "Double-click to copy column name." msgstr "雙擊點選以複製欄位名稱。" -#: js/messages.php:570 +#: js/messages.php:571 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "點選下拉箭頭
以切換欄位的顯示程度。" -#: js/messages.php:572 libraries/DisplayResults.php:1022 +#: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3789 +#: libraries/server_privileges.lib.php:3802 msgid "Show all" msgstr "全部顯示" -#: js/messages.php:574 +#: js/messages.php:575 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." @@ -2269,131 +2280,102 @@ msgstr "" "此資料表沒有唯一欄位用來辦示資料。 有關資料表修改、複製、刪除的功能可能會無法" "儲存。" -#: js/messages.php:578 +#: js/messages.php:579 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "請輸入一個有效的十六進位字串。有效的字元為 0-9, A-F。" -#: js/messages.php:580 +#: js/messages.php:581 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "您確定要顯示所有資料列?使用在大型的資料表可能會造成瀏覽器當機。" -#: js/messages.php:583 +#: js/messages.php:584 msgid "Original length" msgstr "原始長度" -#: js/messages.php:586 +#: js/messages.php:587 msgid "cancel" msgstr "取消" -#: js/messages.php:587 libraries/server_status.lib.php:282 +#: js/messages.php:588 libraries/server_status.lib.php:282 msgid "Aborted" msgstr "中斷連線" -#: js/messages.php:589 +#: js/messages.php:590 msgid "Success" msgstr "成功" -#: js/messages.php:590 +#: js/messages.php:591 msgid "Import status" msgstr "匯入狀態" -#: js/messages.php:591 libraries/navigation/Navigation.php:111 +#: js/messages.php:592 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "將檔案拖曳至此處" -#: js/messages.php:592 +#: js/messages.php:593 msgid "Select database first" msgstr "請先選擇資料庫" -#: js/messages.php:598 +#: js/messages.php:599 msgid "You can also edit most values
by double-clicking directly on them." msgstr "您可以點兩下以選表格內容
直接做編輯修改。" -#: js/messages.php:603 +#: js/messages.php:604 msgid "You can also edit most values
by clicking directly on them." msgstr "您可以直接點選數值
以進行編輯修改。" -#: js/messages.php:609 +#: js/messages.php:610 msgid "Go to link:" msgstr "前往此連結:" -#: js/messages.php:610 +#: js/messages.php:611 msgid "Copy column name." msgstr "複製欄位名稱。" -#: js/messages.php:612 +#: js/messages.php:613 msgid "Right-click the column name to copy it to your clipboard." msgstr "點選右鍵將欄位名稱複製到您的剪貼簿。" -#: js/messages.php:615 +#: js/messages.php:616 msgid "Generate password" msgstr "產生密碼" -#: js/messages.php:616 libraries/replication_gui.lib.php:902 +#: js/messages.php:617 libraries/replication_gui.lib.php:902 msgid "Generate" msgstr "產生" -#: js/messages.php:620 +#: js/messages.php:621 msgid "More" msgstr "更多" -#: js/messages.php:623 +#: js/messages.php:624 msgid "Show panel" msgstr "顯示面板" -#: js/messages.php:624 +#: js/messages.php:625 msgid "Hide panel" msgstr "隱藏面板" -#: js/messages.php:625 +#: js/messages.php:626 msgid "Show hidden navigation tree items." msgstr "顯示隱藏的導覽樹項目。" -#: js/messages.php:626 libraries/config/messages.inc.php:478 +#: js/messages.php:627 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.php:1439 msgid "Link with main panel" msgstr "連結主面板" -#: js/messages.php:627 libraries/navigation/NavigationTree.php:1442 +#: js/messages.php:628 libraries/navigation/NavigationTree.php:1442 msgid "Unlink from main panel" msgstr "取消連結主面板" -#: js/messages.php:629 -msgid "To filter all databases on server, press Enter after a search term" -msgstr "要搜尋伺服器上的所有資料庫,請在輸入關鍵字後按 Enter" - -#: js/messages.php:631 -#, php-format -msgid "To filter all %s in database, press Enter after a search term" -msgstr "要搜尋資料庫中所有的 %s,請在輸入關鍵字後按 Enter" - #: js/messages.php:632 -msgid "tables" -msgstr "資料表" - -#: js/messages.php:633 -msgid "views" -msgstr "檢視表" - -#: js/messages.php:634 -msgid "procedures" -msgstr "程序" - -#: js/messages.php:635 -msgid "events" -msgstr "事件" - -#: js/messages.php:636 -msgid "functions" -msgstr "函數" - -#: js/messages.php:640 msgid "The requested page was not found in the history, it may have expired." msgstr "已無歷史記錄頁面或頁面已經逾期。" -#: js/messages.php:644 setup/lib/index.lib.php:169 +#: js/messages.php:636 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2402,47 +2384,47 @@ msgstr "" "新的 phpMyAdmin 已經發佈,請考慮升級至最新的版本(版本 %s,於 %s 發佈)。" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:648 +#: js/messages.php:640 msgid ", latest stable version:" msgstr ",最新的穩定版:" -#: js/messages.php:649 +#: js/messages.php:641 msgid "up to date" msgstr "最新" -#: js/messages.php:651 libraries/DisplayResults.php:4938 view_create.php:184 +#: js/messages.php:643 libraries/DisplayResults.php:4956 view_create.php:184 msgid "Create view" msgstr "新增檢視表" -#: js/messages.php:654 +#: js/messages.php:646 msgid "Send error report" msgstr "傳送錯誤報告" -#: js/messages.php:655 +#: js/messages.php:647 msgid "Submit error report" msgstr "送出錯誤報告" -#: js/messages.php:657 +#: js/messages.php:649 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "發生 JavaScript 嚴重錯誤,您是否要回報錯誤報告?" -#: js/messages.php:659 +#: js/messages.php:651 msgid "Change report settings" msgstr "更改報告設定" -#: js/messages.php:660 +#: js/messages.php:652 msgid "Show report details" msgstr "顯示報告詳細資訊" -#: js/messages.php:663 +#: js/messages.php:655 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "因 PHP 執行期時間限制太短,您的資料未完成匯出動作!" -#: js/messages.php:667 +#: js/messages.php:659 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2451,58 +2433,58 @@ msgstr "" "警告: 此頁面中的表單超過 %d 個欄位,因超出 PHP 中 max_input_vars 設定值的限" "制,在送出時可能會忽略部份欄位。" -#: js/messages.php:673 js/messages.php:686 +#: js/messages.php:665 js/messages.php:678 msgid "Some errors have been detected on the server!" msgstr "已偵測到伺服器上發生部份錯誤!" -#: js/messages.php:675 +#: js/messages.php:667 msgid "Please look at the bottom of this window." msgstr "請瀏覽此視窗的底部。" -#: js/messages.php:681 libraries/ErrorHandler.php:340 +#: js/messages.php:673 libraries/ErrorHandler.php:340 msgid "Ignore All" msgstr "全部略過" -#: js/messages.php:689 +#: js/messages.php:681 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "根據您的設定,它們正被提交,請耐心等候。" -#: js/messages.php:699 +#: js/messages.php:691 msgid "Execute this query again?" msgstr "再執行此查詢一次?" -#: js/messages.php:701 +#: js/messages.php:693 msgid "Do you really want to delete this bookmark?" msgstr "您真的要刪除此書籤?" -#: js/messages.php:703 +#: js/messages.php:695 msgid "Some error occurred while getting SQL debug info." msgstr "取得 SQL 除錯資訊時發生一些錯誤。" -#: js/messages.php:705 +#: js/messages.php:697 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s 筆查詢已執行 %s 次,使用 %s 秒。" -#: js/messages.php:706 +#: js/messages.php:698 #, php-format msgid "%s argument(s) passed" msgstr "已傳入 %s 個參數" -#: js/messages.php:707 +#: js/messages.php:699 msgid "Show arguments" msgstr "顯示參數" -#: js/messages.php:708 +#: js/messages.php:700 msgid "Hide arguments" msgstr "隱藏參數" -#: js/messages.php:709 libraries/Console.php:324 +#: js/messages.php:701 libraries/Console.php:324 msgid "Time taken:" msgstr "使用時間:" -#: js/messages.php:711 +#: js/messages.php:703 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 " @@ -2512,292 +2494,292 @@ msgstr "" "執行。若在 Safari 發現此問題可能是使用 \"Private Mode Browsing\" 所造成。" # 這應該是使用於選擇日期的月曆 -#: js/messages.php:743 +#: js/messages.php:735 msgctxt "Previous month" msgid "Prev" msgstr "上個月" # 這應該使用於選擇日期的小月曆 -#: js/messages.php:748 +#: js/messages.php:740 msgctxt "Next month" msgid "Next" msgstr "下個月" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:743 msgid "Today" msgstr "今天" -#: js/messages.php:755 +#: js/messages.php:747 msgid "January" msgstr "一月" -#: js/messages.php:756 +#: js/messages.php:748 msgid "February" msgstr "二月" -#: js/messages.php:757 +#: js/messages.php:749 msgid "March" msgstr "三月" -#: js/messages.php:758 +#: js/messages.php:750 msgid "April" msgstr "四月" -#: js/messages.php:759 +#: js/messages.php:751 msgid "May" msgstr "五月" -#: js/messages.php:760 +#: js/messages.php:752 msgid "June" msgstr "六月" -#: js/messages.php:761 +#: js/messages.php:753 msgid "July" msgstr "七月" -#: js/messages.php:762 +#: js/messages.php:754 msgid "August" msgstr "八月" -#: js/messages.php:763 +#: js/messages.php:755 msgid "September" msgstr "九月" -#: js/messages.php:764 +#: js/messages.php:756 msgid "October" msgstr "十月" -#: js/messages.php:765 +#: js/messages.php:757 msgid "November" msgstr "十一月" -#: js/messages.php:766 +#: js/messages.php:758 msgid "December" msgstr "十二月" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1662 +#: js/messages.php:765 libraries/Util.php:1662 msgid "Jan" msgstr "一月" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1664 +#: js/messages.php:767 libraries/Util.php:1664 msgid "Feb" msgstr "二月" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1666 +#: js/messages.php:769 libraries/Util.php:1666 msgid "Mar" msgstr "三月" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1668 +#: js/messages.php:771 libraries/Util.php:1668 msgid "Apr" msgstr "四月" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1670 +#: js/messages.php:773 libraries/Util.php:1670 msgctxt "Short month name" msgid "May" msgstr "五月" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1672 +#: js/messages.php:775 libraries/Util.php:1672 msgid "Jun" msgstr "六月" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1674 +#: js/messages.php:777 libraries/Util.php:1674 msgid "Jul" msgstr "七月" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1676 +#: js/messages.php:779 libraries/Util.php:1676 msgid "Aug" msgstr "八月" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1678 +#: js/messages.php:781 libraries/Util.php:1678 msgid "Sep" msgstr "九月" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1680 +#: js/messages.php:783 libraries/Util.php:1680 msgid "Oct" msgstr "十月" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1682 +#: js/messages.php:785 libraries/Util.php:1682 msgid "Nov" msgstr "十一月" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1684 +#: js/messages.php:787 libraries/Util.php:1684 msgid "Dec" msgstr "十二月" -#: js/messages.php:801 +#: js/messages.php:793 msgid "Sunday" msgstr "星期日" -#: js/messages.php:802 +#: js/messages.php:794 msgid "Monday" msgstr "星期一" -#: js/messages.php:803 +#: js/messages.php:795 msgid "Tuesday" msgstr "星期二" -#: js/messages.php:804 +#: js/messages.php:796 msgid "Wednesday" msgstr "星期三" -#: js/messages.php:805 +#: js/messages.php:797 msgid "Thursday" msgstr "星期四" -#: js/messages.php:806 +#: js/messages.php:798 msgid "Friday" msgstr "星期五" -#: js/messages.php:807 +#: js/messages.php:799 msgid "Saturday" msgstr "星期六" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:806 msgid "Sun" msgstr "週日" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1689 +#: js/messages.php:808 libraries/Util.php:1689 msgid "Mon" msgstr "週一" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1691 +#: js/messages.php:810 libraries/Util.php:1691 msgid "Tue" msgstr "週二" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1693 +#: js/messages.php:812 libraries/Util.php:1693 msgid "Wed" msgstr "週三" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1695 +#: js/messages.php:814 libraries/Util.php:1695 msgid "Thu" msgstr "週四" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1697 +#: js/messages.php:816 libraries/Util.php:1697 msgid "Fri" msgstr "週五" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1699 +#: js/messages.php:818 libraries/Util.php:1699 msgid "Sat" msgstr "週六" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:825 msgid "Su" msgstr "日" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:827 msgid "Mo" msgstr "一" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:829 msgid "Tu" msgstr "二" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:831 msgid "We" msgstr "三" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:833 msgid "Th" msgstr "四" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:835 msgid "Fr" msgstr "五" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:837 msgid "Sa" msgstr "六" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:841 msgid "Wk" msgstr "週" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:848 msgid "calendar-month-year" msgstr "calendar-year-month" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:851 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:871 +#: js/messages.php:863 msgid "Hour" msgstr "時" -#: js/messages.php:872 +#: js/messages.php:864 msgid "Minute" msgstr "分" -#: js/messages.php:873 +#: js/messages.php:865 msgid "Second" msgstr "秒" -#: js/messages.php:884 +#: js/messages.php:876 msgid "This field is required" msgstr "此欄位為必填" -#: js/messages.php:885 +#: js/messages.php:877 msgid "Please fix this field" msgstr "請修正此欄位" -#: js/messages.php:886 +#: js/messages.php:878 msgid "Please enter a valid email address" msgstr "請輸入一個有效的電子郵件位址" -#: js/messages.php:887 +#: js/messages.php:879 msgid "Please enter a valid URL" msgstr "請輸入一個有效的 URL" -#: js/messages.php:888 +#: js/messages.php:880 msgid "Please enter a valid date" msgstr "請輸入一個有效的日期" -#: js/messages.php:889 +#: js/messages.php:883 msgid "Please enter a valid date ( ISO )" msgstr "請輸入一個有效的日期 ( ISO )" -#: js/messages.php:890 +#: js/messages.php:885 msgid "Please enter a valid number" msgstr "請輸入一個有效的數字" -#: js/messages.php:891 +#: js/messages.php:888 msgid "Please enter a valid credit card number" msgstr "請輸入一個有效的信用卡號" -#: js/messages.php:892 +#: js/messages.php:890 msgid "Please enter only digits" msgstr "請輸入數字" @@ -2805,41 +2787,41 @@ msgstr "請輸入數字" msgid "Please enter the same value again" msgstr "請再輸入一次" -#: js/messages.php:894 +#: js/messages.php:897 msgid "Please enter no more than {0} characters" msgstr "請輸入不超過 {0} 個字元" -#: js/messages.php:895 +#: js/messages.php:902 msgid "Please enter at least {0} characters" msgstr "請輸入不少於 {0} 個字元" -#: js/messages.php:896 +#: js/messages.php:907 msgid "Please enter a value between {0} and {1} characters long" msgstr "請輸入介於 {0} 與 {1} 個字元長度間的值" -#: js/messages.php:897 +#: js/messages.php:912 msgid "Please enter a value between {0} and {1}" msgstr "請輸入介於 {0} 與 {1} 間的值" -#: js/messages.php:898 +#: js/messages.php:917 msgid "Please enter a value less than or equal to {0}" msgstr "請輸入小於等於 {0} 的值" -#: js/messages.php:899 +#: js/messages.php:922 msgid "Please enter a value greater than or equal to {0}" msgstr "請輸入大於等於 {0} 的值" -#: js/messages.php:901 +#: js/messages.php:928 msgid "Please enter a valid date or time" msgstr "請輸入有效的日期或時間" -#: js/messages.php:902 +#: js/messages.php:933 msgid "Please enter a valid HEX input" msgstr "請輸入有效的 HEX 輸入值" -#: js/messages.php:903 libraries/Message.php:200 libraries/Util.php:674 +#: js/messages.php:938 libraries/Message.php:200 libraries/Util.php:674 #: libraries/core.lib.php:247 libraries/import.lib.php:185 -#: libraries/insert_edit.lib.php:1173 tbl_operations.php:226 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:226 #: view_operations.php:64 msgid "Error" msgstr "錯誤" @@ -2924,11 +2906,12 @@ msgstr "重新查詢" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3132 -#: libraries/server_privileges.lib.php:3303 +#: libraries/server_privileges.lib.php:3134 #: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4563 #: libraries/server_status_processes.lib.php:84 +#: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" @@ -2969,7 +2952,7 @@ msgstr "於目前連線階段" msgid "Explain" msgstr "語句分析" -#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1324 libraries/sql.lib.php:232 msgid "Profiling" msgstr "效能分析" @@ -3003,8 +2986,8 @@ msgid "History" msgstr "歷史記錄" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1704 libraries/import.lib.php:1265 -#: libraries/import.lib.php:1300 libraries/plugins/export/ExportCodegen.php:84 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 +#: libraries/import.lib.php:1302 libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 #: libraries/plugins/export/ExportHtmlword.php:49 @@ -3151,30 +3134,30 @@ msgstr "" msgid "Switch to dark theme" msgstr "切換為深色主題" -#: libraries/DatabaseInterface.php:2184 +#: libraries/DatabaseInterface.php:2190 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "伺服器沒有回應(或者是伺服器的 socket 沒有被正確的設定)。" -#: libraries/DatabaseInterface.php:2189 +#: libraries/DatabaseInterface.php:2195 msgid "The server is not responding." msgstr "伺服器沒有回應。" -#: libraries/DatabaseInterface.php:2194 +#: libraries/DatabaseInterface.php:2201 msgid "Please check privileges of directory containing database." msgstr "請檢查資料庫所在的資料夾權限。" -#: libraries/DatabaseInterface.php:2204 +#: libraries/DatabaseInterface.php:2212 msgid "Details…" msgstr "詳細資訊…" -#: libraries/DatabaseInterface.php:2411 +#: libraries/DatabaseInterface.php:2419 msgid "Connection for controluser as defined in your configuration failed." msgstr "使用設定檔案中定義的控制使用者連線失敗。" -#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2249 -#: libraries/DisplayResults.php:2255 libraries/config.values.php:70 +#: libraries/DbQbe.php:407 libraries/DisplayResults.php:2256 +#: libraries/DisplayResults.php:2262 libraries/config.values.php:70 #: libraries/operations.lib.php:799 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:168 @@ -3184,8 +3167,8 @@ msgstr "使用設定檔案中定義的控制使用者連線失敗。" msgid "Ascending" msgstr "遞增" -#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2245 -#: libraries/DisplayResults.php:2259 libraries/config.values.php:71 +#: libraries/DbQbe.php:410 libraries/DisplayResults.php:2252 +#: libraries/DisplayResults.php:2266 libraries/config.values.php:71 #: libraries/operations.lib.php:802 libraries/server_databases.lib.php:309 #: libraries/server_databases.lib.php:337 #: libraries/server_status_processes.lib.php:165 @@ -3326,8 +3309,8 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s 筆資料符合 %2$s" #: libraries/DbSearch.php:349 libraries/Menu.php:314 libraries/Util.php:3411 -#: libraries/Util.php:3421 libraries/Util.php:3696 libraries/Util.php:3697 -#: libraries/Util.php:4355 libraries/config.values.php:43 +#: libraries/Util.php:3421 libraries/Util.php:3697 libraries/Util.php:3698 +#: libraries/Util.php:4356 libraries/config.values.php:43 #: libraries/config.values.php:51 libraries/config.values.php:120 #: libraries/navigation/nodes/NodeTable.php:313 #: templates/table/structure/check_all_table_column.phtml:5 @@ -3369,29 +3352,29 @@ msgstr "全部取消" msgid "Inside column:" msgstr "於下列欄位中:" -#: libraries/DisplayResults.php:892 +#: libraries/DisplayResults.php:896 msgid "Save edited data" msgstr "儲存" -#: libraries/DisplayResults.php:898 +#: libraries/DisplayResults.php:902 msgid "Restore column order" msgstr "還原欄位的順序" -#: libraries/DisplayResults.php:946 libraries/central_columns.lib.php:663 +#: libraries/DisplayResults.php:950 libraries/central_columns.lib.php:663 msgid "Filter rows" msgstr "搜尋資料列" -#: libraries/DisplayResults.php:948 libraries/central_columns.lib.php:665 +#: libraries/DisplayResults.php:952 libraries/central_columns.lib.php:665 msgid "Search this table" msgstr "搜尋此資料表" -#: libraries/DisplayResults.php:979 libraries/Util.php:2606 +#: libraries/DisplayResults.php:983 libraries/Util.php:2606 #: libraries/Util.php:2609 msgctxt "First page" msgid "Begin" msgstr "最前頁" -#: libraries/DisplayResults.php:982 libraries/Util.php:2607 +#: libraries/DisplayResults.php:986 libraries/Util.php:2607 #: libraries/Util.php:2610 libraries/server_bin_log.lib.php:173 #: libraries/server_bin_log.lib.php:175 msgctxt "Previous page" @@ -3399,154 +3382,155 @@ msgid "Previous" msgstr "上一頁" # 這應該使用於選擇日期的小月曆 -#: libraries/DisplayResults.php:1048 libraries/Util.php:2638 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2638 #: libraries/Util.php:2648 libraries/server_bin_log.lib.php:207 #: libraries/server_bin_log.lib.php:209 msgctxt "Next page" msgid "Next" msgstr "下一頁" -#: libraries/DisplayResults.php:1078 libraries/Util.php:2639 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2639 #: libraries/Util.php:2649 msgctxt "Last page" msgid "End" msgstr "最末頁" -#: libraries/DisplayResults.php:1121 +#: libraries/DisplayResults.php:1125 msgid "All" msgstr "全部" -#: libraries/DisplayResults.php:1131 libraries/display_export.lib.php:439 +#: libraries/DisplayResults.php:1135 libraries/display_export.lib.php:439 #: templates/startAndNumberOfRowsPanel.phtml:10 msgid "Number of rows:" msgstr "資料列數:" -#: libraries/DisplayResults.php:1421 +#: libraries/DisplayResults.php:1428 msgid "Sort by key" msgstr "依主鍵排序" -#: libraries/DisplayResults.php:1710 libraries/DisplayResults.php:1816 +#: libraries/DisplayResults.php:1717 libraries/DisplayResults.php:1823 msgid "Partial texts" msgstr "部分內容" -#: libraries/DisplayResults.php:1711 libraries/DisplayResults.php:1820 +#: libraries/DisplayResults.php:1718 libraries/DisplayResults.php:1827 msgid "Full texts" msgstr "完整內容" -#: libraries/DisplayResults.php:1727 +#: libraries/DisplayResults.php:1734 msgid "Relational key" msgstr "關聯鍵" -#: libraries/DisplayResults.php:1728 +#: libraries/DisplayResults.php:1735 msgid "Display column for relations" msgstr "顯示關聯的欄位" -#: libraries/DisplayResults.php:1741 +#: libraries/DisplayResults.php:1748 msgid "Show binary contents" msgstr "顯示二進位內容" -#: libraries/DisplayResults.php:1747 +#: libraries/DisplayResults.php:1754 msgid "Show BLOB contents" msgstr "顯示 BLOB 內容" -#: libraries/DisplayResults.php:1759 +#: libraries/DisplayResults.php:1766 msgid "Hide browser transformation" msgstr "隱藏瀏覽器轉換" -#: libraries/DisplayResults.php:1768 +#: libraries/DisplayResults.php:1775 msgid "Well Known Text" msgstr "易懂的文字" -#: libraries/DisplayResults.php:1769 +#: libraries/DisplayResults.php:1776 msgid "Well Known Binary" msgstr "易懂的二進位檔" -#: libraries/DisplayResults.php:3502 libraries/DisplayResults.php:3517 +#: libraries/DisplayResults.php:3517 libraries/DisplayResults.php:3532 msgid "The row has been deleted." msgstr "已刪除該行。" -#: libraries/DisplayResults.php:3553 libraries/DisplayResults.php:4800 +#: libraries/DisplayResults.php:3568 libraries/DisplayResults.php:4818 #: libraries/server_status_processes.lib.php:279 msgid "Kill" msgstr "中止" -#: libraries/DisplayResults.php:4245 +#: libraries/DisplayResults.php:4260 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "可能為近似值,請參考 [doc@faq3-11]FAQ 3.11[/doc]。" -#: libraries/DisplayResults.php:4315 libraries/Message.php:181 +#: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:659 +#: libraries/controllers/table/TableSearchController.php:656 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." msgstr "您的 SQL 語法已順利執行。" -#: libraries/DisplayResults.php:4658 +#: libraries/DisplayResults.php:4676 +#: libraries/controllers/DatabaseStructureController.php:767 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "這個檢視表至少需有此數量的資料列,請參考%sdocumentation%s。" -#: libraries/DisplayResults.php:4671 +#: libraries/DisplayResults.php:4689 #, php-format msgid "Showing rows %1s - %2s" msgstr "顯示第 %1s - %2s 列" -#: libraries/DisplayResults.php:4686 +#: libraries/DisplayResults.php:4704 #, php-format msgid "%1$d total, %2$d in query" msgstr "總計 %1$d 筆,目前查詢 %2$d 筆" -#: libraries/DisplayResults.php:4691 +#: libraries/DisplayResults.php:4709 #, php-format msgid "%d total" msgstr "總計 %d 筆" -#: libraries/DisplayResults.php:4703 libraries/sql.lib.php:1323 +#: libraries/DisplayResults.php:4721 libraries/sql.lib.php:1340 #, php-format msgid "Query took %01.4f seconds." msgstr "查詢花費 %01.4f 秒。" -#: libraries/DisplayResults.php:4805 libraries/DisplayResults.php:4812 -#: libraries/Util.php:4626 libraries/Util.php:4632 +#: libraries/DisplayResults.php:4823 libraries/DisplayResults.php:4830 +#: libraries/Util.php:4627 libraries/Util.php:4633 #: libraries/mult_submits.inc.php:54 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 msgid "With selected:" msgstr "已選擇項目:" -#: libraries/DisplayResults.php:4809 libraries/DisplayResults.php:4811 -#: libraries/Util.php:4628 libraries/Util.php:4629 +#: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4829 +#: libraries/Util.php:4629 libraries/Util.php:4630 #: libraries/server_privileges.lib.php:1277 #: libraries/server_privileges.lib.php:1278 #: libraries/server_privileges.lib.php:1490 -#: libraries/server_user_groups.lib.php:231 +#: libraries/server_user_groups.lib.php:235 #: templates/database/structure/check_all_tables.phtml:3 #: templates/database/structure/check_all_tables.phtml:4 msgid "Check all" msgstr "全選" -#: libraries/DisplayResults.php:4984 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "預覽列印" -#: libraries/DisplayResults.php:5016 +#: libraries/DisplayResults.php:5035 msgid "Query results operations" msgstr "查詢結果選項" -#: libraries/DisplayResults.php:5104 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "顯示圖表" -#: libraries/DisplayResults.php:5129 +#: libraries/DisplayResults.php:5147 msgid "Visualize GIS data" msgstr "視覺化的 GIS 資料" -#: libraries/DisplayResults.php:5306 +#: libraries/DisplayResults.php:5326 msgid "Link not found!" msgstr "無此連結!" @@ -3638,19 +3622,19 @@ msgstr "沒有已定義的索引!" #: libraries/build_html_for_db.lib.php:43 libraries/index.lib.php:27 #: libraries/navigation/nodes/NodeIndexContainer.php:25 #: libraries/navigation/nodes/NodeIndexContainer.php:26 -#: libraries/tracking.lib.php:970 +#: libraries/tracking.lib.php:982 msgid "Indexes" msgstr "索引" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:3518 -#: libraries/server_user_groups.lib.php:82 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:283 -#: libraries/tracking.lib.php:796 libraries/tracking.lib.php:1478 -#: libraries/tracking.lib.php:1624 +#: libraries/server_privileges.lib.php:2611 +#: libraries/server_privileges.lib.php:3529 +#: libraries/server_user_groups.lib.php:83 +#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 +#: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 #: templates/table/structure/display_partitions.phtml:34 @@ -3659,24 +3643,24 @@ msgid "Action" msgstr "動作" #: libraries/Index.php:693 libraries/browse_foreigners.lib.php:159 -#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:974 +#: libraries/browse_foreigners.lib.php:163 libraries/tracking.lib.php:986 msgid "Keyname" msgstr "鍵名" #: libraries/Index.php:695 -#: libraries/controllers/TableStructureController.php:1191 -#: libraries/controllers/TableStructureController.php:1196 -#: libraries/tracking.lib.php:976 +#: libraries/controllers/table/TableStructureController.php:1199 +#: libraries/controllers/table/TableStructureController.php:1204 +#: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 msgid "Unique" msgstr "唯一" -#: libraries/Index.php:696 libraries/tracking.lib.php:977 +#: libraries/Index.php:696 libraries/tracking.lib.php:989 msgid "Packed" msgstr "緊湊" -#: libraries/Index.php:698 libraries/tracking.lib.php:979 +#: libraries/Index.php:698 libraries/tracking.lib.php:991 msgid "Cardinality" msgstr "基數" @@ -3684,8 +3668,8 @@ msgstr "基數" #: libraries/central_columns.lib.php:704 #: libraries/central_columns.lib.php:1385 libraries/mysql_charsets.lib.php:47 #: libraries/operations.lib.php:296 libraries/operations.lib.php:1073 -#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:884 -#: libraries/tracking.lib.php:980 +#: libraries/server_collations.lib.php:35 libraries/tracking.lib.php:894 +#: libraries/tracking.lib.php:992 #: templates/columns_definitions/table_fields_definitions.phtml:33 #: templates/database/structure/table_header.phtml:55 #: templates/table/search/table_header.phtml:8 @@ -3695,8 +3679,8 @@ msgid "Collation" msgstr "編碼與排序" #: libraries/Index.php:701 libraries/rte/rte_events.lib.php:499 -#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:888 -#: libraries/tracking.lib.php:982 +#: libraries/rte/rte_routines.lib.php:1044 libraries/tracking.lib.php:898 +#: libraries/tracking.lib.php:994 #: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 #: templates/table/structure/display_partitions.phtml:32 @@ -3712,15 +3696,15 @@ msgstr "已刪除主鍵(Primary key)。" msgid "Index %s has been dropped." msgstr "已刪除索引 %s。" -#: libraries/Index.php:755 libraries/Util.php:3703 libraries/Util.php:3704 -#: libraries/controllers/TableStructureController.php:1187 -#: libraries/controllers/TableStructureController.php:1188 -#: libraries/operations.lib.php:1602 libraries/rte/rte_list.lib.php:153 +#: libraries/Index.php:755 libraries/Util.php:3704 libraries/Util.php:3705 +#: libraries/controllers/table/TableStructureController.php:1195 +#: libraries/controllers/table/TableStructureController.php:1196 +#: libraries/operations.lib.php:1605 libraries/rte/rte_list.lib.php:153 #: libraries/server_databases.lib.php:148 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:197 msgid "Drop" msgstr "刪除" @@ -3757,12 +3741,13 @@ msgstr "檢視表" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3150 -#: libraries/server_privileges.lib.php:3309 +#: libraries/server_privileges.lib.php:3152 #: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:4556 libraries/tracking.lib.php:1477 -#: libraries/tracking.lib.php:1619 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 +#: templates/table/relation/common_form.phtml:26 #: templates/table/relation/foreign_key_row.phtml:158 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" @@ -3770,7 +3755,7 @@ msgstr "資料表" #: libraries/Menu.php:328 libraries/Menu.php:431 libraries/Menu.php:544 #: libraries/Util.php:3408 libraries/Util.php:3418 libraries/Util.php:3424 -#: libraries/Util.php:4325 libraries/Util.php:4340 libraries/Util.php:4357 +#: libraries/Util.php:4326 libraries/Util.php:4341 libraries/Util.php:4358 #: libraries/config.values.php:40 libraries/config.values.php:48 #: libraries/config.values.php:111 libraries/config.values.php:117 #: libraries/config/messages.inc.php:323 @@ -3779,8 +3764,8 @@ msgid "SQL" msgstr "SQL" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Util.php:3409 -#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3698 -#: libraries/Util.php:3699 libraries/Util.php:4341 libraries/Util.php:4358 +#: libraries/Util.php:3419 libraries/Util.php:3425 libraries/Util.php:3699 +#: libraries/Util.php:3700 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:112 libraries/config.values.php:118 #: libraries/navigation/nodes/NodeTable.php:298 @@ -3788,41 +3773,41 @@ msgid "Search" msgstr "搜尋" #: libraries/Menu.php:341 libraries/Util.php:3410 libraries/Util.php:3420 -#: libraries/Util.php:3700 libraries/Util.php:3701 libraries/Util.php:4359 +#: libraries/Util.php:3701 libraries/Util.php:3702 libraries/Util.php:4360 #: libraries/config.values.php:42 libraries/config.values.php:50 #: libraries/config.values.php:119 #: libraries/navigation/nodes/NodeTable.php:304 -#: libraries/sql_query_form.lib.php:285 libraries/sql_query_form.lib.php:288 +#: libraries/sql_query_form.lib.php:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "新增" -#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4346 -#: libraries/Util.php:4362 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:4431 +#: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 +#: libraries/Util.php:4363 libraries/config.values.php:107 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 +#: libraries/server_privileges.lib.php:4452 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "權限" #: libraries/Menu.php:374 libraries/Menu.php:382 libraries/Menu.php:461 -#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4345 -#: libraries/Util.php:4363 libraries/config.values.php:113 +#: libraries/Util.php:3412 libraries/Util.php:3426 libraries/Util.php:4346 +#: libraries/Util.php:4364 libraries/config.values.php:113 #: view_operations.php:93 msgid "Operations" msgstr "操作" -#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4350 -#: libraries/Util.php:4364 libraries/relation.lib.php:260 +#: libraries/Menu.php:387 libraries/Menu.php:491 libraries/Util.php:4351 +#: libraries/Util.php:4365 libraries/relation.lib.php:263 msgid "Tracking" msgstr "追蹤" -#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4349 -#: libraries/Util.php:4365 +#: libraries/Menu.php:399 libraries/Menu.php:485 libraries/Util.php:4350 +#: libraries/Util.php:4366 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:2006 +#: libraries/plugins/export/ExportSql.php:1989 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3833,16 +3818,16 @@ msgstr "觸發器" msgid "Database seems to be empty!" msgstr "資料庫是空的!" -#: libraries/Menu.php:441 libraries/Util.php:4342 +#: libraries/Menu.php:441 libraries/Util.php:4343 msgid "Query" msgstr "查詢" -#: libraries/Menu.php:474 libraries/Util.php:4347 +#: libraries/Menu.php:474 libraries/Util.php:4348 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "預存程序" -#: libraries/Menu.php:479 libraries/Util.php:4348 +#: libraries/Menu.php:479 libraries/Util.php:4349 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:948 #: libraries/plugins/export/ExportXml.php:104 @@ -3850,20 +3835,20 @@ msgstr "預存程序" msgid "Events" msgstr "事件" -#: libraries/Menu.php:497 libraries/Util.php:4351 +#: libraries/Menu.php:497 libraries/Util.php:4352 msgid "Designer" msgstr "設計器" -#: libraries/Menu.php:506 libraries/Util.php:4352 +#: libraries/Menu.php:506 libraries/Util.php:4353 #: templates/database/structure/check_all_tables.phtml:33 msgid "Central columns" msgstr "中央欄位" -#: libraries/Menu.php:540 libraries/Util.php:4324 +#: libraries/Menu.php:540 libraries/Util.php:4325 #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4542 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 msgid "Databases" msgstr "資料庫" @@ -3872,33 +3857,33 @@ msgid "User accounts" msgstr "使用者帳號" #: libraries/Menu.php:591 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4331 libraries/server_common.lib.php:36 +#: libraries/Util.php:4332 libraries/server_common.lib.php:36 msgid "Binary log" msgstr "二進位記錄" #: libraries/Menu.php:597 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4332 libraries/server_common.lib.php:42 +#: libraries/Util.php:4333 libraries/server_common.lib.php:42 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "備援" #: libraries/Menu.php:602 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4333 libraries/config.values.php:106 -#: libraries/server_engines.lib.php:111 libraries/server_engines.lib.php:115 -#: libraries/sql_query_form.lib.php:421 +#: libraries/Util.php:4334 libraries/config.values.php:106 +#: libraries/server_engines.lib.php:113 libraries/server_engines.lib.php:117 +#: libraries/sql_query_form.lib.php:422 msgid "Variables" msgstr "變數" -#: libraries/Menu.php:606 libraries/Util.php:4334 +#: libraries/Menu.php:606 libraries/Util.php:4335 msgid "Charsets" msgstr "字元編碼" -#: libraries/Menu.php:610 libraries/Util.php:4336 +#: libraries/Menu.php:610 libraries/Util.php:4337 msgid "Engines" msgstr "引擎" -#: libraries/Menu.php:614 libraries/Util.php:4335 +#: libraries/Menu.php:614 libraries/Util.php:4336 #: libraries/server_common.lib.php:33 msgid "Plugins" msgstr "附加元件" @@ -4188,7 +4173,7 @@ msgstr "無法將索引更改爲主鍵(PRIMARY)!" msgid "No index parts defined!" msgstr "沒有定義的索引部分!" -#: libraries/Table.php:2196 +#: libraries/Table.php:2200 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "建立外鍵 %1$s 時發生錯誤 (檢查資料類型)" @@ -4636,37 +4621,37 @@ msgstr "%s 功能受到一個已知的問題影響,詳情請參考 %s" msgid "Click to toggle" msgstr "點此切換" -#: libraries/Util.php:3615 prefs_manage.php:251 +#: libraries/Util.php:3616 prefs_manage.php:251 msgid "Browse your computer:" msgstr "由電腦上傳:" -#: libraries/Util.php:3640 +#: libraries/Util.php:3641 #, php-format msgid "Select from the web server upload directory %s:" msgstr "由網頁伺服器上傳目錄中選擇 %s:" -#: libraries/Util.php:3669 libraries/insert_edit.lib.php:1174 +#: libraries/Util.php:3670 libraries/insert_edit.lib.php:1181 msgid "The directory you set for upload work cannot be reached." msgstr "設定之上傳目錄錯誤,無法使用。" -#: libraries/Util.php:3680 +#: libraries/Util.php:3681 msgid "There are no files to upload!" msgstr "無可上傳的檔案!" -#: libraries/Util.php:3705 libraries/Util.php:3706 +#: libraries/Util.php:3706 libraries/Util.php:3707 #: templates/database/structure/check_all_tables.phtml:15 msgid "Empty" msgstr "清空" -#: libraries/Util.php:3711 libraries/Util.php:3712 +#: libraries/Util.php:3712 libraries/Util.php:3713 msgid "Execute" msgstr "執行" -#: libraries/Util.php:4221 +#: libraries/Util.php:4222 msgid "Print" msgstr "列印" -#: libraries/Util.php:4327 +#: libraries/Util.php:4328 msgid "Users" msgstr "使用者" @@ -4825,8 +4810,8 @@ msgid "Add new column" msgstr "新增欄位" #: libraries/central_columns.lib.php:1385 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:636 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:659 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:634 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:657 #: templates/columns_definitions/table_fields_definitions.phtml:36 #: templates/table/structure/table_structure_header.phtml:10 msgid "Attributes" @@ -4887,19 +4872,19 @@ msgstr "" msgid "You should upgrade to %s %s or later." msgstr "您應升級到 %s %s 或更新版本。" -#: libraries/common.inc.php:1115 +#: libraries/common.inc.php:1116 msgid "Error: Token mismatch" msgstr "錯誤: 連線資訊失效,請重新連線" -#: libraries/common.inc.php:1147 +#: libraries/common.inc.php:1148 msgid "GLOBALS overwrite attempt" msgstr "嘗試覆寫 GLOBALS (全域變數)" -#: libraries/common.inc.php:1154 +#: libraries/common.inc.php:1155 msgid "possible exploit" msgstr "$_REQUEST 數量過多(駭客?)" -#: libraries/common.inc.php:1163 +#: libraries/common.inc.php:1164 msgid "numeric key detected" msgstr "$_GLOBALS 內含非法的數字鍵名" @@ -5698,7 +5683,7 @@ msgid "Remember file name template" msgstr "記錄樣板檔案名稱" #: libraries/config/messages.inc.php:186 libraries/operations.lib.php:229 -#: libraries/operations.lib.php:854 libraries/operations.lib.php:1289 +#: libraries/operations.lib.php:854 libraries/operations.lib.php:1292 msgid "Add AUTO_INCREMENT value" msgstr "加入自動遞增(AUTO_INCREMENT)數值" @@ -5737,7 +5722,7 @@ msgstr "自 phpMyAdmin 設定儲存空間匯出相關的 Metadata" #: libraries/config/messages.inc.php:200 libraries/config/messages.inc.php:202 #: libraries/config/messages.inc.php:203 libraries/config/messages.inc.php:205 #: libraries/config/messages.inc.php:217 libraries/operations.lib.php:224 -#: libraries/operations.lib.php:1285 +#: libraries/operations.lib.php:1288 #, php-format msgid "Add %s" msgstr "加入 %s" @@ -7339,7 +7324,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "是否在查詢過後繼續在畫面上顯示查詢框。" -#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:351 +#: libraries/config/messages.inc.php:886 libraries/sql_query_form.lib.php:352 msgid "Retain query box" msgstr "繼續顯示查詢框" @@ -7623,100 +7608,33 @@ msgstr "微軟 Word 2000" msgid "OpenDocument Text" msgstr "OpenOffice 檔案" -#: libraries/controllers/DatabaseStructureController.php:411 +#: libraries/controllers/DatabaseStructureController.php:272 +msgid "Favorite List is full!" +msgstr "我的最愛清單已滿!" + +#: libraries/controllers/DatabaseStructureController.php:558 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "已清空資料表 %s。" -#: libraries/controllers/DatabaseStructureController.php:432 +#: libraries/controllers/DatabaseStructureController.php:579 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "已刪除檢視表 %s。" -#: libraries/controllers/DatabaseStructureController.php:433 +#: libraries/controllers/DatabaseStructureController.php:580 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "已刪除資料表 %s。" -#: libraries/controllers/DatabaseStructureController.php:720 -msgid "Favorite List is full!" -msgstr "我的最愛清單已滿!" - -#: libraries/controllers/DatabaseStructureController.php:931 +#: libraries/controllers/DatabaseStructureController.php:981 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "未知" -#: libraries/controllers/TableStructureController.php:162 -#, php-format -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.php:250 -msgid "No column selected." -msgstr "尚未選擇欄位。" - -#: libraries/controllers/TableStructureController.php:484 -msgid "The columns have been moved successfully." -msgstr "欄位已移動成功。" - -#: libraries/controllers/TableStructureController.php:731 -#: libraries/controllers/TableStructureController.php:973 -#: libraries/controllers/table/TableIndexesController.php:153 -#: tbl_addfield.php:92 -#, php-format -msgid "Table %1$s has been altered successfully." -msgstr "已成功修改資料表 %1$s 。" - -#: libraries/controllers/TableStructureController.php:742 -#: libraries/controllers/TableStructureController.php:1022 -#: libraries/tracking.lib.php:1097 -msgid "Query error" -msgstr "查詢錯誤" - -#: libraries/controllers/TableStructureController.php:967 -#, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "已成功修改資料表 %1$s 。已調整權限。" - -#: libraries/controllers/TableStructureController.php:1186 -#: templates/table/structure/check_all_table_column.phtml:11 -msgid "Change" -msgstr "修改" - -#: libraries/controllers/TableStructureController.php:1190 -#: libraries/controllers/TableStructureController.php:1195 -#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:929 -#: templates/columns_definitions/column_indexes.phtml:16 -#: templates/columns_definitions/table_fields_definitions.phtml:57 -#: templates/table/structure/check_all_table_column.phtml:30 -#: templates/table/structure/display_structure.phtml:84 -#: templates/table/structure/display_table_stats.phtml:19 -msgid "Index" -msgstr "索引" - -#: libraries/controllers/TableStructureController.php:1192 -#: libraries/controllers/TableStructureController.php:1197 -#: templates/columns_definitions/column_indexes.phtml:26 -msgid "Spatial" -msgstr "空間" - -#: libraries/controllers/TableStructureController.php:1193 -#: libraries/controllers/TableStructureController.php:1198 -#: templates/columns_definitions/column_indexes.phtml:21 -#: templates/table/structure/check_all_table_column.phtml:40 -msgid "Fulltext" -msgstr "全文搜尋" - -#: libraries/controllers/TableStructureController.php:1201 -msgid "Distinct values" -msgstr "顯示相異值" - #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -7730,6 +7648,14 @@ msgstr "目前資料表中沒有數值欄位可供繪製。" msgid "No data to display" msgstr "無資料可顯示" +#: libraries/controllers/table/TableIndexesController.php:153 +#: libraries/controllers/table/TableStructureController.php:732 +#: libraries/controllers/table/TableStructureController.php:981 +#: tbl_addfield.php:92 +#, php-format +msgid "Table %1$s has been altered successfully." +msgstr "已成功修改資料表 %1$s 。" + #: libraries/controllers/table/TableRelationController.php:212 msgid "Display column was successfully updated." msgstr "顯示欄位已成功更新。" @@ -7738,19 +7664,78 @@ msgstr "顯示欄位已成功更新。" msgid "Internal relations were successfully updated." msgstr "內部關聯已成功更新。" -#: libraries/controllers/table/TableSearchController.php:844 +#: libraries/controllers/table/TableSearchController.php:841 msgid "Table search" msgstr "資料表搜尋" -#: libraries/controllers/table/TableSearchController.php:851 +#: libraries/controllers/table/TableSearchController.php:848 msgid "Zoom search" msgstr "縮放搜尋" -#: libraries/controllers/table/TableSearchController.php:856 +#: libraries/controllers/table/TableSearchController.php:853 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "搜尋與取代" +#: libraries/controllers/table/TableStructureController.php:163 +#, php-format +msgid "The name '%s' is a MySQL reserved keyword." +msgid_plural "The names '%s' are MySQL reserved keywords." +msgstr[0] "名稱 '%s' 是 MySQL 保留字。" + +#: libraries/controllers/table/TableStructureController.php:251 +msgid "No column selected." +msgstr "尚未選擇欄位。" + +#: libraries/controllers/table/TableStructureController.php:485 +msgid "The columns have been moved successfully." +msgstr "欄位已移動成功。" + +#: libraries/controllers/table/TableStructureController.php:743 +#: libraries/controllers/table/TableStructureController.php:1030 +#: libraries/tracking.lib.php:1109 +msgid "Query error" +msgstr "查詢錯誤" + +#: libraries/controllers/table/TableStructureController.php:975 +#, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "已成功修改資料表 %1$s 。已調整權限。" + +#: libraries/controllers/table/TableStructureController.php:1194 +#: templates/table/structure/check_all_table_column.phtml:11 +msgid "Change" +msgstr "修改" + +#: libraries/controllers/table/TableStructureController.php:1198 +#: libraries/controllers/table/TableStructureController.php:1203 +#: libraries/navigation/nodes/NodeIndex.php:30 libraries/tracking.lib.php:939 +#: templates/columns_definitions/column_indexes.phtml:16 +#: templates/columns_definitions/table_fields_definitions.phtml:57 +#: templates/table/structure/check_all_table_column.phtml:30 +#: templates/table/structure/display_structure.phtml:85 +#: templates/table/structure/display_table_stats.phtml:19 +msgid "Index" +msgstr "索引" + +#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1205 +#: templates/columns_definitions/column_indexes.phtml:26 +msgid "Spatial" +msgstr "空間" + +#: libraries/controllers/table/TableStructureController.php:1201 +#: libraries/controllers/table/TableStructureController.php:1206 +#: templates/columns_definitions/column_indexes.phtml:21 +#: templates/table/structure/check_all_table_column.phtml:40 +msgid "Fulltext" +msgstr "全文搜尋" + +#: libraries/controllers/table/TableStructureController.php:1209 +msgid "Distinct values" +msgstr "顯示相異值" + #: libraries/core.lib.php:308 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." @@ -7760,7 +7745,7 @@ msgstr "缺少 %s 擴充套件。請檢查 PHP 設定。" msgid "possible deep recursion attack" msgstr "您可能遭遇多層遞迴攻擊" -#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:328 +#: libraries/core.lib.php:927 libraries/mult_submits.inc.php:329 #: tbl_replace.php:306 templates/preview_sql.phtml:3 msgid "No change" msgstr "無更改" @@ -7829,7 +7814,7 @@ msgstr "建立" msgid "Create database:" msgstr "建立新資料庫:" -#: libraries/display_create_database.lib.php:60 server_privileges.php:129 +#: libraries/display_create_database.lib.php:60 server_privileges.php:130 #: server_replication.php:32 server_user_groups.php:28 msgid "No Privileges" msgstr "無權限" @@ -8522,63 +8507,63 @@ msgid "Dump has been saved to file %s." msgstr "匯出資料已儲存至檔案 %s。" #: libraries/import.lib.php:204 libraries/insert_edit.lib.php:127 -#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1317 +#: libraries/rte/rte_routines.lib.php:1441 libraries/sql.lib.php:1334 #: tbl_get_field.php:45 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL 回傳空的查詢結果 (即零資料列)。" -#: libraries/import.lib.php:267 libraries/sql.lib.php:1331 +#: libraries/import.lib.php:267 libraries/sql.lib.php:1348 msgid "[ROLLBACK occurred.]" msgstr "[已發生 ROLLBACK。]" -#: libraries/import.lib.php:1253 +#: libraries/import.lib.php:1255 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "下列結構被建立或修改。您可以:" -#: libraries/import.lib.php:1256 +#: libraries/import.lib.php:1258 msgid "View a structure's contents by clicking on its name." msgstr "點選結構的名稱查看內容。" -#: libraries/import.lib.php:1259 +#: libraries/import.lib.php:1261 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "點選 \"選項\" 連結以修改項目的設定值。" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1263 msgid "Edit structure by following the \"Structure\" link." msgstr "點選「結構」連結以編輯。" -#: libraries/import.lib.php:1268 +#: libraries/import.lib.php:1270 #, php-format msgid "Go to database: %s" msgstr "前往資料庫: %s" -#: libraries/import.lib.php:1274 libraries/import.lib.php:1318 +#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 #, php-format msgid "Edit settings for %s" msgstr "修改 %s 的設定" -#: libraries/import.lib.php:1303 +#: libraries/import.lib.php:1305 #, php-format msgid "Go to table: %s" msgstr "前往資料表: %s" -#: libraries/import.lib.php:1311 +#: libraries/import.lib.php:1313 #, php-format msgid "Structure of %s" msgstr "%s 的結構" -#: libraries/import.lib.php:1329 +#: libraries/import.lib.php:1331 #, php-format msgid "Go to view: %s" msgstr "前往檢視: %s" -#: libraries/import.lib.php:1389 +#: libraries/import.lib.php:1391 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "只有單一資料表的更新(UPDATE)與刪除(DELETE)查詢能模擬。" -#: libraries/import.lib.php:1612 +#: libraries/import.lib.php:1614 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8586,7 +8571,7 @@ msgstr "" "只有支援交易引擎資料表中的插入(INSERT)、更新(UPDATE)、刪除(DELETE)與取代" "(REPLACE)查詢能還原(Rollback)。" -#: libraries/index.lib.php:36 +#: libraries/index.lib.php:39 #, php-format msgid "Create an index on  %s columns" msgstr "在第 %s 個欄位建立索引" @@ -8609,66 +8594,66 @@ msgstr "函數" msgid "Binary" msgstr "二進位" -#: libraries/insert_edit.lib.php:601 +#: libraries/insert_edit.lib.php:604 msgid "Because of its length,
this column might not be editable." msgstr "因長度問題,
該欄位可能無法編輯。" -#: libraries/insert_edit.lib.php:1051 +#: libraries/insert_edit.lib.php:1056 msgid "Binary - do not edit" msgstr "二進位 - 無法編輯" -#: libraries/insert_edit.lib.php:1177 libraries/server_privileges.lib.php:475 +#: libraries/insert_edit.lib.php:1184 libraries/server_privileges.lib.php:475 #: templates/table/search/options.phtml:36 msgid "Or" msgstr "或" -#: libraries/insert_edit.lib.php:1178 +#: libraries/insert_edit.lib.php:1185 msgid "web server upload directory:" msgstr "網站伺服器上傳資料夾:" -#: libraries/insert_edit.lib.php:1349 +#: libraries/insert_edit.lib.php:1356 #: templates/table/search/input_box.phtml:49 msgid "Edit/Insert" msgstr "修改/新增" -#: libraries/insert_edit.lib.php:1399 +#: libraries/insert_edit.lib.php:1406 #, php-format msgid "Continue insertion with %s rows" msgstr "繼續新增 %s 列" -#: libraries/insert_edit.lib.php:1429 +#: libraries/insert_edit.lib.php:1436 msgid "and then" msgstr "然後" -#: libraries/insert_edit.lib.php:1462 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row" msgstr "以新資料列新增" -#: libraries/insert_edit.lib.php:1465 +#: libraries/insert_edit.lib.php:1472 msgid "Insert as new row and ignore errors" msgstr "以新資料列新增 (忽略錯誤)" -#: libraries/insert_edit.lib.php:1468 +#: libraries/insert_edit.lib.php:1475 msgid "Show insert query" msgstr "顯示新增指令" -#: libraries/insert_edit.lib.php:1488 +#: libraries/insert_edit.lib.php:1495 msgid "Go back to previous page" msgstr "返回上一頁" -#: libraries/insert_edit.lib.php:1491 +#: libraries/insert_edit.lib.php:1498 msgid "Insert another new row" msgstr "新增其他新資料列" -#: libraries/insert_edit.lib.php:1496 +#: libraries/insert_edit.lib.php:1503 msgid "Go back to this page" msgstr "返回到本頁" -#: libraries/insert_edit.lib.php:1519 +#: libraries/insert_edit.lib.php:1526 msgid "Edit next row" msgstr "編輯下一行" -#: libraries/insert_edit.lib.php:1541 +#: libraries/insert_edit.lib.php:1548 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -8676,7 +8661,7 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "按 TAB 鍵跳到下一個數值,或 CTRL+方向鍵 作隨意移動" -#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:546 +#: libraries/insert_edit.lib.php:1585 libraries/replication_gui.lib.php:546 #: libraries/rte/rte_routines.lib.php:1585 #: libraries/server_status_variables.lib.php:222 #: templates/database/designer/having_query_panel.phtml:100 @@ -8688,11 +8673,11 @@ msgstr "按 TAB 鍵跳到下一個數值,或 CTRL+方向鍵 作隨意移動" msgid "Value" msgstr "值" -#: libraries/insert_edit.lib.php:1938 libraries/sql.lib.php:1314 +#: libraries/insert_edit.lib.php:1949 libraries/sql.lib.php:1331 msgid "Showing SQL query" msgstr "顯示 SQL 查詢" -#: libraries/insert_edit.lib.php:1963 libraries/sql.lib.php:1292 +#: libraries/insert_edit.lib.php:1974 libraries/sql.lib.php:1309 #, php-format msgid "Inserted row id: %1$d" msgstr "新增的資料列行 id: %1$d" @@ -8708,35 +8693,35 @@ msgstr "無" msgid "Convert to Kana" msgstr "轉換爲假名" -#: libraries/mult_submits.inc.php:325 +#: libraries/mult_submits.inc.php:326 msgid "Success!" msgstr "成功!" -#: libraries/mult_submits.lib.php:318 +#: libraries/mult_submits.lib.php:323 msgid "Replace table prefix:" msgstr "取代資料表名稱的前綴文字:" -#: libraries/mult_submits.lib.php:320 +#: libraries/mult_submits.lib.php:325 msgid "Copy table with prefix:" msgstr "複製資料表並在名稱加上前綴文字:" -#: libraries/mult_submits.lib.php:325 +#: libraries/mult_submits.lib.php:330 msgid "From" msgstr "從" -#: libraries/mult_submits.lib.php:331 +#: libraries/mult_submits.lib.php:336 msgid "To" msgstr "至" -#: libraries/mult_submits.lib.php:360 +#: libraries/mult_submits.lib.php:365 msgid "Add table prefix:" msgstr "新增資料表的前綴文字:" -#: libraries/mult_submits.lib.php:363 +#: libraries/mult_submits.lib.php:368 msgid "Add prefix" msgstr "新增前綴文字" -#: libraries/mult_submits.lib.php:399 +#: libraries/mult_submits.lib.php:404 msgid "Do you really want to execute the following query?" msgstr "您真的要執行下列的查詢?" @@ -8954,8 +8939,8 @@ msgstr "Procedure:" msgid "Views:" msgstr "視表:" -#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:284 -#: libraries/tracking.lib.php:1625 tbl_change.php:164 +#: libraries/navigation/Navigation.php:218 libraries/tracking.lib.php:286 +#: libraries/tracking.lib.php:1641 tbl_change.php:164 msgid "Show" msgstr "顯示" @@ -8993,18 +8978,15 @@ msgid_plural "%s results found" msgstr[0] "找到 %s 筆結果" #: libraries/navigation/NavigationTree.php:1369 -msgid "Filter databases by name or regex" -msgstr "依名稱或 Regex 搜尋資料庫" +#: libraries/navigation/NavigationTree.php:1406 +msgid "Type to filter these, Enter to search all" +msgstr "" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 msgid "Clear fast filter" msgstr "清除快速搜尋" -#: libraries/navigation/NavigationTree.php:1406 -msgid "Filter by name or regex" -msgstr "依名稱或 Regex 搜尋" - #: libraries/navigation/NavigationTree.php:1433 msgid "Collapse all" msgstr "全部摺疊" @@ -9397,7 +9379,7 @@ msgstr "重新命名資料庫為" #: libraries/operations.lib.php:101 libraries/operations.lib.php:247 #: libraries/operations.lib.php:867 libraries/operations.lib.php:959 -#: libraries/operations.lib.php:1311 +#: libraries/operations.lib.php:1314 #: templates/columns_definitions/column_adjust_privileges.phtml:16 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " @@ -9406,7 +9388,7 @@ msgstr "您的權限不足以執行此操作,請參考說明文件了解詳細 #: libraries/operations.lib.php:108 libraries/operations.lib.php:253 #: libraries/operations.lib.php:873 libraries/operations.lib.php:965 -#: libraries/operations.lib.php:1317 libraries/rte/rte_routines.lib.php:997 +#: libraries/operations.lib.php:1320 libraries/rte/rte_routines.lib.php:997 #: templates/columns_definitions/table_fields_definitions.phtml:47 msgid "Adjust privileges" msgstr "調整權限" @@ -9424,18 +9406,18 @@ msgstr "刪除資料庫" msgid "Drop the database (DROP)" msgstr "刪除資料庫 (DROP)" -#: libraries/operations.lib.php:177 libraries/operations.lib.php:1272 -#: libraries/tracking.lib.php:521 +#: libraries/operations.lib.php:177 libraries/operations.lib.php:1275 +#: libraries/tracking.lib.php:531 msgid "Structure only" msgstr "僅結構" -#: libraries/operations.lib.php:178 libraries/operations.lib.php:1273 -#: libraries/tracking.lib.php:527 +#: libraries/operations.lib.php:178 libraries/operations.lib.php:1276 +#: libraries/tracking.lib.php:537 msgid "Structure and data" msgstr "結構和資料" -#: libraries/operations.lib.php:179 libraries/operations.lib.php:1274 -#: libraries/tracking.lib.php:524 +#: libraries/operations.lib.php:179 libraries/operations.lib.php:1277 +#: libraries/tracking.lib.php:534 msgid "Data only" msgstr "僅資料" @@ -9447,7 +9429,7 @@ msgstr "複製資料庫到" msgid "CREATE DATABASE before copying" msgstr "複製前建立資料庫(CREATE DATABASE)" -#: libraries/operations.lib.php:233 libraries/operations.lib.php:1297 +#: libraries/operations.lib.php:233 libraries/operations.lib.php:1300 msgid "Add constraints" msgstr "加入限制(Constraint)" @@ -9487,157 +9469,157 @@ msgstr "儲存引擎" msgid "Change all column collations" msgstr "更改所有欄位編碼與排序" -#: libraries/operations.lib.php:1255 +#: libraries/operations.lib.php:1258 msgid "Copy table to (database.table)" msgstr "複製資料表到 (資料庫.資料表)" -#: libraries/operations.lib.php:1332 +#: libraries/operations.lib.php:1335 msgid "Switch to copied table" msgstr "切換到複製的資料表" -#: libraries/operations.lib.php:1359 +#: libraries/operations.lib.php:1362 #: templates/database/structure/check_all_tables.phtml:18 msgid "Table maintenance" msgstr "資料表維護" -#: libraries/operations.lib.php:1397 +#: libraries/operations.lib.php:1400 #: templates/database/structure/check_all_tables.phtml:19 msgid "Analyze table" msgstr "分析資料表" -#: libraries/operations.lib.php:1412 +#: libraries/operations.lib.php:1415 #: templates/database/structure/check_all_tables.phtml:20 msgid "Check table" msgstr "檢查資料表" -#: libraries/operations.lib.php:1426 +#: libraries/operations.lib.php:1429 #: templates/database/structure/check_all_tables.phtml:21 msgid "Checksum table" msgstr "Checksum 資料表" -#: libraries/operations.lib.php:1440 +#: libraries/operations.lib.php:1443 msgid "Defragment table" msgstr "重組資料表" -#: libraries/operations.lib.php:1452 +#: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." msgstr "已更新資料表 %s。" -#: libraries/operations.lib.php:1458 +#: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" msgstr "更新資料表 (FLUSH)" -#: libraries/operations.lib.php:1472 +#: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 #: templates/table/structure/display_table_stats.phtml:56 msgid "Optimize table" msgstr "最佳化資料表" -#: libraries/operations.lib.php:1487 +#: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" msgstr "修復資料表" -#: libraries/operations.lib.php:1533 +#: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 #: view_operations.php:130 msgid "Delete data or table" msgstr "刪除資料或資料表" -#: libraries/operations.lib.php:1541 +#: libraries/operations.lib.php:1544 msgid "Empty the table (TRUNCATE)" msgstr "清空資料表 (TRUNCATE)" -#: libraries/operations.lib.php:1549 +#: libraries/operations.lib.php:1552 msgid "Delete the table (DROP)" msgstr "刪除資料表 (DROP)" -#: libraries/operations.lib.php:1589 -#: templates/table/structure/display_structure.phtml:187 +#: libraries/operations.lib.php:1592 +#: templates/table/structure/display_structure.phtml:189 msgid "Analyze" msgstr "分析" -#: libraries/operations.lib.php:1590 -#: templates/table/structure/display_structure.phtml:188 +#: libraries/operations.lib.php:1593 +#: templates/table/structure/display_structure.phtml:190 msgid "Check" msgstr "檢查" -#: libraries/operations.lib.php:1591 -#: templates/table/structure/display_structure.phtml:189 +#: libraries/operations.lib.php:1594 +#: templates/table/structure/display_structure.phtml:191 msgid "Optimize" msgstr "最佳化" -#: libraries/operations.lib.php:1592 -#: templates/table/structure/display_structure.phtml:190 +#: libraries/operations.lib.php:1595 +#: templates/table/structure/display_structure.phtml:192 msgid "Rebuild" msgstr "重建" -#: libraries/operations.lib.php:1593 -#: templates/table/structure/display_structure.phtml:191 +#: libraries/operations.lib.php:1596 +#: templates/table/structure/display_structure.phtml:193 msgid "Repair" msgstr "修復" -#: libraries/operations.lib.php:1594 -#: templates/table/structure/display_structure.phtml:192 +#: libraries/operations.lib.php:1597 +#: templates/table/structure/display_structure.phtml:194 msgid "Truncate" msgstr "清空" -#: libraries/operations.lib.php:1604 +#: libraries/operations.lib.php:1607 msgid "Coalesce" msgstr "合併" -#: libraries/operations.lib.php:1613 +#: libraries/operations.lib.php:1616 msgid "Partition maintenance" msgstr "分區維護" -#: libraries/operations.lib.php:1630 +#: libraries/operations.lib.php:1633 #, php-format msgid "Partition %s" msgstr "分區 %s" -#: libraries/operations.lib.php:1648 +#: libraries/operations.lib.php:1651 #: templates/table/structure/display_partitions.phtml:138 msgid "Remove partitioning" msgstr "刪除分區" -#: libraries/operations.lib.php:1674 +#: libraries/operations.lib.php:1677 msgid "Check referential integrity:" msgstr "檢查引用完整性:" -#: libraries/operations.lib.php:2091 +#: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" msgstr "目標資料表不能爲來源資料表!" -#: libraries/operations.lib.php:2093 +#: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" msgstr "目標資料表不能爲來源資料表!" -#: libraries/operations.lib.php:2117 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "已將資料表 %s 移動到 %s。已調整權限。" -#: libraries/operations.lib.php:2124 +#: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "已將資料表 %s 複製爲 %s。已調整權限。" -#: libraries/operations.lib.php:2133 +#: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." msgstr "已將資料表 %s 移動到 %s。" -#: libraries/operations.lib.php:2137 +#: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." msgstr "已將資料表 %s 複製爲 %s。" -#: libraries/operations.lib.php:2159 +#: libraries/operations.lib.php:2163 msgid "The table name is empty!" msgstr "資料表名稱不能爲空!" -#: libraries/plugin_interface.lib.php:563 +#: libraries/plugin_interface.lib.php:564 msgid "This format has no options" msgstr "該格式沒有選項" @@ -9804,7 +9786,7 @@ msgstr "資料匯出選項" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2310 +#: libraries/plugins/export/ExportSql.php:2293 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "資料表的匯出資料" @@ -9828,21 +9810,21 @@ msgstr "定義" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1975 +#: libraries/plugins/export/ExportSql.php:1958 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "資料表結構" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2045 +#: libraries/plugins/export/ExportSql.php:2028 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "檢視表結構" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2090 +#: libraries/plugins/export/ExportSql.php:2073 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "替換檢視表以便查看" @@ -9932,7 +9914,7 @@ msgid "Database:" msgstr "資料庫:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2150 +#: libraries/plugins/export/ExportSql.php:2133 msgid "Data:" msgstr "資料:" @@ -10026,7 +10008,7 @@ msgid "Data creation options" msgstr "資料建立選項" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2256 +#: libraries/plugins/export/ExportSql.php:2239 msgid "Truncate table before insert" msgstr "資料表新增前先清除舊資料" @@ -10107,8 +10089,8 @@ msgstr "您的資料庫使用了程序(Procedure);" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1532 -#: libraries/plugins/export/ExportSql.php:2035 +#: libraries/plugins/export/ExportSql.php:1515 +#: libraries/plugins/export/ExportSql.php:2018 msgid "alias export may not work reliably in all cases." msgstr "別名匯出可能無法在所有的情況下正常運作。" @@ -10116,81 +10098,81 @@ msgstr "別名匯出可能無法在所有的情況下正常運作。" msgid "It appears your database uses functions;" msgstr "您的資料庫使用了函數(Function);" -#: libraries/plugins/export/ExportSql.php:996 +#: libraries/plugins/export/ExportSql.php:993 msgid "Metadata" msgstr "詮釋資料" -#: libraries/plugins/export/ExportSql.php:1078 +#: libraries/plugins/export/ExportSql.php:1061 #, php-format msgid "Metadata for %s" msgstr "%s 的 Metadata" -#: libraries/plugins/export/ExportSql.php:1407 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:608 +#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "建立時間:" -#: libraries/plugins/export/ExportSql.php:1420 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:615 +#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "最後更新:" -#: libraries/plugins/export/ExportSql.php:1433 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:622 +#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "最後檢查:" -#: libraries/plugins/export/ExportSql.php:1480 +#: libraries/plugins/export/ExportSql.php:1463 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "使用中" -#: libraries/plugins/export/ExportSql.php:1529 +#: libraries/plugins/export/ExportSql.php:1512 msgid "It appears your database uses views;" msgstr "您的資料庫使用了檢視表(View);" -#: libraries/plugins/export/ExportSql.php:1691 +#: libraries/plugins/export/ExportSql.php:1674 msgid "Constraints for dumped tables" msgstr "已匯出資料表的限制(Constraint)" -#: libraries/plugins/export/ExportSql.php:1692 +#: libraries/plugins/export/ExportSql.php:1675 msgid "Constraints for table" msgstr "資料表的 Constraints" -#: libraries/plugins/export/ExportSql.php:1722 +#: libraries/plugins/export/ExportSql.php:1705 msgid "Indexes for dumped tables" msgstr "已匯出資料表的索引" -#: libraries/plugins/export/ExportSql.php:1723 +#: libraries/plugins/export/ExportSql.php:1706 msgid "Indexes for table" msgstr "資料表索引" -#: libraries/plugins/export/ExportSql.php:1751 +#: libraries/plugins/export/ExportSql.php:1734 msgid "AUTO_INCREMENT for dumped tables" msgstr "在匯出的資料表使用 AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1752 +#: libraries/plugins/export/ExportSql.php:1735 msgid "AUTO_INCREMENT for table" msgstr "使用資料表 AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1827 +#: libraries/plugins/export/ExportSql.php:1810 msgid "MIME TYPES FOR TABLE" msgstr "MIME 類型表" -#: libraries/plugins/export/ExportSql.php:1851 +#: libraries/plugins/export/ExportSql.php:1834 msgid "RELATIONS FOR TABLE" msgstr "表的關聯" -#: libraries/plugins/export/ExportSql.php:2032 +#: libraries/plugins/export/ExportSql.php:2015 msgid "It appears your table uses triggers;" msgstr "您的資料表使用了觸發(Trigger);" -#: libraries/plugins/export/ExportSql.php:2069 +#: libraries/plugins/export/ExportSql.php:2052 #, php-format msgid "Structure for view %s exported as a table" msgstr "將視表 %s 結構匯出成資料表" -#: libraries/plugins/export/ExportSql.php:2171 +#: libraries/plugins/export/ExportSql.php:2154 msgid "Error reading data:" msgstr "讀取資料錯誤:" @@ -10426,9 +10408,9 @@ msgstr "關聯綱要(Schema)" msgid "Table of contents" msgstr "目錄" -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:639 -#: libraries/plugins/schema/pdf/PdfRelationSchema.php:662 -#: libraries/tracking.lib.php:887 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:637 +#: libraries/plugins/schema/pdf/PdfRelationSchema.php:660 +#: libraries/tracking.lib.php:897 #: templates/table/structure/table_structure_header.phtml:13 msgid "Extra" msgstr "額外資訊" @@ -10637,47 +10619,47 @@ msgstr "將文字以 JSON 語法醒目提示顯示。" msgid "Formats text as XML with syntax highlighting." msgstr "將文字以 XML 語法醒目提示顯示。" -#: libraries/pmd_common.php:538 +#: libraries/pmd_common.php:551 msgid "Error: relation already exists." msgstr "錯誤: 關聯已存在。" -#: libraries/pmd_common.php:584 +#: libraries/pmd_common.php:597 msgid "FOREIGN KEY relation has been added." msgstr "已新增外鍵(Foreign Key)關聯。" -#: libraries/pmd_common.php:589 +#: libraries/pmd_common.php:603 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "錯誤: FOREIGN KEY 關聯無法新增!" -#: libraries/pmd_common.php:594 +#: libraries/pmd_common.php:608 msgid "Error: Missing index on column(s)." msgstr "錯誤:缺少欄位索引。" -#: libraries/pmd_common.php:598 +#: libraries/pmd_common.php:613 msgid "Error: Relational features are disabled!" msgstr "錯誤:關聯未啟用!" -#: libraries/pmd_common.php:618 +#: libraries/pmd_common.php:635 msgid "Internal relation has been added." msgstr "已新增內部關聯。" -#: libraries/pmd_common.php:623 +#: libraries/pmd_common.php:641 msgid "Error: Internal relation could not be added!" msgstr "錯誤: 內部關聯無法新增!" -#: libraries/pmd_common.php:664 +#: libraries/pmd_common.php:679 msgid "FOREIGN KEY relation has been removed." msgstr "已移除外鍵(Foreign Key)關聯。" -#: libraries/pmd_common.php:670 +#: libraries/pmd_common.php:685 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "錯誤: 無法移除 FOREIGN KEY 關聯!" -#: libraries/pmd_common.php:697 +#: libraries/pmd_common.php:712 msgid "Error: Internal relation could not be removed!" msgstr "錯誤: 無法移除內部關聯!" -#: libraries/pmd_common.php:701 +#: libraries/pmd_common.php:716 msgid "Internal relation has been removed." msgstr "已移除內部關聯。" @@ -10722,68 +10704,68 @@ msgstr "瀏覽器轉換" msgid "Please see the documentation on how to update your column_info table. " msgstr "請參考說明文件中的如何更新您的 column_info 資料表。 " -#: libraries/relation.lib.php:205 libraries/sql_query_form.lib.php:392 +#: libraries/relation.lib.php:208 libraries/sql_query_form.lib.php:393 msgid "Bookmarked SQL query" msgstr "SQL 查詢書籤" -#: libraries/relation.lib.php:216 +#: libraries/relation.lib.php:219 msgid "SQL history" msgstr "SQL 紀錄" -#: libraries/relation.lib.php:227 +#: libraries/relation.lib.php:230 msgid "Persistent recently used tables" msgstr "使用最近的資料表" -#: libraries/relation.lib.php:238 +#: libraries/relation.lib.php:241 msgid "Persistent favorite tables" msgstr "保留最愛資料表" -#: libraries/relation.lib.php:249 +#: libraries/relation.lib.php:252 msgid "Persistent tables' UI preferences" msgstr "一律使用資料表的「介面偏好」" -#: libraries/relation.lib.php:271 +#: libraries/relation.lib.php:274 msgid "User preferences" msgstr "使用者偏好" -#: libraries/relation.lib.php:288 +#: libraries/relation.lib.php:291 msgid "Configurable menus" msgstr "配置選單" -#: libraries/relation.lib.php:299 +#: libraries/relation.lib.php:302 msgid "Hide/show navigation items" msgstr "隱藏/顯示導覽項目" -#: libraries/relation.lib.php:310 +#: libraries/relation.lib.php:313 msgid "Saving Query-By-Example searches" msgstr "儲存 QBE 查詢" -#: libraries/relation.lib.php:321 +#: libraries/relation.lib.php:324 msgid "Managing Central list of columns" msgstr "管理欄位的中央清單" -#: libraries/relation.lib.php:332 +#: libraries/relation.lib.php:335 msgid "Remembering Designer Settings" msgstr "記住 Designer 設定" -#: libraries/relation.lib.php:343 +#: libraries/relation.lib.php:346 msgid "Saving export templates" msgstr "正在儲存匯出的樣板" -#: libraries/relation.lib.php:351 +#: libraries/relation.lib.php:354 msgid "Quick steps to setup advanced features:" msgstr "快速設定進階功能:" -#: libraries/relation.lib.php:357 +#: libraries/relation.lib.php:360 #, php-format msgid "Create the needed tables with the %screate_tables.sql." msgstr "使用 %screate_tables.sql 建立需要的資料表。" -#: libraries/relation.lib.php:362 +#: libraries/relation.lib.php:365 msgid "Create a pma user and give access to these tables." msgstr "建立一個 pma 使用者並授權存取上一步操作中所建立的資料表的權限。" -#: libraries/relation.lib.php:365 +#: libraries/relation.lib.php:368 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -10791,15 +10773,15 @@ msgstr "" "在設定檔 (config.inc.php) 中啓用進階功能,請參考 config." "sample.inc.php 中的範例。" -#: libraries/relation.lib.php:370 +#: libraries/relation.lib.php:373 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "請重新登入 phpMyAdmin 以載入新設定並使其生效。" -#: libraries/relation.lib.php:1606 +#: libraries/relation.lib.php:1671 msgid "no description" msgstr "無說明" -#: libraries/relation.lib.php:1799 +#: libraries/relation.lib.php:1864 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -10808,7 +10790,7 @@ msgstr "" "您沒有權限建立名稱為 'phpmyadmin' 的資料庫。您可能需至 '操作' 頁籤設定 " "phpMyAdmin 設定儲存空間。" -#: libraries/relation.lib.php:1914 +#: libraries/relation.lib.php:1979 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -10817,13 +10799,13 @@ msgstr "" "%s建立%s名稱為 'phpmyadmin' 的資料庫並安裝 phpMyAdmin 設定儲存空間於該資料" "庫。" -#: libraries/relation.lib.php:1922 +#: libraries/relation.lib.php:1987 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "於目前資料庫%s建立%s phpMyAdmin 設定儲存空間。" -#: libraries/relation.lib.php:1930 +#: libraries/relation.lib.php:1995 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "%s建立%s缺少的 phpMyAdmin 設定儲存空間資料表。" @@ -11008,8 +10990,8 @@ msgstr "帳號:" #: libraries/replication_gui.lib.php:820 #: libraries/server_privileges.lib.php:1628 #: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2604 -#: libraries/server_privileges.lib.php:3505 +#: libraries/server_privileges.lib.php:2606 +#: libraries/server_privileges.lib.php:3516 msgid "User name" msgstr "帳號" @@ -11017,7 +10999,7 @@ msgstr "帳號" #: libraries/replication_gui.lib.php:886 #: libraries/server_privileges.lib.php:1819 #: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3507 +#: libraries/server_privileges.lib.php:3518 msgid "Password" msgstr "密碼" @@ -11634,7 +11616,7 @@ msgstr[0] "" msgid "Plugin" msgstr "外掛程式" -#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:279 +#: libraries/server_plugins.lib.php:81 libraries/tracking.lib.php:281 msgid "Version" msgstr "版本" @@ -11642,98 +11624,94 @@ msgstr "版本" msgid "Author" msgstr "作者" -#: libraries/server_plugins.lib.php:83 -msgid "License" -msgstr "授權" - #: libraries/server_plugins.lib.php:114 msgid "disabled" msgstr "已關閉" -#: libraries/server_privileges.lib.php:204 server_privileges.php:109 +#: libraries/server_privileges.lib.php:204 server_privileges.php:110 msgid "No privileges." msgstr "沒有權限。" -#: libraries/server_privileges.lib.php:213 server_privileges.php:55 +#: libraries/server_privileges.lib.php:213 server_privileges.php:56 msgid "Includes all privileges except GRANT." msgstr "除了GRANT以外的所有權限。" #: libraries/server_privileges.lib.php:286 #: libraries/server_privileges.lib.php:1136 -#: libraries/server_privileges.lib.php:1310 server_privileges.php:98 +#: libraries/server_privileges.lib.php:1310 server_privileges.php:99 msgid "Allows reading data." msgstr "允許讀取資料。" #: libraries/server_privileges.lib.php:291 #: libraries/server_privileges.lib.php:1141 -#: libraries/server_privileges.lib.php:1311 server_privileges.php:74 +#: libraries/server_privileges.lib.php:1311 server_privileges.php:75 msgid "Allows inserting and replacing data." msgstr "允許新增與取代資料。" #: libraries/server_privileges.lib.php:296 #: libraries/server_privileges.lib.php:1146 -#: libraries/server_privileges.lib.php:1312 server_privileges.php:108 +#: libraries/server_privileges.lib.php:1312 server_privileges.php:109 msgid "Allows changing data." msgstr "允許改變資料。" #: libraries/server_privileges.lib.php:301 -#: libraries/server_privileges.lib.php:1313 server_privileges.php:64 +#: libraries/server_privileges.lib.php:1313 server_privileges.php:65 msgid "Allows deleting data." msgstr "允許刪除資料。" #: libraries/server_privileges.lib.php:306 -#: libraries/server_privileges.lib.php:1339 server_privileges.php:58 +#: libraries/server_privileges.lib.php:1339 server_privileges.php:59 msgid "Allows creating new databases and tables." msgstr "允許建立新資料庫和資料表。" #: libraries/server_privileges.lib.php:311 -#: libraries/server_privileges.lib.php:1351 server_privileges.php:65 +#: libraries/server_privileges.lib.php:1351 server_privileges.php:66 msgid "Allows dropping databases and tables." msgstr "允許刪除資料庫和資料表。" #: libraries/server_privileges.lib.php:316 -#: libraries/server_privileges.lib.php:1435 server_privileges.php:92 +#: libraries/server_privileges.lib.php:1435 server_privileges.php:93 msgid "Allows reloading server settings and flushing the server's caches." msgstr "允許重新載入伺服器設定並重新整理伺服器的快取。" #: libraries/server_privileges.lib.php:321 -#: libraries/server_privileges.lib.php:1439 server_privileges.php:101 +#: libraries/server_privileges.lib.php:1439 server_privileges.php:102 msgid "Allows shutting down the server." msgstr "允許關閉伺服器。" #: libraries/server_privileges.lib.php:326 -#: libraries/server_privileges.lib.php:1431 server_privileges.php:89 +#: libraries/server_privileges.lib.php:1431 server_privileges.php:90 msgid "Allows viewing processes of all users." msgstr "允許查看所有使用者的執行程序。" #: libraries/server_privileges.lib.php:331 -#: libraries/server_privileges.lib.php:1319 server_privileges.php:69 +#: libraries/server_privileges.lib.php:1319 server_privileges.php:70 msgid "Allows importing data from and exporting data into files." msgstr "允許從檔案中匯入資料以及將資料匯出至檔案。" #: libraries/server_privileges.lib.php:336 #: libraries/server_privileges.lib.php:1151 -#: libraries/server_privileges.lib.php:1452 server_privileges.php:90 +#: libraries/server_privileges.lib.php:1452 server_privileges.php:91 msgid "Has no effect in this MySQL version." msgstr "在此版本的 MySQL 中無效。" #: libraries/server_privileges.lib.php:341 -#: libraries/server_privileges.lib.php:1347 server_privileges.php:73 +#: libraries/server_privileges.lib.php:1347 server_privileges.php:74 msgid "Allows creating and dropping indexes." msgstr "允許建立和刪除索引。" #: libraries/server_privileges.lib.php:346 -#: libraries/server_privileges.lib.php:1345 server_privileges.php:56 +#: libraries/server_privileges.lib.php:1345 server_privileges.php:57 msgid "Allows altering the structure of existing tables." msgstr "允許修改現有資料表的結構。" #: libraries/server_privileges.lib.php:351 -#: libraries/server_privileges.lib.php:1443 server_privileges.php:99 +#: libraries/server_privileges.lib.php:1443 server_privileges.php:100 msgid "Gives access to the complete list of databases." msgstr "允許存取完整的資料庫列表。" #: libraries/server_privileges.lib.php:357 -#: libraries/server_privileges.lib.php:1423 server_privileges.php:103 +#: libraries/server_privileges.lib.php:1423 server_privileges.php:104 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -11743,65 +11721,65 @@ msgstr "" "其他使用者的執行緒。" #: libraries/server_privileges.lib.php:365 -#: libraries/server_privileges.lib.php:1357 server_privileges.php:61 +#: libraries/server_privileges.lib.php:1357 server_privileges.php:62 msgid "Allows creating temporary tables." msgstr "允許建立暫存資料表。" #: libraries/server_privileges.lib.php:370 -#: libraries/server_privileges.lib.php:1448 server_privileges.php:75 +#: libraries/server_privileges.lib.php:1448 server_privileges.php:76 msgid "Allows locking tables for the current thread." msgstr "允許鎖定目前執行緒的資料表。" #: libraries/server_privileges.lib.php:375 -#: libraries/server_privileges.lib.php:1461 server_privileges.php:97 +#: libraries/server_privileges.lib.php:1461 server_privileges.php:98 msgid "Needed for the replication slaves." msgstr "使用次要(Slave)備援伺服器所需的權限。" #: libraries/server_privileges.lib.php:380 -#: libraries/server_privileges.lib.php:1457 server_privileges.php:95 +#: libraries/server_privileges.lib.php:1457 server_privileges.php:96 msgid "Allows the user to ask where the slaves / masters are." msgstr "允許使用者查詢次要(Slaves)/主要(masters)備援伺服器在哪。" #: libraries/server_privileges.lib.php:385 #: libraries/server_privileges.lib.php:401 #: libraries/server_privileges.lib.php:1377 -#: libraries/server_privileges.lib.php:1384 server_privileges.php:63 +#: libraries/server_privileges.lib.php:1384 server_privileges.php:64 msgid "Allows creating new views." msgstr "允許建立檢視表(View)." #: libraries/server_privileges.lib.php:390 -#: libraries/server_privileges.lib.php:1391 server_privileges.php:67 +#: libraries/server_privileges.lib.php:1391 server_privileges.php:68 msgid "Allows to set up events for the event scheduler." msgstr "允許為事件設定排程。" #: libraries/server_privileges.lib.php:395 -#: libraries/server_privileges.lib.php:1395 server_privileges.php:107 +#: libraries/server_privileges.lib.php:1395 server_privileges.php:108 msgid "Allows creating and dropping triggers." msgstr "允許建立和刪除觸發器(Trigger)。" #: libraries/server_privileges.lib.php:406 #: libraries/server_privileges.lib.php:412 -#: libraries/server_privileges.lib.php:1361 server_privileges.php:100 +#: libraries/server_privileges.lib.php:1361 server_privileges.php:101 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "允許執行 SHOW CREATE VIEW 查詢。" #: libraries/server_privileges.lib.php:417 -#: libraries/server_privileges.lib.php:1365 server_privileges.php:59 +#: libraries/server_privileges.lib.php:1365 server_privileges.php:60 msgid "Allows creating stored routines." msgstr "允許建立預存程序(Stored routine)。" #: libraries/server_privileges.lib.php:422 -#: libraries/server_privileges.lib.php:1369 server_privileges.php:57 +#: libraries/server_privileges.lib.php:1369 server_privileges.php:58 msgid "Allows altering and dropping stored routines." msgstr "允許修改或刪除已預存程序(Stored routine)。" #: libraries/server_privileges.lib.php:427 -#: libraries/server_privileges.lib.php:1465 server_privileges.php:62 +#: libraries/server_privileges.lib.php:1465 server_privileges.php:63 msgid "Allows creating, dropping and renaming user accounts." msgstr "允許建立、刪除和重新命名使用者帳號。" #: libraries/server_privileges.lib.php:432 -#: libraries/server_privileges.lib.php:1371 server_privileges.php:68 +#: libraries/server_privileges.lib.php:1371 server_privileges.php:69 msgid "Allows executing stored routines." msgstr "允許執行預存程序(Stored routine)。" @@ -11813,8 +11791,8 @@ msgstr "無" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3514 -#: libraries/server_user_groups.lib.php:78 +#: libraries/server_privileges.lib.php:3525 +#: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "使用者群組" @@ -11856,31 +11834,31 @@ msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "注意: 設定為 0 即代表無限制。" #: libraries/server_privileges.lib.php:890 -#: libraries/server_privileges.lib.php:901 server_privileges.php:80 +#: libraries/server_privileges.lib.php:901 server_privileges.php:81 msgid "Limits the number of queries the user may send to the server per hour." msgstr "使用者每小時可發送到伺服器的查詢數限制。" #: libraries/server_privileges.lib.php:910 -#: libraries/server_privileges.lib.php:921 server_privileges.php:83 +#: libraries/server_privileges.lib.php:921 server_privileges.php:84 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "使用者每小時可執行修改資料表或資料庫的指令數限制。" #: libraries/server_privileges.lib.php:931 -#: libraries/server_privileges.lib.php:940 server_privileges.php:77 +#: libraries/server_privileges.lib.php:940 server_privileges.php:78 msgid "Limits the number of new connections the user may open per hour." msgstr "使用者每小時可開啟的新連線數限制。" #: libraries/server_privileges.lib.php:948 -#: libraries/server_privileges.lib.php:958 server_privileges.php:87 +#: libraries/server_privileges.lib.php:958 server_privileges.php:88 msgid "Limits the number of simultaneous connections the user may have." msgstr "使用者可同時連線的數量限制。" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3315 #: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:4571 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:4592 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -11888,7 +11866,7 @@ msgid "Routine" msgstr "預存程序" #: libraries/server_privileges.lib.php:1040 -#: libraries/server_privileges.lib.php:1414 server_privileges.php:71 +#: libraries/server_privileges.lib.php:1414 server_privileges.php:72 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "允許新增使用者和權限,但不允許重新載入權限表。" @@ -11907,14 +11885,14 @@ msgstr "允許執行預存程序(Stored routine)。" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3310 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "指定資料表權限" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3510 +#: libraries/server_privileges.lib.php:3521 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "注意: MySQL 權限名稱會以英文表示。" @@ -11924,7 +11902,7 @@ msgid "Administration" msgstr "管理" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3508 +#: libraries/server_privileges.lib.php:3519 msgid "Global privileges" msgstr "全域權限" @@ -11933,35 +11911,32 @@ msgid "Global" msgstr "全域" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3304 +#: libraries/server_privileges.lib.php:3306 msgid "Database-specific privileges" msgstr "指定資料庫權限" -#: libraries/server_privileges.lib.php:1340 server_privileges.php:60 +#: libraries/server_privileges.lib.php:1340 server_privileges.php:61 msgid "Allows creating new tables." msgstr "允許建立新資料表。" -#: libraries/server_privileges.lib.php:1352 server_privileges.php:66 +#: libraries/server_privileges.lib.php:1352 server_privileges.php:67 msgid "Allows dropping tables." msgstr "允許刪除資料表。" #: libraries/server_privileges.lib.php:1550 -#| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "原生 MySQL 認證" #: libraries/server_privileges.lib.php:1552 -#| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "SHA256 密碼認證" #: libraries/server_privileges.lib.php:1566 -#| msgid "Cookie authentication" msgid "Native MySQL Authentication" msgstr "原生 MySQL 認證" #: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3096 +#: libraries/server_privileges.lib.php:3098 msgid "Login Information" msgstr "登入資訊" @@ -11984,8 +11959,8 @@ msgstr "主機名稱:" #: libraries/server_privileges.lib.php:1694 #: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2605 -#: libraries/server_privileges.lib.php:3506 +#: libraries/server_privileges.lib.php:2607 +#: libraries/server_privileges.lib.php:3517 msgid "Host name" msgstr "主機名稱" @@ -11998,215 +11973,214 @@ msgid "Authentication Plugin" msgstr "認證外掛程式" #: libraries/server_privileges.lib.php:1890 -#| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "密碼加密方式" -#: libraries/server_privileges.lib.php:2161 +#: libraries/server_privileges.lib.php:2163 #, php-format msgid "The password for %s was changed successfully." msgstr "%s 的密碼已修改。" -#: libraries/server_privileges.lib.php:2208 +#: libraries/server_privileges.lib.php:2210 #, php-format msgid "You have revoked the privileges for %s." msgstr "您已移除 %s 的權限。" -#: libraries/server_privileges.lib.php:2296 -#: libraries/server_privileges.lib.php:4500 +#: libraries/server_privileges.lib.php:2298 +#: libraries/server_privileges.lib.php:4521 msgid "Add user account" msgstr "新增使用者帳號" -#: libraries/server_privileges.lib.php:2305 +#: libraries/server_privileges.lib.php:2307 msgid "Database for user account" msgstr "使用者帳號的資料庫" -#: libraries/server_privileges.lib.php:2309 +#: libraries/server_privileges.lib.php:2311 msgid "Create database with same name and grant all privileges." msgstr "建立與使用者同名的資料庫並授予所有權限。" -#: libraries/server_privileges.lib.php:2315 +#: libraries/server_privileges.lib.php:2317 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "給以 帳號_ 開頭的資料庫 (username\\_%) 授予所有權限。" -#: libraries/server_privileges.lib.php:2324 +#: libraries/server_privileges.lib.php:2326 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "授予資料庫“%s”的所有權限。" -#: libraries/server_privileges.lib.php:2425 -#: libraries/server_privileges.lib.php:2491 +#: libraries/server_privileges.lib.php:2427 +#: libraries/server_privileges.lib.php:2493 #, php-format msgid "Users having access to \"%s\"" msgstr "可以存取 \"%s\" 的使用者" -#: libraries/server_privileges.lib.php:2460 +#: libraries/server_privileges.lib.php:2462 msgid "User has been added." msgstr "已新增使用者。" -#: libraries/server_privileges.lib.php:2608 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:2610 +#: libraries/server_privileges.lib.php:3527 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "允許授權" -#: libraries/server_privileges.lib.php:2623 +#: libraries/server_privileges.lib.php:2625 msgid "Not enough privilege to view users." msgstr "權限不足檢視使用者。" -#: libraries/server_privileges.lib.php:2643 -#: libraries/server_privileges.lib.php:3984 +#: libraries/server_privileges.lib.php:2645 +#: libraries/server_privileges.lib.php:3997 msgid "No user found." msgstr "未找到使用者。" -#: libraries/server_privileges.lib.php:2674 -#: libraries/server_privileges.lib.php:2961 -#: libraries/server_privileges.lib.php:3592 +#: libraries/server_privileges.lib.php:2676 +#: libraries/server_privileges.lib.php:2963 +#: libraries/server_privileges.lib.php:3603 msgid "Any" msgstr "任意" -#: libraries/server_privileges.lib.php:2725 +#: libraries/server_privileges.lib.php:2727 msgid "global" msgstr "全域" -#: libraries/server_privileges.lib.php:2728 +#: libraries/server_privileges.lib.php:2730 msgid "database-specific" msgstr "指定資料庫" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2732 msgid "wildcard" msgstr "萬用字元" -#: libraries/server_privileges.lib.php:2736 +#: libraries/server_privileges.lib.php:2738 msgid "table-specific" msgstr "指定資料表" -#: libraries/server_privileges.lib.php:2867 +#: libraries/server_privileges.lib.php:2869 msgid "Edit privileges" msgstr "編輯權限" -#: libraries/server_privileges.lib.php:2870 +#: libraries/server_privileges.lib.php:2872 msgid "Revoke" msgstr "移除" -#: libraries/server_privileges.lib.php:2894 +#: libraries/server_privileges.lib.php:2896 msgid "Edit user group" msgstr "編輯使用者群組" -#: libraries/server_privileges.lib.php:3075 +#: libraries/server_privileges.lib.php:3077 msgid "… keep the old one." msgstr "… 保留舊使用者。" -#: libraries/server_privileges.lib.php:3076 +#: libraries/server_privileges.lib.php:3078 msgid "… delete the old one from the user tables." msgstr "… 從使用者資料表中刪除舊使用者。" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3080 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… 移除舊使用者的所有權限,然後刪除舊使用者。" -#: libraries/server_privileges.lib.php:3082 +#: libraries/server_privileges.lib.php:3084 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… 從使用者資料表中刪除舊使用者,然後重新載入權限。" -#: libraries/server_privileges.lib.php:3097 +#: libraries/server_privileges.lib.php:3099 msgid "Change login information / Copy user account" msgstr "修改登入資訊/複製使用者帳號" -#: libraries/server_privileges.lib.php:3103 +#: libraries/server_privileges.lib.php:3105 msgid "Create a new user account with the same privileges and …" msgstr "建立具有相同權限的新使用者帳號並且 …" -#: libraries/server_privileges.lib.php:3316 +#: libraries/server_privileges.lib.php:3318 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "指定欄位權限" -#: libraries/server_privileges.lib.php:3693 +#: libraries/server_privileges.lib.php:3704 msgid "Remove selected user accounts" msgstr "刪除已選擇的使用者帳號" -#: libraries/server_privileges.lib.php:3699 +#: libraries/server_privileges.lib.php:3710 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "移除使用者所有權限,然後刪除使用者。" -#: libraries/server_privileges.lib.php:3707 -#: libraries/server_privileges.lib.php:3713 -#: libraries/server_privileges.lib.php:3716 +#: libraries/server_privileges.lib.php:3718 +#: libraries/server_privileges.lib.php:3724 +#: libraries/server_privileges.lib.php:3727 msgid "Drop the databases that have the same names as the users." msgstr "刪除與使用者同名的資料庫。" -#: libraries/server_privileges.lib.php:3857 +#: libraries/server_privileges.lib.php:3870 msgid "No users selected for deleting!" msgstr "沒有選擇要刪除的使用者!" -#: libraries/server_privileges.lib.php:3860 +#: libraries/server_privileges.lib.php:3873 msgid "Reloading the privileges" msgstr "重新載入權限" -#: libraries/server_privileges.lib.php:3879 +#: libraries/server_privileges.lib.php:3892 msgid "The selected users have been deleted successfully." msgstr "已成功刪除選中的使用者。" -#: libraries/server_privileges.lib.php:3954 +#: libraries/server_privileges.lib.php:3967 #, php-format msgid "You have updated the privileges for %s." msgstr "您已更新了 %s 的權限。" -#: libraries/server_privileges.lib.php:4044 +#: libraries/server_privileges.lib.php:4065 #, php-format msgid "Deleting %s" msgstr "正在刪除 %s" -#: libraries/server_privileges.lib.php:4074 +#: libraries/server_privileges.lib.php:4095 msgid "The privileges were reloaded successfully." msgstr "已成功重新載入權限。" -#: libraries/server_privileges.lib.php:4175 +#: libraries/server_privileges.lib.php:4196 #, php-format msgid "The user %s already exists!" msgstr "使用者 %s 己存在!" -#: libraries/server_privileges.lib.php:4442 +#: libraries/server_privileges.lib.php:4463 #, php-format msgid "Privileges for %s" msgstr "權限 %s" -#: libraries/server_privileges.lib.php:4451 +#: libraries/server_privileges.lib.php:4472 #: libraries/server_status_processes.lib.php:76 -#: libraries/server_user_groups.lib.php:39 +#: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "使用者" -#: libraries/server_privileges.lib.php:4492 +#: libraries/server_privileges.lib.php:4513 msgctxt "Create new user" msgid "New" msgstr "新增" -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:4542 msgid "Edit privileges:" msgstr "編輯權限:" -#: libraries/server_privileges.lib.php:4522 +#: libraries/server_privileges.lib.php:4543 msgid "User account" msgstr "使用者帳號" -#: libraries/server_privileges.lib.php:4596 +#: libraries/server_privileges.lib.php:4617 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "注意:您正嘗試編輯您目前登入使用者的權限。" -#: libraries/server_privileges.lib.php:4616 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "使用者帳號一覽" -#: libraries/server_privileges.lib.php:4684 +#: libraries/server_privileges.lib.php:4705 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " @@ -12215,7 +12189,7 @@ msgstr "" "已存在允許任何來自 localhost 連線的使用者帳號,這將會導致其他若在帳號中的主機" "允許來自任何(%)地方連線使用者無法使用。" -#: libraries/server_privileges.lib.php:4725 +#: libraries/server_privileges.lib.php:4746 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12227,7 +12201,7 @@ msgstr "" "限,則表中顯示的內容可能與伺服器實際使用的使用者權限有異。在這種情況下,您應" "在繼續前 %s重新載入權限%s。" -#: libraries/server_privileges.lib.php:4744 +#: libraries/server_privileges.lib.php:4765 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12239,11 +12213,11 @@ msgstr "" "動的修改,這些資料表的內容可能將與伺服器實際使用的權限有所不同。 在此情況下才" "需要重新整理權限,目前您並不需要重新整理(RELOAD)權限。" -#: libraries/server_privileges.lib.php:4794 +#: libraries/server_privileges.lib.php:4815 msgid "The selected user was not found in the privilege table." msgstr "在權限表內找不到選中的使用者。" -#: libraries/server_privileges.lib.php:5014 +#: libraries/server_privileges.lib.php:5039 msgid "You have added a new user." msgstr "您已新增了一個新使用者。" @@ -12484,30 +12458,30 @@ msgstr "說明/安裝程式" msgid "Done dragging (rearranging) charts" msgstr "完成拖拉 (重新排列) 圖表" -#: libraries/server_status_monitor.lib.php:283 +#: libraries/server_status_monitor.lib.php:284 msgid "Enable charts dragging" msgstr "啓用圖表拖放" -#: libraries/server_status_monitor.lib.php:287 +#: libraries/server_status_monitor.lib.php:288 #: libraries/server_status_processes.lib.php:33 msgid "Refresh rate" msgstr "更新頻率" -#: libraries/server_status_monitor.lib.php:296 +#: libraries/server_status_monitor.lib.php:297 msgid "Chart columns" msgstr "圖表欄位" -#: libraries/server_status_monitor.lib.php:308 +#: libraries/server_status_monitor.lib.php:309 msgid "Chart arrangement" msgstr "圖表排列" -#: libraries/server_status_monitor.lib.php:311 +#: libraries/server_status_monitor.lib.php:312 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "圖表的排列存已儲到瀏覽器的本機儲存區。如果您的設定很複雜最好將之匯出。" -#: libraries/server_status_monitor.lib.php:325 +#: libraries/server_status_monitor.lib.php:326 msgid "Reset to default" msgstr "還原預設值" @@ -12561,7 +12535,7 @@ msgid "Statements" msgstr "說明" #. l10n: # = Amount of queries -#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:881 +#: libraries/server_status_queries.lib.php:98 libraries/tracking.lib.php:891 msgid "#" msgstr "查詢數量" @@ -12586,17 +12560,17 @@ msgstr "顯示未格式化的值" msgid "Related links:" msgstr "相關連結:" -#: libraries/server_status_variables.lib.php:331 +#: libraries/server_status_variables.lib.php:335 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "由於用戶端沒有正常關閉連線,這些連線已被中斷。" -#: libraries/server_status_variables.lib.php:335 +#: libraries/server_status_variables.lib.php:339 msgid "The number of failed attempts to connect to the MySQL server." msgstr "無法連線到 MySQL 伺服器。" -#: libraries/server_status_variables.lib.php:338 +#: libraries/server_status_variables.lib.php:342 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -12605,16 +12579,16 @@ msgstr "" "使用暫存二進位記錄快取的交易,但因超出 binlog_cache_size 限制而採用暫存檔案儲" "存交易指令的數量。" -#: libraries/server_status_variables.lib.php:343 +#: libraries/server_status_variables.lib.php:347 msgid "The number of transactions that used the temporary binary log cache." msgstr "交易使用暫存二進位記錄快取的數量。" -#: libraries/server_status_variables.lib.php:346 +#: libraries/server_status_variables.lib.php:350 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "嘗試連到 MySQL 伺服器的連線數 (不論成功或失敗)。" -#: libraries/server_status_variables.lib.php:350 +#: libraries/server_status_variables.lib.php:354 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -12625,45 +12599,45 @@ msgstr "" "很大,您可以增加 tmp_table_size 的值,讓伺服器使用記憶體來儲存暫存表而非硬" "碟。" -#: libraries/server_status_variables.lib.php:357 +#: libraries/server_status_variables.lib.php:361 msgid "How many temporary files mysqld has created." msgstr "mysqld 已建立的暫存檔案的數量。" -#: libraries/server_status_variables.lib.php:360 +#: libraries/server_status_variables.lib.php:364 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "伺服器執行指令時自動在記憶體中建立的暫存表的數量。" -#: libraries/server_status_variables.lib.php:364 +#: libraries/server_status_variables.lib.php:368 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "延遲新增 (INSERT DELAYED) 發生錯誤的列數 (可能為重複鍵值造成)。" -#: libraries/server_status_variables.lib.php:368 +#: libraries/server_status_variables.lib.php:372 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "正在使用的延遲新增處理程序的數量。每張使用延遲新增的表都有自己的程序。" -#: libraries/server_status_variables.lib.php:373 +#: libraries/server_status_variables.lib.php:377 msgid "The number of INSERT DELAYED rows written." msgstr "延遲新增已寫入的列數。" -#: libraries/server_status_variables.lib.php:376 +#: libraries/server_status_variables.lib.php:380 msgid "The number of executed FLUSH statements." msgstr "已執行的強制更新 (FLUSH) 指令數。" -#: libraries/server_status_variables.lib.php:379 +#: libraries/server_status_variables.lib.php:383 msgid "The number of internal COMMIT statements." msgstr "已執行的內部送出 (COMMIT) 指令數。" -#: libraries/server_status_variables.lib.php:382 +#: libraries/server_status_variables.lib.php:386 msgid "The number of times a row was deleted from a table." msgstr "從資料表中刪除行的次數。" -#: libraries/server_status_variables.lib.php:385 +#: libraries/server_status_variables.lib.php:389 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -12673,7 +12647,7 @@ msgstr "" "在。這個動作稱作 \"探索(Discovery)\"。 Handler_discover 參數指的是資料表被探" "索到的次數。" -#: libraries/server_status_variables.lib.php:391 +#: libraries/server_status_variables.lib.php:395 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -12682,7 +12656,7 @@ msgstr "" "第一筆索引資料被讀取的次數。若這個值很大,說明您的伺服器執行了很多完整索引掃" "描,如以下例子: 欄位 col1 已經建立了索引,然後執行 SELECT col1 FROM foo。" -#: libraries/server_status_variables.lib.php:397 +#: libraries/server_status_variables.lib.php:401 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -12690,7 +12664,7 @@ msgstr "" "透過索引查詢到資料列的請求次數。若這個值很大,說明您的查詢條件和資料表都有正" "確的索引。" -#: libraries/server_status_variables.lib.php:402 +#: libraries/server_status_variables.lib.php:406 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -12699,7 +12673,7 @@ msgstr "" "查詢下一筆索引資料的請求次數。若您的查詢條件使用了索引的欄位做一段區間範圍的" "查詢,或者您進行了索引的掃描,會使這個值不斷增加。" -#: libraries/server_status_variables.lib.php:407 +#: libraries/server_status_variables.lib.php:411 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY … DESC." @@ -12707,7 +12681,7 @@ msgstr "" "查詢上一筆索引資料的請求次數。這種讀取方式通常用於最佳化有關 ORDER BY … DESC " "的查詢。" -#: libraries/server_status_variables.lib.php:411 +#: libraries/server_status_variables.lib.php:415 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -12717,7 +12691,7 @@ msgstr "" "使用固定位置讀取資料列的請求次數。如果您執行很多需要排序的查詢,該值會很高。" "您可能有很多需要完整表掃描的查詢,或者您使用了不正確的索引用來多表查詢。" -#: libraries/server_status_variables.lib.php:418 +#: libraries/server_status_variables.lib.php:422 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -12728,35 +12702,35 @@ msgstr "" "況下這代表您的資料表未正確建立索引,或者您使用的查詢指令沒有使用已建立索引的" "欄位。" -#: libraries/server_status_variables.lib.php:425 +#: libraries/server_status_variables.lib.php:429 msgid "The number of internal ROLLBACK statements." msgstr "使用內部還原 (ROLLBACK) 敘述句的次數。" -#: libraries/server_status_variables.lib.php:428 +#: libraries/server_status_variables.lib.php:432 msgid "The number of requests to update a row in a table." msgstr "資料表中更新資料列的請求次數。" -#: libraries/server_status_variables.lib.php:431 +#: libraries/server_status_variables.lib.php:435 msgid "The number of requests to insert a row in a table." msgstr "資料表中新增資料列的請求數。" -#: libraries/server_status_variables.lib.php:434 +#: libraries/server_status_variables.lib.php:438 msgid "The number of pages containing data (dirty or clean)." msgstr "含資料頁數 (異動未儲存或已儲存)。" -#: libraries/server_status_variables.lib.php:437 +#: libraries/server_status_variables.lib.php:441 msgid "The number of pages currently dirty." msgstr "目前異動未儲存的頁數。" -#: libraries/server_status_variables.lib.php:440 +#: libraries/server_status_variables.lib.php:444 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "請求更新的快取池頁數。" -#: libraries/server_status_variables.lib.php:444 +#: libraries/server_status_variables.lib.php:448 msgid "The number of free pages." msgstr "空閒頁數。" -#: libraries/server_status_variables.lib.php:447 +#: libraries/server_status_variables.lib.php:451 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -12765,7 +12739,7 @@ msgstr "" "InnoDB 快取池中鎖定頁的數量。這些頁是正在被讀取或寫入的,或者是因其他原因不能" "被重新整理或刪除的。" -#: libraries/server_status_variables.lib.php:452 +#: libraries/server_status_variables.lib.php:456 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -12776,11 +12750,11 @@ msgstr "" "公式計算: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data。" -#: libraries/server_status_variables.lib.php:459 +#: libraries/server_status_variables.lib.php:463 msgid "Total size of buffer pool, in pages." msgstr "快取池總大小 (單位: 頁)。" -#: libraries/server_status_variables.lib.php:462 +#: libraries/server_status_variables.lib.php:466 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -12788,24 +12762,24 @@ msgstr "" "InnoDB 初始化的“隨機”預讀數。這通常會在對一個資料表進行大範圍的隨機排序查詢時" "發生。" -#: libraries/server_status_variables.lib.php:467 +#: libraries/server_status_variables.lib.php:471 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" "InnoDB 初始化的順序預讀數。這會在 InnoDB 執行一個順序完整表掃描時發生。" -#: libraries/server_status_variables.lib.php:471 +#: libraries/server_status_variables.lib.php:475 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB 完成的邏輯讀請求數。" -#: libraries/server_status_variables.lib.php:474 +#: libraries/server_status_variables.lib.php:478 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "InnoDB 進行邏輯讀取時無法從快取池中取得而執行單頁讀取的次數。" -#: libraries/server_status_variables.lib.php:478 +#: libraries/server_status_variables.lib.php:482 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -12817,85 +12791,85 @@ msgstr "" "必要先等待頁被重新整理。該計數器統計了這種等待的數量。如果快取池大小設定正" "確,這個值應該會很小。" -#: libraries/server_status_variables.lib.php:486 +#: libraries/server_status_variables.lib.php:490 msgid "The number writes done to the InnoDB buffer pool." msgstr "寫入 InnoDB 快取池的次數。" -#: libraries/server_status_variables.lib.php:489 +#: libraries/server_status_variables.lib.php:493 msgid "The number of fsync() operations so far." msgstr "到目前為止 fsync() 執行的次數。" -#: libraries/server_status_variables.lib.php:492 +#: libraries/server_status_variables.lib.php:496 msgid "The current number of pending fsync() operations." msgstr "目前待執行 fsync() 的數量。" -#: libraries/server_status_variables.lib.php:495 +#: libraries/server_status_variables.lib.php:499 msgid "The current number of pending reads." msgstr "目前待執行的讀取次數。" -#: libraries/server_status_variables.lib.php:498 +#: libraries/server_status_variables.lib.php:502 msgid "The current number of pending writes." msgstr "目前待執行的寫入次數。" -#: libraries/server_status_variables.lib.php:501 +#: libraries/server_status_variables.lib.php:505 msgid "The amount of data read so far, in bytes." msgstr "到目前為止已讀取的總資料量 (以位元組為單位)。" -#: libraries/server_status_variables.lib.php:504 +#: libraries/server_status_variables.lib.php:508 msgid "The total number of data reads." msgstr "資料讀取總數。" -#: libraries/server_status_variables.lib.php:507 +#: libraries/server_status_variables.lib.php:511 msgid "The total number of data writes." msgstr "資料寫入總數。" -#: libraries/server_status_variables.lib.php:510 +#: libraries/server_status_variables.lib.php:514 msgid "The amount of data written so far, in bytes." msgstr "到目前為止已寫入的總資料量 (以位元組為單位)。" -#: libraries/server_status_variables.lib.php:513 +#: libraries/server_status_variables.lib.php:517 msgid "The number of pages that have been written for doublewrite operations." msgstr "已經以雙寫(doublewrite)操作寫入的頁數。" -#: libraries/server_status_variables.lib.php:517 +#: libraries/server_status_variables.lib.php:521 msgid "The number of doublewrite operations that have been performed." msgstr "已經執行的雙寫入次數。" -#: libraries/server_status_variables.lib.php:520 +#: libraries/server_status_variables.lib.php:524 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "因記錄快取太小而必須等待其被寫入所造成的等待數。" -#: libraries/server_status_variables.lib.php:524 +#: libraries/server_status_variables.lib.php:528 msgid "The number of log write requests." msgstr "記錄寫入請求數。" -#: libraries/server_status_variables.lib.php:527 +#: libraries/server_status_variables.lib.php:531 msgid "The number of physical writes to the log file." msgstr "記錄物理寫入次數。" -#: libraries/server_status_variables.lib.php:530 +#: libraries/server_status_variables.lib.php:534 msgid "The number of fsync() writes done to the log file." msgstr "使用 fsync() 寫入記錄檔案的次數。" -#: libraries/server_status_variables.lib.php:533 +#: libraries/server_status_variables.lib.php:537 msgid "The number of pending log file fsyncs." msgstr "在記錄檔案中待執行的 fsync 數。" -#: libraries/server_status_variables.lib.php:536 +#: libraries/server_status_variables.lib.php:540 msgid "Pending log file writes." msgstr "目前待執行的記錄寫入數。" -#: libraries/server_status_variables.lib.php:539 +#: libraries/server_status_variables.lib.php:543 msgid "The number of bytes written to the log file." msgstr "寫入記錄檔案的位元組。" -#: libraries/server_status_variables.lib.php:542 +#: libraries/server_status_variables.lib.php:546 msgid "The number of pages created." msgstr "已建立的頁數。" -#: libraries/server_status_variables.lib.php:545 +#: libraries/server_status_variables.lib.php:549 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -12903,79 +12877,79 @@ msgstr "" "編譯的 InnoDB 頁大小 (預設 16KB)。許多值都以頁爲單位進行統計,頁大小可以很方" "便地將這些值轉化爲字元數。" -#: libraries/server_status_variables.lib.php:550 +#: libraries/server_status_variables.lib.php:554 msgid "The number of pages read." msgstr "已讀取的頁數。" -#: libraries/server_status_variables.lib.php:553 +#: libraries/server_status_variables.lib.php:557 msgid "The number of pages written." msgstr "已寫入的頁數。" -#: libraries/server_status_variables.lib.php:556 +#: libraries/server_status_variables.lib.php:560 msgid "The number of row locks currently being waited for." msgstr "目前正等待列鎖定(Row Lock)的數量。" -#: libraries/server_status_variables.lib.php:559 +#: libraries/server_status_variables.lib.php:563 msgid "The average time to acquire a row lock, in milliseconds." msgstr "等待取得列鎖定(Row lock)的平均時間 (毫秒)。" -#: libraries/server_status_variables.lib.php:562 +#: libraries/server_status_variables.lib.php:566 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "等待取得列鎖定(Row lock)的總時間 (毫秒)。" -#: libraries/server_status_variables.lib.php:565 +#: libraries/server_status_variables.lib.php:569 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "等待取得列鎖定(Row lock)的最大時間 (毫秒)。" -#: libraries/server_status_variables.lib.php:568 +#: libraries/server_status_variables.lib.php:572 msgid "The number of times a row lock had to be waited for." msgstr "等待列鎖定(Row lock)的次數。" -#: libraries/server_status_variables.lib.php:571 +#: libraries/server_status_variables.lib.php:575 msgid "The number of rows deleted from InnoDB tables." msgstr "從 InnoDB 資料表中刪除的列數。" -#: libraries/server_status_variables.lib.php:574 +#: libraries/server_status_variables.lib.php:578 msgid "The number of rows inserted in InnoDB tables." msgstr "新增到 InnoDB 資料表中的列數。" -#: libraries/server_status_variables.lib.php:577 +#: libraries/server_status_variables.lib.php:581 msgid "The number of rows read from InnoDB tables." msgstr "從 InnoDB 資料表中讀取的列數。" -#: libraries/server_status_variables.lib.php:580 +#: libraries/server_status_variables.lib.php:584 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB 中更新的列數。" -#: libraries/server_status_variables.lib.php:583 +#: libraries/server_status_variables.lib.php:587 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" "鍵快取中還沒有被寫入到硬碟的鍵塊數。該值過去名爲 Not_flushed_key_blocks。" -#: libraries/server_status_variables.lib.php:588 +#: libraries/server_status_variables.lib.php:592 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "鍵快取中未使用的塊數。您可以根據這個值判斷目前使用了多少鍵快取。" -#: libraries/server_status_variables.lib.php:592 +#: libraries/server_status_variables.lib.php:596 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "鍵快取中已經使用的塊數。該值指示在某個時刻使用了最多塊數的數量。" -#: libraries/server_status_variables.lib.php:597 +#: libraries/server_status_variables.lib.php:601 msgid "Percentage of used key cache (calculated value)" msgstr "已使用鍵值緩存的百分比(計算值)" -#: libraries/server_status_variables.lib.php:600 +#: libraries/server_status_variables.lib.php:604 msgid "The number of requests to read a key block from the cache." msgstr "從快取中讀取鍵塊的請求次數。" -#: libraries/server_status_variables.lib.php:603 +#: libraries/server_status_variables.lib.php:607 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -12984,26 +12958,26 @@ msgstr "" "從硬碟中物理讀取鍵塊的次數。如果 Key_reads 很大,則說明您的 key_buffer_size " "可能設定得太小了。快取缺失率可以由 Key_reads/Key_read_requests 計算得出。" -#: libraries/server_status_variables.lib.php:609 +#: libraries/server_status_variables.lib.php:613 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "由實際讀取數和讀取請求數相比計算出的鍵值快取未命中率 (計算值)" -#: libraries/server_status_variables.lib.php:613 +#: libraries/server_status_variables.lib.php:617 msgid "The number of requests to write a key block to the cache." msgstr "將一個鍵塊寫入快取的請求數。" -#: libraries/server_status_variables.lib.php:616 +#: libraries/server_status_variables.lib.php:620 msgid "The number of physical writes of a key block to disk." msgstr "將鍵值資料區塊實體寫入到硬碟的次數。" -#: libraries/server_status_variables.lib.php:619 +#: libraries/server_status_variables.lib.php:623 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "實際寫入數和寫入請求數的百分比值(計算值)" -#: libraries/server_status_variables.lib.php:623 +#: libraries/server_status_variables.lib.php:627 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -13012,35 +12986,35 @@ msgstr "" "最後編譯的查詢的總開銷由查詢最佳化器計算得出,可用於比較使用不同的查詢指令進" "行相同的查詢時的效率差異。預設值0表示還沒有查詢被編譯。" -#: libraries/server_status_variables.lib.php:629 +#: libraries/server_status_variables.lib.php:633 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "自伺服器啟動以來的最大的同時連線數量。" -#: libraries/server_status_variables.lib.php:633 +#: libraries/server_status_variables.lib.php:637 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "延遲新增等待寫入序列的列數。" -#: libraries/server_status_variables.lib.php:636 +#: libraries/server_status_variables.lib.php:640 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "已經開啟的表個數。如果該值很大,則說明表快取大小可能設定過小。" -#: libraries/server_status_variables.lib.php:640 +#: libraries/server_status_variables.lib.php:644 msgid "The number of files that are open." msgstr "已開啟的檔案個數。" -#: libraries/server_status_variables.lib.php:643 +#: libraries/server_status_variables.lib.php:647 msgid "The number of streams that are open (used mainly for logging)." msgstr "已開啟的stream個數 (主要用於記錄)。" -#: libraries/server_status_variables.lib.php:646 +#: libraries/server_status_variables.lib.php:650 msgid "The number of tables that are open." msgstr "已開啟的資料表個數。" -#: libraries/server_status_variables.lib.php:649 +#: libraries/server_status_variables.lib.php:653 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -13049,19 +13023,19 @@ msgstr "" "查詢快取中的閒置區塊數。數字越高表示有記憶體碎片問題,也許可用 FLUSH QUERY " "CACHE 語句解決。" -#: libraries/server_status_variables.lib.php:654 +#: libraries/server_status_variables.lib.php:658 msgid "The amount of free memory for query cache." msgstr "查詢快取中空閒的記憶體總數。" -#: libraries/server_status_variables.lib.php:657 +#: libraries/server_status_variables.lib.php:661 msgid "The number of cache hits." msgstr "快取命中數。" -#: libraries/server_status_variables.lib.php:660 +#: libraries/server_status_variables.lib.php:664 msgid "The number of queries added to the cache." msgstr "加入到快取的查詢數。" -#: libraries/server_status_variables.lib.php:663 +#: libraries/server_status_variables.lib.php:667 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -13071,7 +13045,7 @@ msgstr "" "爲快取新的查詢而被刪除的已快取查詢的個數,由最近最少使用算法 (LRU) 確定應刪除" "哪個已快取的查詢。該資訊可幫助您調整查詢快取大小。" -#: libraries/server_status_variables.lib.php:670 +#: libraries/server_status_variables.lib.php:674 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -13079,19 +13053,19 @@ msgstr "" "未快取的查詢數 (包括不能被快取,或因爲 query_cache_type 的設定而沒有被快取的" "查詢)。" -#: libraries/server_status_variables.lib.php:674 +#: libraries/server_status_variables.lib.php:678 msgid "The number of queries registered in the cache." msgstr "在快取中註冊的查詢數。" -#: libraries/server_status_variables.lib.php:677 +#: libraries/server_status_variables.lib.php:681 msgid "The total number of blocks in the query cache." msgstr "查詢快取中的總區塊數。" -#: libraries/server_status_variables.lib.php:680 +#: libraries/server_status_variables.lib.php:684 msgid "The status of failsafe replication (not yet implemented)." msgstr "備援失敗保護器的狀態 (尚未實作)。" -#: libraries/server_status_variables.lib.php:683 +#: libraries/server_status_variables.lib.php:687 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -13099,11 +13073,11 @@ msgstr "" "沒有使用索引的多表查詢數。如果該值不爲0,您應該仔細檢查是否已經爲表建立了適當" "的索引。" -#: libraries/server_status_variables.lib.php:687 +#: libraries/server_status_variables.lib.php:691 msgid "The number of joins that used a range search on a reference table." msgstr "使用在關聯表上使用範圍搜尋的多表查詢的數量。" -#: libraries/server_status_variables.lib.php:690 +#: libraries/server_status_variables.lib.php:694 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -13111,7 +13085,7 @@ msgstr "" "沒有使用索引但在每行之後檢查索引使用的多表查詢數。(如果該值不爲 0,您應該仔細" "檢查是否已經爲表建立了適當的索引。)" -#: libraries/server_status_variables.lib.php:695 +#: libraries/server_status_variables.lib.php:699 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -13119,36 +13093,36 @@ msgstr "" "在第一個資料表上使用範圍查詢的多表查詢數。(即使該值很大,通常也不會有致命的影" "響。)" -#: libraries/server_status_variables.lib.php:699 +#: libraries/server_status_variables.lib.php:703 msgid "The number of joins that did a full scan of the first table." msgstr "在第一個資料表上進行了完整表掃描的多表查詢數。" -#: libraries/server_status_variables.lib.php:702 +#: libraries/server_status_variables.lib.php:706 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "目前由從 SQL 程序開啟的暫存表的數量。" -#: libraries/server_status_variables.lib.php:706 +#: libraries/server_status_variables.lib.php:710 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "自伺服器啟動開始從次要(Slave)備援伺服所接收到的交易(Transaction)總數。" -#: libraries/server_status_variables.lib.php:710 +#: libraries/server_status_variables.lib.php:714 msgid "This is ON if this server is a slave that is connected to a master." msgstr "若此伺服器為次要伺服器,且已連線到主要伺服器時,此欄位值會顯示為 ON。" -#: libraries/server_status_variables.lib.php:713 +#: libraries/server_status_variables.lib.php:717 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "使用了比 slow_launch_time 更多的時間來啓動的程序數量。" -#: libraries/server_status_variables.lib.php:717 +#: libraries/server_status_variables.lib.php:721 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "查詢時間超過 long_query_time 設定值的查詢筆數。" -#: libraries/server_status_variables.lib.php:721 +#: libraries/server_status_variables.lib.php:725 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -13157,23 +13131,23 @@ msgstr "" "排序算法使用合併的次數。如果該值很大,您應該考慮增加系統變數 " "sort_buffer_size 的值。" -#: libraries/server_status_variables.lib.php:726 +#: libraries/server_status_variables.lib.php:730 msgid "The number of sorts that were done with ranges." msgstr "局部範圍完成的排序次數。" -#: libraries/server_status_variables.lib.php:729 +#: libraries/server_status_variables.lib.php:733 msgid "The number of sorted rows." msgstr "已排序的列數。" -#: libraries/server_status_variables.lib.php:732 +#: libraries/server_status_variables.lib.php:736 msgid "The number of sorts that were done by scanning the table." msgstr "掃描表完成的排序次數。" -#: libraries/server_status_variables.lib.php:735 +#: libraries/server_status_variables.lib.php:739 msgid "The number of times that a table lock was acquired immediately." msgstr "立即需要鎖定表的次數。" -#: libraries/server_status_variables.lib.php:738 +#: libraries/server_status_variables.lib.php:742 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -13183,7 +13157,7 @@ msgstr "" "無法立即取得鎖定表而必須等待的次數。如果該值很高,且您遇到了性能方面的問題," "則應該首先檢查您的查詢指令,然後使用備援操作來分開表。" -#: libraries/server_status_variables.lib.php:744 +#: libraries/server_status_variables.lib.php:748 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -13192,11 +13166,11 @@ msgstr "" "執行緒快取中執行緒的數量。快取命中率可以由 Threads_created/Connections 計算得" "出如果該值是紅色的,則應該增加 thread_cache_size 的值。" -#: libraries/server_status_variables.lib.php:749 +#: libraries/server_status_variables.lib.php:753 msgid "The number of currently open connections." msgstr "目前開啟的連線數。" -#: libraries/server_status_variables.lib.php:752 +#: libraries/server_status_variables.lib.php:756 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -13207,11 +13181,11 @@ msgstr "" "thread_cache_size 的值 (如果執行緒狀況良好,這麼做通常並不會帶來顯著的性能提" "升)" -#: libraries/server_status_variables.lib.php:759 +#: libraries/server_status_variables.lib.php:763 msgid "Thread cache hit rate (calculated value)" msgstr "執行緒緩存命中率(計算值)" -#: libraries/server_status_variables.lib.php:762 +#: libraries/server_status_variables.lib.php:766 msgid "The number of threads that are not sleeping." msgstr "非睡眠狀態的程序數量。" @@ -13220,57 +13194,57 @@ msgstr "非睡眠狀態的程序數量。" msgid "Users of '%s' user group" msgstr "使用者群組 '%s' 清單" -#: libraries/server_user_groups.lib.php:35 +#: libraries/server_user_groups.lib.php:36 msgid "No users were found belonging to this user group." msgstr "這個使用者群組為空的。" -#: libraries/server_user_groups.lib.php:64 libraries/server_users.lib.php:33 +#: libraries/server_user_groups.lib.php:65 libraries/server_users.lib.php:33 msgid "User groups" msgstr "使用者群組" -#: libraries/server_user_groups.lib.php:79 +#: libraries/server_user_groups.lib.php:80 msgid "Server level tabs" msgstr "主機分頁" -#: libraries/server_user_groups.lib.php:80 +#: libraries/server_user_groups.lib.php:81 msgid "Database level tabs" msgstr "資料庫分頁" -#: libraries/server_user_groups.lib.php:81 +#: libraries/server_user_groups.lib.php:82 msgid "Table level tabs" msgstr "資料表分頁" -#: libraries/server_user_groups.lib.php:110 +#: libraries/server_user_groups.lib.php:111 msgid "View users" msgstr "檢視使用者" -#: libraries/server_user_groups.lib.php:147 -#: libraries/server_user_groups.lib.php:209 +#: libraries/server_user_groups.lib.php:149 +#: libraries/server_user_groups.lib.php:213 msgid "Add user group" msgstr "新增使用者群組" -#: libraries/server_user_groups.lib.php:212 +#: libraries/server_user_groups.lib.php:216 #, php-format msgid "Edit user group: '%s'" msgstr "編輯使用者群組: '%s'" -#: libraries/server_user_groups.lib.php:228 +#: libraries/server_user_groups.lib.php:232 msgid "User group menu assignments" msgstr "使用者群組選單分配" -#: libraries/server_user_groups.lib.php:235 +#: libraries/server_user_groups.lib.php:239 msgid "Group name:" msgstr "群組名稱:" -#: libraries/server_user_groups.lib.php:272 +#: libraries/server_user_groups.lib.php:277 msgid "Server-level tabs" msgstr "主機級別標籤頁" -#: libraries/server_user_groups.lib.php:275 +#: libraries/server_user_groups.lib.php:280 msgid "Database-level tabs" msgstr "資料庫級別標籤頁" -#: libraries/server_user_groups.lib.php:278 +#: libraries/server_user_groups.lib.php:283 msgid "Table-level tabs" msgstr "資料表級別標籤頁" @@ -13330,21 +13304,17 @@ msgstr "預期要有結束括號。" msgid "Unrecognized data type." msgstr "預期之外的資料類型。" -#: libraries/sql-parser/src/Components/Expression.php:233 -msgid "Unexpected closing bracket." -msgstr "預期之外的結束括號。" - -#: libraries/sql-parser/src/Components/Expression.php:254 -#: libraries/sql-parser/src/Components/Expression.php:290 -#: libraries/sql-parser/src/Components/Expression.php:310 +#: libraries/sql-parser/src/Components/Expression.php:255 +#: libraries/sql-parser/src/Components/Expression.php:291 +#: libraries/sql-parser/src/Components/Expression.php:311 msgid "An alias was previously found." msgstr "已於前面找到別名。" -#: libraries/sql-parser/src/Components/Expression.php:265 +#: libraries/sql-parser/src/Components/Expression.php:266 msgid "Unexpected dot." msgstr "預期之外的句點。" -#: libraries/sql-parser/src/Components/Expression.php:334 +#: libraries/sql-parser/src/Components/Expression.php:335 msgid "An alias was expected." msgstr "預期要有別名。" @@ -13400,105 +13370,105 @@ msgstr "預期要於結束使用括號 %1$s。" msgid "Variable name was expected." msgstr "預期要有變數名稱。" -#: libraries/sql-parser/src/Parser.php:392 +#: libraries/sql-parser/src/Parser.php:407 msgid "Unexpected beginning of statement." msgstr "預期之外的陳述句開頭。" -#: libraries/sql-parser/src/Parser.php:411 +#: libraries/sql-parser/src/Parser.php:426 msgid "Unrecognized statement type." msgstr "無法辨識的陳述句類型。" -#: libraries/sql-parser/src/Parser.php:493 +#: libraries/sql-parser/src/Parser.php:508 msgid "No transaction was previously started." msgstr "前面未開啟交易(Transaction)模式。" -#: libraries/sql-parser/src/Statement.php:233 +#: libraries/sql-parser/src/Statement.php:247 msgid "Unexpected token." msgstr "預期之外的符號。" -#: libraries/sql-parser/src/Statement.php:271 +#: libraries/sql-parser/src/Statement.php:285 msgid "This type of clause was previously parsed." msgstr "此類型的子句已於前面解析過。" -#: libraries/sql-parser/src/Statement.php:299 +#: libraries/sql-parser/src/Statement.php:313 msgid "" "A new statement was found, but no delimiter between it and the previous one." msgstr "找到新的陳述句,但與前一個陳述句之間未加入間隔符號。" -#: libraries/sql-parser/src/Statement.php:319 +#: libraries/sql-parser/src/Statement.php:333 msgid "Unrecognized keyword." msgstr "無法辨識的關鍵字。" -#: libraries/sql-parser/src/Statements/CreateStatement.php:348 +#: libraries/sql-parser/src/Statements/CreateStatement.php:353 msgid "The name of the entity was expected." msgstr "預期要有實體名稱。" -#: libraries/sql-parser/src/Statements/CreateStatement.php:365 +#: libraries/sql-parser/src/Statements/CreateStatement.php:370 msgid "At least one column definition was expected." msgstr "預期要至少一個欄位定義。" -#: libraries/sql-parser/src/Statements/CreateStatement.php:476 +#: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." msgstr "預期要使用 \"RETURNS\" 關鍵字。" -#: libraries/sql.lib.php:231 +#: libraries/sql.lib.php:235 msgid "Detailed profile" msgstr "效能分析明細" -#: libraries/sql.lib.php:234 +#: libraries/sql.lib.php:238 msgid "Order" msgstr "排序" -#: libraries/sql.lib.php:236 libraries/sql.lib.php:252 +#: libraries/sql.lib.php:240 libraries/sql.lib.php:256 msgid "State" msgstr "狀態" -#: libraries/sql.lib.php:249 +#: libraries/sql.lib.php:253 msgid "Summary by state" msgstr "狀態摘要" -#: libraries/sql.lib.php:255 +#: libraries/sql.lib.php:259 msgid "Total Time" msgstr "總時間" -#: libraries/sql.lib.php:257 +#: libraries/sql.lib.php:261 msgid "% Time" msgstr "% 時間" -#: libraries/sql.lib.php:259 +#: libraries/sql.lib.php:263 msgid "Calls" msgstr "呼叫數" -#: libraries/sql.lib.php:261 +#: libraries/sql.lib.php:265 msgid "ø Time" msgstr "ø 時間" -#: libraries/sql.lib.php:533 libraries/sql.lib.php:549 +#: libraries/sql.lib.php:541 libraries/sql.lib.php:559 msgid "Bookmark this SQL query" msgstr "將此 SQL 查詢加爲書籤" -#: libraries/sql.lib.php:537 +#: libraries/sql.lib.php:545 msgid "Label:" msgstr "標籤:" -#: libraries/sql.lib.php:542 libraries/sql_query_form.lib.php:311 +#: libraries/sql.lib.php:552 libraries/sql_query_form.lib.php:312 msgid "Let every user access this bookmark" msgstr "讓所有使用者均可存取此書籤" -#: libraries/sql.lib.php:748 +#: libraries/sql.lib.php:758 msgid "Bookmark not created!" msgstr "書籤尚未建立!" -#: libraries/sql.lib.php:855 +#: libraries/sql.lib.php:865 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "使用書籤 \"%s\" 作爲預設的查詢。" -#: libraries/sql.lib.php:1311 +#: libraries/sql.lib.php:1328 msgid "Showing as PHP code" msgstr "顯示的內容爲 PHP 程式碼" -#: libraries/sql.lib.php:1640 +#: libraries/sql.lib.php:1657 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " @@ -13507,7 +13477,7 @@ msgstr "" "目前選擇的項目不含唯一(Unique)的資料欄位,將無法執行表格的編輯/核選、編輯、複" "製、刪除等相關的功能。%s" -#: libraries/sql.lib.php:1651 +#: libraries/sql.lib.php:1671 #, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " @@ -13516,7 +13486,7 @@ msgstr "" "目前選擇的項目不含唯一(Unique)的資料欄位,表格的編輯/核選、複製、刪除等相關的" "功能可能產生不如預期的結果。%s" -#: libraries/sql.lib.php:1690 +#: libraries/sql.lib.php:1713 #, php-format msgid "Problems with indexes of table `%s`" msgstr "資料表 `%s` 的索引存在問題" @@ -13544,27 +13514,27 @@ msgstr "取得自動儲存的查詢" msgid "Bind parameters" msgstr "Bind 參數" -#: libraries/sql_query_form.lib.php:303 +#: libraries/sql_query_form.lib.php:304 msgid "Bookmark this SQL query:" msgstr "將此 SQL 查詢加爲書籤:" -#: libraries/sql_query_form.lib.php:317 +#: libraries/sql_query_form.lib.php:318 msgid "Replace existing bookmark of same name" msgstr "取代現有相同名稱的書籤" -#: libraries/sql_query_form.lib.php:331 +#: libraries/sql_query_form.lib.php:332 msgid "Delimiter" msgstr "指令分割符號" -#: libraries/sql_query_form.lib.php:341 +#: libraries/sql_query_form.lib.php:342 msgid "Show this query here again" msgstr "在此再次顯示此查詢" -#: libraries/sql_query_form.lib.php:358 +#: libraries/sql_query_form.lib.php:359 msgid "Rollback when finished" msgstr "當完成後還原" -#: libraries/sql_query_form.lib.php:412 +#: libraries/sql_query_form.lib.php:413 msgid "View only" msgstr "僅查看" @@ -13608,173 +13578,173 @@ msgstr "停用 %s 的追蹤" msgid "Deactivate now" msgstr "立即停用" -#: libraries/tracking.lib.php:280 libraries/tracking.lib.php:1621 +#: libraries/tracking.lib.php:282 libraries/tracking.lib.php:1637 msgid "Created" msgstr "建立" -#: libraries/tracking.lib.php:281 libraries/tracking.lib.php:1622 +#: libraries/tracking.lib.php:283 libraries/tracking.lib.php:1638 msgid "Updated" msgstr "更新" -#: libraries/tracking.lib.php:291 libraries/tracking.lib.php:354 +#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:363 msgid "Delete version" msgstr "刪除版本" -#: libraries/tracking.lib.php:292 libraries/tracking.lib.php:460 -#: libraries/tracking.lib.php:1635 +#: libraries/tracking.lib.php:294 libraries/tracking.lib.php:470 +#: libraries/tracking.lib.php:1651 msgid "Tracking report" msgstr "追蹤報告" -#: libraries/tracking.lib.php:293 libraries/tracking.lib.php:830 -#: libraries/tracking.lib.php:1636 +#: libraries/tracking.lib.php:297 libraries/tracking.lib.php:840 +#: libraries/tracking.lib.php:1654 msgid "Structure snapshot" msgstr "結構快照(Snapshot)" -#: libraries/tracking.lib.php:420 libraries/tracking.lib.php:1446 -#: libraries/tracking.lib.php:1733 +#: libraries/tracking.lib.php:430 libraries/tracking.lib.php:1458 +#: libraries/tracking.lib.php:1758 msgid "active" msgstr "啓用" -#: libraries/tracking.lib.php:422 libraries/tracking.lib.php:1448 -#: libraries/tracking.lib.php:1728 +#: libraries/tracking.lib.php:432 libraries/tracking.lib.php:1460 +#: libraries/tracking.lib.php:1753 msgid "not active" msgstr "停用" -#: libraries/tracking.lib.php:464 +#: libraries/tracking.lib.php:474 msgid "Tracking statements" msgstr "追蹤指令" -#: libraries/tracking.lib.php:476 +#: libraries/tracking.lib.php:486 msgid "Delete tracking data row from report" msgstr "刪除報表的追蹤資料列" -#: libraries/tracking.lib.php:487 +#: libraries/tracking.lib.php:497 msgid "No data" msgstr "沒有資料" -#: libraries/tracking.lib.php:576 libraries/tracking.lib.php:625 +#: libraries/tracking.lib.php:586 libraries/tracking.lib.php:635 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "顯示自 %2$s 起至 %3$s 由使用者 %4$s 執行的 %1$s %5$s" -#: libraries/tracking.lib.php:646 +#: libraries/tracking.lib.php:656 msgid "SQL dump (file download)" msgstr "SQL 匯出 (檔案下載)" -#: libraries/tracking.lib.php:648 +#: libraries/tracking.lib.php:658 msgid "SQL dump" msgstr "SQL 匯出" -#: libraries/tracking.lib.php:651 +#: libraries/tracking.lib.php:661 msgid "This option will replace your table and contained data." msgstr "此選項將會替換您的資料表與內容資料。" -#: libraries/tracking.lib.php:653 +#: libraries/tracking.lib.php:663 msgid "SQL execution" msgstr "執行 SQL 指令" -#: libraries/tracking.lib.php:658 +#: libraries/tracking.lib.php:668 #, php-format msgid "Export as %s" msgstr "匯出爲 %s" -#: libraries/tracking.lib.php:684 +#: libraries/tracking.lib.php:694 msgid "Data manipulation statement" msgstr "資料操作指令" -#: libraries/tracking.lib.php:761 +#: libraries/tracking.lib.php:771 msgid "Data definition statement" msgstr "資料定義指令" -#: libraries/tracking.lib.php:793 +#: libraries/tracking.lib.php:803 msgid "Date" msgstr "日期" -#: libraries/tracking.lib.php:794 +#: libraries/tracking.lib.php:804 msgid "Username" msgstr "使用者名" -#: libraries/tracking.lib.php:848 +#: libraries/tracking.lib.php:858 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "版本 %s 的結構快照 (SQL 程式碼)" -#: libraries/tracking.lib.php:950 +#: libraries/tracking.lib.php:962 #: templates/table/structure/table_structure_row.phtml:33 msgctxt "None for default" msgid "None" msgstr "無" -#: libraries/tracking.lib.php:1052 +#: libraries/tracking.lib.php:1064 msgid "Tracking data definition successfully deleted" msgstr "追蹤資料定義已刪除" -#: libraries/tracking.lib.php:1062 +#: libraries/tracking.lib.php:1074 msgid "Tracking data manipulation successfully deleted" msgstr "追蹤資料操作已刪除" -#: libraries/tracking.lib.php:1116 +#: libraries/tracking.lib.php:1128 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" "您可以透過建立與使用暫存資料庫來執行資料匯出,請先確認您是否有足夠的權限。" -#: libraries/tracking.lib.php:1120 +#: libraries/tracking.lib.php:1132 msgid "Comment out these two lines if you do not need them." msgstr "如果您不需要,請註解以下兩行。" -#: libraries/tracking.lib.php:1130 +#: libraries/tracking.lib.php:1142 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "已匯出 SQL 指令,您可以複製內容或者直接執行。" -#: libraries/tracking.lib.php:1177 +#: libraries/tracking.lib.php:1189 #, php-format msgid "Tracking report for table `%s`" msgstr "資料表 `%s` 的追蹤報告" -#: libraries/tracking.lib.php:1209 +#: libraries/tracking.lib.php:1221 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "已啟用 %1$s 版本 %2$s 的追蹤。" -#: libraries/tracking.lib.php:1234 +#: libraries/tracking.lib.php:1246 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "已停用 %1$s 版本 %2$s 的追蹤。" -#: libraries/tracking.lib.php:1318 +#: libraries/tracking.lib.php:1330 #, php-format msgid "Version %1$s of %2$s was deleted." msgstr "共 %2$s 中的 %1$s 的版本已刪除。" -#: libraries/tracking.lib.php:1349 +#: libraries/tracking.lib.php:1361 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "已建立版本 %1$s,%2$s 的追蹤已啓用。" -#: libraries/tracking.lib.php:1467 +#: libraries/tracking.lib.php:1479 msgid "Untracked tables" msgstr "尚未追蹤的資料表" -#: libraries/tracking.lib.php:1496 libraries/tracking.lib.php:1520 +#: libraries/tracking.lib.php:1512 libraries/tracking.lib.php:1536 #: templates/table/structure/optional_action_links.phtml:21 msgid "Track table" msgstr "追蹤資料表" -#: libraries/tracking.lib.php:1608 +#: libraries/tracking.lib.php:1624 msgid "Tracked tables" msgstr "已追蹤的資料表" -#: libraries/tracking.lib.php:1620 +#: libraries/tracking.lib.php:1636 msgid "Last version" msgstr "最新版本" -#: libraries/tracking.lib.php:1633 libraries/tracking.lib.php:1707 +#: libraries/tracking.lib.php:1649 libraries/tracking.lib.php:1732 msgid "Delete tracking" msgstr "刪除追蹤資料" -#: libraries/tracking.lib.php:1634 +#: libraries/tracking.lib.php:1650 msgid "Versions" msgstr "版本" @@ -13782,11 +13752,11 @@ msgstr "版本" msgid "Manage your settings" msgstr "管理您的設定" -#: libraries/user_preferences.inc.php:55 prefs_manage.php:310 +#: libraries/user_preferences.inc.php:56 prefs_manage.php:310 msgid "Configuration has been saved." msgstr "已儲存設定值。" -#: libraries/user_preferences.inc.php:76 +#: libraries/user_preferences.inc.php:77 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -13888,7 +13858,7 @@ msgstr "無資料庫" msgid "View dump (schema) of databases" msgstr "檢視資料庫結構的匯出資料" -#: server_privileges.php:145 +#: server_privileges.php:146 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." @@ -13913,7 +13883,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin 無法中止程序 %s。該程序可能已經關閉。" -#: server_status_queries.php:50 +#: server_status_queries.php:47 msgid "Not enough privilege to view query statistics." msgstr "權限不足檢視查詢統計資訊。" @@ -14741,43 +14711,49 @@ msgstr "散佈圖" msgid "Stacked" msgstr "堆疊圖" -#: templates/table/chart/tbl_chart.phtml:57 +#: templates/table/chart/tbl_chart.phtml:53 +#, fuzzy +#| msgid "Chart title" +msgid "Chart title:" +msgstr "圖表標題" + +#: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" msgstr "X 軸座標:" -#: templates/table/chart/tbl_chart.phtml:72 +#: templates/table/chart/tbl_chart.phtml:73 msgid "Series:" msgstr "資料序列:" -#: templates/table/chart/tbl_chart.phtml:102 +#: templates/table/chart/tbl_chart.phtml:103 msgid "X-Axis label:" msgstr "X 軸標籤:" -#: templates/table/chart/tbl_chart.phtml:104 +#: templates/table/chart/tbl_chart.phtml:105 msgid "X Values" msgstr "X 軸值" -#: templates/table/chart/tbl_chart.phtml:107 +#: templates/table/chart/tbl_chart.phtml:108 msgid "Y-Axis label:" msgstr "Y 軸標籤:" -#: templates/table/chart/tbl_chart.phtml:109 +#: templates/table/chart/tbl_chart.phtml:110 msgid "Y Values" msgstr "Y 軸值" -#: templates/table/chart/tbl_chart.phtml:115 +#: templates/table/chart/tbl_chart.phtml:116 msgid "Series names are in a column" msgstr "序列名稱於欄位中" -#: templates/table/chart/tbl_chart.phtml:118 +#: templates/table/chart/tbl_chart.phtml:119 msgid "Series column:" msgstr "序列欄位:" -#: templates/table/chart/tbl_chart.phtml:130 +#: templates/table/chart/tbl_chart.phtml:131 msgid "Value Column:" msgstr "資料欄位:" -#: templates/table/chart/tbl_chart.phtml:150 +#: templates/table/chart/tbl_chart.phtml:151 msgid "Save chart as image" msgstr "另存圖表為影像" @@ -14830,46 +14806,47 @@ msgstr "說明:" msgid "Drag to reorder" msgstr "使用滑鼠拖曳來重新排序" -#: templates/table/relation/common_form.phtml:7 +#: templates/table/relation/common_form.phtml:6 +msgid "Foreign key constraints" +msgstr "外鍵限制" + +#: templates/table/relation/common_form.phtml:9 +msgid "Actions" +msgstr "動作" + +#: templates/table/relation/common_form.phtml:10 +msgid "Constraint properties" +msgstr "限制屬性" + +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Only columns with index will be displayed. You can define an index below." +msgstr "僅顯示己建立索引的欄位。 您可以於下方定義索引。" + +#: templates/table/relation/common_form.phtml:18 +msgid "Foreign key constraint" +msgstr "外鍵限制式" + +#: templates/table/relation/common_form.phtml:60 +msgid "+ Add constraint" +msgstr "加入限制(Constraint)" + +#: templates/table/relation/common_form.phtml:70 +#: templates/table/relation/common_form.phtml:76 msgid "Internal relations" msgstr "內部關聯" -#: templates/table/relation/common_form.phtml:11 +#: templates/table/relation/common_form.phtml:80 msgid "Internal relation" msgstr "內部關聯" -#: templates/table/relation/common_form.phtml:14 +#: templates/table/relation/common_form.phtml:83 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "當外鍵(FOREIGN KEY)關連存在時就不需要使用內部關聯。" -#: templates/table/relation/common_form.phtml:37 -msgid "Foreign key constraints" -msgstr "外鍵限制" - -#: templates/table/relation/common_form.phtml:40 -msgid "Actions" -msgstr "動作" - -#: templates/table/relation/common_form.phtml:41 -msgid "Constraint properties" -msgstr "限制屬性" - -#: templates/table/relation/common_form.phtml:44 -msgid "" -"Only columns with index will be displayed. You can define an index below." -msgstr "僅顯示己建立索引的欄位。 您可以於下方定義索引。" - -#: templates/table/relation/common_form.phtml:49 -msgid "Foreign key constraint" -msgstr "外鍵限制式" - -#: templates/table/relation/common_form.phtml:83 -msgid "+ Add constraint" -msgstr "加入限制(Constraint)" - -#: templates/table/relation/common_form.phtml:93 +#: templates/table/relation/common_form.phtml:111 msgid "Choose column to display:" msgstr "選擇要顯示的欄位:" @@ -14995,7 +14972,7 @@ msgid "at beginning of table" msgstr "於資料表開始" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:201 msgid "Partitions" msgstr "分區" @@ -15034,7 +15011,7 @@ msgstr "已做分區依:" msgid "Edit partitioning" msgstr "刪除分區" -#: templates/table/structure/display_structure.phtml:145 view_create.php:184 +#: templates/table/structure/display_structure.phtml:147 view_create.php:184 msgid "Edit view" msgstr "編輯檢視表" @@ -15126,7 +15103,6 @@ msgid "Description" msgstr "說明" #: url.php:36 -#| msgid "Taking you to next step…" msgid "Taking you to the target site." msgstr "帶您至目標網站。" @@ -16322,6 +16298,36 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert 目前設定為 0" +#~ msgid "To filter all databases on server, press Enter after a search term" +#~ msgstr "要搜尋伺服器上的所有資料庫,請在輸入關鍵字後按 Enter" + +#~ msgid "To filter all %s in database, press Enter after a search term" +#~ msgstr "要搜尋資料庫中所有的 %s,請在輸入關鍵字後按 Enter" + +#~ msgid "tables" +#~ msgstr "資料表" + +#~ msgid "views" +#~ msgstr "檢視表" + +#~ msgid "procedures" +#~ msgstr "程序" + +#~ msgid "events" +#~ msgstr "事件" + +#~ msgid "functions" +#~ msgstr "函數" + +#~ msgid "Filter databases by name or regex" +#~ msgstr "依名稱或 Regex 搜尋資料庫" + +#~ msgid "Filter by name or regex" +#~ msgstr "依名稱或 Regex 搜尋" + +#~ msgid "Unexpected closing bracket." +#~ msgstr "預期之外的結束括號。" + #~ msgid "Username and hostname didn't change." #~ msgstr "使用者名稱與主機名稱未變更。" From ed9f31e1e344d2e6dbc8d2b4b08f943f0b3e88c8 Mon Sep 17 00:00:00 2001 From: Domen Date: Sat, 14 Nov 2015 02:41:45 +0100 Subject: [PATCH 035/100] Translated using Weblate (Slovenian) Currently translated at 100.0% (3221 of 3221 strings) [CI skip] --- po/sl.po | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/po/sl.po b/po/sl.po index bc727b400a..9c75e9eb16 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,16 +4,16 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-11-13 19:14-0500\n" -"PO-Revision-Date: 2015-10-28 00:33+0200\n" +"PO-Revision-Date: 2015-11-14 02:41+0000\n" "Last-Translator: Domen \n" -"Language-Team: Slovenian \n" +"Language-Team: Slovenian " +"\n" "Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" "X-Generator: Weblate 2.5-dev\n" #: changelog.php:37 license.php:33 @@ -1685,10 +1685,9 @@ msgid "Formatting SQL…" msgstr "Oblikovanje SQL …" #: js/messages.php:343 -#, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" -msgstr "Slabi parametri!" +msgstr "Nismo našli nobenih parametrov!" #: js/messages.php:347 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 @@ -9341,7 +9340,7 @@ msgstr[3] "najdenih %s rezultatov" #: libraries/navigation/NavigationTree.php:1369 #: libraries/navigation/NavigationTree.php:1406 msgid "Type to filter these, Enter to search all" -msgstr "" +msgstr "Vtipkajte za filtriranje teh, pritisnite enter za iskanje vseh" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -15243,10 +15242,9 @@ msgid "Stacked" msgstr "Zloženi" #: templates/table/chart/tbl_chart.phtml:53 -#, fuzzy #| msgid "Chart title" msgid "Chart title:" -msgstr "Naslov grafikona" +msgstr "Naslov grafikona:" #: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" From 6d606da309892155044a60de2abcdf360926579c Mon Sep 17 00:00:00 2001 From: Stefano Martinelli Date: Sat, 14 Nov 2015 09:21:56 +0100 Subject: [PATCH 036/100] Translated using Weblate (Italian) Currently translated at 100.0% (3221 of 3221 strings) [CI skip] --- po/it.po | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/po/it.po b/po/it.po index 3c76481807..24d2346376 100644 --- a/po/it.po +++ b/po/it.po @@ -4,10 +4,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-11-13 19:14-0500\n" -"PO-Revision-Date: 2015-10-27 09:44+0200\n" +"PO-Revision-Date: 2015-11-14 09:24+0000\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" @@ -1699,7 +1699,6 @@ msgid "Formatting SQL…" msgstr "Formatto SQL…" #: js/messages.php:343 -#, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Parametri errati!" @@ -9434,7 +9433,7 @@ msgstr[1] "%s risultati trovati" #: libraries/navigation/NavigationTree.php:1369 #: libraries/navigation/NavigationTree.php:1406 msgid "Type to filter these, Enter to search all" -msgstr "" +msgstr "Inserisci stringa di ricerca, oppure Enter per cercare tutto" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -15420,10 +15419,9 @@ msgid "Stacked" msgstr "Sovrapposti" #: templates/table/chart/tbl_chart.phtml:53 -#, fuzzy #| msgid "Chart title" msgid "Chart title:" -msgstr "Titolo del grafico" +msgstr "Titolo del grafico:" #: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" From 3575cfdf20c13b676b79d9b2b33f743b9dd49fca Mon Sep 17 00:00:00 2001 From: dingo thirteen Date: Sat, 14 Nov 2015 10:34:52 +0100 Subject: [PATCH 037/100] Translated using Weblate (Dutch) Currently translated at 100.0% (3221 of 3221 strings) [CI skip] --- po/nl.po | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/po/nl.po b/po/nl.po index 640408a746..181549518b 100644 --- a/po/nl.po +++ b/po/nl.po @@ -4,10 +4,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-11-13 19:14-0500\n" -"PO-Revision-Date: 2015-11-12 10:42+0000\n" -"Last-Translator: Michal Čihař \n" -"Language-Team: Dutch \n" +"PO-Revision-Date: 2015-11-14 10:36+0000\n" +"Last-Translator: dingo thirteen \n" +"Language-Team: Dutch " +"\n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1694,10 +1694,9 @@ msgid "Formatting SQL…" msgstr "Aanmaken SQL…" #: js/messages.php:343 -#, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" -msgstr "Verkeerde parameters!" +msgstr "Parameters niet gevonden!" #: js/messages.php:347 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 @@ -9414,7 +9413,7 @@ msgstr[1] "%s resultaten gevonden" #: libraries/navigation/NavigationTree.php:1369 #: libraries/navigation/NavigationTree.php:1406 msgid "Type to filter these, Enter to search all" -msgstr "" +msgstr "Start met typen om te filteren, type Enter voor alles zoeken" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -15396,10 +15395,9 @@ msgid "Stacked" msgstr "Opgestapeld" #: templates/table/chart/tbl_chart.phtml:53 -#, fuzzy #| msgid "Chart title" msgid "Chart title:" -msgstr "Grafiektitel" +msgstr "Grafiektitel:" #: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" From c7378b15cff94f1780969ce4c181d7a5a1c00f2c Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Sat, 14 Nov 2015 10:46:35 +0100 Subject: [PATCH 038/100] Translated using Weblate (Turkish) Currently translated at 100.0% (3221 of 3221 strings) [CI skip] --- po/tr.po | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/po/tr.po b/po/tr.po index 0f277d4501..7f270173de 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,10 +4,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-11-13 19:14-0500\n" -"PO-Revision-Date: 2015-11-12 17:17+0000\n" +"PO-Revision-Date: 2015-11-14 10:46+0000\n" "Last-Translator: Burak Yavuz \n" -"Language-Team: Turkish \n" +"Language-Team: Turkish " +"\n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1685,10 +1685,9 @@ msgid "Formatting SQL…" msgstr "SQL biçimlendiriliyor…" #: js/messages.php:343 -#, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" -msgstr "Kötü parametreler!" +msgstr "Hiç parametre bulunamadı!" #: js/messages.php:347 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 @@ -9350,7 +9349,7 @@ msgstr[1] "%s sonuç bulundu" #: libraries/navigation/NavigationTree.php:1369 #: libraries/navigation/NavigationTree.php:1406 msgid "Type to filter these, Enter to search all" -msgstr "" +msgstr "Bunları süzmek için yazın, tümünü aramak için Enter'a basın" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -15261,10 +15260,9 @@ msgid "Stacked" msgstr "İstiflendi" #: templates/table/chart/tbl_chart.phtml:53 -#, fuzzy #| msgid "Chart title" msgid "Chart title:" -msgstr "Çizelge başlığı" +msgstr "Çizelge başlığı:" #: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" From ed6b160dc2a903cdde7a1b9d66cfcfe501231a4a Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sat, 14 Nov 2015 12:14:26 +0100 Subject: [PATCH 039/100] Translated using Weblate (French) Currently translated at 100.0% (3221 of 3221 strings) [CI skip] --- po/fr.po | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/po/fr.po b/po/fr.po index 6eee5623c8..4a9ffa6f43 100644 --- a/po/fr.po +++ b/po/fr.po @@ -4,10 +4,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-11-13 19:14-0500\n" -"PO-Revision-Date: 2015-10-28 12:02+0200\n" +"PO-Revision-Date: 2015-11-14 12:14+0000\n" "Last-Translator: Marc Delisle \n" -"Language-Team: French \n" +"Language-Team: French " +"\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1699,10 +1699,9 @@ msgid "Formatting SQL…" msgstr "Formatage SQL…" #: js/messages.php:343 -#, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" -msgstr "Paramètres incorrects !" +msgstr "Paramètres manquants !" #: js/messages.php:347 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 @@ -9428,7 +9427,7 @@ msgstr[1] "%s résultats trouvés" #: libraries/navigation/NavigationTree.php:1369 #: libraries/navigation/NavigationTree.php:1406 msgid "Type to filter these, Enter to search all" -msgstr "" +msgstr "Tapez pour filtrer ceci, Entrée pour chercher partout" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -15401,10 +15400,9 @@ msgid "Stacked" msgstr "En piles" #: templates/table/chart/tbl_chart.phtml:53 -#, fuzzy #| msgid "Chart title" msgid "Chart title:" -msgstr "Titre du graphique" +msgstr "Titre du graphique :" #: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" From dbbe6be967e6f189533f6a8f790b33297f40a90b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=A0=CE=B1=CE=BD=CE=B1=CE=B3=CE=B9=CF=8E=CF=84=CE=B7?= =?UTF-8?q?=CF=82=20=CE=A0=CE=B1=CF=80=CE=AC=CE=B6=CE=BF=CE=B3=CE=BB=CE=BF?= =?UTF-8?q?=CF=85?= Date: Sat, 14 Nov 2015 19:40:48 +0100 Subject: [PATCH 040/100] Translated using Weblate (Greek) Currently translated at 100.0% (3221 of 3221 strings) [CI skip] --- po/el.po | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/po/el.po b/po/el.po index 1c5c8241a5..5ac7d3dbd7 100644 --- a/po/el.po +++ b/po/el.po @@ -4,10 +4,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-11-13 19:14-0500\n" -"PO-Revision-Date: 2015-10-27 18:59+0200\n" +"PO-Revision-Date: 2015-11-14 19:41+0000\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" @@ -1700,10 +1700,9 @@ msgid "Formatting SQL…" msgstr "Διαμόρφωση SQL…" #: js/messages.php:343 -#, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" -msgstr "Μη έγκυρες παράμετροι!" +msgstr "Δεν βρέθηκαν παράμετροι!" #: js/messages.php:347 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 @@ -9428,7 +9427,7 @@ msgstr[1] "%s αποτελέσματα βρέθηκαν" #: libraries/navigation/NavigationTree.php:1369 #: libraries/navigation/NavigationTree.php:1406 msgid "Type to filter these, Enter to search all" -msgstr "" +msgstr "Γράψτε για να φιλτράρετε, Enter για αναζήτηση όλων" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -15432,10 +15431,9 @@ msgid "Stacked" msgstr "Σταθεροποιημένο" #: templates/table/chart/tbl_chart.phtml:53 -#, fuzzy #| msgid "Chart title" msgid "Chart title:" -msgstr "Τίτλος διαγράμματος" +msgstr "Τίτλος διαγράμματος:" #: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" From ea2a7a324fb765134e9338d39e42d53ae19e3af1 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sun, 15 Nov 2015 06:10:12 -0500 Subject: [PATCH 041/100] Remove dead code Signed-off-by: Marc Delisle --- libraries/controllers/table/TableSearchController.php | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/libraries/controllers/table/TableSearchController.php b/libraries/controllers/table/TableSearchController.php index 57b61fa885..379ee31b01 100644 --- a/libraries/controllers/table/TableSearchController.php +++ b/libraries/controllers/table/TableSearchController.php @@ -314,11 +314,6 @@ class TableSearchController extends TableController $GLOBALS['cfg']['DefaultTabTable'], 'table' ); } - // Defines the url to return to in case of error in the next sql - // statement - $err_url = $goto . PMA_URL_getCommon( - array('db' => $this->db, 'table' => $this->table) - ); //Set default datalabel if not selected if (!isset($_POST['zoom_submit']) || $_POST['dataLabel'] == '') { @@ -521,7 +516,6 @@ class TableSearchController extends TableController * Add this to ensure following procedures included running correctly. */ $db = $this->db; - $table = $this->table; /** * Parse and analyze the query */ @@ -561,7 +555,6 @@ class TableSearchController extends TableController */ public function displaySelectionFormAction() { - //$err_url = 'tbl_select.php' . $err_url; $this->url_query .= '&goto=tbl_select.php&back=tbl_select.php'; include_once 'libraries/tbl_info.inc.php'; @@ -570,10 +563,6 @@ class TableSearchController extends TableController $GLOBALS['cfg']['DefaultTabTable'], 'table' ); } - // Defines the url to return to in case of error in the next sql statement - $err_url = $goto . PMA_URL_getCommon( - array('db' => $this->db, 'table' => $this->table) - ); // Displays the table search form $this->response->addHTML( Template::get('secondary_tabs') From 2462c093fabb7998fb4391038bab59a74dbf05ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20VonFlynee?= Date: Sat, 14 Nov 2015 12:43:28 +0100 Subject: [PATCH 042/100] Translated using Weblate (Polish) Currently translated at 79.9% (2574 of 3221 strings) [CI skip] --- po/pl.po | 80 ++++++++++++++++++++++++-------------------------------- 1 file changed, 34 insertions(+), 46 deletions(-) diff --git a/po/pl.po b/po/pl.po index 3295b0b670..a27be5259a 100644 --- a/po/pl.po +++ b/po/pl.po @@ -4,10 +4,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-11-13 19:14-0500\n" -"PO-Revision-Date: 2015-11-02 22:16+0200\n" -"Last-Translator: Kozioł Marcin \n" -"Language-Team: Polish \n" +"PO-Revision-Date: 2015-11-14 12:43+0000\n" +"Last-Translator: Michał VonFlynee \n" +"Language-Team: Polish " +"\n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -782,7 +782,6 @@ msgstr "" "skutkować niespodziewanymi rezultatami." #: index.php:509 -#, fuzzy #| msgid "" #| "Your PHP parameter [a@http://php.net/manual/en/session.configuration." #| "php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower " @@ -794,10 +793,11 @@ msgid "" "cookie validity configured in phpMyAdmin, because of this, your login might " "expire sooner than configured in phpMyAdmin." msgstr "" -"Parametr PHP [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] ma mniejszą wartość " -"niż czas przechowywania ciasteczka skonfigurowany w phpMyAdmin. Z tego " -"powodu sesja wygaśnie wcześniej niż jest to skonfigurowane w phpMyAdmin." +"Parametr PHP " +"[a@http://php.net/manual/en/session.configuration.php#ini.session.gc-" +"maxlifetime@_blank]session.gc_maxlifetime[/a] ma mniejszą wartość niż czas " +"przechowywania ciasteczka skonfigurowany w phpMyAdmin. Z tego powodu sesja " +"wygaśnie wcześniej niż jest to skonfigurowane w phpMyAdmin." #: index.php:528 msgid "" @@ -1034,7 +1034,6 @@ msgid "Reset" msgstr "Resetuj" #: js/messages.php:110 -#, fuzzy #| msgid "Reset All" msgid "Reset all" msgstr "Zresetuj wszystkie" @@ -1242,25 +1241,21 @@ msgid "Used memory" msgstr "Pamięć użyta" #: js/messages.php:188 -#, fuzzy #| msgid "Total Swap" msgid "Total swap" -msgstr "Przestrzeń wymiany ogółem" +msgstr "Całkowita przestrzeń wymiany" #: js/messages.php:189 -#, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "Podręczna przestrzeń wymiany" #: js/messages.php:190 -#, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "Użyta przestrzeń wymiany" #: js/messages.php:191 -#, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "Wolna przestrzeń wymiany" @@ -1371,11 +1366,11 @@ msgstr "Wstrzymaj monitor" #: js/messages.php:219 libraries/server_status_processes.lib.php:41 msgid "Start auto refresh" -msgstr "" +msgstr "Rozpocznij automatyczne odświeżanie" #: js/messages.php:220 msgid "Stop auto refresh" -msgstr "" +msgstr "Zakończ automatyczne odświeżanie" #: js/messages.php:222 msgid "general_log and slow_query_log are enabled." @@ -1675,10 +1670,9 @@ msgid "No files available on server for import!" msgstr "Brak dostępnych plików na serwerze do importu!" #: js/messages.php:328 -#, fuzzy #| msgid "Analyse Query" msgid "Analyse query" -msgstr "Analiza zapytania" +msgstr "Analizuj zapytanie" #: js/messages.php:332 msgid "Advisor system" @@ -1714,7 +1708,7 @@ msgstr "Testuj" #: js/messages.php:342 msgid "Formatting SQL…" -msgstr "" +msgstr "Formatowanie SQL…" #: js/messages.php:343 #, fuzzy @@ -1734,10 +1728,9 @@ msgid "Cancel" msgstr "Anuluj" #: js/messages.php:350 libraries/Header.php:457 -#, fuzzy #| msgid "Change settings" msgid "Page-related settings" -msgstr "Zmiana ustawień" +msgstr "Ustawienia strony" #: js/messages.php:351 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" @@ -1749,28 +1742,24 @@ msgid "Loading…" msgstr "Wczytywanie…" #: js/messages.php:355 -#, fuzzy #| msgid "Request Aborted!!" msgid "Request aborted!!" msgstr "Żądanie przerwane!" #: js/messages.php:356 -#, fuzzy #| msgid "Processing Request" msgid "Processing request" -msgstr "Przetwarzanie wywołania" +msgstr "Przetwarzanie żądania" #: js/messages.php:357 -#, fuzzy #| msgid "Request Aborted!!" msgid "Request failed!!" -msgstr "Żądanie przerwane!" +msgstr "Żądanie nieudane!" #: js/messages.php:358 -#, fuzzy #| msgid "Error in processing request:" msgid "Error in processing request" -msgstr "Błąd na żądanie przetwarzania:" +msgstr "Błąd podczas przetwarzania żądania" #: js/messages.php:359 #, php-format @@ -1788,16 +1777,14 @@ msgid "No databases selected." msgstr "Żadna baza danych nie został wybrana." #: js/messages.php:362 -#, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "Usuwanie kolumny" #: js/messages.php:363 -#, fuzzy #| msgid "Add primary key" msgid "Adding primary key" -msgstr "Dodaj klucz główny" +msgstr "Dodawanie klucza głównego" #: js/messages.php:364 #: templates/database/designer/aggregate_query_panel.phtml:59 @@ -1814,32 +1801,28 @@ msgid "Click to dismiss this notification" msgstr "Kliknij, aby zamknąć to powiadomienie" #: js/messages.php:368 -#, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" -msgstr "Zmiana nazwy bazy danych" +msgstr "Zmienianie nazw baz danych" #: js/messages.php:369 -#, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "Kopiowanie bazy danych" #: js/messages.php:370 -#, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "Zmiana kodowania" #: js/messages.php:374 libraries/Util.php:3289 -#, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" -msgstr "Wyłącz sprawdzanie kluczy zewnętrznych" +msgstr "Włącz sprawdzanie kluczy obcych" #: js/messages.php:377 msgid "Failed to get real row count." -msgstr "Nie udało się pobrać prawdziwiej liczby wierszy." +msgstr "Błąd podczas pobierania realnej liczby wierszy." #: js/messages.php:380 msgid "Searching" @@ -1847,7 +1830,7 @@ msgstr "Wyszukiwanie" #: js/messages.php:381 msgid "Hide search results" -msgstr "Ukryj okno wyników" +msgstr "Ukryj wyniki wyszukiwania" #: js/messages.php:382 msgid "Show search results" @@ -1955,7 +1938,7 @@ msgstr "Przeglądaj zewnętrzne wartości" #: js/messages.php:410 msgid "No auto-saved query" -msgstr "" +msgstr "Brak automatycznie zapisanych zapytań" #: js/messages.php:411 #, php-format @@ -1980,6 +1963,9 @@ 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 "" +"Brak kolumn w liście centralnej. Upewnij się, że lista kolumn centralnych " +"dla bazy danych %s zawiera kolumny, które nie są wyświetlane w aktywnej " +"tabeli.." #: js/messages.php:421 msgid "See more" @@ -1987,13 +1973,15 @@ msgstr "Zobacz więcej" #: js/messages.php:422 msgid "Are you sure?" -msgstr "" +msgstr "Czy jesteś pewien?" #: js/messages.php:424 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" +"To działanie może zmienić część definicji kolumn.
Czy jesteś pewien, że " +"chcesz kontynuować?" #: js/messages.php:427 msgid "Continue" @@ -2014,7 +2002,7 @@ msgstr "Przenoszenie cię do następnego kroku…" #: js/messages.php:434 #, php-format msgid "The first step of normalization is complete for table '%s'." -msgstr "" +msgstr "Pierwszy etap dostosowywania dla tableli '%s' został ukończony." #: js/messages.php:435 libraries/normalization.lib.php:455 #: libraries/normalization.lib.php:502 libraries/normalization.lib.php:587 @@ -2024,7 +2012,7 @@ msgstr "Koniec kroku" #: js/messages.php:436 msgid "Second step of normalization (2NF)" -msgstr "" +msgstr "Drugi etap dostosowywania (2NF)" #. l10n: Display text for calendar close link #: js/messages.php:437 js/messages.php:731 libraries/normalization.lib.php:291 @@ -2033,11 +2021,11 @@ msgstr "Zakończ" #: js/messages.php:438 msgid "Confirm partial dependencies" -msgstr "" +msgstr "Potwierdź częściowe zależności" #: js/messages.php:439 msgid "Selected partial dependencies are as follows:" -msgstr "" +msgstr "Wybrane częściowe zależności to:" #: js/messages.php:441 msgid "" From dfbd4511108e1df5921f14b1f32ed301694a4af2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristjan=20R=C3=A4ts?= Date: Mon, 16 Nov 2015 12:58:47 +0100 Subject: [PATCH 043/100] Translated using Weblate (Estonian) Currently translated at 100.0% (3221 of 3221 strings) [CI skip] --- po/et.po | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/po/et.po b/po/et.po index 7ff9936a55..6d8af590d0 100644 --- a/po/et.po +++ b/po/et.po @@ -6,10 +6,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-11-13 19:14-0500\n" -"PO-Revision-Date: 2015-10-27 08:28+0200\n" +"PO-Revision-Date: 2015-11-16 13:01+0000\n" "Last-Translator: Kristjan Räts \n" -"Language-Team: Estonian \n" +"Language-Team: Estonian " +"\n" "Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1677,10 +1677,9 @@ msgid "Formatting SQL…" msgstr "SQL vormindamine…" #: js/messages.php:343 -#, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" -msgstr "Halvad parameetrid!" +msgstr "Parameetrid puuduvad!" #: js/messages.php:347 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 @@ -9248,7 +9247,7 @@ msgstr[1] "%s tulemust leitud" #: libraries/navigation/NavigationTree.php:1369 #: libraries/navigation/NavigationTree.php:1406 msgid "Type to filter these, Enter to search all" -msgstr "" +msgstr "Sisesta filter; Enter otsib kõiki" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -15121,10 +15120,9 @@ msgid "Stacked" msgstr "Jaotatud ühe tulbana" #: templates/table/chart/tbl_chart.phtml:53 -#, fuzzy #| msgid "Chart title" msgid "Chart title:" -msgstr "Diagrammi pealkiri" +msgstr "Diagrammi pealkiri:" #: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" From 54b473ef895d5a164c677e6201624023c345d033 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Mon, 16 Nov 2015 07:25:00 -0500 Subject: [PATCH 044/100] 4.5.3-dev Signed-off-by: Marc Delisle --- ChangeLog | 2 ++ README | 2 +- doc/conf.py | 2 +- libraries/Config.class.php | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9f01e3f3a3..4ed071ce71 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,8 @@ phpMyAdmin - ChangeLog ====================== +4.5.3.0 (not yet released) + 4.5.2.0 (not yet released) - issue #11589 Incorrect parameter in mysqli_fetch_fields() - issue #11592 Missing headers in zipped export diff --git a/README b/README index 1b6cf7de5b..3b9b646dc6 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ phpMyAdmin - Readme =================== -Version 4.5.2-dev +Version 4.5.3-dev A set of PHP-scripts to manage MySQL over the web. diff --git a/doc/conf.py b/doc/conf.py index fdd697df56..a868de5593 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -51,7 +51,7 @@ copyright = u'2012 - 2014, The phpMyAdmin devel team' # built documents. # # The short X.Y version. -version = '4.5.2-dev' +version = '4.5.3-dev' # The full version, including alpha/beta/rc tags. release = version diff --git a/libraries/Config.class.php b/libraries/Config.class.php index cfb4b66568..0bfdb0bd30 100644 --- a/libraries/Config.class.php +++ b/libraries/Config.class.php @@ -114,7 +114,7 @@ class PMA_Config */ public function checkSystem() { - $this->set('PMA_VERSION', '4.5.2-dev'); + $this->set('PMA_VERSION', '4.5.3-dev'); /** * @deprecated */ From 707bfd058abd19cc0f61fc46049f3ceef81f9d9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20VonFlynee?= Date: Sat, 14 Nov 2015 12:43:26 +0100 Subject: [PATCH 045/100] Translated using Weblate (Polish) Currently translated at 80.7% (2594 of 3211 strings) [CI skip] --- po/pl.po | 76 ++++++++++++++++++++++++-------------------------------- 1 file changed, 32 insertions(+), 44 deletions(-) diff --git a/po/pl.po b/po/pl.po index 7cc70fceec..270b60607e 100644 --- a/po/pl.po +++ b/po/pl.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.5.2-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-10-26 19:59-0400\n" -"PO-Revision-Date: 2015-11-02 22:16+0200\n" -"Last-Translator: Kozioł Marcin \n" +"PO-Revision-Date: 2015-11-14 12:43+0000\n" +"Last-Translator: Michał VonFlynee \n" "Language-Team: Polish " "\n" "Language: pl\n" @@ -792,7 +792,6 @@ msgstr "" "skutkować niespodziewanymi rezultatami." #: index.php:501 -#, fuzzy #| msgid "" #| "Your PHP parameter [a@http://php.net/manual/en/session.configuration." #| "php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower " @@ -804,10 +803,11 @@ msgid "" "cookie validity configured in phpMyAdmin, because of this, your login might " "expire sooner than configured in phpMyAdmin." msgstr "" -"Parametr PHP [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] ma mniejszą wartość " -"niż czas przechowywania ciasteczka skonfigurowany w phpMyAdmin. Z tego " -"powodu sesja wygaśnie wcześniej niż jest to skonfigurowane w phpMyAdmin." +"Parametr PHP " +"[a@http://php.net/manual/en/session.configuration.php#ini.session.gc-" +"maxlifetime@_blank]session.gc_maxlifetime[/a] ma mniejszą wartość niż czas " +"przechowywania ciasteczka skonfigurowany w phpMyAdmin. Z tego powodu sesja " +"wygaśnie wcześniej niż jest to skonfigurowane w phpMyAdmin." #: index.php:520 msgid "" @@ -1031,7 +1031,6 @@ msgid "Reset" msgstr "Resetuj" #: js/messages.php:91 -#, fuzzy #| msgid "Reset All" msgid "Reset all" msgstr "Zresetuj wszystkie" @@ -1245,25 +1244,21 @@ msgid "Used memory" msgstr "Pamięć użyta" #: js/messages.php:163 -#, fuzzy #| msgid "Total Swap" msgid "Total swap" -msgstr "Przestrzeń wymiany ogółem" +msgstr "Całkowita przestrzeń wymiany" #: js/messages.php:164 -#, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "Podręczna przestrzeń wymiany" #: js/messages.php:165 -#, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "Użyta przestrzeń wymiany" #: js/messages.php:166 -#, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "Wolna przestrzeń wymiany" @@ -1374,11 +1369,11 @@ msgstr "Wstrzymaj monitor" #: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" -msgstr "" +msgstr "Rozpocznij automatyczne odświeżanie" #: js/messages.php:194 msgid "Stop auto refresh" -msgstr "" +msgstr "Zakończ automatyczne odświeżanie" #: js/messages.php:196 msgid "general_log and slow_query_log are enabled." @@ -1679,10 +1674,9 @@ msgid "No files available on server for import!" msgstr "Brak dostępnych plików na serwerze do importu!" #: js/messages.php:276 -#, fuzzy #| msgid "Analyse Query" msgid "Analyse query" -msgstr "Analiza zapytania" +msgstr "Analizuj zapytanie" #: js/messages.php:280 msgid "Advisor system" @@ -1718,7 +1712,7 @@ msgstr "Testuj" #: js/messages.php:290 msgid "Formatting SQL…" -msgstr "" +msgstr "Formatowanie SQL…" #: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 @@ -1732,10 +1726,9 @@ msgid "Cancel" msgstr "Anuluj" #: js/messages.php:297 libraries/Header.class.php:462 -#, fuzzy #| msgid "Change settings" msgid "Page-related settings" -msgstr "Zmiana ustawień" +msgstr "Ustawienia strony" #: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" @@ -1747,28 +1740,24 @@ msgid "Loading…" msgstr "Wczytywanie…" #: js/messages.php:302 -#, fuzzy #| msgid "Request Aborted!!" msgid "Request aborted!!" msgstr "Żądanie przerwane!" #: js/messages.php:303 -#, fuzzy #| msgid "Processing Request" msgid "Processing request" -msgstr "Przetwarzanie wywołania" +msgstr "Przetwarzanie żądania" #: js/messages.php:304 -#, fuzzy #| msgid "Request Aborted!!" msgid "Request failed!!" -msgstr "Żądanie przerwane!" +msgstr "Żądanie nieudane!" #: js/messages.php:305 -#, fuzzy #| msgid "Error in processing request:" msgid "Error in processing request" -msgstr "Błąd na żądanie przetwarzania:" +msgstr "Błąd podczas przetwarzania żądania" #: js/messages.php:306 #, php-format @@ -1786,16 +1775,14 @@ msgid "No databases selected." msgstr "Żadna baza danych nie został wybrana." #: js/messages.php:309 -#, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "Usuwanie kolumny" #: js/messages.php:310 -#, fuzzy #| msgid "Add primary key" msgid "Adding primary key" -msgstr "Dodaj klucz główny" +msgstr "Dodawanie klucza głównego" #: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 @@ -1812,32 +1799,28 @@ msgid "Click to dismiss this notification" msgstr "Kliknij, aby zamknąć to powiadomienie" #: js/messages.php:315 -#, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" -msgstr "Zmiana nazwy bazy danych" +msgstr "Zmienianie nazw baz danych" #: js/messages.php:316 -#, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "Kopiowanie bazy danych" #: js/messages.php:317 -#, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "Zmiana kodowania" #: js/messages.php:321 libraries/Util.class.php:3232 -#, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" -msgstr "Wyłącz sprawdzanie kluczy zewnętrznych" +msgstr "Włącz sprawdzanie kluczy obcych" #: js/messages.php:324 msgid "Failed to get real row count." -msgstr "Nie udało się pobrać prawdziwiej liczby wierszy." +msgstr "Błąd podczas pobierania realnej liczby wierszy." #: js/messages.php:327 msgid "Searching" @@ -1845,7 +1828,7 @@ msgstr "Wyszukiwanie" #: js/messages.php:328 msgid "Hide search results" -msgstr "Ukryj okno wyników" +msgstr "Ukryj wyniki wyszukiwania" #: js/messages.php:329 msgid "Show search results" @@ -1956,7 +1939,7 @@ msgstr "Przeglądaj zewnętrzne wartości" #: js/messages.php:354 msgid "No auto-saved query" -msgstr "" +msgstr "Brak automatycznie zapisanych zapytań" #: js/messages.php:355 #, php-format @@ -1981,6 +1964,9 @@ 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 "" +"Brak kolumn w liście centralnej. Upewnij się, że lista kolumn centralnych " +"dla bazy danych %s zawiera kolumny, które nie są wyświetlane w aktywnej " +"tabeli.." #: js/messages.php:362 msgid "See more" @@ -1988,13 +1974,15 @@ msgstr "Zobacz więcej" #: js/messages.php:363 msgid "Are you sure?" -msgstr "" +msgstr "Czy jesteś pewien?" #: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" +"To działanie może zmienić część definicji kolumn.
Czy jesteś pewien, że " +"chcesz kontynuować?" #: js/messages.php:365 msgid "Continue" @@ -2015,7 +2003,7 @@ msgstr "Przenoszenie cię do następnego kroku…" #: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." -msgstr "" +msgstr "Pierwszy etap dostosowywania dla tableli '%s' został ukończony." #: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 @@ -2025,7 +2013,7 @@ msgstr "Koniec kroku" #: js/messages.php:373 msgid "Second step of normalization (2NF)" -msgstr "" +msgstr "Drugi etap dostosowywania (2NF)" #. l10n: Display text for calendar close link #: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 @@ -2034,11 +2022,11 @@ msgstr "Zakończ" #: js/messages.php:375 msgid "Confirm partial dependencies" -msgstr "" +msgstr "Potwierdź częściowe zależności" #: js/messages.php:376 msgid "Selected partial dependencies are as follows:" -msgstr "" +msgstr "Wybrane częściowe zależności to:" #: js/messages.php:377 msgid "" From 19bf43d500a9d5146228794e9514c3bb46d816be Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 12 Nov 2015 17:17:44 +0100 Subject: [PATCH 046/100] Translated using Weblate (Turkish) Currently translated at 100.0% (3211 of 3211 strings) [CI skip] --- po/tr.po | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/po/tr.po b/po/tr.po index d26d7d42ca..d54817b583 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.5.2-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-10-26 19:59-0400\n" -"PO-Revision-Date: 2015-11-05 12:07+0000\n" +"PO-Revision-Date: 2015-11-12 17:17+0000\n" "Last-Translator: Burak Yavuz \n" "Language-Team: Turkish " "\n" @@ -818,10 +818,10 @@ msgid "" "once phpMyAdmin has been configured. Otherwise the security of your server " "may be compromised by unauthorized people downloading your configuration." msgstr "" -"Kur betiği tarafından kullanılan [code]config[/code] dizini hala phpMyAdmin " -"dizininiz içinde mevcut. phpMyAdmin bir defa yapılandırıldı mı bunu " -"kaldırmanız son derece önerilir. Yoksa yapılandırmanızı indiren yetkisiz " -"insanlar tarafından sunucunuzun güvenliği riske atılabilir." +"Kur programcığı tarafından kullanılan [code]config[/code] dizini hala " +"phpMyAdmin dizininiz içinde mevcut. phpMyAdmin bir defa yapılandırıldı mı " +"bunu kaldırmanız son derece önerilir. Yoksa yapılandırmanızı indiren " +"yetkisiz insanlar tarafından sunucunuzun güvenliği riske atılabilir." #: index.php:565 #, php-format @@ -10131,8 +10131,8 @@ msgid "" "You probably did not create a configuration file. You might want to use the " "%1$ssetup script%2$s to create one." msgstr "" -"Muhtemelen bunun sebebi yapılandırma dosyasını oluşturmadığınız içindir. Bir " -"tane oluşturmak için %1$skur programcığı%2$s kullanmak isteyebilirsiniz." +"Muhtemelen bir yapılandırma dosyası oluşturmadınız. Bir tane oluşturmak için " +"%1$skur programcığını%2$s kullanmak isteyebilirsiniz." #: libraries/plugins/auth/AuthenticationConfig.class.php:144 msgid "" From 1e0a2ba4a567dfee512d3e0447c431b3b8386d89 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Mon, 16 Nov 2015 07:25:50 -0500 Subject: [PATCH 047/100] 4.5.3-dev Signed-off-by: Marc Delisle --- ChangeLog | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ChangeLog b/ChangeLog index 6ba3c1a760..c38e7eef3f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -16,6 +16,8 @@ phpMyAdmin - ChangeLog - issue #11647 Restrict configuration NavigationTreeDbSeparator to strings - issue #11667 Disable the tooltip in the navigation panel's filter box +4.5.3.0 (not yet released) + 4.5.2.0 (not yet released) - issue #11589 Incorrect parameter in mysqli_fetch_fields() - issue #11592 Missing headers in zipped export From 945ea751fd17e7848a24b6ac218802d80686da99 Mon Sep 17 00:00:00 2001 From: Giovanni Sora Date: Sun, 15 Nov 2015 22:07:55 +0100 Subject: [PATCH 048/100] Translated using Weblate (Interlingua) Currently translated at 71.8% (2315 of 3221 strings) [CI skip] --- po/ia.po | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/po/ia.po b/po/ia.po index 3bb3a81d01..ef428f88c2 100644 --- a/po/ia.po +++ b/po/ia.po @@ -8,10 +8,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-11-13 19:14-0500\n" -"PO-Revision-Date: 2015-11-02 15:37+0200\n" +"PO-Revision-Date: 2015-11-15 22:07+0000\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" @@ -1701,10 +1701,9 @@ msgid "Formatting SQL…" msgstr "Formatante SQL…" #: js/messages.php:343 -#, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" -msgstr "Mal parametros!" +msgstr "Il non trovava aucun parametros!" #: js/messages.php:347 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 @@ -15003,10 +15002,9 @@ msgid "Stacked" msgstr "" #: templates/table/chart/tbl_chart.phtml:53 -#, fuzzy #| msgid "Chart title" msgid "Chart title:" -msgstr "Titulo del diagramma" +msgstr "Titulo del diagramma:" #: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" From e2d0d2703aa3c9ad8c411f4329a4de82fcece5c3 Mon Sep 17 00:00:00 2001 From: Deven Bansod Date: Tue, 17 Nov 2015 03:34:48 +0530 Subject: [PATCH 049/100] Include with correct filename Signed-off-by: Deven Bansod --- libraries/controllers/table/TableStructureController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/controllers/table/TableStructureController.php b/libraries/controllers/table/TableStructureController.php index d47ce431a1..6f530de7b5 100644 --- a/libraries/controllers/table/TableStructureController.php +++ b/libraries/controllers/table/TableStructureController.php @@ -544,7 +544,7 @@ class TableStructureController extends TableController $partitionDetails = $this->_extractPartitionDetails(); } - include_once 'libraries/StorageEngine.class.php'; + include_once 'libraries/StorageEngine.php'; $this->response->addHTML( Template::get('table/structure/partition_definition_form') ->render( From ad0ac35ff8b7e48481df06c52d733dab5d366bc1 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Mon, 16 Nov 2015 14:44:30 -0500 Subject: [PATCH 050/100] Remove dead code Signed-off-by: Marc Delisle --- libraries/display_change_password.lib.php | 4 ++-- libraries/server_privileges.lib.php | 8 ++------ 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/libraries/display_change_password.lib.php b/libraries/display_change_password.lib.php index b294d1a213..28abe6b817 100644 --- a/libraries/display_change_password.lib.php +++ b/libraries/display_change_password.lib.php @@ -102,7 +102,7 @@ function PMA_getHtmlForChangePassword($mode, $username, $hostname) || ($is_superuser && $mode == 'edit_other') ) { $auth_plugin_dropdown = PMA_getHtmlForAuthPluginsDropdown( - $username, $hostname, $orig_auth_plugin, 'change_pw', 'new' + $orig_auth_plugin, 'change_pw', 'new' ); $html .= '
' @@ -135,7 +135,7 @@ function PMA_getHtmlForChangePassword($mode, $username, $hostname) } } else { $auth_plugin_dropdown = PMA_getHtmlForAuthPluginsDropdown( - $username, $hostname, $orig_auth_plugin, 'change_pw', 'old' + $orig_auth_plugin, 'change_pw', 'old' ); $html .= '' diff --git a/libraries/server_privileges.lib.php b/libraries/server_privileges.lib.php index ce5e8f490f..ece2cbef65 100644 --- a/libraries/server_privileges.lib.php +++ b/libraries/server_privileges.lib.php @@ -1517,8 +1517,6 @@ function PMA_getHtmlForGlobalPrivTableWithCheckboxes( /** * Gets the currently active authentication plugins * - * @param string $username User name - * @param string $hostname Host name * @param string $orig_auth_plugin Default Authentication plugin * @param string $mode are we creating a new user or are we just * changing one? @@ -1528,8 +1526,6 @@ function PMA_getHtmlForGlobalPrivTableWithCheckboxes( * @return string $html_output */ function PMA_getHtmlForAuthPluginsDropdown( - $username, - $hostname, $orig_auth_plugin, $mode = 'new', $versions = 'new' @@ -1884,13 +1880,13 @@ function PMA_getHtmlForLoginInformationFields( . ' ' . "\n"; $auth_plugin_dropdown = PMA_getHtmlForAuthPluginsDropdown( - $username, $hostname, $orig_auth_plugin, $mode, 'new' + $orig_auth_plugin, $mode, 'new' ); } else { $html_output .= __('Password Hashing Method') . ' ' . "\n"; $auth_plugin_dropdown = PMA_getHtmlForAuthPluginsDropdown( - $username, $hostname, $orig_auth_plugin, $mode, 'old' + $orig_auth_plugin, $mode, 'old' ); } $html_output .= $auth_plugin_dropdown; From fd098ff80e7e7844eb5fd9a4ec832e069f2ace86 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 17 Nov 2015 18:59:17 +1100 Subject: [PATCH 051/100] Refactor server variables page Signed-off-by: Madhura Jayaratne --- .../controllers/ServerVariablesController.php | 2541 +++++++++++++++++ libraries/server_variables.lib.php | 2463 ---------------- server_variables.php | 107 +- 3 files changed, 2562 insertions(+), 2549 deletions(-) create mode 100644 libraries/controllers/ServerVariablesController.php delete mode 100644 libraries/server_variables.lib.php diff --git a/libraries/controllers/ServerVariablesController.php b/libraries/controllers/ServerVariablesController.php new file mode 100644 index 0000000000..2e084e852c --- /dev/null +++ b/libraries/controllers/ServerVariablesController.php @@ -0,0 +1,2541 @@ +getValueAction(); + return; + } + + if (! empty($_REQUEST['ajax_request']) + && isset($_REQUEST['type']) + && $_REQUEST['type'] === 'setval' + ) { + $this->setValueAction(); + return; + } + + require 'libraries/server_common.inc.php'; + + $header = $this->response->getHeader(); + $scripts = $header->getScripts(); + $scripts->addFile('server_variables.js'); + + /** + * Displays the sub-page heading + */ + $doc_link = Util::showMySQLDocu('server_system_variables'); + $this->response->addHtml(PMA_getHtmlForSubPageHeader('variables', $doc_link)); + + /** + * Sends the queries and buffers the results + */ + $serverVarsResult = $GLOBALS['dbi']->tryQuery('SHOW SESSION VARIABLES;'); + + if ($serverVarsResult !== false) { + + $serverVarsSession = array(); + while ($arr = $GLOBALS['dbi']->fetchRow($serverVarsResult)) { + $serverVarsSession[$arr[0]] = $arr[1]; + } + $GLOBALS['dbi']->freeResult($serverVarsResult); + + $serverVars = $GLOBALS['dbi']->fetchResult('SHOW GLOBAL VARIABLES;', 0, 1); + + /** + * Link templates + */ + $this->response->addHtml($this->_getHtmlForLinkTemplates()); + + /** + * Displays the page + */ + $this->response->addHtml( + $this->_getHtmlForServerVariables($serverVars, $serverVarsSession) + ); + } else { + /** + * Display the error message + */ + $this->response->addHTML( + Message::error( + sprintf( + __('Not enough privilege to view server variables and settings. %s'), + Util::showMySQLDocu( + 'server-system-variables', + false, + 'sysvar_show_compatibility_56' + ) + ) + )->getDisplay() + ); + } + } + + /** + * Handle the AJAX request for a single variable value + * + * @return void + */ + public function getValueAction() + { + // Send with correct charset + header('Content-Type: text/html; charset=UTF-8'); + // Do not use double quotes inside the query to avoid a problem + // when server is running in ANSI_QUOTES sql_mode + $varValue = $GLOBALS['dbi']->fetchSingleRow( + 'SHOW GLOBAL VARIABLES WHERE Variable_name=\'' + . Util::sqlAddSlashes($_REQUEST['varName']) . '\';', + 'NUM' + ); + + $variable_doc_links = $this->_getArrayForDocumentLinks(); + if (isset($variable_doc_links[$_REQUEST['varName']][3]) + && $variable_doc_links[$_REQUEST['varName']][3] == 'byte' + ) { + $this->response->addJSON( + 'message', + implode( + ' ', Util::formatByteDown($varValue[1], 3, 3) + ) + ); + } else { + $this->response->addJSON( + 'message', + $varValue[1] + ); + } + } + + /** + * Handle the AJAX request for setting value for a single variable + * + * @return void + */ + public function setValueAction() + { + $value = $_REQUEST['varValue']; + $matches = array(); + + $variable_doc_links = $this->_getArrayForDocumentLinks(); + if (isset($variable_doc_links[$_REQUEST['varName']][3]) + && $variable_doc_links[$_REQUEST['varName']][3] == 'byte' + && preg_match( + '/^\s*(\d+(\.\d+)?)\s*(mb|kb|mib|kib|gb|gib)\s*$/i', + $value, + $matches + ) + ) { + $exp = array( + 'kb' => 1, + 'kib' => 1, + 'mb' => 2, + 'mib' => 2, + 'gb' => 3, + 'gib' => 3 + ); + $value = floatval($matches[1]) * Util::pow( + 1024, + $exp[/*overload*/mb_strtolower($matches[3])] + ); + } else { + $value = Util::sqlAddSlashes($value); + } + + if (! is_numeric($value)) { + $value="'" . $value . "'"; + } + + if (! preg_match("/[^a-zA-Z0-9_]+/", $_REQUEST['varName']) + && $GLOBALS['dbi']->query( + 'SET GLOBAL ' . $_REQUEST['varName'] . ' = ' . $value + ) + ) { + // Some values are rounded down etc. + $varValue = $GLOBALS['dbi']->fetchSingleRow( + 'SHOW GLOBAL VARIABLES WHERE Variable_name="' + . Util::sqlAddSlashes($_REQUEST['varName']) + . '";', 'NUM' + ); + $this->response->addJSON( + 'variable', + $this->_formatVariable( + $_REQUEST['varName'], + $varValue[1] + ) + ); + } else { + $this->response->setRequestStatus(false); + $this->response->addJSON( + 'error', + __('Setting variable failed') + ); + } + } + + /** + * Format Variable + * + * @param string $name variable name + * @param number $value variable value + * + * @return string formatted string + */ + private function _formatVariable($name, $value) + { + if (is_numeric($value)) { + $variable_doc_links = $this->_getArrayForDocumentLinks(); + if (isset($variable_doc_links[$name][3]) + && $variable_doc_links[$name][3]=='byte' + ) { + return '' + . implode(' ', Util::formatByteDown($value, 3, 3)) + . ''; + } else { + return Util::formatNumber($value, 0); + } + } + return htmlspecialchars($value); + } + + /** + * Prints link templates + * + * @return string + */ + private function _getHtmlForLinkTemplates() + { + $url = 'server_variables.php' . PMA_URL_getCommon(); + $output = ' '; + $output .= ' '; + $output .= Util::getImage( + 'b_help.png', + __('Documentation'), + array('style' => 'display:none', 'id' => 'docImage') + ); + return $output; + } + + /** + * Prints Html for Server Variables + * + * @param Array $serverVars global variables + * @param Array $serverVarsSession session variables + * + * @return string + */ + private function _getHtmlForServerVariables($serverVars, $serverVarsSession) { + $value = ! empty($_REQUEST['filter']) + ? htmlspecialchars($_REQUEST['filter']) + : ''; + $output = '
' + . '' . __('Filters') . '' + . '
' + . '' + . '' + . '
' + . '
'; + + $output .= '
' + . '' + . '' + . '' + . '' + . '' + . ''; + + $output .= $this->_getHtmlForServerVariablesItems( + $serverVars, $serverVarsSession + ); + + $output .= '
' . __('Action') . '' . __('Variable') . '' + . __('Session value') . ' / ' . __('Global value') + . '
'; + + return $output; + } + + + /** + * Prints Html for Server Variables Items + * + * @param Array $serverVars global variables + * @param Array $serverVarsSession session variables + * + * @return string + */ + private function _getHtmlForServerVariablesItems( + $serverVars, $serverVarsSession + ) { + // list of static system variables + $static_variables = $this->_getStaticSystemVariables(); + + $output = ''; + $odd_row = true; + foreach ($serverVars as $name => $value) { + $has_session_value = isset($serverVarsSession[$name]) + && $serverVarsSession[$name] != $value; + $row_class = ($odd_row ? ' odd' : ' even') + . ($has_session_value ? ' diffSession' : ''); + + $output .= ''; + + $output .= ''; + + // Edit Link active only for Dynamic System variables + if (! in_array(strtolower($name), $static_variables)) { + $output .= '' + . Util::getIcon('b_edit.png', __('Edit')) . ''; + } else { + $output .= '' + . Util::getIcon('bd_edit.png', __('Edit')) + . ''; + } + + $output .= ''; + + $output .= ''; + $variable_doc_links = $this->_getArrayForDocumentLinks(); + // To display variable documentation link + if (isset($variable_doc_links[$name])) { + $output .= ''; + $output .= Util::showMySQLDocu( + $variable_doc_links[$name][1], + false, + $variable_doc_links[$name][2] . '_' . $variable_doc_links[$name][0], + true + ); + $output .= htmlspecialchars(str_replace('_', ' ', $name)); + $output .= ''; + $output .= ''; + } else { + $output .= htmlspecialchars(str_replace('_', ' ', $name)); + } + $output .= ''; + + $output .= ' ' + . $this->_formatVariable($name, $value, $variable_doc_links) + . '' + . ''; + + if ($has_session_value) { + $output .= '' + . '' + . '(' . __('Session value') . ')' + . ' ' + . $this->_formatVariable( + $name, + $serverVarsSession[$name], + $variable_doc_links + ) . '' + . ''; + } + + $odd_row = ! $odd_row; + } + $output .= ''; + + return $output; + } + + /** + * Returns Array of documentation links + * + * $variable_doc_links[string $name] = array( + * string $name, + * string $anchor, + * string $chapter, + * string $type, + * string $format); + * string $name: name of the system variable + * string $anchor: anchor to the documentation page + * string $chapter: chapter of "HTML, one page per chapter" documentation + * string $type: type of system variable + * string $format: if set to 'byte' it will format the variable + * with Util::formatByteDown() + * + * @return array + */ + private function _getArrayForDocumentLinks() + { + $variable_doc_links = array(); + $variable_doc_links['auto_increment_increment'] = array( + 'auto_increment_increment', + 'replication-options-master', + 'sysvar'); + $variable_doc_links['auto_increment_offset'] = array( + 'auto_increment_offset', + 'replication-options-master', + 'sysvar'); + $variable_doc_links['autocommit'] = array( + 'autocommit', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['automatic_sp_privileges'] = array( + 'automatic_sp_privileges', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['back_log'] = array( + 'back_log', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['basedir'] = array( + 'basedir', + 'server-options', + 'option_mysqld'); + $variable_doc_links['big_tables'] = array( + 'big-tables', + 'server-options', + 'option_mysqld'); + $variable_doc_links['bind_address'] = array( + 'bind-address', + 'server-options', + 'option_mysqld'); + $variable_doc_links['binlog_cache_size'] = array( + 'binlog_cache_size', + 'replication-options-binary-log', + 'sysvar', + 'byte'); + $variable_doc_links['binlog_checksum'] = array( + 'binlog_checksum', + 'replication-options-binary-log', + 'sysvar'); + $variable_doc_links['binlog_direct_non_transactional_updates'] = array( + 'binlog_direct_non_transactional_updates', + 'replication-options-binary-log', + 'sysvar'); + $variable_doc_links['binlog_format'] = array( + 'binlog-format', + 'server-options', + 'sysvar'); + $variable_doc_links['binlog_max_flush_queue_time'] = array( + 'binlog_max_flush_queue_time', + 'replication-options-binary-log', + 'sysvar'); + $variable_doc_links['binlog_order_commits'] = array( + 'binlog_order_commits', + 'replication-options-binary-log', + 'sysvar'); + $variable_doc_links['binlog_row_image'] = array( + 'binlog_row_image', + 'replication-options-binary-log', + 'sysvar'); + $variable_doc_links['binlog_rows_query_log_events'] = array( + 'binlog_rows_query_log_events', + 'replication-options-binary-log', + 'sysvar'); + $variable_doc_links['binlog_stmt_cache_size'] = array( + 'binlog_stmt_cache_size', + 'replication-options-binary-log', + 'sysvar', + 'byte'); + $variable_doc_links['block_encryption_mode'] = array( + 'block_encryption_mode', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['bulk_insert_buffer_size'] = array( + 'bulk_insert_buffer_size', + 'server-system-variables', + 'sysvar', + 'byte'); + $variable_doc_links['character_set_client'] = array( + 'character_set_client', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['character_set_connection'] = array( + 'character_set_connection', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['character_set_database'] = array( + 'character_set_database', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['character_set_filesystem'] = array( + 'character-set-filesystem', + 'server-options', + 'option_mysqld'); + $variable_doc_links['character_set_results'] = array( + 'character_set_results', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['character_set_server'] = array( + 'character-set-server', + 'server-options', + 'option_mysqld'); + $variable_doc_links['character_set_system'] = array( + 'character_set_system', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['character_sets_dir'] = array( + 'character-sets-dir', + 'server-options', + 'option_mysqld'); + $variable_doc_links['collation_connection'] = array( + 'collation_connection', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['collation_database'] = array( + 'collation_database', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['collation_server'] = array( + 'collation-server', + 'server-options', + 'option_mysqld'); + $variable_doc_links['completion_type'] = array( + 'completion_type', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['concurrent_insert'] = array( + 'concurrent_insert', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['connect_timeout'] = array( + 'connect_timeout', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['core_file'] = array( + 'core_file', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['datadir'] = array( + 'datadir', + 'server-options', + 'option_mysqld'); + $variable_doc_links['date_format'] = array( + 'date_format', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['datetime_format'] = array( + 'datetime_format', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['debug'] = array( + 'debug', + 'server-options', + 'option_mysqld'); + $variable_doc_links['debug_sync'] = array( + 'debug_sync', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['default_storage_engine'] = array( + 'default-storage-engine', + 'server-options', + 'option_mysqld'); + $variable_doc_links['default_tmp_storage_engine'] = array( + 'default_tmp_storage_engine', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['default_week_format'] = array( + 'default_week_format', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['delay_key_write'] = array( + 'delay-key-write', + 'server-options', + 'option_mysqld'); + $variable_doc_links['delayed_insert_limit'] = array( + 'delayed_insert_limit', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['delayed_insert_timeout'] = array( + 'delayed_insert_timeout', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['delayed_queue_size'] = array( + 'delayed_queue_size', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['disconnect_on_expired_password'] = array( + 'disconnect_on_expired_password', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['div_precision_increment'] = array( + 'div_precision_increment', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['end_markers_in_json'] = array( + 'end_markers_in_json', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['enforce_gtid_consistency'] = array( + 'enforce_gtid_consistency', + 'replication-options-gtids', + 'sysvar'); + $variable_doc_links['eq_range_index_dive_limit'] = array( + 'eq_range_index_dive_limit', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['engine_condition_pushdown'] = array( + 'engine-condition-pushdown', + 'server-options', + 'option_mysqld'); + $variable_doc_links['error_count'] = array( + 'error_count', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['event_scheduler'] = array( + 'event-scheduler', + 'server-options', + 'option_mysqld'); + $variable_doc_links['expire_logs_days'] = array( + 'expire_logs_days', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['explicit_defaults_for_timestamp'] = array( + 'explicit_defaults_for_timestamp', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['external_user'] = array( + 'external_user', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['flush'] = array( + 'flush', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['flush_time'] = array( + 'flush_time', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['foreign_key_checks'] = array( + 'foreign_key_checks', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['ft_boolean_syntax'] = array( + 'ft_boolean_syntax', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['ft_max_word_len'] = array( + 'ft_max_word_len', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['ft_min_word_len'] = array( + 'ft_min_word_len', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['ft_query_expansion_limit'] = array( + 'ft_query_expansion_limit', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['ft_stopword_file'] = array( + 'ft_stopword_file', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['general_log'] = array( + 'general-log', + 'server-options', + 'option_mysqld'); + $variable_doc_links['general_log_file'] = array( + 'general_log_file', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['group_concat_max_len'] = array( + 'group_concat_max_len', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['gtid_executed'] = array( + 'gtid_executed', + 'replication-options-gtids', + 'sysvar'); + $variable_doc_links['gtid_mode'] = array( + 'gtid_mode', + 'replication-options-gtids', + 'sysvar'); + $variable_doc_links['gtid_owned'] = array( + 'gtid_owned', + 'replication-options-gtids', + 'sysvar'); + $variable_doc_links['gtid_purged'] = array( + 'gtid_purged', + 'replication-options-gtids', + 'sysvar'); + $variable_doc_links['have_compress'] = array( + 'have_compress', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['have_crypt'] = array( + 'have_crypt', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['have_csv'] = array( + 'have_csv', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['have_dynamic_loading'] = array( + 'have_dynamic_loading', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['have_geometry'] = array( + 'have_geometry', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['have_innodb'] = array( + 'have_innodb', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['have_ndbcluster'] = array( + 'have_ndbcluster', + 'mysql-cluster-system-variables', + 'sysvar'); + $variable_doc_links['have_openssl'] = array( + 'have_openssl', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['have_partitioning'] = array( + 'have_partitioning', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['have_profiling'] = array( + 'have_profiling', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['have_query_cache'] = array( + 'have_query_cache', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['have_rtree_keys'] = array( + 'have_rtree_keys', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['have_ssl'] = array( + 'have_ssl', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['have_symlink'] = array( + 'have_symlink', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['host_cache_size'] = array( + 'host_cache_size', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['hostname'] = array( + 'hostname', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['identity'] = array( + 'identity', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['ignore_builtin_innodb'] = array( + 'ignore-builtin-innodb', + 'innodb-parameters', + 'option_mysqld'); + $variable_doc_links['ignore_db_dirs'] = array( + 'ignore_db_dirs', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['init_connect'] = array( + 'init_connect', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['init_file'] = array( + 'init-file', + 'server-options', + 'option_mysqld'); + $variable_doc_links['init_slave'] = array( + 'init_slave', + 'replication-options-slave', + 'sysvar'); + $variable_doc_links['innodb_adaptive_flushing'] = array( + 'innodb_adaptive_flushing', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_adaptive_flushing_lwm'] = array( + 'innodb_adaptive_flushing_lwm', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_adaptive_hash_index'] = array( + 'innodb_adaptive_hash_index', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_adaptive_max_sleep_delay'] = array( + 'innodb_adaptive_max_sleep_delay', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_additional_mem_pool_size'] = array( + 'innodb_additional_mem_pool_size', + 'innodb-parameters', + 'sysvar', + 'byte'); + $variable_doc_links['innodb_api_bk_commit_interval'] = array( + 'innodb_api_bk_commit_interval', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_api_disable_rowlock'] = array( + 'innodb_api_disable_rowlock', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_api_enable_binlog'] = array( + 'innodb_api_enable_binlog', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_api_enable_mdl'] = array( + 'innodb_api_enable_mdl', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_api_trx_level'] = array( + 'innodb_api_trx_level', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_autoextend_increment'] = array( + 'innodb_autoextend_increment', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_autoinc_lock_mode'] = array( + 'innodb_autoinc_lock_mode', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_buffer_pool_dump_at_shutdown'] = array( + 'innodb_buffer_pool_dump_at_shutdown', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_buffer_pool_dump_now'] = array( + 'innodb_buffer_pool_dump_now', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_buffer_pool_filename'] = array( + 'innodb_buffer_pool_filename', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_buffer_pool_instances'] = array( + 'innodb_buffer_pool_instances', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_buffer_pool_load_abort'] = array( + 'innodb_buffer_pool_load_abort', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_buffer_pool_load_at_startup'] = array( + 'innodb_buffer_pool_load_at_startup', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_buffer_pool_load_now'] = array( + 'innodb_buffer_pool_load_now', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_buffer_pool_size'] = array( + 'innodb_buffer_pool_size', + 'innodb-parameters', + 'sysvar', + 'byte'); + $variable_doc_links['innodb_change_buffer_max_size'] = array( + 'innodb_change_buffer_max_size', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_change_buffering'] = array( + 'innodb_change_buffering', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_checksum_algorithm'] = array( + 'innodb_checksum_algorithm', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_checksums'] = array( + 'innodb_checksums', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_cmp_per_index_enabled'] = array( + 'innodb_cmp_per_index_enabled', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_commit_concurrency'] = array( + 'innodb_commit_concurrency', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_compression_failure_threshold_pct'] = array( + 'innodb_compression_failure_threshold_pct', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_compression_level'] = array( + 'innodb_compression_level', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_compression_pad_pct_max'] = array( + 'innodb_compression_pad_pct_max', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_concurrency_tickets'] = array( + 'innodb_concurrency_tickets', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_data_file_path'] = array( + 'innodb_data_file_path', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_data_home_dir'] = array( + 'innodb_data_home_dir', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_disable_sort_file_cache'] = array( + 'innodb_disable_sort_file_cache', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_doublewrite'] = array( + 'innodb_doublewrite', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_fast_shutdown'] = array( + 'innodb_fast_shutdown', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_file_format'] = array( + 'innodb_file_format', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_file_format_check'] = array( + 'innodb_file_format_check', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_file_format_max'] = array( + 'innodb_file_format_max', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_file_per_table'] = array( + 'innodb_file_per_table', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_flush_log_at_timeout'] = array( + 'innodb_flush_log_at_timeout', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_flush_log_at_trx_commit'] = array( + 'innodb_flush_log_at_trx_commit', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_flush_method'] = array( + 'innodb_flush_method', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_flush_neighbors'] = array( + 'innodb_flush_neighbors', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_flushing_avg_loops'] = array( + 'innodb_flushing_avg_loops', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_force_load_corrupted'] = array( + 'innodb_force_load_corrupted', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_force_recovery'] = array( + 'innodb_force_recovery', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_ft_aux_table'] = array( + 'innodb_ft_aux_table', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_ft_cache_size'] = array( + 'innodb_ft_cache_size', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_ft_enable_diag_print'] = array( + 'innodb_ft_enable_diag_print', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_ft_enable_stopword'] = array( + 'innodb_ft_enable_stopword', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_ft_max_token_size'] = array( + 'innodb_ft_max_token_size', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_ft_min_token_size'] = array( + 'innodb_ft_min_token_size', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_ft_num_word_optimize'] = array( + 'innodb_ft_num_word_optimize', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_ft_result_cache_limit'] = array( + 'innodb_ft_result_cache_limit', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_ft_server_stopword_table'] = array( + 'innodb_ft_server_stopword_table', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_ft_sort_pll_degree'] = array( + 'innodb_ft_sort_pll_degree', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_ft_total_cache_size'] = array( + 'innodb_ft_total_cache_size', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_ft_user_stopword_table'] = array( + 'innodb_ft_user_stopword_table', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_io_capacity'] = array( + 'innodb_io_capacity', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_io_capacity_max'] = array( + 'innodb_io_capacity_max', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_large_prefix'] = array( + 'innodb_large_prefix', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_lock_wait_timeout'] = array( + 'innodb_lock_wait_timeout', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_locks_unsafe_for_binlog'] = array( + 'innodb_locks_unsafe_for_binlog', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_log_buffer_size'] = array( + 'innodb_log_buffer_size', + 'innodb-parameters', + 'sysvar', + 'byte'); + $variable_doc_links['innodb_log_compressed_pages'] = array( + 'innodb_log_compressed_pages', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_log_file_size'] = array( + 'innodb_log_file_size', + 'innodb-parameters', + 'sysvar', + 'byte'); + $variable_doc_links['innodb_log_files_in_group'] = array( + 'innodb_log_files_in_group', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_log_group_home_dir'] = array( + 'innodb_log_group_home_dir', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_lru_scan_depth'] = array( + 'innodb_lru_scan_depth', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_max_dirty_pages_pct'] = array( + 'innodb_max_dirty_pages_pct', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_max_dirty_pages_pct_lwm'] = array( + 'innodb_max_dirty_pages_pct_lwm', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_max_purge_lag'] = array( + 'innodb_max_purge_lag', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_max_purge_lag_delay'] = array( + 'innodb_max_purge_lag_delay', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_mirrored_log_groups'] = array( + 'innodb_mirrored_log_groups', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_monitor_disable'] = array( + 'innodb_monitor_disable', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_monitor_enable'] = array( + 'innodb_monitor_enable', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_monitor_reset'] = array( + 'innodb_monitor_reset', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_monitor_reset_all'] = array( + 'innodb_monitor_reset_all', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_old_blocks_pct'] = array( + 'innodb_old_blocks_pct', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_old_blocks_time'] = array( + 'innodb_old_blocks_time', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_online_alter_log_max_size'] = array( + 'innodb_online_alter_log_max_size', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_open_files'] = array( + 'innodb_open_files', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_optimize_fulltext_only'] = array( + 'innodb_optimize_fulltext_only', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_page_size'] = array( + 'innodb_page_size', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_print_all_deadlocks'] = array( + 'innodb_print_all_deadlocks', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_purge_batch_size'] = array( + 'innodb_purge_batch_size', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_purge_threads'] = array( + 'innodb_purge_threads', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_random_read_ahead'] = array( + 'innodb_random_read_ahead', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_read_ahead_threshold'] = array( + 'innodb_read_ahead_threshold', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_read_io_threads'] = array( + 'innodb_read_io_threads', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_read_only'] = array( + 'innodb_read_only', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_replication_delay'] = array( + 'innodb_replication_delay', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_rollback_on_timeout'] = array( + 'innodb_rollback_on_timeout', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_rollback_segments'] = array( + 'innodb_rollback_segments', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_sort_buffer_size'] = array( + 'innodb_sort_buffer_size', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_spin_wait_delay'] = array( + 'innodb_spin_wait_delay', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_stats_auto_recalc'] = array( + 'innodb_stats_auto_recalc', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_stats_method'] = array( + 'innodb_stats_method', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_stats_on_metadata'] = array( + 'innodb_stats_on_metadata', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_stats_persistent'] = array( + 'innodb_stats_persistent', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_stats_persistent_sample_pages'] = array( + 'innodb_stats_persistent_sample_pages', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_stats_sample_pages'] = array( + 'innodb_stats_sample_pages', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_stats_transient_sample_pages'] = array( + 'innodb_stats_transient_sample_pages', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_status_output'] = array( + 'innodb_status_output', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_status_output_locks'] = array( + 'innodb_status_output_locks', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_strict_mode'] = array( + 'innodb_strict_mode', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_support_xa'] = array( + 'innodb_support_xa', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_sync_array_size'] = array( + 'innodb_sync_array_size', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_sync_spin_loops'] = array( + 'innodb_sync_spin_loops', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_table_locks'] = array( + 'innodb_table_locks', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_thread_concurrency'] = array( + 'innodb_thread_concurrency', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_thread_sleep_delay'] = array( + 'innodb_thread_sleep_delay', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_undo_directory'] = array( + 'innodb_undo_directory', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_undo_logs'] = array( + 'innodb_undo_logs', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_undo_tablespaces'] = array( + 'innodb_undo_tablespaces', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_use_native_aio'] = array( + 'innodb_use_native_aio', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_use_sys_malloc'] = array( + 'innodb_use_sys_malloc', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_version'] = array( + 'innodb_version', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['innodb_write_io_threads'] = array( + 'innodb_write_io_threads', + 'innodb-parameters', + 'sysvar'); + $variable_doc_links['insert_id'] = array( + 'insert_id', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['interactive_timeout'] = array( + 'interactive_timeout', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['join_buffer_size'] = array( + 'join_buffer_size', + 'server-system-variables', + 'sysvar', + 'byte'); + $variable_doc_links['keep_files_on_create'] = array( + 'keep_files_on_create', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['key_buffer_size'] = array( + 'key_buffer_size', + 'server-system-variables', + 'sysvar', + 'byte'); + $variable_doc_links['key_cache_age_threshold'] = array( + 'key_cache_age_threshold', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['key_cache_block_size'] = array( + 'key_cache_block_size', + 'server-system-variables', + 'sysvar', + 'byte'); + $variable_doc_links['key_cache_division_limit'] = array( + 'key_cache_division_limit', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['language'] = array( + 'language', + 'server-options', + 'option_mysqld'); + $variable_doc_links['large_files_support'] = array( + 'large_files_support', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['large_page_size'] = array( + 'large_page_size', + 'server-system-variables', + 'sysvar', + 'byte'); + $variable_doc_links['large_pages'] = array( + 'large-pages', + 'server-options', + 'option_mysqld'); + $variable_doc_links['last_insert_id'] = array( + 'last_insert_id', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['lc_messages'] = array( + 'lc-messages', + 'server-options', + 'option_mysqld'); + $variable_doc_links['lc_messages_dir'] = array( + 'lc-messages-dir', + 'server-options', + 'option_mysqld'); + $variable_doc_links['lc_time_names'] = array( + 'lc_time_names', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['license'] = array( + 'license', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['local_infile'] = array( + 'local_infile', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['lock_wait_timeout'] = array( + 'lock_wait_timeout', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['locked_in_memory'] = array( + 'locked_in_memory', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['log'] = array( + 'log', + 'server-options', + 'option_mysqld'); + $variable_doc_links['log_bin'] = array( + 'log_bin', + 'replication-options-binary-log', + 'sysvar'); + $variable_doc_links['log-bin'] = array( + 'log-bin', + 'replication-options-binary-log', + 'option_mysqld'); + $variable_doc_links['log_bin_basename'] = array( + 'log_bin_basename', + 'replication-options-binary-log', + 'sysvar'); + $variable_doc_links['log_bin_index'] = array( + 'log_bin_index', + 'replication-options-binary-log', + 'sysvar'); + $variable_doc_links['log_bin_trust_function_creators'] = array( + 'log-bin-trust-function-creators', + 'replication-options-binary-log', + 'option_mysqld'); + $variable_doc_links['log_bin_use_v1_row_events'] = array( + 'log_bin_use_v1_row_events', + 'replication-options-binary-log', + 'sysvar'); + $variable_doc_links['log_error'] = array( + 'log-error', + 'server-options', + 'option_mysqld'); + $variable_doc_links['log_output'] = array( + 'log-output', + 'server-options', + 'option_mysqld'); + $variable_doc_links['log_queries_not_using_indexes'] = array( + 'log-queries-not-using-indexes', + 'server-options', + 'option_mysqld'); + $variable_doc_links['log_slave_updates'] = array( + 'log-slave-updates', + 'replication-options-slave', + 'option_mysqld'); + $variable_doc_links['log_slow_admin_statements'] = array( + 'log_slow_admin_statements', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['log_slow_slave_statements'] = array( + 'log_slow_slave_statements', + 'replication-options-slave', + 'sysvar'); + $variable_doc_links['log_throttle_queries_not_using_indexes'] = array( + 'log_throttle_queries_not_using_indexes', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['log_slow_queries'] = array( + 'log-slow-queries', + 'server-options', + 'option_mysqld'); + $variable_doc_links['log_warnings'] = array( + 'log-warnings', + 'server-options', + 'option_mysqld'); + $variable_doc_links['long_query_time'] = array( + 'long_query_time', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['low_priority_updates'] = array( + 'low-priority-updates', + 'server-options', + 'option_mysqld'); + $variable_doc_links['lower_case_file_system'] = array( + 'lower_case_file_system', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['lower_case_table_names'] = array( + 'lower_case_table_names', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['master_info_repository'] = array( + 'master_info_repository', + 'replication-options-slave', + 'sysvar'); + $variable_doc_links['master_verify_checksum'] = array( + 'master_verify_checksum', + 'replication-options-binary-log', + 'sysvar'); + $variable_doc_links['master-bind'] = array( + '', + 'replication-options', + 0); + $variable_doc_links['max_allowed_packet'] = array( + 'max_allowed_packet', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['max_binlog_cache_size'] = array( + 'max_binlog_cache_size', + 'replication-options-binary-log', + 'sysvar', + 'byte'); + $variable_doc_links['max_binlog_size'] = array( + 'max_binlog_size', + 'replication-options-binary-log', + 'sysvar', + 'byte'); + $variable_doc_links['max_binlog_stmt_cache_size'] = array( + 'max_binlog_stmt_cache_size', + 'replication-options-binary-log', + 'sysvar', + 'byte'); + $variable_doc_links['max_connect_errors'] = array( + 'max_connect_errors', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['max_connections'] = array( + 'max_connections', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['max_delayed_threads'] = array( + 'max_delayed_threads', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['max_error_count'] = array( + 'max_error_count', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['max_heap_table_size'] = array( + 'max_heap_table_size', + 'server-system-variables', + 'sysvar', + 'byte'); + $variable_doc_links['max_insert_delayed_threads'] = array( + 'max_insert_delayed_threads', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['max_join_size'] = array( + 'max_join_size', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['max_length_for_sort_data'] = array( + 'max_length_for_sort_data', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['max_long_data_size'] = array( + 'max_long_data_size', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['max_prepared_stmt_count'] = array( + 'max_prepared_stmt_count', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['max_relay_log_size'] = array( + 'max_relay_log_size', + 'server-system-variables', + 'sysvar', + 'byte'); + $variable_doc_links['max_seeks_for_key'] = array( + 'max_seeks_for_key', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['max_sort_length'] = array( + 'max_sort_length', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['max_sp_recursion_depth'] = array( + 'max_sp_recursion_depth', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['max_tmp_tables'] = array( + 'max_tmp_tables', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['max_user_connections'] = array( + 'max_user_connections', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['max_write_lock_count'] = array( + 'max_write_lock_count', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['metadata_locks_cache_size'] = array( + 'metadata_locks_cache_size', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['metadata_locks_hash_instances'] = array( + 'metadata_locks_hash_instances', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['memlock'] = array( + 'memlock', + 'server-options', + 'option_mysqld'); + $variable_doc_links['min_examined_row_limit'] = array( + 'min-examined-row-limit', + 'server-options', + 'option_mysqld'); + $variable_doc_links['multi_range_count'] = array( + 'multi_range_count', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['myisam_data_pointer_size'] = array( + 'myisam_data_pointer_size', + 'server-system-variables', + 'sysvar', + 'byte'); + $variable_doc_links['myisam_max_sort_file_size'] = array( + 'myisam_max_sort_file_size', + 'server-system-variables', + 'sysvar', + 'byte'); + $variable_doc_links['myisam_mmap_size'] = array( + 'myisam_mmap_size', + 'server-system-variables', + 'sysvar', + 'byte'); + $variable_doc_links['myisam_recover_options'] = array( + 'myisam_recover_options', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['myisam_repair_threads'] = array( + 'myisam_repair_threads', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['myisam_sort_buffer_size'] = array( + 'myisam_sort_buffer_size', + 'server-system-variables', + 'sysvar', + 'byte'); + $variable_doc_links['myisam_stats_method'] = array( + 'myisam_stats_method', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['myisam_use_mmap'] = array( + 'myisam_use_mmap', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['named_pipe'] = array( + 'named_pipe', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['net_buffer_length'] = array( + 'net_buffer_length', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['net_read_timeout'] = array( + 'net_read_timeout', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['net_retry_count'] = array( + 'net_retry_count', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['net_write_timeout'] = array( + 'net_write_timeout', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['new'] = array( + 'new', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['old'] = array( + 'old', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['old_alter_table'] = array( + 'old-alter-table', + 'server-options', + 'option_mysqld'); + $variable_doc_links['old_passwords'] = array( + 'old-passwords', + 'server-options', + 'option_mysqld'); + $variable_doc_links['open_files_limit'] = array( + 'open-files-limit', + 'server-options', + 'option_mysqld'); + $variable_doc_links['optimizer_prune_level'] = array( + 'optimizer_prune_level', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['optimizer_search_depth'] = array( + 'optimizer_search_depth', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['optimizer_switch'] = array( + 'optimizer_switch', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['optimizer_trace'] = array( + 'optimizer_trace', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['optimizer_trace_features'] = array( + 'optimizer_trace_features', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['optimizer_trace_limit'] = array( + 'optimizer_trace_limit', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['optimizer_trace_max_mem_size'] = array( + 'optimizer_trace_max_mem_size', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['optimizer_trace_offset'] = array( + 'optimizer_trace_offset', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['partition'] = array( + 'partition', + 'server-options', + 'option_mysqld'); + $variable_doc_links['performance_schema'] = array( + 'performance_schema', + 'performance-schema-system-variables', + 'sysvar'); + $variable_doc_links['performance_schema_accounts_size'] = array( + 'performance_schema_accounts_size', + 'performance-schema-system-variables', + 'sysvar'); + $variable_doc_links['performance_schema_digests_size'] = array( + 'performance_schema_digests_size', + 'performance-schema-system-variables', + 'sysvar'); + $variable_doc_links['performance_schema_events_stages_history_long_size'] + = array( + 'performance_schema_events_stages_history_long_size', + 'performance-schema-system-variables', + 'sysvar', + ); + $variable_doc_links['performance_schema_events_stages_history_size'] = array( + 'performance_schema_events_stages_history_size', + 'performance-schema-system-variables', + 'sysvar'); + $variable_doc_links['performance_schema_events_statements_history_long_size'] + = array( + 'performance_schema_events_statements_history_long_size', + 'performance-schema-system-variables', + 'sysvar', + ); + $variable_doc_links['performance_schema_events_statements_history_size'] = array( + 'performance_schema_events_statements_history_size', + 'performance-schema-system-variables', + 'sysvar'); + $variable_doc_links['performance_schema_events_waits_history_long_size'] = array( + 'performance_schema_events_waits_history_long_size', + 'performance-schema-system-variables', + 'sysvar'); + $variable_doc_links['performance_schema_events_waits_history_size'] = array( + 'performance_schema_events_waits_history_size', + 'performance-schema-system-variables', + 'sysvar'); + $variable_doc_links['performance_schema_hosts_size'] = array( + 'performance_schema_hosts_size', + 'performance-schema-system-variables', + 'sysvar'); + $variable_doc_links['performance_schema_max_cond_classes'] = array( + 'performance_schema_max_cond_classes', + 'performance-schema-system-variables', + 'sysvar'); + $variable_doc_links['performance_schema_max_cond_instances'] = array( + 'performance_schema_max_cond_instances', + 'performance-schema-system-variables', + 'sysvar'); + $variable_doc_links['performance_schema_max_file_classes'] = array( + 'performance_schema_max_file_classes', + 'performance-schema-system-variables', + 'sysvar'); + $variable_doc_links['performance_schema_max_file_handles'] = array( + 'performance_schema_max_file_handles', + 'performance-schema-system-variables', + 'sysvar'); + $variable_doc_links['performance_schema_max_file_instances'] = array( + 'performance_schema_max_file_instances', + 'performance-schema-system-variables', + 'sysvar'); + $variable_doc_links['performance_schema_max_mutex_classes'] = array( + 'performance_schema_max_mutex_classes', + 'performance-schema-system-variables', + 'sysvar'); + $variable_doc_links['performance_schema_max_mutex_instances'] = array( + 'performance_schema_max_mutex_instances', + 'performance-schema-system-variables', + 'sysvar'); + $variable_doc_links['performance_schema_max_rwlock_classes'] = array( + 'performance_schema_max_rwlock_classes', + 'performance-schema-system-variables', + 'sysvar'); + $variable_doc_links['performance_schema_max_rwlock_instances'] = array( + 'performance_schema_max_rwlock_instances', + 'performance-schema-system-variables', + 'sysvar'); + $variable_doc_links['performance_schema_max_socket_classes'] = array( + 'performance_schema_max_socket_classes', + 'performance-schema-system-variables', + 'sysvar'); + $variable_doc_links['performance_schema_max_socket_instances'] = array( + 'performance_schema_max_socket_instances', + 'performance-schema-system-variables', + 'sysvar'); + $variable_doc_links['performance_schema_max_stage_classes'] = array( + 'performance_schema_max_stage_classes', + 'performance-schema-system-variables', + 'sysvar'); + $variable_doc_links['performance_schema_max_statement_classes'] = array( + 'performance_schema_max_statement_classes', + 'performance-schema-system-variables', + 'sysvar'); + $variable_doc_links['performance_schema_max_table_handles'] = array( + 'performance_schema_max_table_handles', + 'performance-schema-system-variables', + 'sysvar'); + $variable_doc_links['performance_schema_max_table_instances'] = array( + 'performance_schema_max_table_instances', + 'performance-schema-system-variables', + 'sysvar'); + $variable_doc_links['performance_schema_max_thread_classes'] = array( + 'performance_schema_max_thread_classes', + 'performance-schema-system-variables', + 'sysvar'); + $variable_doc_links['performance_schema_max_thread_instances'] = array( + 'performance_schema_max_thread_instances', + 'performance-schema-system-variables', + 'sysvar'); + $variable_doc_links['performance_schema_session_connect_attrs_size'] = array( + 'performance_schema_session_connect_attrs_size', + 'performance-schema-system-variables', + 'sysvar'); + $variable_doc_links['performance_schema_setup_actors_size'] = array( + 'performance_schema_setup_actors_size', + 'performance-schema-system-variables', + 'sysvar'); + $variable_doc_links['performance_schema_setup_objects_size'] = array( + 'performance_schema_setup_objects_size', + 'performance-schema-system-variables', + 'sysvar'); + $variable_doc_links['performance_schema_users_size'] = array( + 'performance_schema_users_size', + 'performance-schema-system-variables', + 'sysvar'); + $variable_doc_links['pid_file'] = array( + 'pid-file', + 'server-options', + 'option_mysqld'); + $variable_doc_links['plugin_dir'] = array( + 'plugin_dir', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['port'] = array( + 'port', + 'server-options', + 'option_mysqld'); + $variable_doc_links['preload_buffer_size'] = array( + 'preload_buffer_size', + 'server-system-variables', + 'sysvar', + 'byte'); + $variable_doc_links['profiling'] = array( + 'profiling', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['profiling_history_size'] = array( + 'profiling_history_size', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['protocol_version'] = array( + 'protocol_version', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['proxy_user'] = array( + 'proxy_user', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['pseudo_thread_id'] = array( + 'pseudo_thread_id', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['query_alloc_block_size'] = array( + 'query_alloc_block_size', + 'server-system-variables', + 'sysvar', + 'byte'); + $variable_doc_links['query_cache_limit'] = array( + 'query_cache_limit', + 'server-system-variables', + 'sysvar', + 'byte'); + $variable_doc_links['query_cache_min_res_unit'] = array( + 'query_cache_min_res_unit', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['query_cache_size'] = array( + 'query_cache_size', + 'server-system-variables', + 'sysvar', + 'byte'); + $variable_doc_links['query_cache_type'] = array( + 'query_cache_type', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['query_cache_wlock_invalidate'] = array( + 'query_cache_wlock_invalidate', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['query_prealloc_size'] = array( + 'query_prealloc_size', + 'server-system-variables', + 'sysvar', + 'byte'); + $variable_doc_links['rand_seed1'] = array( + 'rand_seed1', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['rand_seed2'] = array( + 'rand_seed2', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['range_alloc_block_size'] = array( + 'range_alloc_block_size', + 'server-system-variables', + 'sysvar', + 'byte'); + $variable_doc_links['read_buffer_size'] = array( + 'read_buffer_size', + 'server-system-variables', + 'sysvar', + 'byte'); + $variable_doc_links['read_only'] = array( + 'read_only', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['read_rnd_buffer_size'] = array( + 'read_rnd_buffer_size', + 'server-system-variables', + 'sysvar', + 'byte'); + $variable_doc_links['relay_log'] = array( + 'relay_log', + 'replication-options-slave', + 'sysvar'); + $variable_doc_links['relay_log_basename'] = array( + 'relay_log_basename', + 'replication-options-slave', + 'sysvar'); + $variable_doc_links['relay-log-index'] = array( + 'relay-log-index', + 'replication-options-slave', + 'option_mysqld'); + $variable_doc_links['relay_log_index'] = array( + 'relay_log_index', + 'replication-options-slave', + 'sysvar'); + $variable_doc_links['relay_log_info_file'] = array( + 'relay_log_info_file', + 'replication-options-slave', + 'sysvar'); + $variable_doc_links['relay_log_info_repository'] = array( + 'relay_log_info_repository', + 'replication-options-slave', + 'sysvar'); + $variable_doc_links['relay_log_purge'] = array( + 'relay_log_purge', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['relay_log_recovery'] = array( + 'relay_log_recovery', + 'replication-options-slave', + 'sysvar'); + $variable_doc_links['relay_log_space_limit'] = array( + 'relay_log_space_limit', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['report_host'] = array( + 'report-host', + 'replication-options-slave', + 'option_mysqld'); + $variable_doc_links['report_password'] = array( + 'report-password', + 'replication-options-slave', + 'option_mysqld'); + $variable_doc_links['report_port'] = array( + 'report-port', + 'replication-options-slave', + 'option_mysqld'); + $variable_doc_links['report_user'] = array( + 'report-user', + 'replication-options-slave', + 'option_mysqld'); + $variable_doc_links['rpl_stop_slave_timeout'] = array( + 'rpl_stop_slave_timeout', + 'replication-options-slave', + 'sysvar'); + $variable_doc_links['rpl_recovery_rank'] = array( + 'rpl_recovery_rank', + 'replication-options-slave', + 'option_mysqld'); + $variable_doc_links['rpl_semi_sync_master_enabled'] = array( + 'rpl_semi_sync_master_enabled', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['rpl_semi_sync_master_timeout'] = array( + 'rpl_semi_sync_master_timeout', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['rpl_semi_sync_master_trace_level'] = array( + 'rpl_semi_sync_master_trace_level', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['rpl_semi_sync_master_wait_no_slave'] = array( + 'rpl_semi_sync_master_wait_no_slave', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['rpl_semi_sync_slave_enabled'] = array( + 'rpl_semi_sync_slave_enabled', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['rpl_semi_sync_slave_trace_level'] = array( + 'rpl_semi_sync_slave_trace_level', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['safe_show_database'] = array( + 'safe-show-database', + 'server-options', + 'option_mysqld'); + $variable_doc_links['secure_auth'] = array( + 'secure-auth', + 'server-options', + 'option_mysqld'); + $variable_doc_links['secure_file_priv'] = array( + 'secure-file-priv', + 'server-options', + 'option_mysqld'); + $variable_doc_links['server_id'] = array( + 'server-id', + 'replication-options', + 'option_mysqld'); + $variable_doc_links['server_id_bits'] = array( + 'server_id_bits', + 'mysql-cluster-system-variables', + 'sysvar'); + $variable_doc_links['server_uuid'] = array( + 'server_uuid', + 'replication-options', + 'sysvar'); + $variable_doc_links['shared_memory'] = array( + 'shared_memory', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['shared_memory_base_name'] = array( + 'shared_memory_base_name', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['skip_external_locking'] = array( + 'skip-external-locking', + 'server-options', + 'option_mysqld'); + $variable_doc_links['skip_name_resolve'] = array( + 'skip-name-resolve', + 'server-options', + 'option_mysqld'); + $variable_doc_links['skip_networking'] = array( + 'skip-networking', + 'server-options', + 'option_mysqld'); + $variable_doc_links['skip_show_database'] = array( + 'skip-show-database', + 'server-options', + 'option_mysqld'); + $variable_doc_links['slave_allow_batching'] = array( + 'slave_allow_batching', + 'mysql-cluster-system-variables', + 'sysvar'); + $variable_doc_links['slave_checkpoint_group'] = array( + 'slave_checkpoint_group', + 'replication-options-slave', + 'sysvar'); + $variable_doc_links['slave_checkpoint_period'] = array( + 'slave_checkpoint_period', + 'replication-options-slave', + 'sysvar'); + $variable_doc_links['slave_compressed_protocol'] = array( + 'slave_compressed_protocol', + 'replication-options-slave', + 'sysvar'); + $variable_doc_links['slave_exec_mode'] = array( + 'slave_exec_mode', + 'replication-options-slave', + 'sysvar'); + $variable_doc_links['slave_load_tmpdir'] = array( + 'slave-load-tmpdir', + 'replication-options-slave', + 'option_mysqld'); + $variable_doc_links['slave_max_allowed_packet'] = array( + 'slave_max_allowed_packet', + 'replication-options-slave', + 'sysvar'); + $variable_doc_links['slave_net_timeout'] = array( + 'slave-net-timeout', + 'replication-options-slave', + 'option_mysqld'); + $variable_doc_links['slave_parallel_workers'] = array( + 'slave_parallel_workers', + 'replication-options-slave', + 'sysvar'); + $variable_doc_links['slave_pending_jobs_size_max'] = array( + 'slave_pending_jobs_size_max', + 'replication-options-slave', + 'sysvar'); + $variable_doc_links['slave_rows_search_algorithms'] = array( + 'slave_rows_search_algorithms', + 'replication-options-slave', + 'sysvar'); + $variable_doc_links['slave_skip_errors'] = array( + 'slave-skip-errors', + 'replication-options-slave', + 'option_mysqld'); + $variable_doc_links['slave_sql_verify_checksum'] = array( + 'slave_sql_verify_checksum', + 'replication-options-slave', + 'sysvar'); + $variable_doc_links['slave_transaction_retries'] = array( + 'slave_transaction_retries', + 'replication-options-slave', + 'sysvar'); + $variable_doc_links['slave_type_conversions'] = array( + 'slave_type_conversions', + 'replication-options-slave', + 'sysvar'); + $variable_doc_links['slow_launch_time'] = array( + 'slow_launch_time', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['slow_query_log'] = array( + 'slow-query-log', + 'server-options', + 'server-system-variables'); + $variable_doc_links['slow_query_log_file'] = array( + 'slow_query_log_file', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['socket'] = array( + 'socket', + 'server-options', + 'option_mysqld'); + $variable_doc_links['sort_buffer_size'] = array( + 'sort_buffer_size', + 'server-system-variables', + 'sysvar', + 'byte'); + $variable_doc_links['sql_auto_is_null'] = array( + 'sql_auto_is_null', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['sql_big_selects'] = array( + 'sql_big_selects', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['sql_big_tables'] = array( + 'big-tables', + 'server-options', + 'server-system-variables'); + $variable_doc_links['sql_buffer_result'] = array( + 'sql_buffer_result', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['sql_log_bin'] = array( + 'sql_log_bin', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['sql_log_off'] = array( + 'sql_log_off', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['sql_log_update'] = array( + 'sql_log_update', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['sql_low_priority_updates'] = array( + 'sql_low_priority_updates', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['sql_max_join_size'] = array( + 'sql_max_join_size', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['sql_mode'] = array( + 'sql-mode', + 'server-options', + 'option_mysqld'); + $variable_doc_links['sql_notes'] = array( + 'sql_notes', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['sql_quote_show_create'] = array( + 'sql_quote_show_create', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['sql_safe_updates'] = array( + 'sql_safe_updates', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['sql_select_limit'] = array( + 'sql_select_limit', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['sql_slave_skip_counter'] = array( + 'sql_slave_skip_counter', + 'replication-options-slave', + 'sysvar'); + $variable_doc_links['sql_warnings'] = array( + 'sql_warnings', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['ssl_ca'] = array( + 'ssl-ca', + 'ssl-options', + 'option_general'); + $variable_doc_links['ssl_capath'] = array( + 'ssl-capath', + 'ssl-options', + 'option_general'); + $variable_doc_links['ssl_cert'] = array( + 'ssl-cert', + 'ssl-options', + 'option_general'); + $variable_doc_links['ssl_cipher'] = array( + 'ssl-cipher', + 'ssl-options', + 'option_general'); + $variable_doc_links['ssl_crl'] = array( + 'ssl_crl', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['ssl_crlpath'] = array( + 'ssl_crlpath', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['ssl_key'] = array( + 'ssl-key', + 'ssl-options', + 'option_general'); + $variable_doc_links['storage_engine'] = array( + 'storage_engine', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['stored_program_cache'] = array( + 'stored_program_cache', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['sync_binlog'] = array( + 'sync_binlog', + 'replication-options-binary-log', + 'sysvar'); + $variable_doc_links['sync_frm'] = array( + 'sync_frm', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['sync_master_info'] = array( + 'sync_master_info', + 'replication-options-slave', + 'sysvar'); + $variable_doc_links['sync_relay_log'] = array( + 'sync_relay_log', + 'replication-options-slave', + 'sysvar'); + $variable_doc_links['sync_relay_log_info'] = array( + 'sync_relay_log_info', + 'replication-options-slave', + 'sysvar'); + $variable_doc_links['system_time_zone'] = array( + 'system_time_zone', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['table_definition_cache'] = array( + 'table_definition_cache', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['table_lock_wait_timeout'] = array( + 'table_lock_wait_timeout', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['table_open_cache'] = array( + 'table_open_cache', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['table_open_cache_instances'] = array( + 'table_open_cache_instances', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['table_type'] = array( + 'table_type', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['thread_cache_size'] = array( + 'thread_cache_size', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['thread_concurrency'] = array( + 'thread_concurrency', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['thread_handling'] = array( + 'thread_handling', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['thread_stack'] = array( + 'thread_stack', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['time_format'] = array( + 'time_format', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['time_zone'] = array( + 'time_zone', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['timed_mutexes'] = array( + 'timed_mutexes', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['timestamp'] = array( + 'timestamp', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['tmp_table_size'] = array( + 'tmp_table_size', + 'server-system-variables', + 'sysvar', + 'byte'); + $variable_doc_links['tmpdir'] = array( + 'tmpdir', + 'server-options', + 'option_mysqld'); + $variable_doc_links['transaction_alloc_block_size'] = array( + 'transaction_alloc_block_size', + 'server-system-variables', + 'sysvar', + 'byte'); + $variable_doc_links['transaction_prealloc_size'] = array( + 'transaction_prealloc_size', + 'server-system-variables', + 'sysvar', + 'byte'); + $variable_doc_links['tx_isolation'] = array( + 'tx_isolation', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['tx_read_only'] = array( + 'tx_read_only', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['unique_checks'] = array( + 'unique_checks', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['updatable_views_with_limit'] = array( + 'updatable_views_with_limit', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['version'] = array( + 'version', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['version_comment'] = array( + 'version_comment', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['version_compile_machine'] = array( + 'version_compile_machine', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['version_compile_os'] = array( + 'version_compile_os', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['wait_timeout'] = array( + 'wait_timeout', + 'server-system-variables', + 'sysvar'); + $variable_doc_links['warning_count'] = array( + 'warning_count', + 'server-system-variables', + 'sysvar'); + return $variable_doc_links; + } + + /** + * Returns array of static system variables (i.e. read-only) + * + * @return array + */ + private function _getStaticSystemVariables() + { + $static_variables = array( + 'back_log', + 'basedir', + 'bind_address', + 'binlog_row_image', + 'character_set_system', + 'character_sets_dir', + 'core_file', + 'datadir', + 'date_format', + 'datetime_format', + 'disconnect_on_expired_password', + 'engine_condition_pushdown', + 'error_count', + 'explicit_defaults_for_timestamp', + 'external_user', + 'ft_max_word_len', + 'ft_min_word_len', + 'ft_query_expansion_limit', + 'ft_stopword_file', + 'gtid_executed', + 'gtid_owned', + 'have_compress', + 'have_crypt', + 'have_csv', + 'have_dynamic_loading', + 'have_geometry', + 'have_innodb', + 'have_ndbcluster', + 'have_openssl', + 'have_partitioning', + 'have_profiling', + 'have_query_cache', + 'have_rtree_keys', + 'have_ssl', + 'have_symlink', + 'hostname', + 'ignore_builtin_innodb', + 'ignore_db_dirs', + 'init_file', + 'innodb_additional_mem_pool_size', + 'innodb_api_disable_rowlock', + 'innodb_api_enable_binlog', + 'innodb_api_enable_mdl', + 'innodb_autoinc_lock_mode', + 'innodb_buffer_pool_instances', + 'innodb_buffer_pool_load_at_startup', + 'innodb_checksums', + 'innodb_data_file_path', + 'innodb_data_home_dir', + 'innodb_doublewrite', + 'innodb_file_format_check', + 'innodb_flush_method', + 'innodb_force_load_corrupted', + 'innodb_force_recovery', + 'innodb_ft_cache_size', + 'innodb_ft_max_token_size', + 'innodb_ft_min_token_size', + 'innodb_ft_sort_pll_degree', + 'innodb_ft_total_cache_size', + 'innodb_locks_unsafe_for_binlog', + 'innodb_log_buffer_size', + 'innodb_log_file_size', + 'innodb_log_files_in_group', + 'innodb_log_group_home_dir', + 'innodb_mirrored_log_groups', + 'innodb_open_files', + 'innodb_page_size', + 'innodb_purge_threads', + 'innodb_read_io_threads', + 'innodb_read_only', + 'innodb_rollback_on_timeout', + 'innodb_sort_buffer_size', + 'innodb_sync_array_size', + 'innodb_undo_directory', + 'innodb_undo_tablespaces', + 'innodb_use_native_aio', + 'innodb_use_sys_malloc', + 'innodb_version', + 'innodb_write_io_threads', + 'language', + 'large_files_support', + 'large_page_size', + 'large_pages', + 'lc_messages_dir', + 'license', + 'locked_in_memory', + 'log', + 'log_bin', + 'log-bin', + 'log_bin_basename', + 'log_bin_index', + 'log_bin_use_v1_row_events', + 'log_error', + 'log_slave_updates', + 'log_slow_queries', + 'lower_case_file_system', + 'lower_case_table_names', + 'master-bind', + 'max_long_data_size', + 'max_tmp_tables', + 'metadata_locks_cache_size', + 'metadata_locks_hash_instances', + 'memlock', + 'multi_range_count', + 'myisam_mmap_size', + 'myisam_recover_options', + 'named_pipe', + 'old', + 'open_files_limit', + 'partition', + 'performance_schema', + 'performance_schema_accounts_size', + 'performance_schema_digests_size', + 'performance_schema_events_stages_history_long_size', + 'performance_schema_events_stages_history_size', + 'performance_schema_events_statements_history_long_size', + 'performance_schema_events_statements_history_size', + 'performance_schema_events_waits_history_long_size', + 'performance_schema_events_waits_history_size', + 'performance_schema_hosts_size', + 'performance_schema_max_cond_classes', + 'performance_schema_max_cond_instances', + 'performance_schema_max_file_classes', + 'performance_schema_max_file_handles', + 'performance_schema_max_file_instances', + 'performance_schema_max_mutex_classes', + 'performance_schema_max_mutex_instances', + 'performance_schema_max_rwlock_classes', + 'performance_schema_max_rwlock_instances', + 'performance_schema_max_socket_classes', + 'performance_schema_max_socket_instances', + 'performance_schema_max_stage_classes', + 'performance_schema_max_statement_classes', + 'performance_schema_max_table_handles', + 'performance_schema_max_table_instances', + 'performance_schema_max_thread_classes', + 'performance_schema_max_thread_instances', + 'performance_schema_session_connect_attrs_size', + 'performance_schema_setup_actors_size', + 'performance_schema_setup_objects_size', + 'performance_schema_users_size', + 'pid_file', + 'plugin_dir', + 'port', + 'protocol_version', + 'proxy_user', + 'relay_log', + 'relay_log_basename', + 'relay-log-index', + 'relay_log_index', + 'relay_log_info_file', + 'relay_log_recovery', + 'relay_log_space_limit', + 'report_host', + 'report_password', + 'report_port', + 'report_user', + 'rpl_recovery_rank', + 'safe_show_database', + 'secure_file_priv', + 'server_id_bits', + 'server_uuid', + 'shared_memory', + 'shared_memory_base_name', + 'skip_external_locking', + 'skip_name_resolve', + 'skip_networking', + 'skip_show_database', + 'slave_checkpoint_group', + 'slave_checkpoint_period', + 'slave_load_tmpdir', + 'slave_rows_search_algorithms', + 'slave_skip_errors', + 'slave_type_conversions', + 'socket', + 'sql_big_tables', + 'sql_log_update', + 'sql_low_priority_updates', + 'sql_max_join_size', + 'ssl_ca', + 'ssl_capath', + 'ssl_cert', + 'ssl_cipher', + 'ssl_crl', + 'ssl_crlpath', + 'ssl_key', + 'system_time_zone', + 'table_lock_wait_timeout', + 'table_open_cache_instances', + 'table_type', + 'thread_concurrency', + 'thread_handling', + 'thread_stack', + 'time_format', + 'tmpdir', + 'version', + 'version_comment', + 'version_compile_machine', + 'version_compile_os', + 'warning_count', + ); + + return $static_variables; + } +} \ No newline at end of file diff --git a/libraries/server_variables.lib.php b/libraries/server_variables.lib.php deleted file mode 100644 index 418d16dfcd..0000000000 --- a/libraries/server_variables.lib.php +++ /dev/null @@ -1,2463 +0,0 @@ -fetchSingleRow( - 'SHOW GLOBAL VARIABLES WHERE Variable_name=\'' - . PMA\libraries\Util::sqlAddSlashes($_REQUEST['varName']) . '\';', - 'NUM' - ); - if (isset($variable_doc_links[$_REQUEST['varName']][3]) - && $variable_doc_links[$_REQUEST['varName']][3] == 'byte' - ) { - $response->addJSON( - 'message', - implode( - ' ', PMA\libraries\Util::formatByteDown($varValue[1], 3, 3) - ) - ); - } else { - $response->addJSON( - 'message', - $varValue[1] - ); - } -} -/** - * Get Ajax return when $_REQUEST['type'] === 'setval' - * - * @param Array $variable_doc_links documentation links - * - * @return null - */ -function PMA_getAjaxReturnForSetVal($variable_doc_links) -{ - $response = PMA\libraries\Response::getInstance(); - - $value = $_REQUEST['varValue']; - $matches = array(); - - if (isset($variable_doc_links[$_REQUEST['varName']][3]) - && $variable_doc_links[$_REQUEST['varName']][3] == 'byte' - && preg_match( - '/^\s*(\d+(\.\d+)?)\s*(mb|kb|mib|kib|gb|gib)\s*$/i', - $value, - $matches - ) - ) { - $exp = array( - 'kb' => 1, - 'kib' => 1, - 'mb' => 2, - 'mib' => 2, - 'gb' => 3, - 'gib' => 3 - ); - $value = floatval($matches[1]) * PMA\libraries\Util::pow( - 1024, - $exp[/*overload*/mb_strtolower($matches[3])] - ); - } else { - $value = PMA\libraries\Util::sqlAddSlashes($value); - } - - if (! is_numeric($value)) { - $value="'" . $value . "'"; - } - - if (! preg_match("/[^a-zA-Z0-9_]+/", $_REQUEST['varName']) - && $GLOBALS['dbi']->query( - 'SET GLOBAL ' . $_REQUEST['varName'] . ' = ' . $value - ) - ) { - // Some values are rounded down etc. - $varValue = $GLOBALS['dbi']->fetchSingleRow( - 'SHOW GLOBAL VARIABLES WHERE Variable_name="' - . PMA\libraries\Util::sqlAddSlashes($_REQUEST['varName']) - . '";', 'NUM' - ); - $response->addJSON( - 'variable', - PMA_formatVariable( - $_REQUEST['varName'], - $varValue[1], - $variable_doc_links - ) - ); - } else { - $response->setRequestStatus(false); - $response->addJSON( - 'error', - __('Setting variable failed') - ); - } -} - -/** - * Format Variable - * - * @param string $name variable name - * @param number $value variable value - * @param array $variable_doc_links documentation links - * - * @return string formatted string - */ -function PMA_formatVariable($name, $value, $variable_doc_links) -{ - if (is_numeric($value)) { - if (isset($variable_doc_links[$name][3]) - && $variable_doc_links[$name][3]=='byte' - ) { - return '' - . implode(' ', PMA\libraries\Util::formatByteDown($value, 3, 3)) - . ''; - } else { - return PMA\libraries\Util::formatNumber($value, 0); - } - } - return htmlspecialchars($value); -} - -/** - * Prints link templates - * - * @return string - */ -function PMA_getHtmlForLinkTemplates() -{ - $url = 'server_variables.php' . PMA_URL_getCommon(); - $output = ' '; - $output .= ' '; - $output .= PMA\libraries\Util::getImage( - 'b_help.png', - __('Documentation'), - array('style' => 'display:none', 'id' => 'docImage') - ); - return $output; -} - -/** - * Prints Html for Server Variables - * - * @param Array $variable_doc_links documentation links - * @param Array $serverVars global variables - * @param Array $serverVarsSession session variables - * - * @return string - */ -function PMA_getHtmlForServerVariables( - $variable_doc_links, $serverVars, $serverVarsSession -) { - $value = ! empty($_REQUEST['filter']) - ? htmlspecialchars($_REQUEST['filter']) - : ''; - $output = '
' - . '' . __('Filters') . '' - . '
' - . '' - . '' - . '
' - . '
'; - - $output .= '' - . '' - . '' - . '' - . '' - . '' - . ''; - - $output .= PMA_getHtmlForServerVariablesItems( - $variable_doc_links, $serverVars, $serverVarsSession - ); - - $output .= '
' . __('Action') . '' . __('Variable') . '' - . __('Session value') . ' / ' . __('Global value') - . '
'; - - return $output; -} - - -/** - * Prints Html for Server Variables Items - * - * @param Array $variable_doc_links documentation links - * @param Array $serverVars global variables - * @param Array $serverVarsSession session variables - * - * @return string - */ -function PMA_getHtmlForServerVariablesItems( - $variable_doc_links, $serverVars, $serverVarsSession -) { - // list of static system variables - $static_variables = PMA_getStaticSystemVariables(); - - $output = ''; - $odd_row = true; - foreach ($serverVars as $name => $value) { - $has_session_value = isset($serverVarsSession[$name]) - && $serverVarsSession[$name] != $value; - $row_class = ($odd_row ? ' odd' : ' even') - . ($has_session_value ? ' diffSession' : ''); - - $output .= ''; - - $output .= ''; - - // Edit Link active only for Dynamic System variables - if (! in_array(strtolower($name), $static_variables)) { - $output .= '' - . PMA\libraries\Util::getIcon('b_edit.png', __('Edit')) . ''; - } else { - $output .= '' - . PMA\libraries\Util::getIcon('bd_edit.png', __('Edit')) - . ''; - } - - $output .= ''; - - $output .= ''; - // To display variable documentation link - if (isset($variable_doc_links[$name])) { - $output .= ''; - $output .= PMA\libraries\Util::showMySQLDocu( - $variable_doc_links[$name][1], - false, - $variable_doc_links[$name][2] . '_' . $variable_doc_links[$name][0], - true - ); - $output .= htmlspecialchars(str_replace('_', ' ', $name)); - $output .= ''; - $output .= ''; - } else { - $output .= htmlspecialchars(str_replace('_', ' ', $name)); - } - $output .= ''; - - $output .= ' ' - . PMA_formatVariable($name, $value, $variable_doc_links) - . '' - . ''; - - if ($has_session_value) { - $output .= '' - . '' - . '(' . __('Session value') . ')' - . ' ' - . PMA_formatVariable( - $name, - $serverVarsSession[$name], - $variable_doc_links - ) . '' - . ''; - } - - $odd_row = ! $odd_row; - } - $output .= ''; - - return $output; -} - -/** - * Returns Array of documentation links - * - * $variable_doc_links[string $name] = array( - * string $name, - * string $anchor, - * string $chapter, - * string $type, - * string $format); - * string $name: name of the system variable - * string $anchor: anchor to the documentation page - * string $chapter: chapter of "HTML, one page per chapter" documentation - * string $type: type of system variable - * string $format: if set to 'byte' it will format the variable - * with PMA\libraries\Util::formatByteDown() - * - * @return array - */ -function PMA_getArrayForDocumentLinks() -{ - $variable_doc_links = array(); - $variable_doc_links['auto_increment_increment'] = array( - 'auto_increment_increment', - 'replication-options-master', - 'sysvar'); - $variable_doc_links['auto_increment_offset'] = array( - 'auto_increment_offset', - 'replication-options-master', - 'sysvar'); - $variable_doc_links['autocommit'] = array( - 'autocommit', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['automatic_sp_privileges'] = array( - 'automatic_sp_privileges', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['back_log'] = array( - 'back_log', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['basedir'] = array( - 'basedir', - 'server-options', - 'option_mysqld'); - $variable_doc_links['big_tables'] = array( - 'big-tables', - 'server-options', - 'option_mysqld'); - $variable_doc_links['bind_address'] = array( - 'bind-address', - 'server-options', - 'option_mysqld'); - $variable_doc_links['binlog_cache_size'] = array( - 'binlog_cache_size', - 'replication-options-binary-log', - 'sysvar', - 'byte'); - $variable_doc_links['binlog_checksum'] = array( - 'binlog_checksum', - 'replication-options-binary-log', - 'sysvar'); - $variable_doc_links['binlog_direct_non_transactional_updates'] = array( - 'binlog_direct_non_transactional_updates', - 'replication-options-binary-log', - 'sysvar'); - $variable_doc_links['binlog_format'] = array( - 'binlog-format', - 'server-options', - 'sysvar'); - $variable_doc_links['binlog_max_flush_queue_time'] = array( - 'binlog_max_flush_queue_time', - 'replication-options-binary-log', - 'sysvar'); - $variable_doc_links['binlog_order_commits'] = array( - 'binlog_order_commits', - 'replication-options-binary-log', - 'sysvar'); - $variable_doc_links['binlog_row_image'] = array( - 'binlog_row_image', - 'replication-options-binary-log', - 'sysvar'); - $variable_doc_links['binlog_rows_query_log_events'] = array( - 'binlog_rows_query_log_events', - 'replication-options-binary-log', - 'sysvar'); - $variable_doc_links['binlog_stmt_cache_size'] = array( - 'binlog_stmt_cache_size', - 'replication-options-binary-log', - 'sysvar', - 'byte'); - $variable_doc_links['block_encryption_mode'] = array( - 'block_encryption_mode', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['bulk_insert_buffer_size'] = array( - 'bulk_insert_buffer_size', - 'server-system-variables', - 'sysvar', - 'byte'); - $variable_doc_links['character_set_client'] = array( - 'character_set_client', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['character_set_connection'] = array( - 'character_set_connection', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['character_set_database'] = array( - 'character_set_database', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['character_set_filesystem'] = array( - 'character-set-filesystem', - 'server-options', - 'option_mysqld'); - $variable_doc_links['character_set_results'] = array( - 'character_set_results', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['character_set_server'] = array( - 'character-set-server', - 'server-options', - 'option_mysqld'); - $variable_doc_links['character_set_system'] = array( - 'character_set_system', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['character_sets_dir'] = array( - 'character-sets-dir', - 'server-options', - 'option_mysqld'); - $variable_doc_links['collation_connection'] = array( - 'collation_connection', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['collation_database'] = array( - 'collation_database', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['collation_server'] = array( - 'collation-server', - 'server-options', - 'option_mysqld'); - $variable_doc_links['completion_type'] = array( - 'completion_type', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['concurrent_insert'] = array( - 'concurrent_insert', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['connect_timeout'] = array( - 'connect_timeout', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['core_file'] = array( - 'core_file', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['datadir'] = array( - 'datadir', - 'server-options', - 'option_mysqld'); - $variable_doc_links['date_format'] = array( - 'date_format', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['datetime_format'] = array( - 'datetime_format', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['debug'] = array( - 'debug', - 'server-options', - 'option_mysqld'); - $variable_doc_links['debug_sync'] = array( - 'debug_sync', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['default_storage_engine'] = array( - 'default-storage-engine', - 'server-options', - 'option_mysqld'); - $variable_doc_links['default_tmp_storage_engine'] = array( - 'default_tmp_storage_engine', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['default_week_format'] = array( - 'default_week_format', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['delay_key_write'] = array( - 'delay-key-write', - 'server-options', - 'option_mysqld'); - $variable_doc_links['delayed_insert_limit'] = array( - 'delayed_insert_limit', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['delayed_insert_timeout'] = array( - 'delayed_insert_timeout', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['delayed_queue_size'] = array( - 'delayed_queue_size', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['disconnect_on_expired_password'] = array( - 'disconnect_on_expired_password', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['div_precision_increment'] = array( - 'div_precision_increment', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['end_markers_in_json'] = array( - 'end_markers_in_json', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['enforce_gtid_consistency'] = array( - 'enforce_gtid_consistency', - 'replication-options-gtids', - 'sysvar'); - $variable_doc_links['eq_range_index_dive_limit'] = array( - 'eq_range_index_dive_limit', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['engine_condition_pushdown'] = array( - 'engine-condition-pushdown', - 'server-options', - 'option_mysqld'); - $variable_doc_links['error_count'] = array( - 'error_count', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['event_scheduler'] = array( - 'event-scheduler', - 'server-options', - 'option_mysqld'); - $variable_doc_links['expire_logs_days'] = array( - 'expire_logs_days', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['explicit_defaults_for_timestamp'] = array( - 'explicit_defaults_for_timestamp', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['external_user'] = array( - 'external_user', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['flush'] = array( - 'flush', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['flush_time'] = array( - 'flush_time', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['foreign_key_checks'] = array( - 'foreign_key_checks', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['ft_boolean_syntax'] = array( - 'ft_boolean_syntax', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['ft_max_word_len'] = array( - 'ft_max_word_len', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['ft_min_word_len'] = array( - 'ft_min_word_len', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['ft_query_expansion_limit'] = array( - 'ft_query_expansion_limit', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['ft_stopword_file'] = array( - 'ft_stopword_file', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['general_log'] = array( - 'general-log', - 'server-options', - 'option_mysqld'); - $variable_doc_links['general_log_file'] = array( - 'general_log_file', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['group_concat_max_len'] = array( - 'group_concat_max_len', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['gtid_executed'] = array( - 'gtid_executed', - 'replication-options-gtids', - 'sysvar'); - $variable_doc_links['gtid_mode'] = array( - 'gtid_mode', - 'replication-options-gtids', - 'sysvar'); - $variable_doc_links['gtid_owned'] = array( - 'gtid_owned', - 'replication-options-gtids', - 'sysvar'); - $variable_doc_links['gtid_purged'] = array( - 'gtid_purged', - 'replication-options-gtids', - 'sysvar'); - $variable_doc_links['have_compress'] = array( - 'have_compress', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['have_crypt'] = array( - 'have_crypt', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['have_csv'] = array( - 'have_csv', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['have_dynamic_loading'] = array( - 'have_dynamic_loading', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['have_geometry'] = array( - 'have_geometry', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['have_innodb'] = array( - 'have_innodb', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['have_ndbcluster'] = array( - 'have_ndbcluster', - 'mysql-cluster-system-variables', - 'sysvar'); - $variable_doc_links['have_openssl'] = array( - 'have_openssl', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['have_partitioning'] = array( - 'have_partitioning', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['have_profiling'] = array( - 'have_profiling', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['have_query_cache'] = array( - 'have_query_cache', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['have_rtree_keys'] = array( - 'have_rtree_keys', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['have_ssl'] = array( - 'have_ssl', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['have_symlink'] = array( - 'have_symlink', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['host_cache_size'] = array( - 'host_cache_size', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['hostname'] = array( - 'hostname', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['identity'] = array( - 'identity', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['ignore_builtin_innodb'] = array( - 'ignore-builtin-innodb', - 'innodb-parameters', - 'option_mysqld'); - $variable_doc_links['ignore_db_dirs'] = array( - 'ignore_db_dirs', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['init_connect'] = array( - 'init_connect', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['init_file'] = array( - 'init-file', - 'server-options', - 'option_mysqld'); - $variable_doc_links['init_slave'] = array( - 'init_slave', - 'replication-options-slave', - 'sysvar'); - $variable_doc_links['innodb_adaptive_flushing'] = array( - 'innodb_adaptive_flushing', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_adaptive_flushing_lwm'] = array( - 'innodb_adaptive_flushing_lwm', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_adaptive_hash_index'] = array( - 'innodb_adaptive_hash_index', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_adaptive_max_sleep_delay'] = array( - 'innodb_adaptive_max_sleep_delay', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_additional_mem_pool_size'] = array( - 'innodb_additional_mem_pool_size', - 'innodb-parameters', - 'sysvar', - 'byte'); - $variable_doc_links['innodb_api_bk_commit_interval'] = array( - 'innodb_api_bk_commit_interval', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_api_disable_rowlock'] = array( - 'innodb_api_disable_rowlock', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_api_enable_binlog'] = array( - 'innodb_api_enable_binlog', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_api_enable_mdl'] = array( - 'innodb_api_enable_mdl', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_api_trx_level'] = array( - 'innodb_api_trx_level', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_autoextend_increment'] = array( - 'innodb_autoextend_increment', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_autoinc_lock_mode'] = array( - 'innodb_autoinc_lock_mode', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_buffer_pool_dump_at_shutdown'] = array( - 'innodb_buffer_pool_dump_at_shutdown', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_buffer_pool_dump_now'] = array( - 'innodb_buffer_pool_dump_now', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_buffer_pool_filename'] = array( - 'innodb_buffer_pool_filename', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_buffer_pool_instances'] = array( - 'innodb_buffer_pool_instances', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_buffer_pool_load_abort'] = array( - 'innodb_buffer_pool_load_abort', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_buffer_pool_load_at_startup'] = array( - 'innodb_buffer_pool_load_at_startup', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_buffer_pool_load_now'] = array( - 'innodb_buffer_pool_load_now', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_buffer_pool_size'] = array( - 'innodb_buffer_pool_size', - 'innodb-parameters', - 'sysvar', - 'byte'); - $variable_doc_links['innodb_change_buffer_max_size'] = array( - 'innodb_change_buffer_max_size', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_change_buffering'] = array( - 'innodb_change_buffering', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_checksum_algorithm'] = array( - 'innodb_checksum_algorithm', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_checksums'] = array( - 'innodb_checksums', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_cmp_per_index_enabled'] = array( - 'innodb_cmp_per_index_enabled', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_commit_concurrency'] = array( - 'innodb_commit_concurrency', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_compression_failure_threshold_pct'] = array( - 'innodb_compression_failure_threshold_pct', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_compression_level'] = array( - 'innodb_compression_level', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_compression_pad_pct_max'] = array( - 'innodb_compression_pad_pct_max', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_concurrency_tickets'] = array( - 'innodb_concurrency_tickets', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_data_file_path'] = array( - 'innodb_data_file_path', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_data_home_dir'] = array( - 'innodb_data_home_dir', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_disable_sort_file_cache'] = array( - 'innodb_disable_sort_file_cache', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_doublewrite'] = array( - 'innodb_doublewrite', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_fast_shutdown'] = array( - 'innodb_fast_shutdown', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_file_format'] = array( - 'innodb_file_format', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_file_format_check'] = array( - 'innodb_file_format_check', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_file_format_max'] = array( - 'innodb_file_format_max', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_file_per_table'] = array( - 'innodb_file_per_table', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_flush_log_at_timeout'] = array( - 'innodb_flush_log_at_timeout', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_flush_log_at_trx_commit'] = array( - 'innodb_flush_log_at_trx_commit', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_flush_method'] = array( - 'innodb_flush_method', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_flush_neighbors'] = array( - 'innodb_flush_neighbors', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_flushing_avg_loops'] = array( - 'innodb_flushing_avg_loops', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_force_load_corrupted'] = array( - 'innodb_force_load_corrupted', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_force_recovery'] = array( - 'innodb_force_recovery', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_ft_aux_table'] = array( - 'innodb_ft_aux_table', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_ft_cache_size'] = array( - 'innodb_ft_cache_size', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_ft_enable_diag_print'] = array( - 'innodb_ft_enable_diag_print', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_ft_enable_stopword'] = array( - 'innodb_ft_enable_stopword', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_ft_max_token_size'] = array( - 'innodb_ft_max_token_size', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_ft_min_token_size'] = array( - 'innodb_ft_min_token_size', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_ft_num_word_optimize'] = array( - 'innodb_ft_num_word_optimize', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_ft_result_cache_limit'] = array( - 'innodb_ft_result_cache_limit', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_ft_server_stopword_table'] = array( - 'innodb_ft_server_stopword_table', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_ft_sort_pll_degree'] = array( - 'innodb_ft_sort_pll_degree', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_ft_total_cache_size'] = array( - 'innodb_ft_total_cache_size', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_ft_user_stopword_table'] = array( - 'innodb_ft_user_stopword_table', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_io_capacity'] = array( - 'innodb_io_capacity', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_io_capacity_max'] = array( - 'innodb_io_capacity_max', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_large_prefix'] = array( - 'innodb_large_prefix', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_lock_wait_timeout'] = array( - 'innodb_lock_wait_timeout', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_locks_unsafe_for_binlog'] = array( - 'innodb_locks_unsafe_for_binlog', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_log_buffer_size'] = array( - 'innodb_log_buffer_size', - 'innodb-parameters', - 'sysvar', - 'byte'); - $variable_doc_links['innodb_log_compressed_pages'] = array( - 'innodb_log_compressed_pages', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_log_file_size'] = array( - 'innodb_log_file_size', - 'innodb-parameters', - 'sysvar', - 'byte'); - $variable_doc_links['innodb_log_files_in_group'] = array( - 'innodb_log_files_in_group', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_log_group_home_dir'] = array( - 'innodb_log_group_home_dir', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_lru_scan_depth'] = array( - 'innodb_lru_scan_depth', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_max_dirty_pages_pct'] = array( - 'innodb_max_dirty_pages_pct', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_max_dirty_pages_pct_lwm'] = array( - 'innodb_max_dirty_pages_pct_lwm', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_max_purge_lag'] = array( - 'innodb_max_purge_lag', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_max_purge_lag_delay'] = array( - 'innodb_max_purge_lag_delay', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_mirrored_log_groups'] = array( - 'innodb_mirrored_log_groups', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_monitor_disable'] = array( - 'innodb_monitor_disable', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_monitor_enable'] = array( - 'innodb_monitor_enable', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_monitor_reset'] = array( - 'innodb_monitor_reset', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_monitor_reset_all'] = array( - 'innodb_monitor_reset_all', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_old_blocks_pct'] = array( - 'innodb_old_blocks_pct', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_old_blocks_time'] = array( - 'innodb_old_blocks_time', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_online_alter_log_max_size'] = array( - 'innodb_online_alter_log_max_size', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_open_files'] = array( - 'innodb_open_files', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_optimize_fulltext_only'] = array( - 'innodb_optimize_fulltext_only', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_page_size'] = array( - 'innodb_page_size', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_print_all_deadlocks'] = array( - 'innodb_print_all_deadlocks', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_purge_batch_size'] = array( - 'innodb_purge_batch_size', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_purge_threads'] = array( - 'innodb_purge_threads', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_random_read_ahead'] = array( - 'innodb_random_read_ahead', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_read_ahead_threshold'] = array( - 'innodb_read_ahead_threshold', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_read_io_threads'] = array( - 'innodb_read_io_threads', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_read_only'] = array( - 'innodb_read_only', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_replication_delay'] = array( - 'innodb_replication_delay', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_rollback_on_timeout'] = array( - 'innodb_rollback_on_timeout', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_rollback_segments'] = array( - 'innodb_rollback_segments', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_sort_buffer_size'] = array( - 'innodb_sort_buffer_size', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_spin_wait_delay'] = array( - 'innodb_spin_wait_delay', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_stats_auto_recalc'] = array( - 'innodb_stats_auto_recalc', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_stats_method'] = array( - 'innodb_stats_method', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_stats_on_metadata'] = array( - 'innodb_stats_on_metadata', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_stats_persistent'] = array( - 'innodb_stats_persistent', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_stats_persistent_sample_pages'] = array( - 'innodb_stats_persistent_sample_pages', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_stats_sample_pages'] = array( - 'innodb_stats_sample_pages', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_stats_transient_sample_pages'] = array( - 'innodb_stats_transient_sample_pages', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_status_output'] = array( - 'innodb_status_output', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_status_output_locks'] = array( - 'innodb_status_output_locks', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_strict_mode'] = array( - 'innodb_strict_mode', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_support_xa'] = array( - 'innodb_support_xa', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_sync_array_size'] = array( - 'innodb_sync_array_size', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_sync_spin_loops'] = array( - 'innodb_sync_spin_loops', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_table_locks'] = array( - 'innodb_table_locks', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_thread_concurrency'] = array( - 'innodb_thread_concurrency', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_thread_sleep_delay'] = array( - 'innodb_thread_sleep_delay', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_undo_directory'] = array( - 'innodb_undo_directory', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_undo_logs'] = array( - 'innodb_undo_logs', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_undo_tablespaces'] = array( - 'innodb_undo_tablespaces', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_use_native_aio'] = array( - 'innodb_use_native_aio', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_use_sys_malloc'] = array( - 'innodb_use_sys_malloc', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_version'] = array( - 'innodb_version', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['innodb_write_io_threads'] = array( - 'innodb_write_io_threads', - 'innodb-parameters', - 'sysvar'); - $variable_doc_links['insert_id'] = array( - 'insert_id', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['interactive_timeout'] = array( - 'interactive_timeout', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['join_buffer_size'] = array( - 'join_buffer_size', - 'server-system-variables', - 'sysvar', - 'byte'); - $variable_doc_links['keep_files_on_create'] = array( - 'keep_files_on_create', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['key_buffer_size'] = array( - 'key_buffer_size', - 'server-system-variables', - 'sysvar', - 'byte'); - $variable_doc_links['key_cache_age_threshold'] = array( - 'key_cache_age_threshold', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['key_cache_block_size'] = array( - 'key_cache_block_size', - 'server-system-variables', - 'sysvar', - 'byte'); - $variable_doc_links['key_cache_division_limit'] = array( - 'key_cache_division_limit', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['language'] = array( - 'language', - 'server-options', - 'option_mysqld'); - $variable_doc_links['large_files_support'] = array( - 'large_files_support', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['large_page_size'] = array( - 'large_page_size', - 'server-system-variables', - 'sysvar', - 'byte'); - $variable_doc_links['large_pages'] = array( - 'large-pages', - 'server-options', - 'option_mysqld'); - $variable_doc_links['last_insert_id'] = array( - 'last_insert_id', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['lc_messages'] = array( - 'lc-messages', - 'server-options', - 'option_mysqld'); - $variable_doc_links['lc_messages_dir'] = array( - 'lc-messages-dir', - 'server-options', - 'option_mysqld'); - $variable_doc_links['lc_time_names'] = array( - 'lc_time_names', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['license'] = array( - 'license', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['local_infile'] = array( - 'local_infile', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['lock_wait_timeout'] = array( - 'lock_wait_timeout', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['locked_in_memory'] = array( - 'locked_in_memory', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['log'] = array( - 'log', - 'server-options', - 'option_mysqld'); - $variable_doc_links['log_bin'] = array( - 'log_bin', - 'replication-options-binary-log', - 'sysvar'); - $variable_doc_links['log-bin'] = array( - 'log-bin', - 'replication-options-binary-log', - 'option_mysqld'); - $variable_doc_links['log_bin_basename'] = array( - 'log_bin_basename', - 'replication-options-binary-log', - 'sysvar'); - $variable_doc_links['log_bin_index'] = array( - 'log_bin_index', - 'replication-options-binary-log', - 'sysvar'); - $variable_doc_links['log_bin_trust_function_creators'] = array( - 'log-bin-trust-function-creators', - 'replication-options-binary-log', - 'option_mysqld'); - $variable_doc_links['log_bin_use_v1_row_events'] = array( - 'log_bin_use_v1_row_events', - 'replication-options-binary-log', - 'sysvar'); - $variable_doc_links['log_error'] = array( - 'log-error', - 'server-options', - 'option_mysqld'); - $variable_doc_links['log_output'] = array( - 'log-output', - 'server-options', - 'option_mysqld'); - $variable_doc_links['log_queries_not_using_indexes'] = array( - 'log-queries-not-using-indexes', - 'server-options', - 'option_mysqld'); - $variable_doc_links['log_slave_updates'] = array( - 'log-slave-updates', - 'replication-options-slave', - 'option_mysqld'); - $variable_doc_links['log_slow_admin_statements'] = array( - 'log_slow_admin_statements', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['log_slow_slave_statements'] = array( - 'log_slow_slave_statements', - 'replication-options-slave', - 'sysvar'); - $variable_doc_links['log_throttle_queries_not_using_indexes'] = array( - 'log_throttle_queries_not_using_indexes', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['log_slow_queries'] = array( - 'log-slow-queries', - 'server-options', - 'option_mysqld'); - $variable_doc_links['log_warnings'] = array( - 'log-warnings', - 'server-options', - 'option_mysqld'); - $variable_doc_links['long_query_time'] = array( - 'long_query_time', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['low_priority_updates'] = array( - 'low-priority-updates', - 'server-options', - 'option_mysqld'); - $variable_doc_links['lower_case_file_system'] = array( - 'lower_case_file_system', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['lower_case_table_names'] = array( - 'lower_case_table_names', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['master_info_repository'] = array( - 'master_info_repository', - 'replication-options-slave', - 'sysvar'); - $variable_doc_links['master_verify_checksum'] = array( - 'master_verify_checksum', - 'replication-options-binary-log', - 'sysvar'); - $variable_doc_links['master-bind'] = array( - '', - 'replication-options', - 0); - $variable_doc_links['max_allowed_packet'] = array( - 'max_allowed_packet', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['max_binlog_cache_size'] = array( - 'max_binlog_cache_size', - 'replication-options-binary-log', - 'sysvar', - 'byte'); - $variable_doc_links['max_binlog_size'] = array( - 'max_binlog_size', - 'replication-options-binary-log', - 'sysvar', - 'byte'); - $variable_doc_links['max_binlog_stmt_cache_size'] = array( - 'max_binlog_stmt_cache_size', - 'replication-options-binary-log', - 'sysvar', - 'byte'); - $variable_doc_links['max_connect_errors'] = array( - 'max_connect_errors', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['max_connections'] = array( - 'max_connections', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['max_delayed_threads'] = array( - 'max_delayed_threads', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['max_error_count'] = array( - 'max_error_count', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['max_heap_table_size'] = array( - 'max_heap_table_size', - 'server-system-variables', - 'sysvar', - 'byte'); - $variable_doc_links['max_insert_delayed_threads'] = array( - 'max_insert_delayed_threads', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['max_join_size'] = array( - 'max_join_size', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['max_length_for_sort_data'] = array( - 'max_length_for_sort_data', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['max_long_data_size'] = array( - 'max_long_data_size', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['max_prepared_stmt_count'] = array( - 'max_prepared_stmt_count', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['max_relay_log_size'] = array( - 'max_relay_log_size', - 'server-system-variables', - 'sysvar', - 'byte'); - $variable_doc_links['max_seeks_for_key'] = array( - 'max_seeks_for_key', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['max_sort_length'] = array( - 'max_sort_length', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['max_sp_recursion_depth'] = array( - 'max_sp_recursion_depth', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['max_tmp_tables'] = array( - 'max_tmp_tables', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['max_user_connections'] = array( - 'max_user_connections', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['max_write_lock_count'] = array( - 'max_write_lock_count', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['metadata_locks_cache_size'] = array( - 'metadata_locks_cache_size', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['metadata_locks_hash_instances'] = array( - 'metadata_locks_hash_instances', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['memlock'] = array( - 'memlock', - 'server-options', - 'option_mysqld'); - $variable_doc_links['min_examined_row_limit'] = array( - 'min-examined-row-limit', - 'server-options', - 'option_mysqld'); - $variable_doc_links['multi_range_count'] = array( - 'multi_range_count', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['myisam_data_pointer_size'] = array( - 'myisam_data_pointer_size', - 'server-system-variables', - 'sysvar', - 'byte'); - $variable_doc_links['myisam_max_sort_file_size'] = array( - 'myisam_max_sort_file_size', - 'server-system-variables', - 'sysvar', - 'byte'); - $variable_doc_links['myisam_mmap_size'] = array( - 'myisam_mmap_size', - 'server-system-variables', - 'sysvar', - 'byte'); - $variable_doc_links['myisam_recover_options'] = array( - 'myisam_recover_options', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['myisam_repair_threads'] = array( - 'myisam_repair_threads', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['myisam_sort_buffer_size'] = array( - 'myisam_sort_buffer_size', - 'server-system-variables', - 'sysvar', - 'byte'); - $variable_doc_links['myisam_stats_method'] = array( - 'myisam_stats_method', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['myisam_use_mmap'] = array( - 'myisam_use_mmap', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['named_pipe'] = array( - 'named_pipe', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['net_buffer_length'] = array( - 'net_buffer_length', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['net_read_timeout'] = array( - 'net_read_timeout', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['net_retry_count'] = array( - 'net_retry_count', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['net_write_timeout'] = array( - 'net_write_timeout', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['new'] = array( - 'new', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['old'] = array( - 'old', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['old_alter_table'] = array( - 'old-alter-table', - 'server-options', - 'option_mysqld'); - $variable_doc_links['old_passwords'] = array( - 'old-passwords', - 'server-options', - 'option_mysqld'); - $variable_doc_links['open_files_limit'] = array( - 'open-files-limit', - 'server-options', - 'option_mysqld'); - $variable_doc_links['optimizer_prune_level'] = array( - 'optimizer_prune_level', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['optimizer_search_depth'] = array( - 'optimizer_search_depth', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['optimizer_switch'] = array( - 'optimizer_switch', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['optimizer_trace'] = array( - 'optimizer_trace', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['optimizer_trace_features'] = array( - 'optimizer_trace_features', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['optimizer_trace_limit'] = array( - 'optimizer_trace_limit', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['optimizer_trace_max_mem_size'] = array( - 'optimizer_trace_max_mem_size', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['optimizer_trace_offset'] = array( - 'optimizer_trace_offset', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['partition'] = array( - 'partition', - 'server-options', - 'option_mysqld'); - $variable_doc_links['performance_schema'] = array( - 'performance_schema', - 'performance-schema-system-variables', - 'sysvar'); - $variable_doc_links['performance_schema_accounts_size'] = array( - 'performance_schema_accounts_size', - 'performance-schema-system-variables', - 'sysvar'); - $variable_doc_links['performance_schema_digests_size'] = array( - 'performance_schema_digests_size', - 'performance-schema-system-variables', - 'sysvar'); - $variable_doc_links['performance_schema_events_stages_history_long_size'] - = array( - 'performance_schema_events_stages_history_long_size', - 'performance-schema-system-variables', - 'sysvar', - ); - $variable_doc_links['performance_schema_events_stages_history_size'] = array( - 'performance_schema_events_stages_history_size', - 'performance-schema-system-variables', - 'sysvar'); - $variable_doc_links['performance_schema_events_statements_history_long_size'] - = array( - 'performance_schema_events_statements_history_long_size', - 'performance-schema-system-variables', - 'sysvar', - ); - $variable_doc_links['performance_schema_events_statements_history_size'] = array( - 'performance_schema_events_statements_history_size', - 'performance-schema-system-variables', - 'sysvar'); - $variable_doc_links['performance_schema_events_waits_history_long_size'] = array( - 'performance_schema_events_waits_history_long_size', - 'performance-schema-system-variables', - 'sysvar'); - $variable_doc_links['performance_schema_events_waits_history_size'] = array( - 'performance_schema_events_waits_history_size', - 'performance-schema-system-variables', - 'sysvar'); - $variable_doc_links['performance_schema_hosts_size'] = array( - 'performance_schema_hosts_size', - 'performance-schema-system-variables', - 'sysvar'); - $variable_doc_links['performance_schema_max_cond_classes'] = array( - 'performance_schema_max_cond_classes', - 'performance-schema-system-variables', - 'sysvar'); - $variable_doc_links['performance_schema_max_cond_instances'] = array( - 'performance_schema_max_cond_instances', - 'performance-schema-system-variables', - 'sysvar'); - $variable_doc_links['performance_schema_max_file_classes'] = array( - 'performance_schema_max_file_classes', - 'performance-schema-system-variables', - 'sysvar'); - $variable_doc_links['performance_schema_max_file_handles'] = array( - 'performance_schema_max_file_handles', - 'performance-schema-system-variables', - 'sysvar'); - $variable_doc_links['performance_schema_max_file_instances'] = array( - 'performance_schema_max_file_instances', - 'performance-schema-system-variables', - 'sysvar'); - $variable_doc_links['performance_schema_max_mutex_classes'] = array( - 'performance_schema_max_mutex_classes', - 'performance-schema-system-variables', - 'sysvar'); - $variable_doc_links['performance_schema_max_mutex_instances'] = array( - 'performance_schema_max_mutex_instances', - 'performance-schema-system-variables', - 'sysvar'); - $variable_doc_links['performance_schema_max_rwlock_classes'] = array( - 'performance_schema_max_rwlock_classes', - 'performance-schema-system-variables', - 'sysvar'); - $variable_doc_links['performance_schema_max_rwlock_instances'] = array( - 'performance_schema_max_rwlock_instances', - 'performance-schema-system-variables', - 'sysvar'); - $variable_doc_links['performance_schema_max_socket_classes'] = array( - 'performance_schema_max_socket_classes', - 'performance-schema-system-variables', - 'sysvar'); - $variable_doc_links['performance_schema_max_socket_instances'] = array( - 'performance_schema_max_socket_instances', - 'performance-schema-system-variables', - 'sysvar'); - $variable_doc_links['performance_schema_max_stage_classes'] = array( - 'performance_schema_max_stage_classes', - 'performance-schema-system-variables', - 'sysvar'); - $variable_doc_links['performance_schema_max_statement_classes'] = array( - 'performance_schema_max_statement_classes', - 'performance-schema-system-variables', - 'sysvar'); - $variable_doc_links['performance_schema_max_table_handles'] = array( - 'performance_schema_max_table_handles', - 'performance-schema-system-variables', - 'sysvar'); - $variable_doc_links['performance_schema_max_table_instances'] = array( - 'performance_schema_max_table_instances', - 'performance-schema-system-variables', - 'sysvar'); - $variable_doc_links['performance_schema_max_thread_classes'] = array( - 'performance_schema_max_thread_classes', - 'performance-schema-system-variables', - 'sysvar'); - $variable_doc_links['performance_schema_max_thread_instances'] = array( - 'performance_schema_max_thread_instances', - 'performance-schema-system-variables', - 'sysvar'); - $variable_doc_links['performance_schema_session_connect_attrs_size'] = array( - 'performance_schema_session_connect_attrs_size', - 'performance-schema-system-variables', - 'sysvar'); - $variable_doc_links['performance_schema_setup_actors_size'] = array( - 'performance_schema_setup_actors_size', - 'performance-schema-system-variables', - 'sysvar'); - $variable_doc_links['performance_schema_setup_objects_size'] = array( - 'performance_schema_setup_objects_size', - 'performance-schema-system-variables', - 'sysvar'); - $variable_doc_links['performance_schema_users_size'] = array( - 'performance_schema_users_size', - 'performance-schema-system-variables', - 'sysvar'); - $variable_doc_links['pid_file'] = array( - 'pid-file', - 'server-options', - 'option_mysqld'); - $variable_doc_links['plugin_dir'] = array( - 'plugin_dir', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['port'] = array( - 'port', - 'server-options', - 'option_mysqld'); - $variable_doc_links['preload_buffer_size'] = array( - 'preload_buffer_size', - 'server-system-variables', - 'sysvar', - 'byte'); - $variable_doc_links['profiling'] = array( - 'profiling', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['profiling_history_size'] = array( - 'profiling_history_size', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['protocol_version'] = array( - 'protocol_version', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['proxy_user'] = array( - 'proxy_user', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['pseudo_thread_id'] = array( - 'pseudo_thread_id', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['query_alloc_block_size'] = array( - 'query_alloc_block_size', - 'server-system-variables', - 'sysvar', - 'byte'); - $variable_doc_links['query_cache_limit'] = array( - 'query_cache_limit', - 'server-system-variables', - 'sysvar', - 'byte'); - $variable_doc_links['query_cache_min_res_unit'] = array( - 'query_cache_min_res_unit', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['query_cache_size'] = array( - 'query_cache_size', - 'server-system-variables', - 'sysvar', - 'byte'); - $variable_doc_links['query_cache_type'] = array( - 'query_cache_type', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['query_cache_wlock_invalidate'] = array( - 'query_cache_wlock_invalidate', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['query_prealloc_size'] = array( - 'query_prealloc_size', - 'server-system-variables', - 'sysvar', - 'byte'); - $variable_doc_links['rand_seed1'] = array( - 'rand_seed1', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['rand_seed2'] = array( - 'rand_seed2', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['range_alloc_block_size'] = array( - 'range_alloc_block_size', - 'server-system-variables', - 'sysvar', - 'byte'); - $variable_doc_links['read_buffer_size'] = array( - 'read_buffer_size', - 'server-system-variables', - 'sysvar', - 'byte'); - $variable_doc_links['read_only'] = array( - 'read_only', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['read_rnd_buffer_size'] = array( - 'read_rnd_buffer_size', - 'server-system-variables', - 'sysvar', - 'byte'); - $variable_doc_links['relay_log'] = array( - 'relay_log', - 'replication-options-slave', - 'sysvar'); - $variable_doc_links['relay_log_basename'] = array( - 'relay_log_basename', - 'replication-options-slave', - 'sysvar'); - $variable_doc_links['relay-log-index'] = array( - 'relay-log-index', - 'replication-options-slave', - 'option_mysqld'); - $variable_doc_links['relay_log_index'] = array( - 'relay_log_index', - 'replication-options-slave', - 'sysvar'); - $variable_doc_links['relay_log_info_file'] = array( - 'relay_log_info_file', - 'replication-options-slave', - 'sysvar'); - $variable_doc_links['relay_log_info_repository'] = array( - 'relay_log_info_repository', - 'replication-options-slave', - 'sysvar'); - $variable_doc_links['relay_log_purge'] = array( - 'relay_log_purge', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['relay_log_recovery'] = array( - 'relay_log_recovery', - 'replication-options-slave', - 'sysvar'); - $variable_doc_links['relay_log_space_limit'] = array( - 'relay_log_space_limit', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['report_host'] = array( - 'report-host', - 'replication-options-slave', - 'option_mysqld'); - $variable_doc_links['report_password'] = array( - 'report-password', - 'replication-options-slave', - 'option_mysqld'); - $variable_doc_links['report_port'] = array( - 'report-port', - 'replication-options-slave', - 'option_mysqld'); - $variable_doc_links['report_user'] = array( - 'report-user', - 'replication-options-slave', - 'option_mysqld'); - $variable_doc_links['rpl_stop_slave_timeout'] = array( - 'rpl_stop_slave_timeout', - 'replication-options-slave', - 'sysvar'); - $variable_doc_links['rpl_recovery_rank'] = array( - 'rpl_recovery_rank', - 'replication-options-slave', - 'option_mysqld'); - $variable_doc_links['rpl_semi_sync_master_enabled'] = array( - 'rpl_semi_sync_master_enabled', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['rpl_semi_sync_master_timeout'] = array( - 'rpl_semi_sync_master_timeout', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['rpl_semi_sync_master_trace_level'] = array( - 'rpl_semi_sync_master_trace_level', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['rpl_semi_sync_master_wait_no_slave'] = array( - 'rpl_semi_sync_master_wait_no_slave', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['rpl_semi_sync_slave_enabled'] = array( - 'rpl_semi_sync_slave_enabled', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['rpl_semi_sync_slave_trace_level'] = array( - 'rpl_semi_sync_slave_trace_level', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['safe_show_database'] = array( - 'safe-show-database', - 'server-options', - 'option_mysqld'); - $variable_doc_links['secure_auth'] = array( - 'secure-auth', - 'server-options', - 'option_mysqld'); - $variable_doc_links['secure_file_priv'] = array( - 'secure-file-priv', - 'server-options', - 'option_mysqld'); - $variable_doc_links['server_id'] = array( - 'server-id', - 'replication-options', - 'option_mysqld'); - $variable_doc_links['server_id_bits'] = array( - 'server_id_bits', - 'mysql-cluster-system-variables', - 'sysvar'); - $variable_doc_links['server_uuid'] = array( - 'server_uuid', - 'replication-options', - 'sysvar'); - $variable_doc_links['shared_memory'] = array( - 'shared_memory', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['shared_memory_base_name'] = array( - 'shared_memory_base_name', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['skip_external_locking'] = array( - 'skip-external-locking', - 'server-options', - 'option_mysqld'); - $variable_doc_links['skip_name_resolve'] = array( - 'skip-name-resolve', - 'server-options', - 'option_mysqld'); - $variable_doc_links['skip_networking'] = array( - 'skip-networking', - 'server-options', - 'option_mysqld'); - $variable_doc_links['skip_show_database'] = array( - 'skip-show-database', - 'server-options', - 'option_mysqld'); - $variable_doc_links['slave_allow_batching'] = array( - 'slave_allow_batching', - 'mysql-cluster-system-variables', - 'sysvar'); - $variable_doc_links['slave_checkpoint_group'] = array( - 'slave_checkpoint_group', - 'replication-options-slave', - 'sysvar'); - $variable_doc_links['slave_checkpoint_period'] = array( - 'slave_checkpoint_period', - 'replication-options-slave', - 'sysvar'); - $variable_doc_links['slave_compressed_protocol'] = array( - 'slave_compressed_protocol', - 'replication-options-slave', - 'sysvar'); - $variable_doc_links['slave_exec_mode'] = array( - 'slave_exec_mode', - 'replication-options-slave', - 'sysvar'); - $variable_doc_links['slave_load_tmpdir'] = array( - 'slave-load-tmpdir', - 'replication-options-slave', - 'option_mysqld'); - $variable_doc_links['slave_max_allowed_packet'] = array( - 'slave_max_allowed_packet', - 'replication-options-slave', - 'sysvar'); - $variable_doc_links['slave_net_timeout'] = array( - 'slave-net-timeout', - 'replication-options-slave', - 'option_mysqld'); - $variable_doc_links['slave_parallel_workers'] = array( - 'slave_parallel_workers', - 'replication-options-slave', - 'sysvar'); - $variable_doc_links['slave_pending_jobs_size_max'] = array( - 'slave_pending_jobs_size_max', - 'replication-options-slave', - 'sysvar'); - $variable_doc_links['slave_rows_search_algorithms'] = array( - 'slave_rows_search_algorithms', - 'replication-options-slave', - 'sysvar'); - $variable_doc_links['slave_skip_errors'] = array( - 'slave-skip-errors', - 'replication-options-slave', - 'option_mysqld'); - $variable_doc_links['slave_sql_verify_checksum'] = array( - 'slave_sql_verify_checksum', - 'replication-options-slave', - 'sysvar'); - $variable_doc_links['slave_transaction_retries'] = array( - 'slave_transaction_retries', - 'replication-options-slave', - 'sysvar'); - $variable_doc_links['slave_type_conversions'] = array( - 'slave_type_conversions', - 'replication-options-slave', - 'sysvar'); - $variable_doc_links['slow_launch_time'] = array( - 'slow_launch_time', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['slow_query_log'] = array( - 'slow-query-log', - 'server-options', - 'server-system-variables'); - $variable_doc_links['slow_query_log_file'] = array( - 'slow_query_log_file', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['socket'] = array( - 'socket', - 'server-options', - 'option_mysqld'); - $variable_doc_links['sort_buffer_size'] = array( - 'sort_buffer_size', - 'server-system-variables', - 'sysvar', - 'byte'); - $variable_doc_links['sql_auto_is_null'] = array( - 'sql_auto_is_null', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['sql_big_selects'] = array( - 'sql_big_selects', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['sql_big_tables'] = array( - 'big-tables', - 'server-options', - 'server-system-variables'); - $variable_doc_links['sql_buffer_result'] = array( - 'sql_buffer_result', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['sql_log_bin'] = array( - 'sql_log_bin', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['sql_log_off'] = array( - 'sql_log_off', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['sql_log_update'] = array( - 'sql_log_update', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['sql_low_priority_updates'] = array( - 'sql_low_priority_updates', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['sql_max_join_size'] = array( - 'sql_max_join_size', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['sql_mode'] = array( - 'sql-mode', - 'server-options', - 'option_mysqld'); - $variable_doc_links['sql_notes'] = array( - 'sql_notes', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['sql_quote_show_create'] = array( - 'sql_quote_show_create', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['sql_safe_updates'] = array( - 'sql_safe_updates', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['sql_select_limit'] = array( - 'sql_select_limit', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['sql_slave_skip_counter'] = array( - 'sql_slave_skip_counter', - 'replication-options-slave', - 'sysvar'); - $variable_doc_links['sql_warnings'] = array( - 'sql_warnings', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['ssl_ca'] = array( - 'ssl-ca', - 'ssl-options', - 'option_general'); - $variable_doc_links['ssl_capath'] = array( - 'ssl-capath', - 'ssl-options', - 'option_general'); - $variable_doc_links['ssl_cert'] = array( - 'ssl-cert', - 'ssl-options', - 'option_general'); - $variable_doc_links['ssl_cipher'] = array( - 'ssl-cipher', - 'ssl-options', - 'option_general'); - $variable_doc_links['ssl_crl'] = array( - 'ssl_crl', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['ssl_crlpath'] = array( - 'ssl_crlpath', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['ssl_key'] = array( - 'ssl-key', - 'ssl-options', - 'option_general'); - $variable_doc_links['storage_engine'] = array( - 'storage_engine', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['stored_program_cache'] = array( - 'stored_program_cache', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['sync_binlog'] = array( - 'sync_binlog', - 'replication-options-binary-log', - 'sysvar'); - $variable_doc_links['sync_frm'] = array( - 'sync_frm', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['sync_master_info'] = array( - 'sync_master_info', - 'replication-options-slave', - 'sysvar'); - $variable_doc_links['sync_relay_log'] = array( - 'sync_relay_log', - 'replication-options-slave', - 'sysvar'); - $variable_doc_links['sync_relay_log_info'] = array( - 'sync_relay_log_info', - 'replication-options-slave', - 'sysvar'); - $variable_doc_links['system_time_zone'] = array( - 'system_time_zone', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['table_definition_cache'] = array( - 'table_definition_cache', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['table_lock_wait_timeout'] = array( - 'table_lock_wait_timeout', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['table_open_cache'] = array( - 'table_open_cache', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['table_open_cache_instances'] = array( - 'table_open_cache_instances', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['table_type'] = array( - 'table_type', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['thread_cache_size'] = array( - 'thread_cache_size', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['thread_concurrency'] = array( - 'thread_concurrency', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['thread_handling'] = array( - 'thread_handling', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['thread_stack'] = array( - 'thread_stack', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['time_format'] = array( - 'time_format', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['time_zone'] = array( - 'time_zone', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['timed_mutexes'] = array( - 'timed_mutexes', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['timestamp'] = array( - 'timestamp', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['tmp_table_size'] = array( - 'tmp_table_size', - 'server-system-variables', - 'sysvar', - 'byte'); - $variable_doc_links['tmpdir'] = array( - 'tmpdir', - 'server-options', - 'option_mysqld'); - $variable_doc_links['transaction_alloc_block_size'] = array( - 'transaction_alloc_block_size', - 'server-system-variables', - 'sysvar', - 'byte'); - $variable_doc_links['transaction_prealloc_size'] = array( - 'transaction_prealloc_size', - 'server-system-variables', - 'sysvar', - 'byte'); - $variable_doc_links['tx_isolation'] = array( - 'tx_isolation', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['tx_read_only'] = array( - 'tx_read_only', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['unique_checks'] = array( - 'unique_checks', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['updatable_views_with_limit'] = array( - 'updatable_views_with_limit', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['version'] = array( - 'version', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['version_comment'] = array( - 'version_comment', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['version_compile_machine'] = array( - 'version_compile_machine', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['version_compile_os'] = array( - 'version_compile_os', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['wait_timeout'] = array( - 'wait_timeout', - 'server-system-variables', - 'sysvar'); - $variable_doc_links['warning_count'] = array( - 'warning_count', - 'server-system-variables', - 'sysvar'); - return $variable_doc_links; -} - -/** - * Returns array of static system variables (i.e. read-only) - * - * @return array - */ -function PMA_getStaticSystemVariables() -{ - $static_variables = array( - 'back_log', - 'basedir', - 'bind_address', - 'binlog_row_image', - 'character_set_system', - 'character_sets_dir', - 'core_file', - 'datadir', - 'date_format', - 'datetime_format', - 'disconnect_on_expired_password', - 'engine_condition_pushdown', - 'error_count', - 'explicit_defaults_for_timestamp', - 'external_user', - 'ft_max_word_len', - 'ft_min_word_len', - 'ft_query_expansion_limit', - 'ft_stopword_file', - 'gtid_executed', - 'gtid_owned', - 'have_compress', - 'have_crypt', - 'have_csv', - 'have_dynamic_loading', - 'have_geometry', - 'have_innodb', - 'have_ndbcluster', - 'have_openssl', - 'have_partitioning', - 'have_profiling', - 'have_query_cache', - 'have_rtree_keys', - 'have_ssl', - 'have_symlink', - 'hostname', - 'ignore_builtin_innodb', - 'ignore_db_dirs', - 'init_file', - 'innodb_additional_mem_pool_size', - 'innodb_api_disable_rowlock', - 'innodb_api_enable_binlog', - 'innodb_api_enable_mdl', - 'innodb_autoinc_lock_mode', - 'innodb_buffer_pool_instances', - 'innodb_buffer_pool_load_at_startup', - 'innodb_checksums', - 'innodb_data_file_path', - 'innodb_data_home_dir', - 'innodb_doublewrite', - 'innodb_file_format_check', - 'innodb_flush_method', - 'innodb_force_load_corrupted', - 'innodb_force_recovery', - 'innodb_ft_cache_size', - 'innodb_ft_max_token_size', - 'innodb_ft_min_token_size', - 'innodb_ft_sort_pll_degree', - 'innodb_ft_total_cache_size', - 'innodb_locks_unsafe_for_binlog', - 'innodb_log_buffer_size', - 'innodb_log_file_size', - 'innodb_log_files_in_group', - 'innodb_log_group_home_dir', - 'innodb_mirrored_log_groups', - 'innodb_open_files', - 'innodb_page_size', - 'innodb_purge_threads', - 'innodb_read_io_threads', - 'innodb_read_only', - 'innodb_rollback_on_timeout', - 'innodb_sort_buffer_size', - 'innodb_sync_array_size', - 'innodb_undo_directory', - 'innodb_undo_tablespaces', - 'innodb_use_native_aio', - 'innodb_use_sys_malloc', - 'innodb_version', - 'innodb_write_io_threads', - 'language', - 'large_files_support', - 'large_page_size', - 'large_pages', - 'lc_messages_dir', - 'license', - 'locked_in_memory', - 'log', - 'log_bin', - 'log-bin', - 'log_bin_basename', - 'log_bin_index', - 'log_bin_use_v1_row_events', - 'log_error', - 'log_slave_updates', - 'log_slow_queries', - 'lower_case_file_system', - 'lower_case_table_names', - 'master-bind', - 'max_long_data_size', - 'max_tmp_tables', - 'metadata_locks_cache_size', - 'metadata_locks_hash_instances', - 'memlock', - 'multi_range_count', - 'myisam_mmap_size', - 'myisam_recover_options', - 'named_pipe', - 'old', - 'open_files_limit', - 'partition', - 'performance_schema', - 'performance_schema_accounts_size', - 'performance_schema_digests_size', - 'performance_schema_events_stages_history_long_size', - 'performance_schema_events_stages_history_size', - 'performance_schema_events_statements_history_long_size', - 'performance_schema_events_statements_history_size', - 'performance_schema_events_waits_history_long_size', - 'performance_schema_events_waits_history_size', - 'performance_schema_hosts_size', - 'performance_schema_max_cond_classes', - 'performance_schema_max_cond_instances', - 'performance_schema_max_file_classes', - 'performance_schema_max_file_handles', - 'performance_schema_max_file_instances', - 'performance_schema_max_mutex_classes', - 'performance_schema_max_mutex_instances', - 'performance_schema_max_rwlock_classes', - 'performance_schema_max_rwlock_instances', - 'performance_schema_max_socket_classes', - 'performance_schema_max_socket_instances', - 'performance_schema_max_stage_classes', - 'performance_schema_max_statement_classes', - 'performance_schema_max_table_handles', - 'performance_schema_max_table_instances', - 'performance_schema_max_thread_classes', - 'performance_schema_max_thread_instances', - 'performance_schema_session_connect_attrs_size', - 'performance_schema_setup_actors_size', - 'performance_schema_setup_objects_size', - 'performance_schema_users_size', - 'pid_file', - 'plugin_dir', - 'port', - 'protocol_version', - 'proxy_user', - 'relay_log', - 'relay_log_basename', - 'relay-log-index', - 'relay_log_index', - 'relay_log_info_file', - 'relay_log_recovery', - 'relay_log_space_limit', - 'report_host', - 'report_password', - 'report_port', - 'report_user', - 'rpl_recovery_rank', - 'safe_show_database', - 'secure_file_priv', - 'server_id_bits', - 'server_uuid', - 'shared_memory', - 'shared_memory_base_name', - 'skip_external_locking', - 'skip_name_resolve', - 'skip_networking', - 'skip_show_database', - 'slave_checkpoint_group', - 'slave_checkpoint_period', - 'slave_load_tmpdir', - 'slave_rows_search_algorithms', - 'slave_skip_errors', - 'slave_type_conversions', - 'socket', - 'sql_big_tables', - 'sql_log_update', - 'sql_low_priority_updates', - 'sql_max_join_size', - 'ssl_ca', - 'ssl_capath', - 'ssl_cert', - 'ssl_cipher', - 'ssl_crl', - 'ssl_crlpath', - 'ssl_key', - 'system_time_zone', - 'table_lock_wait_timeout', - 'table_open_cache_instances', - 'table_type', - 'thread_concurrency', - 'thread_handling', - 'thread_stack', - 'time_format', - 'tmpdir', - 'version', - 'version_comment', - 'version_compile_machine', - 'version_compile_os', - 'warning_count', - ); - - return $static_variables; - -} - diff --git a/server_variables.php b/server_variables.php index 8c0091a030..ee4602af58 100644 --- a/server_variables.php +++ b/server_variables.php @@ -1,97 +1,32 @@ getHeader(); -$scripts = $header->getScripts(); -$scripts->addFile('server_variables.js'); +$container = libraries\di\Container::getDefaultContainer(); +$container->factory( + 'PMA\libraries\controllers\ServerVariablesController' +); +$container->alias( + 'ServerVariablesController', + 'PMA\libraries\controllers\ServerVariablesController' +); +$container->set('PMA\libraries\Response', Response::getInstance()); +$container->alias('response', 'PMA\libraries\Response'); -/** - * Does the common work - */ -require 'libraries/server_common.inc.php'; - -/** - * Array of documentation links - */ -$variable_doc_links = PMA_getArrayForDocumentLinks(); - -/** - * Ajax request - */ - -if (isset($_REQUEST['ajax_request']) && $_REQUEST['ajax_request'] == true) { - if (isset($_REQUEST['type'])) { - if ($_REQUEST['type'] === 'getval') { - PMA_getAjaxReturnForGetVal($variable_doc_links); - } else if ($_REQUEST['type'] === 'setval') { - PMA_getAjaxReturnForSetVal($variable_doc_links); - } - exit; - } -} - -/** - * Displays the sub-page heading - */ -$doc_link = PMA\libraries\Util::showMySQLDocu('server_system_variables'); -$response->addHtml(PMA_getHtmlForSubPageHeader('variables', $doc_link)); - -/** - * Sends the queries and buffers the results - */ -$serverVarsResult = $GLOBALS['dbi']->tryQuery('SHOW SESSION VARIABLES;'); - -if ($serverVarsResult !== false) { - - $serverVarsSession = array(); - while ($arr = $GLOBALS['dbi']->fetchRow($serverVarsResult)) { - $serverVarsSession[$arr[0]] = $arr[1]; - } - $GLOBALS['dbi']->freeResult($serverVarsResult); - - $serverVars = $GLOBALS['dbi']->fetchResult('SHOW GLOBAL VARIABLES;', 0, 1); - - /** - * Link templates - */ - $response->addHtml(PMA_getHtmlForLinkTemplates()); - - /** - * Displays the page - */ - $response->addHtml( - PMA_getHtmlForServerVariables( - $variable_doc_links, $serverVars, $serverVarsSession - ) - ); -} else { - /** - * Display the error message - */ - $response->addHTML( - Message::error( - sprintf( - __('Not enough privilege to view server variables and settings. %s'), - Util::showMySQLDocu( - 'server-system-variables', - false, - 'sysvar_show_compatibility_56' - ) - ) - )->getDisplay() - ); -} - -exit; +/** @var ServerVariablesController $controller */ +$controller = $container->get( + 'ServerVariablesController', array() +); +$controller->indexAction(); From 272fb20923d8e0da53d11da90b8b46ae9913dd32 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 17 Nov 2015 21:16:20 +1100 Subject: [PATCH 052/100] Update tests Signed-off-by: Madhura Jayaratne --- .../ServerVariablesControllerTest.php} | 109 ++++++++++++------ 1 file changed, 75 insertions(+), 34 deletions(-) rename test/{libraries/PMA_server_variables_test.php => classes/controllers/ServerVariablesControllerTest.php} (63%) diff --git a/test/libraries/PMA_server_variables_test.php b/test/classes/controllers/ServerVariablesControllerTest.php similarity index 63% rename from test/libraries/PMA_server_variables_test.php rename to test/classes/controllers/ServerVariablesControllerTest.php index ba6508d085..a49e2ac10d 100644 --- a/test/libraries/PMA_server_variables_test.php +++ b/test/classes/controllers/ServerVariablesControllerTest.php @@ -1,35 +1,35 @@ will($this->returnValueMap($fetchResult)); $GLOBALS['dbi'] = $dbi; + + $container = Container::getDefaultContainer(); + $container->set('dbi', $GLOBALS['dbi']); + $this->response = new \PMA\Test\Stubs\Response(); + $container->set('PMA\libraries\Response', $this->response); + $container->alias('response', 'PMA\libraries\Response'); } /** - * Test for PMA_formatVariable + * Test for _formatVariable() * * @return void */ - public function testPMAFormatVariable() + public function testFormatVariable() { + $class = new ReflectionClass('\PMA\libraries\controllers\ServerVariablesController'); + $method = $class->getMethod('_formatVariable'); + $method->setAccessible(true); + + $container = Container::getDefaultContainer(); + $container->factory('PMA\libraries\controllers\ServerVariablesController'); + $container->alias( + 'ServerVariablesController', 'PMA\libraries\controllers\ServerVariablesController' + ); + $ctrl = $container->get('ServerVariablesController'); + //Call the test function $name_for_value_byte = "binlog_cache_size"; $name_for_value_not_byte = "auto_increment_increment"; $name_for_value_not_num = "PMA_key"; - $variable_doc_links = PMA_getArrayForDocumentLinks(); - //name is_numeric and the value type is byte $this->assertEquals( '3 B', - PMA_formatVariable($name_for_value_byte, "3", $variable_doc_links) + $method->invoke($ctrl, $name_for_value_byte, "3") ); //name is_numeric and the value type is not byte $this->assertEquals( '3', - PMA_formatVariable($name_for_value_not_byte, "3", $variable_doc_links) + $method->invoke($ctrl, $name_for_value_not_byte, "3") ); //value is not a number $this->assertEquals( 'value', - PMA_formatVariable($name_for_value_not_num, "value", $variable_doc_links) + $method->invoke($ctrl, $name_for_value_not_num, "value") ); } /** - * Test for PMA_getHtmlForLinkTemplates + * Test for _getHtmlForLinkTemplates() * * @return void */ - public function testPMAGetHtmlForLinkTemplates() + public function testGetHtmlForLinkTemplates() { + $class = new ReflectionClass('\PMA\libraries\controllers\ServerVariablesController'); + $method = $class->getMethod('_getHtmlForLinkTemplates'); + $method->setAccessible(true); + + $container = Container::getDefaultContainer(); + $container->factory('PMA\libraries\controllers\ServerVariablesController'); + $container->alias( + 'ServerVariablesController', 'PMA\libraries\controllers\ServerVariablesController' + ); + $ctrl = $container->get('ServerVariablesController'); + //Call the test function - $html = PMA_getHtmlForLinkTemplates(); + $html = $method->invoke($ctrl); $url = 'server_variables.php' . PMA_URL_getCommon(array()); //validate 1: URL @@ -167,22 +193,30 @@ class PMA_ServerVariables_Test extends PHPUnit_Framework_TestCase } /** - * Test for PMA_getHtmlForServerVariables + * Test for PMA_getHtmlForServerVariables() * * @return void */ public function testPMAGetHtmlForServerVariables() { - //Call the test function - $_REQUEST['filter'] = "auto-commit"; - $variable_doc_links = PMA_getArrayForDocumentLinks(); + $class = new ReflectionClass('\PMA\libraries\controllers\ServerVariablesController'); + $method = $class->getMethod('_getHtmlForLinkTemplates'); + $method->setAccessible(true); + + $container = Container::getDefaultContainer(); + $container->factory('PMA\libraries\controllers\ServerVariablesController'); + $container->alias( + 'ServerVariablesController', 'PMA\libraries\controllers\ServerVariablesController' + ); + $ctrl = $container->get('ServerVariablesController'); + + $_REQUEST['filter'] = "auto-commit"; $serverVarsSession = $GLOBALS['dbi']->fetchResult('SHOW SESSION VARIABLES;', 0, 1); $serverVars = $GLOBALS['dbi']->fetchResult('SHOW GLOBAL VARIABLES;', 0, 1); - $html = PMA_getHtmlForServerVariables( - $variable_doc_links, $serverVars, $serverVarsSession - ); + + $html = $method->invoke($ctrl, $serverVars, $serverVarsSession); //validate 1: Filters $this->assertContains( @@ -214,21 +248,28 @@ class PMA_ServerVariables_Test extends PHPUnit_Framework_TestCase } /** - * Test for PMA_getHtmlForServerVariablesItems + * Test for _getHtmlForServerVariablesItems() * * @return void */ - public function testPMAGetHtmlForServerVariablesItems() + public function testGetHtmlForServerVariablesItems() { - //Call the test function - $variable_doc_links = PMA_getArrayForDocumentLinks(); + $class = new ReflectionClass('\PMA\libraries\controllers\ServerVariablesController'); + $method = $class->getMethod('_getHtmlForServerVariablesItems'); + $method->setAccessible(true); + + $container = Container::getDefaultContainer(); + $container->factory('PMA\libraries\controllers\ServerVariablesController'); + $container->alias( + 'ServerVariablesController', 'PMA\libraries\controllers\ServerVariablesController' + ); + $ctrl = $container->get('ServerVariablesController'); $serverVarsSession = $GLOBALS['dbi']->fetchResult('SHOW SESSION VARIABLES;', 0, 1); $serverVars = $GLOBALS['dbi']->fetchResult('SHOW GLOBAL VARIABLES;', 0, 1); - $html = PMA_getHtmlForServerVariablesItems( - $variable_doc_links, $serverVars, $serverVarsSession - ); + + $html = $method->invoke($ctrl, $serverVars, $serverVarsSession); //validate 1: variable: auto_increment_increment $name = "auto_increment_increment"; From 6991fe762b0a841ea4d2a49a87404c1c24e657b6 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 17 Nov 2015 21:40:50 +1100 Subject: [PATCH 053/100] Use own dbi instance, Use templating --- .../controllers/ServerVariablesController.php | 30 +++++++------------ .../server/variables/link_template.phtml | 13 ++++++++ 2 files changed, 24 insertions(+), 19 deletions(-) create mode 100644 templates/server/variables/link_template.phtml diff --git a/libraries/controllers/ServerVariablesController.php b/libraries/controllers/ServerVariablesController.php index 2e084e852c..ddc2765530 100644 --- a/libraries/controllers/ServerVariablesController.php +++ b/libraries/controllers/ServerVariablesController.php @@ -10,6 +10,7 @@ namespace PMA\libraries\controllers; use PMA\libraries\Message; +use PMA\libraries\Template; use PMA\libraries\Util; /** @@ -57,17 +58,17 @@ class ServerVariablesController extends Controller /** * Sends the queries and buffers the results */ - $serverVarsResult = $GLOBALS['dbi']->tryQuery('SHOW SESSION VARIABLES;'); + $serverVarsResult = $this->dbi->tryQuery('SHOW SESSION VARIABLES;'); if ($serverVarsResult !== false) { $serverVarsSession = array(); - while ($arr = $GLOBALS['dbi']->fetchRow($serverVarsResult)) { + while ($arr = $this->dbi->fetchRow($serverVarsResult)) { $serverVarsSession[$arr[0]] = $arr[1]; } - $GLOBALS['dbi']->freeResult($serverVarsResult); + $this->dbi->freeResult($serverVarsResult); - $serverVars = $GLOBALS['dbi']->fetchResult('SHOW GLOBAL VARIABLES;', 0, 1); + $serverVars = $this->dbi->fetchResult('SHOW GLOBAL VARIABLES;', 0, 1); /** * Link templates @@ -110,7 +111,7 @@ class ServerVariablesController extends Controller header('Content-Type: text/html; charset=UTF-8'); // Do not use double quotes inside the query to avoid a problem // when server is running in ANSI_QUOTES sql_mode - $varValue = $GLOBALS['dbi']->fetchSingleRow( + $varValue = $this->dbi->fetchSingleRow( 'SHOW GLOBAL VARIABLES WHERE Variable_name=\'' . Util::sqlAddSlashes($_REQUEST['varName']) . '\';', 'NUM' @@ -174,12 +175,12 @@ class ServerVariablesController extends Controller } if (! preg_match("/[^a-zA-Z0-9_]+/", $_REQUEST['varName']) - && $GLOBALS['dbi']->query( + && $this->dbi->query( 'SET GLOBAL ' . $_REQUEST['varName'] . ' = ' . $value ) ) { // Some values are rounded down etc. - $varValue = $GLOBALS['dbi']->fetchSingleRow( + $varValue = $this->dbi->fetchSingleRow( 'SHOW GLOBAL VARIABLES WHERE Variable_name="' . Util::sqlAddSlashes($_REQUEST['varName']) . '";', 'NUM' @@ -234,17 +235,8 @@ class ServerVariablesController extends Controller private function _getHtmlForLinkTemplates() { $url = 'server_variables.php' . PMA_URL_getCommon(); - $output = ' '; - $output .= ' '; - $output .= Util::getImage( - 'b_help.png', - __('Documentation'), - array('style' => 'display:none', 'id' => 'docImage') - ); - return $output; + return Template::get('server/variables/link_template') + ->render(array('url' => $url)); } /** @@ -349,7 +341,7 @@ class ServerVariablesController extends Controller $output .= ''; $output .= ' ' + . ($this->dbi->isSuperuser() ? ' editable' : '') . '"> ' . $this->_formatVariable($name, $value, $variable_doc_links) . '' . ''; diff --git a/templates/server/variables/link_template.phtml b/templates/server/variables/link_template.phtml new file mode 100644 index 0000000000..ab7bbd2add --- /dev/null +++ b/templates/server/variables/link_template.phtml @@ -0,0 +1,13 @@ + + + 'display:none', 'id' => 'docImage') +); +?> \ No newline at end of file From 26eb7c7b361bc3faabf40a101e8d7887ec1ba3cc Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 17 Nov 2015 22:21:38 +1100 Subject: [PATCH 054/100] More templating Signed-off-by: Madhura Jayaratne --- .../controllers/ServerVariablesController.php | 84 +++++++------------ .../variables/session_variable_row.phtml | 5 ++ templates/server/variables/variable_row.phtml | 25 ++++++ 3 files changed, 60 insertions(+), 54 deletions(-) create mode 100644 templates/server/variables/session_variable_row.phtml create mode 100644 templates/server/variables/variable_row.phtml diff --git a/libraries/controllers/ServerVariablesController.php b/libraries/controllers/ServerVariablesController.php index ddc2765530..29002b7568 100644 --- a/libraries/controllers/ServerVariablesController.php +++ b/libraries/controllers/ServerVariablesController.php @@ -270,9 +270,11 @@ class ServerVariablesController extends Controller . '' . ''; + $output .= ''; $output .= $this->_getHtmlForServerVariablesItems( $serverVars, $serverVarsSession ); + $output .= ''; $output .= ''; @@ -293,75 +295,49 @@ class ServerVariablesController extends Controller ) { // list of static system variables $static_variables = $this->_getStaticSystemVariables(); + // list of documentation links + $variable_doc_links = $this->_getArrayForDocumentLinks(); - $output = ''; + $output = ''; $odd_row = true; foreach ($serverVars as $name => $value) { $has_session_value = isset($serverVarsSession[$name]) && $serverVarsSession[$name] != $value; $row_class = ($odd_row ? ' odd' : ' even') . ($has_session_value ? ' diffSession' : ''); + $docLink = isset($variable_doc_links[$name]) + ? $variable_doc_links[$name] : null; + $formattedValue = $this->_formatVariable( + $name, $value, $variable_doc_links + ); - $output .= ''; - - $output .= ''; - - // Edit Link active only for Dynamic System variables - if (! in_array(strtolower($name), $static_variables)) { - $output .= '' - . Util::getIcon('b_edit.png', __('Edit')) . ''; - } else { - $output .= '' - . Util::getIcon('bd_edit.png', __('Edit')) - . ''; - } - - $output .= ''; - - $output .= ''; - $variable_doc_links = $this->_getArrayForDocumentLinks(); - // To display variable documentation link - if (isset($variable_doc_links[$name])) { - $output .= ''; - $output .= Util::showMySQLDocu( - $variable_doc_links[$name][1], - false, - $variable_doc_links[$name][2] . '_' . $variable_doc_links[$name][0], - true + $output .= Template::get('server/variables/variable_row') + ->render( + array( + 'rowClass' => $row_class, + 'editable' => ! in_array(strtolower($name), $static_variables), + 'docLink' => $docLink, + 'name' => $name, + 'value' => $formattedValue, + 'isSuperuser' => $this->dbi->isSuperuser(), + ) ); - $output .= htmlspecialchars(str_replace('_', ' ', $name)); - $output .= ''; - $output .= ''; - } else { - $output .= htmlspecialchars(str_replace('_', ' ', $name)); - } - $output .= ''; - - $output .= ' ' - . $this->_formatVariable($name, $value, $variable_doc_links) - . '' - . ''; if ($has_session_value) { - $output .= '' - . '' - . '(' . __('Session value') . ')' - . ' ' - . $this->_formatVariable( - $name, - $serverVarsSession[$name], - $variable_doc_links - ) . '' - . ''; + $formattedValue = $this->_formatVariable( + $name, $serverVarsSession[$name], $variable_doc_links + ); + $output .= Template::get('server/variables/session_variable_row') + ->render( + array( + 'rowClass' => $row_class, + 'value' => $formattedValue, + ) + ); } $odd_row = ! $odd_row; } - $output .= ''; return $output; } diff --git a/templates/server/variables/session_variable_row.phtml b/templates/server/variables/session_variable_row.phtml new file mode 100644 index 0000000000..4422995d25 --- /dev/null +++ b/templates/server/variables/session_variable_row.phtml @@ -0,0 +1,5 @@ + + + ( ) +   + \ No newline at end of file diff --git a/templates/server/variables/variable_row.phtml b/templates/server/variables/variable_row.phtml new file mode 100644 index 0000000000..eee788f96c --- /dev/null +++ b/templates/server/variables/variable_row.phtml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + '; + ?> + + + + + +   + \ No newline at end of file From 83e9ae54afebf8f6e4659b8d3baa3ba3dbac1951 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Tue, 17 Nov 2015 07:52:45 -0500 Subject: [PATCH 055/100] Remove dead code Signed-off-by: Marc Delisle --- libraries/server_privileges.lib.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/libraries/server_privileges.lib.php b/libraries/server_privileges.lib.php index ece2cbef65..f15eac16e2 100644 --- a/libraries/server_privileges.lib.php +++ b/libraries/server_privileges.lib.php @@ -1864,7 +1864,6 @@ function PMA_getHtmlForLoginInformationFields( . '
' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10393,7 +10393,7 @@ msgstr "Databasis statistieke" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Stort data vir tabel" @@ -10418,14 +10418,14 @@ msgstr "geen Beskrywing" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Tabel struktuur vir tabel" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 #, fuzzy msgid "Structure for view" @@ -10433,7 +10433,7 @@ msgstr "Slegs struktuur" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10543,7 +10543,7 @@ msgid "Database:" msgstr "Databasis" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10653,7 +10653,7 @@ msgid "Data creation options" msgstr "Databasis statistieke" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -10722,8 +10722,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10737,81 +10737,87 @@ msgstr "" msgid "Metadata" msgstr "Export" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" -msgstr "" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Dumping data for table" +msgid "Metadata for table %s" +msgstr "Stort data vir tabel" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +msgid "Metadata for database %s" +msgstr "Geen databasisse" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Skepping:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Vorige opdatering:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Vorige inspeksie:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "in gebruik" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for dumped tables" msgstr "Binne tabel(le):" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "Binne tabel(le):" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Slegs struktuur" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "" @@ -11607,7 +11613,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11615,18 +11621,18 @@ msgstr "Gebruiker naam" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Gebruiker naam" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Wagwoord" @@ -11666,47 +11672,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Enige gasheer (host)" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Local" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Enige gebruiker" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 #, fuzzy #| msgid "Add new field" msgid "Use text field:" msgstr "Voeg 'n nuwe veld by" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Tik weer" @@ -12466,7 +12472,7 @@ msgstr "Geen" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12532,9 +12538,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy msgid "Routine" @@ -12556,14 +12562,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -12575,7 +12581,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 #, fuzzy msgid "Global privileges" msgstr "Geen Regte" @@ -12585,7 +12591,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "" @@ -12597,300 +12603,300 @@ msgstr "" msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Documentation" msgid "Native MySQL authentication" msgstr "Dokumentasie" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "Verander wagwoord" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Documentation" msgid "Native MySQL Authentication" msgstr "Dokumentasie" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 #, fuzzy msgid "Login Information" msgstr "Wys PHP informasie" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Gebruiker naam" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Column names" msgid "Host name" msgstr "Kolom name" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Moenie die wagwoord verander nie" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Documentation" msgid "Authentication Plugin" msgstr "Dokumentasie" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password:" msgid "Password Hashing Method" msgstr "Wagwoord:" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Jy het die regte herroep vir %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Enige gebruiker" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy msgid "Database for user account" msgstr "Databasis statistieke" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 #, fuzzy msgid "User has been added." msgstr "Veld %s is verwyder" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Geen gebruiker(s) gevind nie." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Enige" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Verander Regte" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Herroep" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy msgid "Routine-specific privileges" msgstr "Geen Regte" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "With selected:" msgid "Remove selected user accounts" msgstr "Met gekose:" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Jy het die regte opgedateer vir %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Regte" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Gebruiker" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Verander Regte" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "User" msgid "User account" msgstr "Gebruiker" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12899,7 +12905,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12908,11 +12914,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Jy het 'n nuwe gebruiker bygevoeg." diff --git a/po/ar.po b/po/ar.po index 44718f31f3..7f0af3378a 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:24+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Arabic SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10563,7 +10563,7 @@ msgstr "خيارات تصدير قاعدة بيانات" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "إرجاع أو استيراد بيانات الجدول" @@ -10589,21 +10589,21 @@ msgstr "الوصف" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "بنية الجدول" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10719,7 +10719,7 @@ msgid "Database:" msgstr "قاعدة البيانات" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10835,7 +10835,7 @@ msgid "Data creation options" msgstr "خيارات التحويل" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -10904,8 +10904,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10919,86 +10919,92 @@ msgstr "" msgid "Metadata" msgstr "بيانات مفقودة لـ %s" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, fuzzy, php-format #| msgid "Missing data for %s" -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "بيانات مفقودة لـ %s" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Missing data for %s" +msgid "Metadata for database %s" +msgstr "بيانات مفقودة لـ %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "الإنشاء:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "آخر تحديث:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "آخر فحص:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "قيد الإستعمال" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "قيود الجداول المحفوظة" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "القيود للجدول" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "قيود الجداول المحفوظة" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "داخل الجداول:" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "لاتستعمل AUTO_INCREMENT للقيم الصفرية" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "أضف قيمة AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11854,7 +11860,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11862,18 +11868,18 @@ msgstr "اسم المستخدم" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "اسم المستخدم" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "كلمة السر" @@ -11914,47 +11920,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "أي مزود" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "محلي" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "هذا المضيف" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "أي مستخدم" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "استخدم حقل نص" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "استخدم الجدول المضيف" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "أعد كتابة" @@ -12791,7 +12797,7 @@ msgstr "لا شيء" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12860,9 +12866,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Add new field" @@ -12889,14 +12895,14 @@ msgstr "يسمح بحذف البيانات." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "صلاحيات خاصة بالجدول" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -12908,7 +12914,7 @@ msgid "Administration" msgstr "إدارة" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "صلاحيات عامة" @@ -12919,7 +12925,7 @@ msgid "Global" msgstr "عام" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "صلاحيات خاصة بقاعدة البيانات" @@ -12931,312 +12937,312 @@ msgstr "يسمح بإنشاء جداول جديدة." msgid "Allows dropping tables." msgstr "يسمح بحذف الجداول." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Authentication" msgid "Native MySQL authentication" msgstr "المصادقة" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "تغيير كلمة السر" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Authentication" msgid "Native MySQL Authentication" msgstr "المصادقة" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "بيانات الدخول" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "استخدم حقل نص" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "اسم المستخدم" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "اسم السجل" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "لاتغير كلمة السر" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "المصادقة" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password:" msgid "Password Hashing Method" msgstr "كلمة المرور:" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "تم تغيير كلمة المرور لـ %s بنجاح." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "لقد أبطلت الامتيازات لـ %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "إضافة مستخدم" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database export options" msgid "Database for user account" msgstr "خيارات تصدير قاعدة بيانات" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "المستخدمين ذوي صلاحية الوصول إلى \"%s\"" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 #, fuzzy #| msgid "The row has been deleted." msgid "User has been added." msgstr "لقد تم حذف الصف" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "منح" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "المستخدم(ون) لم يتم إيجادهم." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "أي" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "عام" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "خاص بقاعدة بيانات" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "حرف شامل" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "خاص بقاعدة بيانات" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "تحرير الامتيازات" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "إبطال" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "عدل الصف التالي" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… أبق القديم." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… احذف القديم من جداول المستخدمين." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… استعد كل الصلاحيات الفعالة من القديم واحذهم بعد ذلك." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… احذف القديم من جداول المستخدمين وأعد قراءة الصلاحيات بعد ذلك." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "غير معلومات الدخول / انسخ اسم مستخدم" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "أضف اسم مستخدم جديد بنفس الصلاحيات و…" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "صلاحيات خاصة بالحقل" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "احذف المستخدمين المحددين" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "استرجع كل الصلاحيات الفعالة من المستخدمين ثم احذفهم بعد ذلك." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "احذف قواعد البيانات التي لها نفس أسماء المستخدمين." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "إعادة تحميل الأمتيازات" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "تم حذف المستخدمين المحددين بنجاح." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "لقد جددت وحدثت الإمتيازات لـ %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "قيد حذف %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "تم إعادة قراءة الصلاحيات بنجاح." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "اسم المستخدم %s موجود مسبقاً!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "الإمتيازات" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "المستخدم" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "تحرير الامتيازات" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "Users" msgid "User account" msgstr "المستخدمون" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "معلومات المستخدم" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13249,7 +13255,7 @@ msgstr "" "ما تم التعديل عليها يدويا. في هذه الحالة، عليك %s بإعادة قراءة الصلاحيات %s " "قبل أن تكمل." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13268,11 +13274,11 @@ msgstr "" "ما تم التعديل عليها يدويا. في هذه الحالة، عليك %s بإعادة قراءة الصلاحيات %s " "قبل أن تكمل." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "المستخدم المحدد غير موجود في جدول الصلاحيات." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "لقد أضفت مستخدم جديد." diff --git a/po/az.po b/po/az.po index 4876abc38d..8aaa7594ed 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-05-21 01:04+0200\n" "Last-Translator: Sevdimali İsa \n" "Language-Team: Azerbaijani SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -9999,7 +9999,7 @@ msgstr "Data Dump seçimləri" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Sxemi çıxarılan cedvel" @@ -10023,21 +10023,21 @@ msgstr "Tərif" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Cədvəl üçün cədvəl strukturu" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Görünüş strukturu" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10127,7 +10127,7 @@ msgid "Database:" msgstr "Verilənlər Bazası:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "Verilən:" @@ -10225,7 +10225,7 @@ msgid "Data creation options" msgstr "Verilən yaratma seçimləri" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -10294,8 +10294,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10309,81 +10309,88 @@ msgstr "" msgid "Metadata" msgstr "Eksport metodu" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" -msgstr "" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Delete data or table" +msgid "Metadata for table %s" +msgstr "Cədvəl və ya veriləni sil" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Create table on database %s" +msgid "Metadata for database %s" +msgstr "%s bazasında yeni cedvel qur" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Yaradılma:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Ən son yenilənmə:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Ən son yoxlama:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "istifadede" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for dumped tables" msgstr "Inside table(s):" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "Cədvəl üçün indekslər" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT deyeri elave et" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "Cədvəl üçün AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "Cədvəl Əlaqələri" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, 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.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "Verilənlərin oxunması xətası:" @@ -11196,24 +11203,24 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "İstifadəçi adı:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "İstifadəçi adı" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Parol" @@ -11254,45 +11261,45 @@ msgstr "" "şəkildə başlar." #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Hər hansı host" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Yerli" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Bu Host" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Hər hansı istifadəçi" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "Mətn sahəsini istifadə et:" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Host cədvəlini istifadə et" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Yenidən yazın" @@ -12029,7 +12036,7 @@ msgstr "Yox" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "İstifadəçi qrupu" @@ -12100,9 +12107,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12132,14 +12139,14 @@ msgstr "Saxlanan rutinlərin icra edilməsinə icazə verir." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Cədvələ xas səlahiyyətlər" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Qeyd: MySQL səlahiyyət adları ingilis dilində ifadə edilmişdir." @@ -12149,7 +12156,7 @@ msgid "Administration" msgstr "Administrasiya" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Qlobal səlahiyyətlər" @@ -12158,7 +12165,7 @@ msgid "Global" msgstr "Qlobal" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Verilənlər Bazasına Məxsus Səlahiyyətlər" @@ -12170,185 +12177,185 @@ msgstr "Yeni cədvəllər qurmağa icazə verir." msgid "Allows dropping tables." msgstr "Cədvəlləri ləğv etməyə icazə verir." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Authentication" msgid "Native MySQL authentication" msgstr "İdentifikasiya" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "Parolu Dəyişdir" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Authentication" msgid "Native MySQL Authentication" msgstr "İdentifikasiya" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Sistemə Giriş Məlumatı" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Mətn sahəsi istifadə et" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" "Hesab eyni istifadəçi adıyla mövcuddur, ancaq fərqli host adıyla ola bilər." -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name:" msgid "Host name:" msgstr "İstifadəçi adı:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Column names" msgid "Host name" msgstr "Sütun adları" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Parolu dəyişdirmə" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "İdentifikasiya" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password:" msgid "Password Hashing Method" msgstr "Parol:" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "%s üçün parol müvəffəqiyyətlə dəyişdirilmişdir." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "%s üçün səlahiyyətləri geri aldınız." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add user group" msgid "Add user account" msgstr "İstifadəçi qrupları əlavə et" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "İstifadəçi üçün Verilənlər Bazası" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "Eyni adda baza yarat və bütün səlahiyyətləri ver." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "\"%s\" bazasındakı bütün səlahiyyətləri ver." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\" Bazasına girişi olan istifadəçilər" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "İstifadəçi əlavə olundu." -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "İcazə ver" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "İstifadəçiləri göstərmək üçün yetərsiz səlahiyyət." -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "İstifadəçi tapılmadı." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Hər hansı" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "qlobal" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "bazaya xas" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "xüsusi işarə" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "cədvələ xas" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "Səlahiyyətləri redaktə et:" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Geri al" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "İstifadəçi qruplarını redaktə et" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… köhnəsini saxla." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… istifadəçi cədvəllərindən köhnəsini sil." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… köhnə istifadəçinin səlahiyyətlərini əlindən alaraq onu sil." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12356,120 +12363,120 @@ msgstr "" "… Köhnə olanı istifadəçi cədvəllərindən sil və ardından səlahiyyətləri " "yenidən yüklə." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Sistem Giriş Məlumatını Dəyişdir / İstifadəçini Kopyala" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Eyni səlahiyyətlərə sahib yeni istifadəçi yarat və …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Sütuna xas Səlahiyyətlər" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Seçilən istifadəçiləri ləğv et" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "İstifadəçilərdən bütün aktiv səlahiyyətləri geri al və sonra da sil." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "İstifadəçilərlə eyni adlı verilənlər bazalarını ləğv et." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "%s silinir" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "%s istifadeçisi mövcuddur!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "%s üçün səlahiyyətlər" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "İstifadəçi" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "Yeni" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "Səlahiyyətləri redaktə et:" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "User group" msgid "User account" msgstr "İstifadəçi qrupu" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "İstifadəçilərə ümumi baxış" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12482,7 +12489,7 @@ msgstr "" "içərisindəkilər webserver-in istifadə etdiklərindən fərqli ola bilər. Bu " "halda, davam etmədən əvvəl, səlahiyyətləri %syenidən yükləməlisiniz%s." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -12501,11 +12508,11 @@ msgstr "" "içərisindəkilər webserver-in istifadə etdiklərindən fərqli ola bilər. Bu " "halda, davam etmədən əvvəl, səlahiyyətləri %syenidən yükləməlisiniz%s." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Yeni istifadəçi əlavə etdiniz." @@ -17263,9 +17270,6 @@ msgstr "concurrent_insert 0-a konfiqurasiya edilib" #~ msgid "Create Table" #~ msgstr "Yeni Sehife qur" -#~ msgid "Create table on database %s" -#~ msgstr "%s bazasında yeni cedvel qur" - #~ msgid "Data Label" #~ msgstr "Etiket" diff --git a/po/be.po b/po/be.po index 49b5c28c84..05230c000e 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-05-15 14:28+0200\n" "Last-Translator: Viktar Palstsiuk \n" "Language-Team: Belarusian SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10829,7 +10829,7 @@ msgstr "Налады экспарту базы дадзеных" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Дамп дадзеных табліцы" @@ -10855,21 +10855,21 @@ msgstr "Апісаньне" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Структура табліцы" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Структура для прагляду" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Замяняльная структура для прагляду" @@ -10987,7 +10987,7 @@ msgid "Database:" msgstr "База дадзеных" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11103,7 +11103,7 @@ msgid "Data creation options" msgstr "Опцыі пераўтварэньня" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -11172,8 +11172,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11187,86 +11187,93 @@ msgstr "" msgid "Metadata" msgstr "Тып экспарту" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" -msgstr "" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Dumping data for table" +msgid "Metadata for table %s" +msgstr "Дамп дадзеных табліцы" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Create table on database %s" +msgid "Metadata for database %s" +msgstr "Стварыць новую табліцу ў БД %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Створаная:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Апошняе абнаўленьне:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Апошняя праверка:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "выкарыстоўваецца" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Абмежаваньні для экспартаваных табліц" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Абмежаваньні для табліцы" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Абмежаваньні для экспартаваных табліц" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "У табліцы(ах):" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Дадаць значэньне AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Дадаць значэньне AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "MIME-тыпы табліцы" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "Сувязі ў табліцы" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Структура для прагляду" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -12166,7 +12173,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "User name" msgid "User name:" @@ -12174,18 +12181,18 @@ msgstr "Імя карыстальніка" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Імя карыстальніка" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Пароль" @@ -12227,47 +12234,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Любы хост" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Лякальны" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Гэты хост" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Любы карыстальнік" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Выкарыстоўваць тэкставае поле" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Выкарыстоўваць табліцу хостаў" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Пацьверджаньне" @@ -13091,7 +13098,7 @@ msgstr "Няма" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -13165,9 +13172,9 @@ msgstr "" "Абмяжоўвае колькасьць адначасовых злучэньняў, якія можа мець карыстальнік." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -13196,14 +13203,14 @@ msgstr "Дазваляе выкананьне праграмаў, якія за #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Прывілеі, спэцыфічныя для табліцы" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -13215,7 +13222,7 @@ msgid "Administration" msgstr "Адміністраваньне" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Глябальныя прывілеі" @@ -13226,7 +13233,7 @@ msgid "Global" msgstr "глябальны" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Спэцыфічныя прывілеі базы дадзеных" @@ -13238,310 +13245,310 @@ msgstr "Дазваляе ствараць новыя табліцы." msgid "Allows dropping tables." msgstr "Дазваляе выдаляць табліцы." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy msgid "Native MySQL authentication" msgstr "Апаратная аўтэнтыфікацыя скончылася няўдала" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy msgid "SHA256 password authentication" msgstr "Апаратная аўтэнтыфікацыя скончылася няўдала" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy msgid "Native MySQL Authentication" msgstr "Апаратная аўтэнтыфікацыя скончылася няўдала" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Інфармацыя пра ўваход" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Выкарыстоўваць тэкставае поле" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Імя карыстальніка" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Імя логу" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Не зьмяняць пароль" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy msgid "Authentication Plugin" msgstr "Аўтэнтыфікацыя…" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Хэшаваньне паролю" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "Пароль для %s пасьпяхова зьменены." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Вы анулявалі прывілеі для %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Любы карыстальнік" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "База дадзеных для карыстальніка" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" "Стварыць базу дадзеных з такім самым імем і надзяліць усімі прывілеямі." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Надзяліць усімі прывілеямі базы з іменамі па масцы (імя карыстальніка_%)." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, fuzzy, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Праверыць прывілеі для базы \"%s\"." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Карыстальнікі з правамі доступу да \"%s\"" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Выгляд %s быў выдалены" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Grant" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Не знойдзены карыстальнік." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Любы" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "глябальны" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "спэцыфічны для базы дадзеных" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "шаблён" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "спэцыфічны для базы дадзеных" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Рэдагаваць прывілеі" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Ануляваць" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 #, fuzzy msgid "Edit user group" msgstr "Вэб-сэрвэр" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… пакінуць старога." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… выдаліць старога з табліцы карыстальнікаў." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… ануляваць усе актыўныя прывілеі старога і пасьля выдаліць яго." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… выдаліць старога з табліцы карыстальнікаў і пасьля перазагрузіць прывілеі." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Зьмяніць рэгістрацыйную інфармацыю / Капіяваць карыстальніка" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Стварыць новага карыстальніка з такімі ж прывілеямі і …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Спэцыфічныя прывілеі калёнак" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Выдаліць выбраных карыстальнікаў" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Ануляваць усе актыўныя прывілеі карыстальнікаў і пасьля выдаліць іх." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "Выдаліць базы дадзеных, якія маюць такія ж імёны як і карыстальнікі." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "На выбраныя карыстальнікі для выдаленьня!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Перазагрузіць прывілеі" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Выбраныя карыстальнікі былі пасьпяхова выдаленыя." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Вы зьмянілі прывілеі для %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "Выдаленьне %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Прывілеі былі пасьпяхова перазагружаныя." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "Карыстальнік %s ужо існуе!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Прывілеі" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Карыстальнік" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Рэдагаваць прывілеі" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "User" msgid "User account" msgstr "Карыстальнік" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Карыстальнікі" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13554,7 +13561,7 @@ msgstr "" "якія выкарыстоўвае сэрвэр, калі яны былі зьмененыя ўручную. У гэтым выпадку " "вам трэба %sперазагрузіць прывілеі%s да таго, як вы працягнеце." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13573,11 +13580,11 @@ msgstr "" "якія выкарыстоўвае сэрвэр, калі яны былі зьмененыя ўручную. У гэтым выпадку " "вам трэба %sперазагрузіць прывілеі%s да таго, як вы працягнеце." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "Вылучаны карыстальнік ня знойдзены ў табліцы прывілеяў." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Быў дададзены новы карыстальнік." @@ -18983,9 +18990,6 @@ msgstr "максымум адначасовых злучэньняў" #~ msgid "(or the local Drizzle server's socket is not correctly configured)" #~ msgstr "(або сокет лякальнага сэрвэра MySQL не сканфігураваны правільна)" -#~ msgid "Create table on database %s" -#~ msgstr "Стварыць новую табліцу ў БД %s" - #~ msgid "Data Label" #~ msgstr "Метка" diff --git a/po/be@latin.po b/po/be@latin.po index e5476d4aad..1ee408b782 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:22+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Belarusian (latin) SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10887,7 +10887,7 @@ msgstr "Nałady ekspartu bazy dadzienych" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Damp dadzienych tablicy" @@ -10913,21 +10913,21 @@ msgstr "Apisańnie" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Struktura tablicy" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Struktura dla prahladu" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Zamianialnaja struktura dla prahladu" @@ -11045,7 +11045,7 @@ msgid "Database:" msgstr "Baza dadzienych" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11163,7 +11163,7 @@ msgid "Data creation options" msgstr "Opcyi pieraŭtvareńnia" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -11232,8 +11232,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11247,92 +11247,99 @@ msgstr "" msgid "Metadata" msgstr "Typ ekspartu" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" -msgstr "" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Dumping data for table" +msgid "Metadata for table %s" +msgstr "Damp dadzienych tablicy" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Create table on database %s" +msgid "Metadata for database %s" +msgstr "Stvaryć novuju tablicu ŭ BD %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 #, fuzzy #| msgid "Creation" msgid "Creation:" msgstr "Stvoranaja" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 #, fuzzy #| msgid "Last update" msgid "Last update:" msgstr "Apošniaje abnaŭleńnie" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 #, fuzzy #| msgid "Last check" msgid "Last check:" msgstr "Apošniaja pravierka" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "vykarystoŭvajecca" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Abmiežavańni dla ekspartavanych tablic" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Abmiežavańni dla tablicy" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Abmiežavańni dla ekspartavanych tablic" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "U tablicy(ach):" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Dadać značeńnie AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Dadać značeńnie AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "MIME-typy tablicy" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "Suviazi ŭ tablicy" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Struktura dla prahladu" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -12234,7 +12241,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "User name" msgid "User name:" @@ -12242,18 +12249,18 @@ msgstr "Imia karystalnika" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Imia karystalnika" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Parol" @@ -12294,47 +12301,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Luby chost" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Lakalny" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Hety chost" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Luby karystalnik" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Vykarystoŭvać tekstavaje pole" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Vykarystoŭvać tablicu chostaŭ" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Paćvierdžańnie" @@ -13161,7 +13168,7 @@ msgstr "Nijakaja" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -13235,9 +13242,9 @@ msgstr "" "Abmiažoŭvaje kolkaść adnačasovych złučeńniaŭ, jakija moža mieć karystalnik." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -13266,14 +13273,14 @@ msgstr "Dazvalaje vykanańnie pragramaŭ, jakija zachoŭvajucca." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Pryvilei, specyfičnyja dla tablicy" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -13285,7 +13292,7 @@ msgid "Administration" msgstr "Administravańnie" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Hlabalnyja pryvilei" @@ -13296,7 +13303,7 @@ msgid "Global" msgstr "hlabalny" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Specyfičnyja pryvilei bazy dadzienych" @@ -13308,316 +13315,316 @@ msgstr "Dazvalaje stvarać novyja tablicy." msgid "Allows dropping tables." msgstr "Dazvalaje vydalać tablicy." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Authenticating…" msgid "Native MySQL authentication" msgstr "Aŭtentyfikacyja…" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Authenticating…" msgid "SHA256 password authentication" msgstr "Aŭtentyfikacyja…" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Authenticating…" msgid "Native MySQL Authentication" msgstr "Aŭtentyfikacyja…" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Infarmacyja pra ŭvachod" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Vykarystoŭvać tekstavaje pole" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Imia karystalnika" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Imia łogu" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Nie źmianiać parol" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Authenticating…" msgid "Authentication Plugin" msgstr "Aŭtentyfikacyja…" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Chešavańnie parolu" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "Parol dla %s paśpiachova źmienieny." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Vy anulavali pryvilei dla %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Luby karystalnik" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Baza dadzienych dla karystalnika" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" "Stvaryć bazu dadzienych z takim samym imiem i nadzialić usimi pryvilejami." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Nadzialić usimi pryvilejami bazy z imienami pa mascy (imia karystalnika_%)." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Karystalniki z pravami dostupu da \"%s\"" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Vyhlad %s byŭ vydaleny" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Grant" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nie znojdzieny karystalnik." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Luby" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "hlabalny" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "specyfičny dla bazy dadzienych" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "šablon" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "specyfičny dla bazy dadzienych" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Redagavać pryvilei" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Anulavać" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "Redagavać nastupny radok" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… pakinuć staroha." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… vydalić staroha z tablicy karystalnikaŭ." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… anulavać usie aktyŭnyja pryvilei staroha i paśla vydalić jaho." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… vydalić staroha z tablicy karystalnikaŭ i paśla pierazahruzić pryvilei." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Źmianić rehistracyjnuju infarmacyju / Kapijavać karystalnika" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Stvaryć novaha karystalnika z takimi ž pryvilejami i …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Specyfičnyja pryvilei kalonak" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Vydalić vybranych karystalnikaŭ" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Anulavać usie aktyŭnyja pryvilei karystalnikaŭ i paśla vydalić ich." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" "Vydalić bazy dadzienych, jakija majuć takija ž imiony jak i karystalniki." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "Na vybranyja karystalniki dla vydaleńnia!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Pierazahruzić pryvilei" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Vybranyja karystalniki byli paśpiachova vydalenyja." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Vy źmianili pryvilei dla %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "Vydaleńnie %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Pryvilei byli paśpiachova pierazahružanyja." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "Karystalnik %s užo isnuje!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Pryvilei" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Karystalnik" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Redagavać pryvilei" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "User" msgid "User account" msgstr "Karystalnik" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Karystalniki" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13630,7 +13637,7 @@ msgstr "" "jakija vykarystoŭvaje server, kali jany byli źmienienyja ŭručnuju. U hetym " "vypadku vam treba %spierazahruzić pryvilei%s da taho, jak vy praciahniecie." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13649,11 +13656,11 @@ msgstr "" "jakija vykarystoŭvaje server, kali jany byli źmienienyja ŭručnuju. U hetym " "vypadku vam treba %spierazahruzić pryvilei%s da taho, jak vy praciahniecie." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "Vyłučany karystalnik nia znojdzieny ŭ tablicy pryvilejaŭ." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Byŭ dadadzieny novy karystalnik." @@ -19042,9 +19049,6 @@ msgstr "maksymum adnačasovych złučeńniaŭ" #~ msgid "(or the local Drizzle server's socket is not correctly configured)" #~ msgstr "(abo sokiet lakalnaha servera MySQL nie skanfihuravany pravilna)" -#~ msgid "Create table on database %s" -#~ msgstr "Stvaryć novuju tablicu ŭ BD %s" - #~ msgid "Data Label" #~ msgstr "Mietka" diff --git a/po/bg.po b/po/bg.po index 2683e13c00..2779cc9304 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-06-28 13:36+0200\n" "Last-Translator: Valter Georgiev \n" "Language-Team: Bulgarian за да изберете к #: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3802 +#: libraries/server_privileges.lib.php:3795 msgid "Show all" msgstr "Показване на всички" @@ -3031,10 +3031,10 @@ msgstr "Подзаявка" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3134 -#: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:3307 -#: libraries/server_privileges.lib.php:4563 +#: libraries/server_privileges.lib.php:3128 +#: libraries/server_privileges.lib.php:3299 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:4556 #: libraries/server_status_processes.lib.php:84 #: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 @@ -3606,7 +3606,7 @@ msgstr "Може да има приблизителна стойност. Виж #: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:656 +#: libraries/controllers/table/TableSearchController.php:645 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -3799,8 +3799,8 @@ msgstr "Индекси" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2611 -#: libraries/server_privileges.lib.php:3529 +#: libraries/server_privileges.lib.php:2605 +#: libraries/server_privileges.lib.php:3522 #: libraries/server_user_groups.lib.php:83 #: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 @@ -3913,10 +3913,10 @@ msgstr "Изглед" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3152 -#: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:3313 -#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/server_privileges.lib.php:3146 +#: libraries/server_privileges.lib.php:3305 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4570 libraries/tracking.lib.php:1489 #: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:26 @@ -3955,8 +3955,8 @@ msgstr "Вмъкване" #: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 #: libraries/Util.php:4363 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:4452 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2603 +#: libraries/server_privileges.lib.php:4445 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Права" @@ -3979,7 +3979,7 @@ msgstr "Проследяване" #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1989 +#: libraries/plugins/export/ExportSql.php:2001 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4022,7 +4022,7 @@ msgstr "Колони в текство поле" #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4556 msgid "Databases" msgstr "БД" @@ -8312,19 +8312,19 @@ msgstr "Нишка %s беше успешно спряна." msgid "Internal relations were successfully updated." msgstr "Добавена е вътрешна релация" -#: libraries/controllers/table/TableSearchController.php:841 +#: libraries/controllers/table/TableSearchController.php:830 #, fuzzy #| msgid "Table Search" msgid "Table search" msgstr "Търсене в таблица" -#: libraries/controllers/table/TableSearchController.php:848 +#: libraries/controllers/table/TableSearchController.php:837 #, fuzzy #| msgid "Range search" msgid "Zoom search" msgstr "Търсене в област" -#: libraries/controllers/table/TableSearchController.php:853 +#: libraries/controllers/table/TableSearchController.php:842 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "Hide find and replace criteria" @@ -8427,20 +8427,20 @@ msgstr "" #: libraries/display_change_password.lib.php:64 #: libraries/replication_gui.lib.php:879 -#: libraries/server_privileges.lib.php:1839 +#: libraries/server_privileges.lib.php:1835 msgid "No Password" msgstr "Без парола" #: libraries/display_change_password.lib.php:72 #: libraries/plugins/auth/AuthenticationCookie.php:203 #: libraries/replication_gui.lib.php:426 libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1811 msgid "Password:" msgstr "Парола:" #: libraries/display_change_password.lib.php:78 #: libraries/replication_gui.lib.php:890 -#: libraries/server_privileges.lib.php:1857 +#: libraries/server_privileges.lib.php:1853 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -8454,7 +8454,7 @@ msgid "Password Hashing:" msgstr "Хеширане на паролата" #: libraries/display_change_password.lib.php:122 -#: libraries/server_privileges.lib.php:1903 +#: libraries/server_privileges.lib.php:1898 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10541,7 +10541,7 @@ msgstr "Опции при експортиране на данните" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Схема на данните от таблица" @@ -10565,21 +10565,21 @@ msgstr "Описание" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Структура на таблица" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10685,7 +10685,7 @@ msgid "Database:" msgstr "БД" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10792,7 +10792,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -10881,8 +10881,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10896,86 +10896,92 @@ msgstr "" msgid "Metadata" msgstr "Заглавки на метаданните" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, fuzzy, php-format #| msgid "Metadata Headers" -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "Заглавки на метаданните" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Metadata Headers" +msgid "Metadata for database %s" +msgstr "Заглавки на метаданните" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Създаване:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Последно обновяване:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Последна проверка:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "ползва се в момента" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Ограничения за дъмпнати таблици" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Ограничения за таблица" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Ограничения за дъмпнати таблици" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "В таблици:" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "Да не се използва AUTO_INCREMENT за нулеви стойности" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Добавяне AUTO_INCREMENT стойност" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "MIME ТИПОВЕ ЗА ТАБЛИЦА" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "РЕЛАЦИИ ЗА ТАБЛИЦА" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "Грешка при четене на данни:" @@ -11839,7 +11845,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11847,18 +11853,18 @@ msgstr "Потребителско име" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Потребителско име" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Парола" @@ -11901,47 +11907,47 @@ msgstr "" "списък." #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Всеки хост" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Локален" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Този Хост" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Всеки потребител" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "От текстовото поле" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "От таблица Host" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Отново" @@ -12708,7 +12714,7 @@ msgstr "Няма" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12783,9 +12789,9 @@ msgstr "" "отворени." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12814,14 +12820,14 @@ msgstr "Позволява изпълнение на съхранени проц #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Специфични за таблицата права" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -12833,7 +12839,7 @@ msgid "Administration" msgstr "Администрация" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Глобални права" @@ -12844,7 +12850,7 @@ msgid "Global" msgstr "глобален" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Специфични за БД права" @@ -12856,188 +12862,188 @@ msgstr "Позволява създаване на нови таблици." msgid "Allows dropping tables." msgstr "Позволява изтриване на таблици." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Удостоверяване чрез бисквитка" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "Смяна на паролата" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL Authentication" msgstr "Удостоверяване чрез бисквитка" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Информация за логване" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "От текстовото поле" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Потребителско име" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Име на дневник" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Да не се сменя паролата" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "Удостоверяване" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Хеширане на паролата" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "Паролата на %s беше променена успешно." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Вие отменихте правата на %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Нов потребител" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "БД за потребителя" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "Създаване на БД със същото име и даване на пълни права." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Даване на всички привилегии на име с маска (username\\_%)." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Даване на пълни права над БД \"%s\"." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Потребители с достъп до \"%s\"" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "Потребител беше добавен." -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Дадени" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "Няма потребител." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Всеки" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "глобален" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "специфични за БД" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "знак за заместване" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "специфични за БД" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Редакция" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Отменяне" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Редакция сървър" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… запазване на стария." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… изтриване на стария от таблицата с потребители." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… отмяна на всички права от стария и след това изтриване." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -13045,122 +13051,122 @@ msgstr "" "… изтриване на стария от таблицата с потребители и след това презареждане на " "правата." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Промяна информацията за вход / Копиране потребител" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Създаване нов потребител със същите права и …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Специфични за колоната права" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Отстраняване избраните потребители" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Отмяна на всички права на потребителите и след това изтриване." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "Изтриване на БД, които имат имена като тези на потребителите." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "Не за избрани потребители за изтриване!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Презареждане на правата" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Избраните потребители бяха изтрити успешно." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Вие променихте правата на %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "Изтриване на %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Правата бяха презаредени успешно." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "Потребител %s вече съществува!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "Права на %s" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Потребител" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 #, fuzzy #| msgid "New" msgctxt "Create new user" msgid "New" msgstr "Нов" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Редакция" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "Users" msgid "User account" msgstr "Потребители" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "Преглед потребители" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13173,7 +13179,7 @@ msgstr "" "правата които използва сървъра ако към него са направени промени на ръка. В " "този случай, трябва да %sпрезаредите правата%s преди да продължите." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13192,11 +13198,11 @@ msgstr "" "правата които използва сървъра ако към него са направени промени на ръка. В " "този случай, трябва да %sпрезаредите правата%s преди да продължите." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "Избраният потребител не беше открит в таблицата с права." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Вие добавихте нов потребител." diff --git a/po/bn.po b/po/bn.po index 61f22a9080..6323f877c4 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:44+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Bengali SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10578,7 +10578,7 @@ msgstr "তথ্য স্তুপের অপশন" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "টেবলের জন্য তথ্য স্তুপ করছি" @@ -10602,21 +10602,21 @@ msgstr "সংজ্ঞা" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "টেবলের জন্য টেবলের গঠন" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "ভিউ এর গঠন" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "দর্শনের বর্তমান গঠন" @@ -10706,7 +10706,7 @@ msgid "Database:" msgstr "ডাটাবেইজ:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "ডাটা:" @@ -10810,7 +10810,7 @@ msgid "Data creation options" msgstr "তথ্য তৈরীর অপশন" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "ইনার্সটের পুর্বে টেবল খালি কর" @@ -10895,8 +10895,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10910,78 +10910,84 @@ msgstr "" msgid "Metadata" msgstr "%s এর তথ্য নাই" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, fuzzy, php-format #| msgid "Missing data for %s" -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "%s এর তথ্য নাই" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Missing data for %s" +msgid "Metadata for database %s" +msgstr "%s এর তথ্য নাই" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "প্রস্তুত:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "সর্বশেষ আপডেট:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "সর্বশেষ যাচাই:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "ব্যবহৃত" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "স্তুপকৃত টেবলের সীমবদ্ধতা" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "টেবলের সীমবদ্ধতা" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "স্তুপকৃত টেবলের ইনডেক্স" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "টেবিলের ইনডেক্সসমুহ" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "স্তুপকৃত টেবলের জন্য স্বয়ক্রীয় বর্দ্ধিত মান (AUTO_INCREMENT)" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "টেবলের জন্য স্বয়ক্রীয় বর্দ্ধিত মান (AUTO_INCREMENT)" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "টেবিলের মাইমের ধরন" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "টেবিলের সর্ম্পক" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "ভিউ এর গঠন %s টেবলে রফতানী করা হয়েছে" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "তথ্য পড়ার ভুল:" @@ -11865,24 +11871,24 @@ msgstr "" "নিন্মের লাইনগুলো [mysqld] অংশে যোগ করুন:" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "ব্যাবহারকারীর নাম:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "ব্যবহারকারীর নাম" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "পাসওর্য়াড" @@ -11921,38 +11927,38 @@ msgid "" msgstr "শুধু সহায়কটি --report-host=host_name সহ আরম্ভ হয়েছে।" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "যে কোন হোষ্ট" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "স্থানীয়" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "এই হোষ্ট" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "যে কোন ব্যবহারকারী" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "আক্ষরিক ক্ষেত্র ব্যবহার কর:" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "হোষ্ট টেবল ব্যবহার কর" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11961,7 +11967,7 @@ msgstr "" "রক্ষিত মানসমূহ ব্যবহার করা হবে।" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "পুনরায় লিখুন" @@ -12710,7 +12716,7 @@ msgstr "কিছু না" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "ব্যাবহারকারীর দল" @@ -12780,9 +12786,9 @@ msgstr "" "এই ব্যবহারকারী একই সংগে কতগুলো সংযোগ ব্যবহার করতে পারবে তার পরিমান নির্ধারন করন।" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12809,14 +12815,14 @@ msgstr "মজুদকৃত রুটিন ব্যবহারের অন #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "টেবিলের নির্দিষ্ট অধিকার" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -12828,7 +12834,7 @@ msgid "Administration" msgstr "প্রশাসন" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "সর্বময় অধিকারসমূহ" @@ -12837,7 +12843,7 @@ msgid "Global" msgstr "সর্বময়" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "ডাটাবেইজ নির্ধারিত অধিকারসমূহ" @@ -12849,303 +12855,303 @@ msgstr "নতুন টেবল তৈরীর অনুমোদন।" msgid "Allows dropping tables." msgstr "টেবিল মুছার অনুমোদন।" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "কুকি প্রমাণীকরণ" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "সাইনঅন প্রমাণীকরণ" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL Authentication" msgstr "কুকি প্রমাণীকরণ" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "লগইন তথ্যাবলী" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "আক্ষরীক ক্ষেত্র ব্যবহার করুন" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name:" msgid "Host name:" msgstr "ব্যাবহারকারীর নাম:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "লগের নাম" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "পাসওর্য়াডটি পরিবর্তন করবেন না" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "প্রমাণীকরণ" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Password Hashing" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "%s এর পাসওর্য়াডটি সফলভাবে পরিবর্তন করা হয়েছে।" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "%s অধিকার সমূহ বাতিল করা হয়েছে।" -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add user group" msgid "Add user account" msgstr "ব্যবহারকারীর দল যোগ কর" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "ব্যবহারকারীর ডাটাবেইজ" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "একই নামে ডাটাবেইজ তৈরী কর এবং সব অধীকার দাও।" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "সমস্ত অধিকার সব ব্যবহারকারীকে দাও (username\\_%)।" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "\"%s\" ডাটাবেইজে সমস্ত অধিকার দাও।" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "ব্যবহারকারীরা \"%s\" প্রবেশাধীকার পাবে" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "ব্যবহারকারী যোগ করা হয়েছে।" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "অনুমোদন" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "ব্যবহারকারী নাই।" -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "যে কোন" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "সর্বময়" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "নির্দিষ্ট ডাটবেইজে" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "ওয়াইল্ডকার্ড" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "নির্দিষ্ট টেবলে" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "সুবিধাসমূহ সম্পাদনা:" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "বাতিল" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "ব্যবহারকারী দল সম্পাদনা" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… পুরাতনটি রাখ।" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… ব্যবহারকারী টেবল থেকে পুরাতনটি মুছে ফেল।" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… পুরাতন সমস্ত অধিকার বাতিল কর এবং পরবর্তীগুলো মুছে ফেল।" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "পুরাতনটি ব্যবহারকারী টেবল থেকে মুছে ফেল এবং অধিকারগুলো পুনারায় চালু কর।" -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "লগইন তথ্য পরিবর্তন/ব্যবহারকারীর অনুলিপি" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "একই অধিকারসহ একজন নতুন ব্যবহারকারী তৈরী কর এবং…" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "স্বম্ভ সম্পকির্ত অধিকার" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "নির্বাচিত ব্যবহারকারীদের মুছ" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "এই ব্যবহারকারীদের অধিকার বাতিল কর এবং মুছে ফেল।" -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "এই ব্যবহারকারীর নামের সাথে মিল আছে এমন সব ডাটাবেইজ মুছে ফেল।" -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "মুছার জন্য কোন ব্যবহারকারী নির্বাচন করা হয়নি!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "অধিকারসমূহ পুনরায় পূর্ণ করা হয়েছে" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "নির্বাচিত ব্যবহরকারীগনকে সফলভাবে মুছা হয়েছে।" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "%s এর অধীকার সমূহ আধুনিকায়ন করা হয়েছে।" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "%s মুছছি" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "অধিকারসমূহ সফলভাবে পুনরায় পূর্ণকরা হয়েছে।" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "ব্যবহারকারী %s পূর্ব থেকেই আছে!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "%s এর অধিকারসমূহ" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "ব্যবহারকারী" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "নতুন" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "সুবিধাসমূহ সম্পাদনা:" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "User group" msgid "User account" msgstr "ব্যাবহারকারীর দল" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "একনজরে ব্যবহারকারীগণ" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13158,7 +13164,7 @@ msgstr "" "হতে পারে যদি তা পরিবর্তীত হয়ে থাকে। এরুপ ক্ষেত্রে %sreload the privileges%s করতে " "হবে।" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13177,11 +13183,11 @@ msgstr "" "হতে পারে যদি তা পরিবর্তীত হয়ে থাকে। এরুপ ক্ষেত্রে %sreload the privileges%s করতে " "হবে।" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "অধিকার টেবিলে এই ব্যবহারকারী সর্ম্পকে কোন তথ্য নাই।" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "একজন নতুন ব্যবহারকারী যোগ করেছেন।" diff --git a/po/br.po b/po/br.po index ac8ced3ccf..e475566829 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2014-03-28 11:07+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Breton SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10604,7 +10604,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -10628,21 +10628,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10746,7 +10746,7 @@ msgid "Database:" msgstr "Diaz roadennoù" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10855,7 +10855,7 @@ msgid "Data creation options" msgstr "Dibarzhioù diskwel an diazoù roadennoù" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -10924,8 +10924,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10939,86 +10939,92 @@ msgstr "" msgid "Metadata" msgstr "Roadennoù a vank evit %s" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, fuzzy, php-format #| msgid "Missing data for %s" -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "Roadennoù a vank evit %s" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Missing data for %s" +msgid "Metadata for database %s" +msgstr "Roadennoù a vank evit %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Krouiñ :" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Hizivadenn ziwezhañ :" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Gwiriet da ziwezhañ :" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "en implij" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for dumped tables" msgstr "E diabarzh an taolennoù :" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "E diabarzh an taolennoù :" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "Arabat ober gant AUTO_INCREMENT evit an talvoudoù par da mann" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Ouzhpennañ talvoud an AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "" @@ -11814,7 +11820,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "Username:" msgid "User name:" @@ -11822,18 +11828,18 @@ msgstr "Anv implijer :" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "" @@ -11872,47 +11878,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 #, fuzzy #| msgid "Text fields" msgid "Use text field:" msgstr "Maeziennoù testenn" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "" @@ -12690,7 +12696,7 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12757,9 +12763,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Edit routine" @@ -12782,14 +12788,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -12799,7 +12805,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "" @@ -12808,7 +12814,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "" @@ -12820,296 +12826,296 @@ msgstr "" msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Authentication" msgid "Native MySQL authentication" msgstr "Dilesadur" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Change Password" msgid "SHA256 password authentication" msgstr "Cheñch ger-tremen" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Authentication" msgid "Native MySQL Authentication" msgstr "Dilesadur" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "Username:" msgid "Host name:" msgstr "Anv implijer :" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Add constraints" msgid "Host name" msgstr "Ouzhpennañ ar strishadurioù" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "Dilesadur" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password:" msgid "Password Hashing Method" msgstr "Ger-tremen :" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Ouzhpennañ un implijer" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Databases display options" msgid "Database for user account" msgstr "Dibarzhioù diskwel an diazoù roadennoù" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Reloading Privileges" msgid "Edit privileges" msgstr "Oc'h adkargañ an dreistgwirioù" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Check Privileges" msgid "Routine-specific privileges" msgstr "Gwiriañ ar gwirioù" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Removing Selected Users" msgid "Remove selected user accounts" msgstr "O lemel kuit an implijerien diuzet" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, fuzzy, php-format #| msgid "Check Privileges" msgid "Privileges for %s" msgstr "Gwiriañ ar gwirioù" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Reloading Privileges" msgid "Edit privileges:" msgstr "Oc'h adkargañ an dreistgwirioù" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13118,7 +13124,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -13127,11 +13133,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "" diff --git a/po/brx.po b/po/brx.po index 226fc55953..c82cab51a3 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-09-04 09:33+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Bodo SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -9502,7 +9502,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -9526,21 +9526,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -9630,7 +9630,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "" @@ -9722,7 +9722,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -9791,8 +9791,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9804,77 +9804,82 @@ msgstr "" msgid "Metadata" msgstr "" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, php-format -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, php-format +msgid "Metadata for database %s" +msgstr "" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "" @@ -10613,24 +10618,24 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "" @@ -10669,45 +10674,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "" @@ -11415,7 +11420,7 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -11478,9 +11483,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" @@ -11501,14 +11506,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11518,7 +11523,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "" @@ -11527,7 +11532,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "" @@ -11539,269 +11544,269 @@ msgstr "" msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 msgid "SHA256 password authentication" msgstr "" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 msgid "Native MySQL Authentication" msgstr "" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 msgid "Host name:" msgstr "" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 msgid "Host name" msgstr "" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 msgid "Authentication Plugin" msgstr "" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 msgid "Database for user account" msgstr "" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 msgid "Remove selected user accounts" msgstr "" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11810,7 +11815,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11819,11 +11824,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "" diff --git a/po/bs.po b/po/bs.po index aa1dc74d2e..9bdedbb603 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:31+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Bosnian SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10526,7 +10526,7 @@ msgstr "Opcije za izvoz baze" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Prikaz podataka tabele" @@ -10553,14 +10553,14 @@ msgstr "Opis" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Struktura tabele" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 #, fuzzy msgid "Structure for view" @@ -10568,7 +10568,7 @@ msgstr "Samo struktura" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10680,7 +10680,7 @@ msgid "Database:" msgstr "Baza podataka" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10793,7 +10793,7 @@ msgid "Data creation options" msgstr "Opcije transformacije" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -10862,8 +10862,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10877,91 +10877,98 @@ msgstr "" msgid "Metadata" msgstr "Izvoz" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" -msgstr "" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Dumping data for table" +msgid "Metadata for table %s" +msgstr "Prikaz podataka tabele" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Create table on database %s" +msgid "Metadata for database %s" +msgstr "Napravi novu tabelu u bazi %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 #, fuzzy #| msgid "Creation" msgid "Creation:" msgstr "Napravljeno" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 #, fuzzy #| msgid "Last update" msgid "Last update:" msgstr "Posljednja izmjena" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 #, fuzzy #| msgid "Last check" msgid "Last check:" msgstr "Posljednja provjera" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "se koristi" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for dumped tables" msgstr "Unutar tabela:" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "Unutar tabela:" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Dodaj AUTO_INCREMENT vrijednost" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Dodaj AUTO_INCREMENT vrijednost" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Samo struktura" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11809,7 +11816,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11817,18 +11824,18 @@ msgstr "Ime korisnika" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Ime korisnika" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Lozinka" @@ -11869,47 +11876,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Bilo koji host" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Lokalni" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Ovaj server" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Bilo koji korisnik" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Koristi tekst polje" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Koristi tabelu hosta" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Ponovite unos" @@ -12706,7 +12713,7 @@ msgstr "nema" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12776,9 +12783,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Add new field" @@ -12805,14 +12812,14 @@ msgstr "Dozvoljava kreiranje novih tabela." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Privilegije vezane za tabele" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -12824,7 +12831,7 @@ msgid "Administration" msgstr "Administracija" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Globalne privilegije" @@ -12835,7 +12842,7 @@ msgid "Global" msgstr "globalno" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Privilegije vezane za bazu" @@ -12847,309 +12854,309 @@ msgstr "Dozvoljava kreiranje novih tabela." msgid "Allows dropping tables." msgstr "Dozvoljava odbacivanje tabela." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Documentation" msgid "Native MySQL authentication" msgstr "Dokumentacija" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "Promeni lozinku" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Documentation" msgid "Native MySQL Authentication" msgstr "Dokumentacija" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Podatci o prijavi" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Koristi tekst polje" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Ime korisnika" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Column names" msgid "Host name" msgstr "Imena kolona" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Nemoj da mijenjaš lozinku" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Documentation" msgid "Authentication Plugin" msgstr "Dokumentacija" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password:" msgid "Password Hashing Method" msgstr "Lozinka:" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "Lozinka za %s je uspješno promjenjena." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Zabranili ste privilegije za %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Bilo koji korisnik" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database export options" msgid "Database for user account" msgstr "Opcije za izvoz baze" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, fuzzy, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Provjeri privilegije za bazu \"%s\"." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Korisnici koji imaju pristup \"%s\"" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 #, fuzzy msgid "User has been added." msgstr "Polje %s je obrisano" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Omogući" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Korisnik nije nađen." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Bilo koji" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "globalno" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "Specifično za bazu" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "Džoker" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Specifično za bazu" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Promijeni privilegije" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Zabrani" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… sačuvaj stare." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… obriši stare iz tabela korisnika." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… obustavi sve privilegije starog korisnika i zatim ga obriši." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… obriši starog iz tabele korisnika i zatim ponovo učitaj privilegije." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Promeni informacije o prijavi / Kopiraj korisnika" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Napravi novog korisnika sa istim privilegijama i …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Privilegije vezane za kolone" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Ukloni izabrane korisnike" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Obustavi sve aktivne privilegije korisnika i zatim ih obriši." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "Odbaci baze koje se zovu isto kao korisnici." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Ponovo učitavam privilegije" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Izabrani korisnici su uspješno obrisani." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Ažurirali ste privilegije za %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "Brišem %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspešno ponovo učitane." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "Korisnik %s već postoji!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilegije" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Korisnik" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Promijeni privilegije" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "User" msgid "User account" msgstr "Korisnik" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Pregled korisnika" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13162,7 +13169,7 @@ msgstr "" "server koristi ako su izvršene ručne izmjene. U tom slučaju %sponovo " "učitajte privilegije%s pre nego što nastavite." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13181,11 +13188,11 @@ msgstr "" "server koristi ako su izvršene ručne izmjene. U tom slučaju %sponovo " "učitajte privilegije%s pre nego što nastavite." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Dodali ste novog korisnika." @@ -18127,9 +18134,6 @@ msgstr "" #~ msgid "Create Table" #~ msgstr "Napravi novu stranu" -#~ msgid "Create table on database %s" -#~ msgstr "Napravi novu tabelu u bazi %s" - #~ msgid "Data Label" #~ msgstr "Naziv" diff --git a/po/ca.po b/po/ca.po index 5cfa0e27d2..0bb7a51689 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-09-28 16:49+0200\n" "Last-Translator: Xavier Navarro \n" "Language-Team: Catalan SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10236,7 +10236,7 @@ msgstr "Opcions de bolcat de dades" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Bolcant dades de la taula" @@ -10260,21 +10260,21 @@ msgstr "Definició" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Estructura de la taula" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Estructura per a vista" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Estructura de suport per a vistes" @@ -10365,7 +10365,7 @@ msgid "Database:" msgstr "Base de dades:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "Dades:" @@ -10466,7 +10466,7 @@ msgid "Data creation options" msgstr "Opcions de creació de dades" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "Truncar taula abans d'inserir" @@ -10549,8 +10549,8 @@ msgstr "Sembla que la teva base de dades fa servir procediments;" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "exportar els àlies podria no funcionar correctament en tots els casos." @@ -10562,77 +10562,84 @@ msgstr "Sembla que la teva base de dades fa servir funcions;" msgid "Metadata" msgstr "Metadades" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "Metadades per a %s" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for database %s" +msgstr "Metadades per a %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Creació:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Darrera actualització:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Darrera comprovació:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "en ús" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "Sembla que la teva base de dades fa servir vistes;" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Restriccions per taules bolcades" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Restriccions per la taula" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "Indexos per taules bolcades" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "Index de la taula" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT per les taules bolcades" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT per la taula" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "TIPUS MIME PER LA TAULA" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "RELACIONS DE LA TAULA" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "Sembla que la teva base de dades fa servir disparadors (-triggers-);" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, 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.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "Error llegint dades:" @@ -11487,24 +11494,24 @@ msgstr "" "configuració (my.cnf). Si no, afegeix la línia següent a la secció [mysqld] :" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "Nom d'usuari:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Nom d'usuari" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Contrasenya" @@ -11545,38 +11552,38 @@ msgstr "" "mostren en aquesta llista." #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Qualsevol servidor" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Local" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Aquest Host" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Qualsevol usuari" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "Usa camp de text:" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Utilitza la Taula de Hosts" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11585,7 +11592,7 @@ msgstr "" "valors enmagatzemats a la taula Host en lloc seu." #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Reescriu" @@ -12312,7 +12319,7 @@ msgstr "Cap" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Grup d'usuari" @@ -12383,9 +12390,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Límita el nombre de connexions simultànies que l'usuari pot tenir." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Rutina" @@ -12408,14 +12415,14 @@ msgstr "Permet executar aquesta rutina." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Permisos especifics de taula" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Nota: Els noms dels privilegis del MySQL són en idioma anglès." @@ -12425,7 +12432,7 @@ msgid "Administration" msgstr "Administració" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Permisos generals" @@ -12434,7 +12441,7 @@ msgid "Global" msgstr "Global" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Permisos específics de base de dades" @@ -12446,37 +12453,37 @@ msgstr "Permet crear noves taules." msgid "Allows dropping tables." msgstr "Permet eliminar taules." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Autenticació per cookies" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "autenticació Signon" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL Authentication" msgstr "Autenticació per cookies" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Informació d'Identificació" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Usa camp de text" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12484,226 +12491,226 @@ msgstr "" "Ja existeix un compte amb el mateix nom d'usuari però possiblement amb nom " "de servidor diferent." -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 msgid "Host name:" msgstr "Nom de servidor:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 msgid "Host name" msgstr "Nom de servidor" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "No canviïs la contrasenya" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 msgid "Authentication Plugin" msgstr "Complement d'autenticació" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "Contrasenya Hashing:" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "La contrasenya per %s s'ha canviat correctament." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Has tret els permisos per %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 msgid "Add user account" msgstr "Afegir compte d'usuari" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 msgid "Database for user account" msgstr "Base de dades per al compte d'usuari" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "Crea una base de dades amb el mateix nom i atorga tots els permisos." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Atorga tots els permisos en un nom comodí (nomusuari\\_%)." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Atorga tots els permisos a la base de dades \"%s\"." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Usuaris amb accés a \"%s\"" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "Usuari afegit." -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Atorga" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "Permisos insuficients per veure usuaris." -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "No s'han trobat usuaris." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Qualsevol" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "específic de la base de dades" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "comodins" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "específic de la taula" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 msgid "Edit privileges" msgstr "Edita permisos" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Treu" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "Editar grup d'usuari" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… respecta l'antic." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… esborra l'antic de les taules d'usuaris." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… treu tots els permisos actius de l'antic i esborra'l després." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… esborra l'antic de les taules d'usuaris i recarrega els permisos després." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "Canvi d'Informació de connexió / Copiar el compte d'usuari" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "Crea un nou compte d'usuari amb els mateixos permisos i …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Permisos específics de rutina" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 msgid "Remove selected user accounts" msgstr "Treu els comptes d'usuaris triats" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Treu tots els permisos actius dels usuaris i els esborra després." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" "Esborra les bases de dades que tenen els mateixos noms que els usuaris." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "No s'han triat usuaris per esborrar!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Recarregant permisos" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "S'han esborrat correctament els usuaris triats." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Heu actualitzat els permisos de %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "Esborrant %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Els permisos s'han recarregat correctament." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "L'usuari %s ja existeix!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "Permisos per a %s" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Usuari" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "Nou" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 msgid "Edit privileges:" msgstr "Edita permisos:" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "Compte d'usuari" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12711,11 +12718,11 @@ msgstr "" "Nota: estàs intentant editar els permisos de l'usuari amb el que has iniciat " "la sessió actual." -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "Vista global de comptes d'usuari" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " @@ -12725,7 +12732,7 @@ msgstr "" "connectar-se. Això evita que altres usuaris es connectin si la part del host " "del seu compte permet una connexió des de qualsevol host (%)." -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12738,7 +12745,7 @@ msgstr "" "permisos que utilitza el servidor si s'han fet canvis manualment. En aquest " "cas, es necessari %srecarregar els permisos%s abans de continuar." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12752,11 +12759,11 @@ msgstr "" "cas, es necessari recarregar els permisos però, actualment, tu no tens el " "permís de RELOAD." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "No s'ha trobat l'usuari triat a la taula de permisos." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Has afegit un usuari nou." diff --git a/po/ckb.po b/po/ckb.po index dbad0c5b4e..1b4b50a978 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-09-14 09:27+0200\n" "Last-Translator: muhammad \n" "Language-Team: Kurdish Sorani SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10073,7 +10073,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -10097,21 +10097,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10209,7 +10209,7 @@ msgid "Database:" msgstr "بنکەی دراو" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Database" msgid "Data:" @@ -10310,7 +10310,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -10379,8 +10379,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10394,83 +10394,90 @@ msgstr "" msgid "Metadata" msgstr "زانیاری نەجوڵاو" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" -msgstr "" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Delete tracking data for these tables?" +msgid "Metadata for table %s" +msgstr "سڕینەوە داتا شوێنکەوتووەکانی ئەم خشانە؟" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Remove database" +msgid "Metadata for database %s" +msgstr "سڕینەوەی بنکەی دراوە" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "درووستکردن:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "دواترین نوێکردنەوە:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "دواین پشکنین:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "بەکار دەبرێت" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy msgid "Indexes for dumped tables" msgstr "لەناو خشتە:\n" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy msgid "Indexes for table" msgstr "لەناو خشتە:\n" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "زۆرکردنی نرخی زۆربوونی خۆکارانە" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "زۆرکردنی نرخی زۆربوونی خۆکارانە" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "" @@ -11246,7 +11253,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "Username" msgid "User name:" @@ -11254,18 +11261,18 @@ msgstr "ناوی بەکارهێنەر" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "وشەی نهێنی" @@ -11304,45 +11311,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "" @@ -12060,7 +12067,7 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12127,9 +12134,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12152,14 +12159,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -12169,7 +12176,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "" @@ -12178,7 +12185,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "" @@ -12190,293 +12197,293 @@ msgstr "" msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "گۆڕینی وشەی نهێنی" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 msgid "Native MySQL Authentication" msgstr "" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "Username" msgid "Host name:" msgstr "ناوی بەکارهێنەر" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Contribute" msgid "Host name" msgstr "بەشداری کردن" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Current settings" msgid "Authentication Plugin" msgstr "ڕێکخستنەکانی هەنووکە" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password" msgid "Password Hashing Method" msgstr "وشەی نهێنی" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "زیادکردنی بەکارهێنەر" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database client version" msgid "Database for user account" msgstr "وەشانی ڕاژەخوازی بنکەی دراوە" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Privileges" msgid "Edit privileges" msgstr "تایبەتمەندێتیەکان" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Privileges" msgid "Routine-specific privileges" msgstr "تایبەتمەندێتیەکان" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Removing Selected Users" msgid "Remove selected user accounts" msgstr "سڕینەوەی بەکارهێنەرە دەست نیشانکراوەکان" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "بەکارهێنەر" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Privileges" msgid "Edit privileges:" msgstr "تایبەتمەندێتیەکان" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "Users" msgid "User account" msgstr "بەکارهێنەرەکان" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12485,7 +12492,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12494,11 +12501,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "" diff --git a/po/cs.po b/po/cs.po index 8e2e9a1287..60e8f7dcd7 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-11-12 10:29+0000\n" "Last-Translator: Michal Čihař \n" "Language-Team: Czech pro vybrání sloupců." #: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3802 +#: libraries/server_privileges.lib.php:3795 msgid "Show all" msgstr "Zobrazit vše" @@ -2952,10 +2952,10 @@ msgstr "Znovu" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3134 -#: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:3307 -#: libraries/server_privileges.lib.php:4563 +#: libraries/server_privileges.lib.php:3128 +#: libraries/server_privileges.lib.php:3299 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:4556 #: libraries/server_status_processes.lib.php:84 #: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 @@ -3513,7 +3513,7 @@ msgstr "Počet nemusí být přesný, viz [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:656 +#: libraries/controllers/table/TableSearchController.php:645 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." @@ -3688,8 +3688,8 @@ msgstr "Klíče" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2611 -#: libraries/server_privileges.lib.php:3529 +#: libraries/server_privileges.lib.php:2605 +#: libraries/server_privileges.lib.php:3522 #: libraries/server_user_groups.lib.php:83 #: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 @@ -3804,10 +3804,10 @@ msgstr "Pohled" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3152 -#: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:3313 -#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/server_privileges.lib.php:3146 +#: libraries/server_privileges.lib.php:3305 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4570 libraries/tracking.lib.php:1489 #: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:26 @@ -3846,8 +3846,8 @@ msgstr "Vložit" #: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 #: libraries/Util.php:4363 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:4452 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2603 +#: libraries/server_privileges.lib.php:4445 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Oprávnění" @@ -3870,7 +3870,7 @@ msgstr "Sledování" #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1989 +#: libraries/plugins/export/ExportSql.php:2001 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3911,7 +3911,7 @@ msgstr "Centrální sloupce" #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4556 msgid "Databases" msgstr "Databáze" @@ -7926,15 +7926,15 @@ msgstr "Zobrazený sloupec byl aktualizován." msgid "Internal relations were successfully updated." msgstr "Interní relace byla úspěšně změněna." -#: libraries/controllers/table/TableSearchController.php:841 +#: libraries/controllers/table/TableSearchController.php:830 msgid "Table search" msgstr "Vyhledávání v tabulce" -#: libraries/controllers/table/TableSearchController.php:848 +#: libraries/controllers/table/TableSearchController.php:837 msgid "Zoom search" msgstr "Zoom vyhledávání" -#: libraries/controllers/table/TableSearchController.php:853 +#: libraries/controllers/table/TableSearchController.php:842 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Vyhledat a nahradit" @@ -8034,20 +8034,20 @@ msgstr "" #: libraries/display_change_password.lib.php:64 #: libraries/replication_gui.lib.php:879 -#: libraries/server_privileges.lib.php:1839 +#: libraries/server_privileges.lib.php:1835 msgid "No Password" msgstr "Žádné heslo" #: libraries/display_change_password.lib.php:72 #: libraries/plugins/auth/AuthenticationCookie.php:203 #: libraries/replication_gui.lib.php:426 libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1811 msgid "Password:" msgstr "Heslo:" #: libraries/display_change_password.lib.php:78 #: libraries/replication_gui.lib.php:890 -#: libraries/server_privileges.lib.php:1857 +#: libraries/server_privileges.lib.php:1853 msgid "Re-type:" msgstr "Heslo znovu:" @@ -8057,7 +8057,7 @@ msgid "Password Hashing:" msgstr "Hašovací funkce pro heslo:" #: libraries/display_change_password.lib.php:122 -#: libraries/server_privileges.lib.php:1903 +#: libraries/server_privileges.lib.php:1898 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10113,7 +10113,7 @@ msgstr "Nastavení výpisu dat" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Vypisuji data pro tabulku" @@ -10137,21 +10137,21 @@ msgstr "Definice" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Struktura tabulky" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Struktura pro pohled" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Zástupná struktura pro pohled" @@ -10241,7 +10241,7 @@ msgid "Database:" msgstr "Databáze:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "Data:" @@ -10342,7 +10342,7 @@ msgid "Data creation options" msgstr "Možnosti vytváření dat" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "Vyprázdnit tabulku před vkládáním" @@ -10425,8 +10425,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10438,77 +10438,84 @@ msgstr "" msgid "Metadata" msgstr "Metadata" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "Metadata pro %s" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for database %s" +msgstr "Metadata pro %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Vytvořeno:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Poslední změna:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Poslední kontrola:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "právě se používá" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Omezení pro exportované tabulky" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Omezení pro tabulku" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "Klíče pro exportované tabulky" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "Klíče pro tabulku" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT pro tabulky" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT pro tabulku" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPY PRO TABULKU" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "RELACE PRO TABULKU" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "Struktura pro pohled %s exportovaná jako tabulka" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "Chyba při čtení dat:" @@ -11348,24 +11355,24 @@ msgstr "" "cnf). Pokud ne, prosím přidejte následující řádek to sekce [mysqld]:" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "Jméno uživatele:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Jméno uživatele" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Heslo" @@ -11406,38 +11413,38 @@ msgstr "" "report-host=host_name." #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Jakýkoliv počítač" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Lokální" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Tento počítač" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Jakýkoliv uživatel" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "Použít textové pole:" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Použít tabulku Host" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11446,7 +11453,7 @@ msgstr "" "hodnoty uložené v tabulce Host." #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Heslo znovu" @@ -12171,7 +12178,7 @@ msgstr "Žádná" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Skupina uživatele" @@ -12239,9 +12246,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Omezuje počet současných připojení uživatele." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12270,14 +12277,14 @@ msgstr "Umožňuje spouštět uložené procedury." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Oprávnění pro jednotlivé tabulky" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Poznámka: Názvy oprávnění MySQL jsou uváděny anglicky." @@ -12287,7 +12294,7 @@ msgid "Administration" msgstr "Správa" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Globální oprávnění" @@ -12296,7 +12303,7 @@ msgid "Global" msgstr "Globální" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Oprávnění pro jednotlivé databáze" @@ -12308,280 +12315,280 @@ msgstr "Umožňuje vytvářet nové tabulky." msgid "Allows dropping tables." msgstr "Umožňuje odstranit tabulky." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Přihlašování přes cookie" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Přihlašování signon" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL Authentication" msgstr "Přihlašování přes cookie" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Přihlašování" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Použít textové pole" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" "Přístupové údaje pro tohoto uživatele již existují (možná pro jiný počítač)." -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 msgid "Host name:" msgstr "Název počítače:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 msgid "Host name" msgstr "Název počítače" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Neměnit heslo" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 msgid "Authentication Plugin" msgstr "Rozšíření pro přihlašování" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "Hašovací funkce pro heslo:" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "Heslo pro %s bylo úspěšně změněno." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Byla zrušena práva pro %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 msgid "Add user account" msgstr "Přidat uživatele" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 msgid "Database for user account" msgstr "Databáze pro uživatele" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "Vytvořit databázi stejného jména a přidělit všechna oprávnění." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Přidělit všechna oprávnění na jméno odpovídající masce (uživatel\\_%)." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Přidělit všechna oprávnění na databázi „%s“." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Uživatelé mající přístup k „%s“" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "Uživatel byl přidán." -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Přidělování" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "Nebyl nalezen žádný uživatel." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Jakýkoliv" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "globální" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "závislé na databázi" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "maska" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "závislé na tabulce" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 msgid "Edit privileges" msgstr "Upravit oprávnění" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Zrušit" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "Upravit skupinu" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… zachovat původního uživatele." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… smazat původního uživatele ze všech tabulek." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… odebrat všechna oprávnění původnímu uživateli a poté ho smazat." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… smazat uživatele a poté znovu načíst oprávnění." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "Změnit informace o uživateli / Kopírovat uživatele" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "Vytvořit nového uživatele se stejnými oprávněními a …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Oprávnění pro jednotlivá pole" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 msgid "Remove selected user accounts" msgstr "Odstranit vybrané uživatele" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Odebrat uživatelům veškerá oprávnění a poté je odstranit z tabulek." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "Odstranit databáze se stejnými jmény jako uživatelé." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "Musíte vybrat uživatele, které si přejete odstranit!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Načítám oprávnění" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Vybraní uživatelé byli úspěšně odstraněni." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Byla aktualizována oprávnění pro %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "Odstraňuji %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Oprávnění byla načtena úspěšně." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "Uživatel %s již existuje!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "Oprávnění pro %s" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Uživatel" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "Nový" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 msgid "Edit privileges:" msgstr "Upravit oprávnění:" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "Uživatel" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "Přehled uživatelů" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12594,7 +12601,7 @@ msgstr "" "tyto tabulky upravovány. V tomto případě je vhodné provést %snové načtení " "oprávnění%s před pokračováním." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -12613,11 +12620,11 @@ msgstr "" "tyto tabulky upravovány. V tomto případě je vhodné provést %snové načtení " "oprávnění%s před pokračováním." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "Zvolený uživatel nebyl nalezen v tabulce oprávnění." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Uživatel byl přidán." diff --git a/po/cy.po b/po/cy.po index 4211eed577..a9d4350b0e 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:04+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Welsh SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10676,7 +10676,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Dadlwytho data ar gyfer y tabl" @@ -10702,21 +10702,21 @@ msgstr "Disgrifiad" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Strwythur y tabl ar gyfer y tabl" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10828,7 +10828,7 @@ msgid "Database:" msgstr "Cronfa ddata" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10943,7 +10943,7 @@ msgid "Data creation options" msgstr "Ystadegau cronfeydd data" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -11012,8 +11012,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11027,92 +11027,98 @@ msgstr "" msgid "Metadata" msgstr "Data ar goll ar gyfer %s" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, fuzzy, php-format #| msgid "Missing data for %s" -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "Data ar goll ar gyfer %s" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Missing data for %s" +msgid "Metadata for database %s" +msgstr "Data ar goll ar gyfer %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 #, fuzzy #| msgid "Creation" msgid "Creation:" msgstr "Cread" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 #, fuzzy #| msgid "Last update" msgid "Last update:" msgstr "Diweddariad diwethaf" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 #, fuzzy #| msgid "Last check" msgid "Last check:" msgstr "Gwiriad diwethaf" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "ar ddefnydd" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for dumped tables" msgstr "Tu fewn tabl(au):" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "Tu fewn tabl(au):" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Ychwanegwch werth AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Ychwanegwch werth AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "" @@ -11910,7 +11916,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "Username:" msgid "User name:" @@ -11918,18 +11924,18 @@ msgstr "Enw defnyddiwr:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Cyfrinair" @@ -11970,47 +11976,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Unrhyw westeiwr" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Lleol" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Y Gwesteiwr Hwn" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Unrhyw ddefnyddiwr" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Defnyddiwch faes testun" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Defnyddiwch Dabl Gwesteiwyr" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Ail-deipiwch" @@ -12808,7 +12814,7 @@ msgstr "Dim" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12875,9 +12881,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12900,14 +12906,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -12917,7 +12923,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "" @@ -12926,7 +12932,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "" @@ -12938,304 +12944,304 @@ msgstr "" msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Authenticating…" msgid "Native MySQL authentication" msgstr "Yn dilysu…" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Authenticating…" msgid "SHA256 password authentication" msgstr "Yn dilysu…" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Authenticating…" msgid "Native MySQL Authentication" msgstr "Yn dilysu…" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Defnyddiwch faes testun" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "Username:" msgid "Host name:" msgstr "Enw defnyddiwr:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Enw'r log" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Authenticating…" msgid "Authentication Plugin" msgstr "Yn dilysu…" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Stwnsio Cyfrinair" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Unrhyw ddefnyddiwr" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Databases statistics" msgid "Database for user account" msgstr "Ystadegau cronfeydd data" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Cafodd golwg %s ei ollwng" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Privileges" msgid "Edit privileges" msgstr "Breintiau" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Golygu gweinydd" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Check Privileges" msgid "Routine-specific privileges" msgstr "Gwirio Breintiau" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remote server" msgid "Remove selected user accounts" msgstr "Gweinydd pell" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Breintiau" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Defnyddiwr" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Privileges" msgid "Edit privileges:" msgstr "Breintiau" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "User" msgid "User account" msgstr "Defnyddiwr" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Overview" msgid "User accounts overview" msgstr "Gorolwg" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13244,7 +13250,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -13253,11 +13259,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "" diff --git a/po/da.po b/po/da.po index 3ce9dd9878..1f896d1942 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-09-16 14:31+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Danish for at skifte kolonnens synlighed." #: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3802 +#: libraries/server_privileges.lib.php:3795 msgid "Show all" msgstr "Vis alle" @@ -2991,10 +2991,10 @@ msgstr "Genforespørg" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3134 -#: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:3307 -#: libraries/server_privileges.lib.php:4563 +#: libraries/server_privileges.lib.php:3128 +#: libraries/server_privileges.lib.php:3299 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:4556 #: libraries/server_status_processes.lib.php:84 #: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 @@ -3549,7 +3549,7 @@ msgstr "Kan være anslået. Se [doc@faq3-11] FAQ 3.11[/doc]." #: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:656 +#: libraries/controllers/table/TableSearchController.php:645 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." @@ -3723,8 +3723,8 @@ msgstr "Indeks" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2611 -#: libraries/server_privileges.lib.php:3529 +#: libraries/server_privileges.lib.php:2605 +#: libraries/server_privileges.lib.php:3522 #: libraries/server_user_groups.lib.php:83 #: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 @@ -3839,10 +3839,10 @@ msgstr "Visning" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3152 -#: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:3313 -#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/server_privileges.lib.php:3146 +#: libraries/server_privileges.lib.php:3305 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4570 libraries/tracking.lib.php:1489 #: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:26 @@ -3881,8 +3881,8 @@ msgstr "Indsæt" #: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 #: libraries/Util.php:4363 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:4452 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2603 +#: libraries/server_privileges.lib.php:4445 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilegier" @@ -3905,7 +3905,7 @@ msgstr "Sporing" #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1989 +#: libraries/plugins/export/ExportSql.php:2001 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3946,7 +3946,7 @@ msgstr "Centerkolonner" #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4556 msgid "Databases" msgstr "Databaser" @@ -8033,15 +8033,15 @@ msgstr "Opdatering af vist kolonne blev gennemført." msgid "Internal relations were successfully updated." msgstr "Opdateringen af de interne relationer blev gennemført." -#: libraries/controllers/table/TableSearchController.php:841 +#: libraries/controllers/table/TableSearchController.php:830 msgid "Table search" msgstr "Tabelsøgning" -#: libraries/controllers/table/TableSearchController.php:848 +#: libraries/controllers/table/TableSearchController.php:837 msgid "Zoom search" msgstr "Forstør søgning" -#: libraries/controllers/table/TableSearchController.php:853 +#: libraries/controllers/table/TableSearchController.php:842 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Søg og erstat" @@ -8140,20 +8140,20 @@ msgstr "Kunne ikke indlæse skemaudvidelser, tjek venligst din installation!" #: libraries/display_change_password.lib.php:64 #: libraries/replication_gui.lib.php:879 -#: libraries/server_privileges.lib.php:1839 +#: libraries/server_privileges.lib.php:1835 msgid "No Password" msgstr "Ingen adgangskode" #: libraries/display_change_password.lib.php:72 #: libraries/plugins/auth/AuthenticationCookie.php:203 #: libraries/replication_gui.lib.php:426 libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1811 msgid "Password:" msgstr "Adgangskode:" #: libraries/display_change_password.lib.php:78 #: libraries/replication_gui.lib.php:890 -#: libraries/server_privileges.lib.php:1857 +#: libraries/server_privileges.lib.php:1853 msgid "Re-type:" msgstr "Skriv igen:" @@ -8163,7 +8163,7 @@ msgid "Password Hashing:" msgstr "Adgangskodehashing:" #: libraries/display_change_password.lib.php:122 -#: libraries/server_privileges.lib.php:1903 +#: libraries/server_privileges.lib.php:1898 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10282,7 +10282,7 @@ msgstr "Database eksportindstillinger" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Data dump for tabellen" @@ -10306,21 +10306,21 @@ msgstr "Definition" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Struktur-dump for tabellen" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Struktur for visning" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Stand-in-struktur for visning" @@ -10410,7 +10410,7 @@ msgid "Database:" msgstr "Database:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "Data:" @@ -10519,7 +10519,7 @@ msgid "Data creation options" msgstr "Indstillinger for oprettelse af data" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "Trunkér tabel forud for indsættelse" @@ -10602,8 +10602,8 @@ msgstr "Det ser ud til at din database benytter procedurer;" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "alias-eksport fungerer muligvis ikke pålideligt i alle tilfælde." @@ -10617,79 +10617,85 @@ msgstr "Det ser ud til at din database bruger funktioner;" msgid "Metadata" msgstr "Metadata headers" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, fuzzy, php-format #| msgid "Metadata Headers" -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "Metadata headers" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Metadata Headers" +msgid "Metadata for database %s" +msgstr "Metadata headers" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Oprettelse:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Seneste opdatering:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Seneste tjek:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "i brug" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "Det ser ud til at din database bruger views;" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Begrænsninger for dumpede tabeller" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Begrænsninger for tabel" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "Begrænsninger for dumpede tabeller" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "Indeks for tabel" # zero = null? -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "Brug ikke AUTO_INCREMENT for slettede tabeller" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "Tilføj AUTO_INCREMENT i tabel" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE (MIME-typer for tabellen)" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE (Relationer for tabellen)" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "Det ser ud til at din tabel bruger triggere;" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, 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.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "Fejl ved læsning af data:" @@ -11559,24 +11565,24 @@ msgstr "" "Hvis ikke, så prøv at indsætte følgende linje i [mysqld] sektionen:" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "Brugernavn:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Brugernavn" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Adgangskode" @@ -11615,38 +11621,38 @@ msgid "" msgstr "Kun slaver startet med --report-host=host_name er synlige i listen." #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Enhver vært" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Lokal" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Denne vært" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Enhver bruger" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "Brug tekstfelt:" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Brug tabellen host" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11655,7 +11661,7 @@ msgstr "" "bruges i stedet." #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Skriv igen" @@ -12382,7 +12388,7 @@ msgstr "Ingen" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Brugergruppe" @@ -12453,9 +12459,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Begrænser antallet af samtidige forbindelser brugere må have." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12484,14 +12490,14 @@ msgstr "Tillader udførelse af gemte rutiner." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Tabel-specifikke privilegier" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "NB: Navne på MySQL privilegier er på engelsk." @@ -12501,7 +12507,7 @@ msgid "Administration" msgstr "Administration" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Globale privilegier" @@ -12510,7 +12516,7 @@ msgid "Global" msgstr "Global" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Database-specifikke privilegier" @@ -12522,37 +12528,37 @@ msgstr "Tillader oprettelse af nye tabeller." msgid "Allows dropping tables." msgstr "Tillader at droppe tabeller." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Cookie autentifikation" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Login autentifikation" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL Authentication" msgstr "Cookie autentifikation" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Login-information" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Brug tekstfelt" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12560,150 +12566,150 @@ msgstr "" "Der findes allerede en konto med samme brugernavn, men muligvis med et andet " "værtsnavn." -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name:" msgid "Host name:" msgstr "Brugernavn:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Lognavn" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Adgangskoden må ikke ændres" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "Autentifikation" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "Adgangskodehashing:" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "Adgangskoden for %s blev korrekt udskiftet." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Du har tilbagekaldt privilegierne for %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add user group" msgid "Add user account" msgstr "Tilføj brugergruppe" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Database for bruger" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "Opret database med samme navn og tildel alle privilegier." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Tildel alle privilegier til jokertegn-navn (brugernavn_%)." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Tildel alle privilegier på database \"%s\"." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Brugere med adgang til \"%s\"" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "Bruger er blevet tilføjet." -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Tildel" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "Ikke tilstrækkelige privilegier til at se brugere." -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "Ingen bruger fundet." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Enhver" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "database-specifik" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "jokertegn" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "tabelspecifik" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "Ret privilegier:" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Tilbagekald" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "Redigér brugergruppe" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… behold den gamle." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… slet den gamle fra brugertabellerne." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… tilbagekald alle aktive privilegier fra den gamle og slet den " "efterfølgende." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12711,102 +12717,102 @@ msgstr "" "… slet den gamle fra brugertabellerne og genindlæs privilegierne " "efterfølgende." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Ret Login-information / Kopier bruger" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Opret en bruger med samme privilegier og …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Kolonne-specifikke privilegier" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Fjern valgte brugere" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Tilbagekald alle aktive privilegier fra brugerne og slet dem efterfølgende." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "Drop databaser der har samme navne som brugernes." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "Ingen brugere valgt til sletning!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Genindlæs privilegierne" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "De valgte brugere er blevet korrekt slettet." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Du har opdateret privilegierne for %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "Sletter %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Privilegierne blev korrekt genindlæst." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "Brugeren %s findes i forvejen!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "Privilegier for %s" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Bruger" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "Ny" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "Ret privilegier:" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "User group" msgid "User account" msgstr "Brugergruppe" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12814,20 +12820,20 @@ msgstr "" "Bemærk: Du forsøger at redigere privilegier for brugeren som du aktuelt er " "logget ind som." -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "Oversigt over brugere" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12841,7 +12847,7 @@ msgstr "" "ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne" "%s før du fortsætter." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -12861,11 +12867,11 @@ msgstr "" "ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne" "%s før du fortsætter." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "Den valgte bruger blev ikke fundet i privilegietabellen." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Du har tilføjet en ny bruger." diff --git a/po/de.po b/po/de.po index cde939ab0d..4e1b994168 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-25 22:31+0200\n" "Last-Translator: Julian Ladisch \n" "Language-Team: German SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10311,7 +10311,7 @@ msgstr "Datenexport-Optionen" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Daten für Tabelle" @@ -10335,21 +10335,21 @@ msgstr "Definition" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Tabellenstruktur für Tabelle" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Struktur des Views" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Stellvertreter-Struktur des Views" @@ -10440,7 +10440,7 @@ msgid "Database:" msgstr "Datenbank:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "Daten:" @@ -10544,7 +10544,7 @@ msgid "Data creation options" msgstr "Datenterstellungsoptionen" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "TRUNCATE Tabelle vor dem Einfügen" @@ -10629,8 +10629,8 @@ msgstr "Es scheint, dass Ihre Datenbank Prozeduren verwendet;" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" "Alias-Export arbeitet möglicherweise nicht in allen Fällen zuverlässig." @@ -10643,77 +10643,84 @@ msgstr "Es scheint, dass Ihre Datenbank Funktionen verwendet;" msgid "Metadata" msgstr "Metadaten" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "Metadaten für %s" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for database %s" +msgstr "Metadaten für %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Erstellt am:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Zuletzt aktualisiert:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Letzte Prüfung:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "in Benutzung" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "Es scheint, dass Ihre Datenbank Ansichten verwendet;" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Constraints der exportierten Tabellen" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Constraints der Tabelle" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "Indizes der exportierten Tabellen" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "Indizes für die Tabelle" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT für exportierte Tabellen" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT für Tabelle" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPEN DER TABELLE" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "RELATIONEN DER TABELLE" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "Es scheint, dass Ihre Tabelle Trigger verwendet;" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "Struktur des Views %s als Tabelle exportiert" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "Fehler beim Lesen der Daten:" @@ -11574,24 +11581,24 @@ msgstr "" "[mysqld] einfügen:" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "Benutzername:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Benutzername" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Passwort" @@ -11632,38 +11639,38 @@ msgstr "" "sind in dieser Liste sichtbar." #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Jeder Host" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Lokal" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Dieser Host" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Jeder Benutzer" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "Textfeld verwenden:" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Verwende Hosttabelle" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11672,7 +11679,7 @@ msgstr "" "die Werte aus der Host-Tabelle verwendet." #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Wiederholen" @@ -12411,7 +12418,7 @@ msgstr "Kein(e)" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Benutzergruppe" @@ -12486,9 +12493,9 @@ msgstr "" "Beschränkt die Anzahl der gleichzeitigen Verbindungen für diesen Benutzer." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Routine" @@ -12511,14 +12518,14 @@ msgstr "Erlaubt das Ausführen dieser gespeicherten Routine." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Tabellenspezifische Rechte" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Hinweis: MySQL-Rechte werden auf Englisch angegeben." @@ -12528,7 +12535,7 @@ msgid "Administration" msgstr "Administration" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Globale Rechte" @@ -12537,7 +12544,7 @@ msgid "Global" msgstr "Global" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Datenbankspezifische Rechte" @@ -12549,31 +12556,31 @@ msgstr "Erlaubt das Erstellen neuer Tabellen." msgid "Allows dropping tables." msgstr "Erlaubt das Löschen ganzer Tabellen." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 msgid "Native MySQL authentication" msgstr "Native MySQL-Authentifizierung" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 msgid "SHA256 password authentication" msgstr "SHA256-Passwort-Authentifizierung" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 msgid "Native MySQL Authentication" msgstr "Native MySQL-Authentifizierung" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Anmeldeinformation" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Textfeld verwenden" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12581,226 +12588,226 @@ msgstr "" "Es besteht schon ein Konto mit dem gleichen Benutzernamen, aber eventuell " "anderem Hostnamen." -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 msgid "Host name:" msgstr "Hostname:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 msgid "Host name" msgstr "Hostname" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Passwort nicht verändert" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 msgid "Authentication Plugin" msgstr "Authentifizierungs Plugin" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 msgid "Password Hashing Method" msgstr "Passwort­verschlüsselungs­methode" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "Das Passwort für %s wurde geändert." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Sie haben die Rechte für %s widerrufen." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 msgid "Add user account" msgstr "Benutzerkonto hinzufügen" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 msgid "Database for user account" msgstr "Datenbank für Benutzerkonto" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "Erstelle eine Datenbank mit gleichem Namen und gewähre alle Rechte." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Gewähre alle Rechte auf Datenbanken die mit dem Benutzernamen beginnen " "(username\\_%)." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Gewähre alle Rechte auf die Datenbank \"%s\"." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Benutzer mit Zugriff auf \"%s\"" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "Benutzer wurde hinzugefügt." -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "GRANT" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "Nicht genügend Berechtigungen um Benutzer anzuzeigen." -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "Es wurde kein Benutzer gefunden." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Jeder" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "datenbankspezifisch" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "Platzhalter" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "tabellenspezifisch" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 msgid "Edit privileges" msgstr "Rechte ändern" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Entfernen" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "Benutzergruppe bearbeiten" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… behalte den alten bei." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… lösche den alten von den Benutzertabellen." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… entziehe dem alten alle Rechte und lösche ihn anschließend." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… lösche den alten und lade anschließend die Benutzertabellen neu." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "Anmeldeinformation ändern/Benutzer kopieren" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "Erstelle einen neuen Benutzerkonto mit identischen Rechten und …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Routinenspezifische Rechte" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 msgid "Remove selected user accounts" msgstr "Die ausgewählten Benutzerkonten löschen" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Den Benutzern alle Rechte entziehen und sie anschließend aus den " "Benutzertabellen löschen." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "Die gleichnamigen Datenbanken löschen." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "Es wurden keine Benutzer zum Löschen ausgewählt!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Lade die Benutzertabellen neu" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Die gewählten Benutzer wurden gelöscht." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Die Rechte für %s wurden geändert." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "Lösche %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Die Benutzerprofile wurden neu geladen." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "Der Benutzer %s existiert bereits!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "Rechte für %s" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Benutzer" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "Neu" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 msgid "Edit privileges:" msgstr "Rechte ändern:" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "Benutzerkonto" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12808,11 +12815,11 @@ msgstr "" "Hinweis: Sie versuchen, die Berechtigungen des Benutzers zu bearbeiten, mit " "dem Sie aktuell angemeldet sind." -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "Benutzerkontenübersicht" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " @@ -12822,7 +12829,7 @@ msgstr "" "vorhanden. Dies wird Benutzer vom Verbinden abhalten, falls der Host-Teil " "ihres Kontos eine Verbindung von jedem Host (%) erlaubt." -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12836,7 +12843,7 @@ msgstr "" "Änderungen vorgenommen wurden. In diesem Fall sollten Sie %sdie " "Benutzerprofile neu laden%s bevor Sie fortfahren." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12850,11 +12857,11 @@ msgstr "" "Änderungen vorgenommen wurden. In diesem Fall müssen die Berechtigungen neu " "geladen werden, doch im Moment haben Sie keine RELOAD-Berechtigung." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "Der gewählte Benutzer wurde in der Benutzertabelle nicht gefunden." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Der Benutzer wurde hinzugefügt." diff --git a/po/el.po b/po/el.po index 5ac7d3dbd7..931649a05c 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-11-14 19:41+0000\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" @@ -95,7 +95,7 @@ msgstr "Στήλη" #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:2602 libraries/tracking.lib.php:893 #: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 @@ -186,11 +186,11 @@ msgstr "Πρωτεύον" #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 -#: libraries/server_privileges.lib.php:2785 -#: libraries/server_privileges.lib.php:2973 -#: libraries/server_privileges.lib.php:2993 -#: libraries/server_privileges.lib.php:3631 -#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/server_privileges.lib.php:2779 +#: libraries/server_privileges.lib.php:2967 +#: libraries/server_privileges.lib.php:2987 +#: libraries/server_privileges.lib.php:3624 +#: libraries/server_privileges.lib.php:3647 libraries/tracking.lib.php:946 #: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 @@ -220,11 +220,11 @@ msgstr "Όχι" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2785 -#: libraries/server_privileges.lib.php:2970 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3628 -#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/server_privileges.lib.php:2779 +#: libraries/server_privileges.lib.php:2964 +#: libraries/server_privileges.lib.php:2985 +#: libraries/server_privileges.lib.php:3621 +#: libraries/server_privileges.lib.php:3647 libraries/tracking.lib.php:946 #: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 @@ -490,9 +490,9 @@ msgstr "Προσθήκη γεωμετρίας" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2345 -#: libraries/server_privileges.lib.php:3116 -#: libraries/server_privileges.lib.php:3735 +#: libraries/server_privileges.lib.php:2339 +#: libraries/server_privileges.lib.php:3110 +#: libraries/server_privileges.lib.php:3728 #: libraries/server_user_groups.lib.php:290 #: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 #: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 @@ -1109,12 +1109,12 @@ msgstr "Το όνομα του συστήματος είναι κενό!" msgid "The user name is empty!" msgstr "Το όνομα του χρήστη είναι κενό!" -#: js/messages.php:143 libraries/server_privileges.lib.php:2047 +#: js/messages.php:143 libraries/server_privileges.lib.php:2042 #: user_password.php:116 msgid "The password is empty!" msgstr "Ο κωδικός πρόσβασης είναι κενός!" -#: js/messages.php:144 libraries/server_privileges.lib.php:2045 +#: js/messages.php:144 libraries/server_privileges.lib.php:2040 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Οι κωδικοί πρόσβασης δεν είναι ίδιοι!" @@ -1328,7 +1328,7 @@ msgstr "Εισάγετε τουλάχιστον μια μεταβλητή στι #: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1700,7 +1700,6 @@ msgid "Formatting SQL…" msgstr "Διαμόρφωση SQL…" #: js/messages.php:343 -#| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Δεν βρέθηκαν παράμετροι!" @@ -1832,10 +1831,10 @@ msgstr "" #: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 #: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2450 -#: libraries/server_privileges.lib.php:2529 -#: libraries/server_privileges.lib.php:2875 -#: libraries/server_privileges.lib.php:3543 +#: libraries/server_privileges.lib.php:2444 +#: libraries/server_privileges.lib.php:2523 +#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:3536 #: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 @@ -1908,8 +1907,8 @@ msgid "%d is not valid row number." msgstr "Ο αριθμός %d δεν είναι έγκυρος αριθμός γραμμών." #: js/messages.php:409 -#: libraries/controllers/table/TableSearchController.php:432 -#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/controllers/table/TableSearchController.php:427 +#: libraries/controllers/table/TableSearchController.php:906 #: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "Αναζήτηση μη διακριτών τιμών" @@ -2340,7 +2339,7 @@ msgstr "Πατήστε το προς τα κάτω βέλος
για ενα #: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3802 +#: libraries/server_privileges.lib.php:3795 msgid "Show all" msgstr "Εμφάνιση όλων" @@ -2996,10 +2995,10 @@ msgstr "Επανερώτημα" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3134 -#: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:3307 -#: libraries/server_privileges.lib.php:4563 +#: libraries/server_privileges.lib.php:3128 +#: libraries/server_privileges.lib.php:3299 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:4556 #: libraries/server_status_processes.lib.php:84 #: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 @@ -3553,7 +3552,7 @@ msgstr "Ίσως είναι κατά προσέγγιση. Δείτε τις [do #: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:656 +#: libraries/controllers/table/TableSearchController.php:645 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." @@ -3731,8 +3730,8 @@ msgstr "Ευρετήρια" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2611 -#: libraries/server_privileges.lib.php:3529 +#: libraries/server_privileges.lib.php:2605 +#: libraries/server_privileges.lib.php:3522 #: libraries/server_user_groups.lib.php:83 #: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 @@ -3847,10 +3846,10 @@ msgstr "Προβολή" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3152 -#: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:3313 -#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/server_privileges.lib.php:3146 +#: libraries/server_privileges.lib.php:3305 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4570 libraries/tracking.lib.php:1489 #: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:26 @@ -3889,8 +3888,8 @@ msgstr "Προσθήκη" #: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 #: libraries/Util.php:4363 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:4452 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2603 +#: libraries/server_privileges.lib.php:4445 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Δικαιώματα" @@ -3913,7 +3912,7 @@ msgstr "Παρακολούθηση" #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1989 +#: libraries/plugins/export/ExportSql.php:2001 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3954,7 +3953,7 @@ msgstr "Κεντρικές στήλες" #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4556 msgid "Databases" msgstr "Βάσεις δεδομένων" @@ -8057,15 +8056,15 @@ msgstr "Η προβολή της στήλης ενημερώθηκε επιτυ msgid "Internal relations were successfully updated." msgstr "Οι εσωτερικές συσχετίσεις έχουν ενημερωθεί επιτυχώς." -#: libraries/controllers/table/TableSearchController.php:841 +#: libraries/controllers/table/TableSearchController.php:830 msgid "Table search" msgstr "Αναζήτηση πίνακα" -#: libraries/controllers/table/TableSearchController.php:848 +#: libraries/controllers/table/TableSearchController.php:837 msgid "Zoom search" msgstr "Αναζήτηση εστίασης" -#: libraries/controllers/table/TableSearchController.php:853 +#: libraries/controllers/table/TableSearchController.php:842 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Εύρεση και αντικατάσταση" @@ -8164,20 +8163,20 @@ msgstr "" #: libraries/display_change_password.lib.php:64 #: libraries/replication_gui.lib.php:879 -#: libraries/server_privileges.lib.php:1839 +#: libraries/server_privileges.lib.php:1835 msgid "No Password" msgstr "Χωρίς Κωδικό Πρόσβασης" #: libraries/display_change_password.lib.php:72 #: libraries/plugins/auth/AuthenticationCookie.php:203 #: libraries/replication_gui.lib.php:426 libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1811 msgid "Password:" msgstr "Κωδικός πρόσβασης:" #: libraries/display_change_password.lib.php:78 #: libraries/replication_gui.lib.php:890 -#: libraries/server_privileges.lib.php:1857 +#: libraries/server_privileges.lib.php:1853 msgid "Re-type:" msgstr "Επαναεισαγωγή:" @@ -8187,7 +8186,7 @@ msgid "Password Hashing:" msgstr "Μείγμα κωδικού πρόσβασης:" #: libraries/display_change_password.lib.php:122 -#: libraries/server_privileges.lib.php:1903 +#: libraries/server_privileges.lib.php:1898 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10276,7 +10275,7 @@ msgstr "Επιλογές απορριμμάτων δεδομένων" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Άδειασμα δεδομένων του πίνακα" @@ -10300,21 +10299,21 @@ msgstr "Προσδιορισμός" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Δομή πίνακα για τον πίνακα" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Δομή για προβολή" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Στημένη δομή για προβολή" @@ -10404,7 +10403,7 @@ msgid "Database:" msgstr "Βάση δεδομένων:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "Δεδομένα:" @@ -10508,7 +10507,7 @@ msgid "Data creation options" msgstr "Επιλογές δημιουργίας δεδομένων" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "Εκκαθάριση του πίνακα πριν την εισαγωγή" @@ -10592,8 +10591,8 @@ msgstr "Φαίνεται ότι ο πίνακάς σας χρησιμοποιε #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" "Η εξαγωγή ετικέτας μπορεί να μη λειτουργεί αξιόπιστα σε όλες τις περιπτώσεις." @@ -10606,77 +10605,84 @@ msgstr "Φαίνεται ότι ο πίνακάς σας χρησιμοποιε msgid "Metadata" msgstr "Μεταδεδομένα" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "Μεταδεδομένα για %s" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for database %s" +msgstr "Μεταδεδομένα για %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Δημιουργία:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Τελευταία ενημέρωση:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Tελευταίος έλεγχος:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "σε χρήση" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "Φαίνεται ότι η βάση δεδομένων σας χρησιμοποιεί προβολές" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Περιορισμοί για άχρηστους πίνακες" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Περιορισμοί για πίνακα" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "Ευρετήρια για άχρηστους πίνακες" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "Ευρετήρια για πίνακα" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT για άχρηστους πίνακες" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT για πίνακα" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "ΤΥΠΟΙ MIME ΓΙΑ ΠΙΝΑΚΑ" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "ΣΥΣΧΕΤΙΣΕΙΣ ΓΙΑ ΠΙΝΑΚΑ" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "Φαίνεται ότι ο πίνακάς σας χρησιμοποιεί δείκτες" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "Δομή για προβολή %s εξαγώμενη ως πίνακας" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "Σφάλμα ανάγνωσης δεδομένων:" @@ -11528,24 +11534,24 @@ msgstr "" "(my.cnf). Αν όχι, προσθέστε την παρακάτω γραμμή στον τομέα [mysqld]:" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "Όνομα χρήστη:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Όνομα χρήστη" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Κωδικός πρόσβασης" @@ -11586,38 +11592,38 @@ msgstr "" "είναι ορατές σε αυτή τη λίστα." #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Οποιοδήποτε σύστημα" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Τοπικό" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Αυτός ο διακομιστής" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Οποιοσδήποτε χρήστης" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "Χρήση πεδίου κειμένου:" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Χρήση Οικείου Πίνακα" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11626,7 +11632,7 @@ msgstr "" "χρησιμοποιούνται τιμές που είναι αποθηκευμένες στον Οικείο πίνακα." #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Επαναεισαγωγή" @@ -12358,7 +12364,7 @@ msgstr "Κανένα" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Ομάδας χρηστών" @@ -12434,9 +12440,9 @@ msgstr "" "Περιορίζει τον αριθμό των ταυτόχρονων συνδέσεων που μπορεί να έχει ο χρήστης." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Εργασία" @@ -12459,14 +12465,14 @@ msgstr "Επιτρέπει την εκτέλεση αυτής της εργασ #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Δικαιώματα πινάκων" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Σημείωση: Τα ονόματα δικαιωμάτων της MySQL εκφράζονται στα Αγγλικά." @@ -12476,7 +12482,7 @@ msgid "Administration" msgstr "Διαχείριση" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Γενικά δικαιώματα" @@ -12485,7 +12491,7 @@ msgid "Global" msgstr "Γενικά" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Δικαιώματα βάσης δεδομένων" @@ -12497,31 +12503,31 @@ msgstr "Επιτρέπει τη δημιουργία νέων πινάκων." msgid "Allows dropping tables." msgstr "Επιτρέπει τη διαγραφή πινάκων." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 msgid "Native MySQL authentication" msgstr "Γηγενής πιστοποίηση MySQL" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 msgid "SHA256 password authentication" msgstr "Πιστοποίηση κωδικού πρόσβασης SHA256" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 msgid "Native MySQL Authentication" msgstr "Γηγενής Πιστοποίηση MySQL" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Πληροφορίες Σύνδεσης" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Χρησιμοποιήστε το πεδίο κειμένου" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12529,135 +12535,135 @@ msgstr "" "Ένας λογαριασμός με το ίδιο όνομα χρήστη υπάρχει ήδη αλλά πιθανά διαφορετικό " "φιλοξενητή." -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 msgid "Host name:" msgstr "Όνομα φιλοξενητή:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 msgid "Host name" msgstr "Όνομασία φιλοξενητή" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Διατήρηση κωδικού πρόσβασης" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 msgid "Authentication Plugin" msgstr "Πρόσθετο Πιστοποιίησης" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 msgid "Password Hashing Method" msgstr "Μέθοδος Μείγματος Κωδικού Πρόσβασης" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "Ο κωδικός πρόσβασης για τον χρήστη %s άλλαξε επιτυχώς." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Ανακαλέσατε τα δικαιώματα για %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 msgid "Add user account" msgstr "Προσθήκη λογαριασμού χρήστη" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 msgid "Database for user account" msgstr "Βάση δεδομένων για λογαριασμό χρήστη" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" "Δημιουργία βάσης δεδομένων με το ίδιο όνομα και με πλήρη δικαιώματα χρήσης." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Πλήρη δικαιώματα σε όνομα μπαλαντέρ (username\\_%)." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Πλήρη δικαιώματα στη βάση δεδομένων «%s»." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Χρήστες με πρόσβαση στη βάση «%s»" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "Ο χρήστης προστέθηκε." -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Χορήγηση" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "Δεν υπάρχουν αρκετά δικαιώματα για προβολή χρηστών." -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "Δεν βρέθηκαν χρήστες." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Οποιοδήποτε" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "γενικός" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "σχετιζόμενος με βάση δεδομένων" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "μπαλαντέρ" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "σχετικός με πίνακα" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 msgid "Edit privileges" msgstr "Επεξεργασία δικαιωμάτων" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Ανάκληση" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "Επεξεργασία ομάδας χρηστών" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… διατήρηση του παλιού χρήστη." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… διαγραφή του παλιού χρήστη από τους πίνακες χρηστών." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… ανάκληση των δικαιωμάτων του παλιού χρήστη και διαγραφή του." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12665,90 +12671,90 @@ msgstr "" "… διαγραφή του παλιού χρήστη από τους πίνακες χρηστών και επαναφόρτωση των " "δικαιωμάτων." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "Αλλαγή στοιχείων πρόσβασης / Αντιγραφή λογαριασμού χρήστη" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "Δημιουργία νέου λογαριασμού χρήστη με τα ίδια δικαιώματα και …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Δικαιώματα για τη συγκεκριμένη εργασία" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 msgid "Remove selected user accounts" msgstr "Διαγραφή των επιλεγμένων λογαριασμών χρηστών" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Ανάκληση όλων των ενεργών δικαιώματα από τους χρήστες και διαγραφή τους." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "Διαγραφή βάσεων δεδομένων που έχουν ίδια ονόματα με χρήστες." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "Δεν επιλέχθηκαν χρήστες για διαγραφή!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Επαναφόρτωση δικαιωμάτων" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Οι επιλεγμένοι χρήστες διεγράφησαν επιτυχώς." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Τα δικαιώματα του χρήστη %s ενημερώθηκαν." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "Διαγραφή %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Τα δικαιώματα επαναφορτώθηκαν επιτυχώς." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "Ο χρήστης %s υπάρχει ήδη!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "Δικαιώματα για %s" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Χρήστης" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "Νέος" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 msgid "Edit privileges:" msgstr "Επεξεργασία δικαιωμάτων:" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "Λογαριασμός χρήστη" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12756,11 +12762,11 @@ msgstr "" "Σημείωση: Προσπαθείτε να επεξεργαστείτε δικαιώματα του χρήστη με τον οποίο " "έχετε συνδεθεί." -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "Επισκόπηση λογαριασμών χρηστών" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " @@ -12771,7 +12777,7 @@ msgstr "" "φιλοξενίας του λογαριασμού τους επιτρέπει μια σύνδεση από οποιαδήποτε (%) " "φιλοξενία." -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12785,7 +12791,7 @@ msgstr "" "αλλαγές χειροκίνητα. Σε αυτήν την περίπτωση, θα πρέπει να %sεπαναφορτώσετε " "τα δικαιώματα%s πριν συνεχίσετε." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12799,11 +12805,11 @@ msgstr "" "αλλαγές χειροκίνητα. Σε αυτήν την περίπτωση, τα δικαιώματα πρέπει να " "επαναφορτωθούν αλλά προς το παρόν, δεν έχετε το δικαίωμα RELOAD." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "Ο επιλεγμένος χρήστης δεν βρέθηκε στον πίνακα δικαιωμάτων." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Προσθέσατε ένα νέο χρήστη." @@ -15431,7 +15437,6 @@ msgid "Stacked" msgstr "Σταθεροποιημένο" #: templates/table/chart/tbl_chart.phtml:53 -#| msgid "Chart title" msgid "Chart title:" msgstr "Τίτλος διαγράμματος:" diff --git a/po/en_GB.po b/po/en_GB.po index 0909e15ee9..e252861f61 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:38+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: English (United Kingdom) to toggle column's visibility." #: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3802 +#: libraries/server_privileges.lib.php:3795 msgid "Show all" msgstr "Show all" @@ -3170,10 +3170,10 @@ msgstr "subquery" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3134 -#: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:3307 -#: libraries/server_privileges.lib.php:4563 +#: libraries/server_privileges.lib.php:3128 +#: libraries/server_privileges.lib.php:3299 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:4556 #: libraries/server_status_processes.lib.php:84 #: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 @@ -3791,7 +3791,7 @@ msgstr "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:656 +#: libraries/controllers/table/TableSearchController.php:645 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." @@ -3972,8 +3972,8 @@ msgstr "Indexes" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2611 -#: libraries/server_privileges.lib.php:3529 +#: libraries/server_privileges.lib.php:2605 +#: libraries/server_privileges.lib.php:3522 #: libraries/server_user_groups.lib.php:83 #: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 @@ -4086,10 +4086,10 @@ msgstr "View" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3152 -#: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:3313 -#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/server_privileges.lib.php:3146 +#: libraries/server_privileges.lib.php:3305 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4570 libraries/tracking.lib.php:1489 #: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:26 @@ -4128,8 +4128,8 @@ msgstr "Insert" #: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 #: libraries/Util.php:4363 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:4452 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2603 +#: libraries/server_privileges.lib.php:4445 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privileges" @@ -4152,7 +4152,7 @@ msgstr "Tracking" #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1989 +#: libraries/plugins/export/ExportSql.php:2001 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4195,7 +4195,7 @@ msgstr "Textarea columns" #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4556 msgid "Databases" msgstr "Databases" @@ -8331,17 +8331,17 @@ msgstr "Thread %s was successfully killed." msgid "Internal relations were successfully updated." msgstr "Internal relation has been added." -#: libraries/controllers/table/TableSearchController.php:841 +#: libraries/controllers/table/TableSearchController.php:830 #, fuzzy #| msgid "Table Search" msgid "Table search" msgstr "Table Search" -#: libraries/controllers/table/TableSearchController.php:848 +#: libraries/controllers/table/TableSearchController.php:837 msgid "Zoom search" msgstr "Zoom search" -#: libraries/controllers/table/TableSearchController.php:853 +#: libraries/controllers/table/TableSearchController.php:842 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "Find and Replace" @@ -8445,20 +8445,20 @@ msgstr "Could not load import plug-ins, please check your installation!" #: libraries/display_change_password.lib.php:64 #: libraries/replication_gui.lib.php:879 -#: libraries/server_privileges.lib.php:1839 +#: libraries/server_privileges.lib.php:1835 msgid "No Password" msgstr "No Password" #: libraries/display_change_password.lib.php:72 #: libraries/plugins/auth/AuthenticationCookie.php:203 #: libraries/replication_gui.lib.php:426 libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1811 msgid "Password:" msgstr "Password:" #: libraries/display_change_password.lib.php:78 #: libraries/replication_gui.lib.php:890 -#: libraries/server_privileges.lib.php:1857 +#: libraries/server_privileges.lib.php:1853 msgid "Re-type:" msgstr "Re-type:" @@ -8468,7 +8468,7 @@ msgid "Password Hashing:" msgstr "Password Hashing:" #: libraries/display_change_password.lib.php:122 -#: libraries/server_privileges.lib.php:1903 +#: libraries/server_privileges.lib.php:1898 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10566,7 +10566,7 @@ msgstr "Data dump options" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Dumping data for table" @@ -10590,21 +10590,21 @@ msgstr "Definition" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Table structure for table" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Structure for view" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Stand-in structure for view" @@ -10694,7 +10694,7 @@ msgid "Database:" msgstr "Database:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "Data:" @@ -10802,7 +10802,7 @@ msgid "Data creation options" msgstr "Data creation options" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "Truncate table before insert" @@ -10889,8 +10889,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10904,78 +10904,84 @@ msgstr "" msgid "Metadata" msgstr "Metadata Headers" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, fuzzy, php-format #| msgid "Metadata Headers" -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "Metadata Headers" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Metadata Headers" +msgid "Metadata for database %s" +msgstr "Metadata Headers" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Creation:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Last update:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Last check:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "in use" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Constraints for dumped tables" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Constraints for table" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "Indexes for dumped tables" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "Indexes for table" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT for dumped tables" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT for table" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "Structure for view %s exported as a table" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "Error reading data:" @@ -11870,24 +11876,24 @@ msgstr "" "not, please add the following line into [mysqld] section:" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "User name:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "User name" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Password" @@ -11928,38 +11934,38 @@ msgstr "" "this list." #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Any host" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Local" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "This Host" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Any user" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "Use text field:" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Use Host Table" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11968,7 +11974,7 @@ msgstr "" "table are used instead." #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Re-type" @@ -12695,7 +12701,7 @@ msgstr "None" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "User group" @@ -12764,9 +12770,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of simultaneous connections the user may have." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12794,14 +12800,14 @@ msgstr "Allows executing stored routines." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Table-specific privileges" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Note: MySQL privilege names are expressed in English." @@ -12811,7 +12817,7 @@ msgid "Administration" msgstr "Administration" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Global privileges" @@ -12820,7 +12826,7 @@ msgid "Global" msgstr "Global" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Database-specific privileges" @@ -12832,37 +12838,37 @@ msgstr "Allows creating new tables." msgid "Allows dropping tables." msgstr "Allows dropping tables." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Cookie authentication" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Signon authentication" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL Authentication" msgstr "Cookie authentication" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Login Information" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Use text field" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12870,149 +12876,149 @@ msgstr "" "An account already exists with the same username but possibly a different " "hostname." -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name:" msgid "Host name:" msgstr "User name:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Log name" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Do not change the password" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "Authentication" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "Password Hashing:" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "The password for %s was changed successfully." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "You have revoked the privileges for %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add user group" msgid "Add user account" msgstr "Add user group" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Database for user" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "Create database with same name and grant all privileges." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Grant all privileges on wildcard name (username\\_%)." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Grant all privileges on database \"%s\"." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Users having access to \"%s\"" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "User has been added." -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Grant" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "No user found." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Any" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "database-specific" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "wildcard" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "table-specific" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "Edit Privileges:" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Revoke" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "Edit user group" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… keep the old one." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… delete the old one from the user tables." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… revoke all active privileges from the old one and delete it afterwards." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -13020,121 +13026,121 @@ msgstr "" "… delete the old one from the user tables and reload the privileges " "afterwards." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Change Login Information / Copy User" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Create a new user with the same privileges and …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Column-specific privileges" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Remove selected users" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revoke all active privileges from the users and delete them afterwards." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "Drop the databases that have the same names as the users." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "No users selected for deleting!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Reloading the privileges" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "The selected users have been deleted successfully." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "You have updated the privileges for %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "Deleting %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "The privileges were reloaded successfully." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "The user %s already exists!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "Privileges for %s" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "User" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "New" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "Edit Privileges:" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "User group" msgid "User account" msgstr "User group" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "Users overview" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13147,7 +13153,7 @@ msgstr "" "server uses, if they have been changed manually. In this case, you should " "%sreload the privileges%s before you continue." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13166,11 +13172,11 @@ msgstr "" "server uses, if they have been changed manually. In this case, you should " "%sreload the privileges%s before you continue." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "The selected user was not found in the privilege table." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "You have added a new user." diff --git a/po/eo.po b/po/eo.po index 66aba88973..640e070b4c 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-01-01 17:51+0200\n" "Last-Translator: Eliovir \n" "Language-Team: Esperanto SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -9506,7 +9506,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -9530,21 +9530,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -9634,7 +9634,7 @@ msgid "Database:" msgstr "Datumbazo:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "" @@ -9726,7 +9726,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -9795,8 +9795,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9808,77 +9808,82 @@ msgstr "" msgid "Metadata" msgstr "" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, php-format -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, php-format +msgid "Metadata for database %s" +msgstr "" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "" @@ -10617,24 +10622,24 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "Uzantonomo:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Uzantonomo" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Pasvorto" @@ -10673,45 +10678,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "" @@ -11419,7 +11424,7 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -11482,9 +11487,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" @@ -11505,14 +11510,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11522,7 +11527,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "" @@ -11531,7 +11536,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "" @@ -11543,275 +11548,275 @@ msgstr "" msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Password" msgid "SHA256 password authentication" msgstr "Pasvorto" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 msgid "Native MySQL Authentication" msgstr "" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name:" msgid "Host name:" msgstr "Uzantonomo:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "User name" msgid "Host name" msgstr "Uzantonomo" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 msgid "Authentication Plugin" msgstr "" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 msgid "Database for user account" msgstr "" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 msgid "Remove selected user accounts" msgstr "" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11820,7 +11825,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11829,11 +11834,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "" diff --git a/po/es.po b/po/es.po index b302082504..9c6633fdd7 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-14 14:56+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Spanish SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10324,7 +10324,7 @@ msgstr "Opciones para volcado de datos" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Volcado de datos para la tabla" @@ -10348,21 +10348,21 @@ msgstr "Definición" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Estructura de tabla para la tabla" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Estructura para la vista" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Estructura Stand-in para la vista" @@ -10452,7 +10452,7 @@ msgid "Database:" msgstr "Base de datos:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "Datos:" @@ -10555,7 +10555,7 @@ msgid "Data creation options" msgstr "Opciones de creación de datos" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "Truncar tablas antes de insertar" @@ -10639,8 +10639,8 @@ msgstr "Parece que su base de datos utiliza procedimientos;" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" "exportar los alias no podría funcionar correctamente en todos los casos." @@ -10653,77 +10653,84 @@ msgstr "Parece que su base de datos utiliza funciones;" msgid "Metadata" msgstr "Metadatos" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "Metadatos para %s" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for database %s" +msgstr "Metadatos para %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Creación:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Última actualización:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Última revisión:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "en uso" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "Parece que su base de datos utiliza vistas;" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Restricciones para tablas volcadas" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Filtros para la tabla" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "Índices para tablas volcadas" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "Indices de la tabla" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT de las tablas volcadas" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT de la tabla" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "TIPOS MIME PARA LA TABLA" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "RELACIONES PARA LA TABLA" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "Parece que su tabla utiliza disparadores («triggers»);" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, 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.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "Error leyendo datos:" @@ -11595,24 +11602,24 @@ msgstr "" "(my.cnf). Si no, agregue la siguiente línea en la sección [mysqld]:" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "Nombre de usuario:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Nombre de usuario" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Contraseña" @@ -11653,38 +11660,38 @@ msgstr "" "visibles en esta lista." #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Cualquier servidor" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Local" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Este Host" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Cualquier usuario" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "Use el campo de texto:" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Usar la tabla Anfitrión (Host)" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11693,7 +11700,7 @@ msgstr "" "valores almacenados en la tabla Host en su lugar." #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Debe volver a escribir" @@ -12422,7 +12429,7 @@ msgstr "Ninguno" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Grupo de usuario" @@ -12496,9 +12503,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Limita el número de conexiones simultáneas que el usuario pueda tener." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12527,14 +12534,14 @@ msgstr "Permite ejecutar las rutinas almacenadas." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Privilegios específicos para la tabla" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -12545,7 +12552,7 @@ msgid "Administration" msgstr "Administración" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Privilegios globales" @@ -12554,7 +12561,7 @@ msgid "Global" msgstr "Global" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Privilegios específicos para la base de datos" @@ -12566,7 +12573,7 @@ msgstr "Permite la creación de tablas nuevas." msgid "Allows dropping tables." msgstr "Permite eliminar tablas." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" @@ -12574,32 +12581,32 @@ msgstr "Autenticación por cookie" # Description of signon value for configuration described at # http://www.phpmyadmin.net/documentation/Documentation.html#cfg_Servers_auth_type -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Autenticación por sesión" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL Authentication" msgstr "Autenticación por cookie" # It is talking about the user account not the act of logging in -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Información de la cuenta" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Use el campo de texto" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12607,139 +12614,139 @@ msgstr "" "Ya existe una cuenta con el mismo nombre de usuario pero posiblemente un " "nombre de servidor diferente." -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 msgid "Host name:" msgstr "Nombre de Host:" # It is about binary logs, not about login names -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 msgid "Host name" msgstr "Nombre del servidor" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "No cambiar la contraseña" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 msgid "Authentication Plugin" msgstr "Complemento de autenticación" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "Hashing de la contraseña:" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "La contraseña para %s se cambió exitosamente." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Ha revocado los privilegios para %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 msgid "Add user account" msgstr "Agregar cuenta de usuario" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 msgid "Database for user account" msgstr "Base de datos para la cuenta de usuario" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" "Crear base de datos con el mismo nombre y otorgar todos los privilegios." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Otorgar todos los privilegios al nombre que contiene comodín (username\\_%)." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Otorgar todos los privilegios para la base de datos \"%s\"." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Usuarios con acceso a \"%s\"" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "Se agregó el usuario." -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Conceder" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "Privilegios insuficientes para ver los usuarios." -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "Usuario(s) no encontrado(s)." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "cualquiera" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "específico para la base de datos" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "comodín" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "específico para la tabla" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 msgid "Edit privileges" msgstr "Editar privilegios" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Revocar" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "Editar groupo de usuario" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "…mantener el anterior." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "…borrar el viejo de las tablas de usuario." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "…revocar todos los privilegios activos del viejo y eliminarlo después." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12748,93 +12755,93 @@ msgstr "" "privilegios." # Login refers to the user account not the act of logging in -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "Cambiar información de cuenta / Copiar cuenta de usuario" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "Crear una cuenta de usuario nueva con los mismos privilegios y…" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Privilegios específicos para la columna" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 msgid "Remove selected user accounts" msgstr "Eliminar cuentas de usuario seleccionadas" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revocar todos los privilegios activos de los usuarios y borrarlos después." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" "Eliminar las bases de datos que tienen los mismos nombres que los usuarios." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "¡No se han seleccionado usuarios para eliminar!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Cargando los privilegios nuevamente" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Los usuarios seleccionados fueron borrados exitosamente." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Ha actualizado los privilegios para %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "Borrando %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Los privilegios fueron cargados nuevamente de manera exitosa." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "¡El usuario %s ya existe!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "Privilegios para %s" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Usuario" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "Nuevo" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 msgid "Edit privileges:" msgstr "Editar los privilegios:" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "Cuenta de usuario" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12842,11 +12849,11 @@ msgstr "" "Nota: está intentando editar los privilegios del usuario con el que inició " "la sesión actual." -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "Vista global de las cuentas de usuario" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " @@ -12856,7 +12863,7 @@ msgstr "" "conectarse. Esto evitará conectarse a otros usuarios, si la parte del host " "de su cuenta permite una conexión desde cualquier host (%)." -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12870,7 +12877,7 @@ msgstr "" "manuales en él. En este caso, nuevamente deberá %scargar la página de " "privilegios%s antes de continuar." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12884,11 +12891,11 @@ msgstr "" "manuales en él. En este caso, los privilegios deberán actualizarse pero " "actualmente, no tiene el privilegio RELOAD." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "El usuario que seleccionó no se encontró en la tabla de privilegios." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Ha agregado un nuevo usuario." diff --git a/po/et.po b/po/et.po index 6d8af590d0..9dcaa7190b 100644 --- a/po/et.po +++ b/po/et.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-11-16 13:01+0000\n" "Last-Translator: Kristjan Räts \n" -"Language-Team: Estonian " -"\n" +"Language-Team: Estonian \n" "Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -99,7 +99,7 @@ msgstr "Veerg" #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:2602 libraries/tracking.lib.php:893 #: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 @@ -190,11 +190,11 @@ msgstr "Primaarne" #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 -#: libraries/server_privileges.lib.php:2785 -#: libraries/server_privileges.lib.php:2973 -#: libraries/server_privileges.lib.php:2993 -#: libraries/server_privileges.lib.php:3631 -#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/server_privileges.lib.php:2779 +#: libraries/server_privileges.lib.php:2967 +#: libraries/server_privileges.lib.php:2987 +#: libraries/server_privileges.lib.php:3624 +#: libraries/server_privileges.lib.php:3647 libraries/tracking.lib.php:946 #: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 @@ -224,11 +224,11 @@ msgstr "Ei" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2785 -#: libraries/server_privileges.lib.php:2970 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3628 -#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/server_privileges.lib.php:2779 +#: libraries/server_privileges.lib.php:2964 +#: libraries/server_privileges.lib.php:2985 +#: libraries/server_privileges.lib.php:3621 +#: libraries/server_privileges.lib.php:3647 libraries/tracking.lib.php:946 #: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 @@ -487,9 +487,9 @@ msgstr "Lisa geomeetria" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2345 -#: libraries/server_privileges.lib.php:3116 -#: libraries/server_privileges.lib.php:3735 +#: libraries/server_privileges.lib.php:2339 +#: libraries/server_privileges.lib.php:3110 +#: libraries/server_privileges.lib.php:3728 #: libraries/server_user_groups.lib.php:290 #: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 #: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 @@ -1096,12 +1096,12 @@ msgstr "Hostinimi on tühi!" msgid "The user name is empty!" msgstr "Kasutajanimi on tühi!" -#: js/messages.php:143 libraries/server_privileges.lib.php:2047 +#: js/messages.php:143 libraries/server_privileges.lib.php:2042 #: user_password.php:116 msgid "The password is empty!" msgstr "Parool on tühi!" -#: js/messages.php:144 libraries/server_privileges.lib.php:2045 +#: js/messages.php:144 libraries/server_privileges.lib.php:2040 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Paroolid ei kattu!" @@ -1315,7 +1315,7 @@ msgstr "Palun lisa seeriasse vähemalt üks muutuja!" #: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1677,7 +1677,6 @@ msgid "Formatting SQL…" msgstr "SQL vormindamine…" #: js/messages.php:343 -#| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Parameetrid puuduvad!" @@ -1808,10 +1807,10 @@ msgstr "Salvestatud funktsioon peab sisaldama RETURN käsku!" #: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 #: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2450 -#: libraries/server_privileges.lib.php:2529 -#: libraries/server_privileges.lib.php:2875 -#: libraries/server_privileges.lib.php:3543 +#: libraries/server_privileges.lib.php:2444 +#: libraries/server_privileges.lib.php:2523 +#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:3536 #: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 @@ -1884,8 +1883,8 @@ msgid "%d is not valid row number." msgstr "%d ei ole õige reanumber." #: js/messages.php:409 -#: libraries/controllers/table/TableSearchController.php:432 -#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/controllers/table/TableSearchController.php:427 +#: libraries/controllers/table/TableSearchController.php:906 #: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "Sirvi võõrvõtme väärtusi" @@ -2313,7 +2312,7 @@ msgstr "Veeru nähtavuse muutmiseks
vajuta alla suunatud noolele." #: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3802 +#: libraries/server_privileges.lib.php:3795 msgid "Show all" msgstr "Näita kõiki" @@ -2961,10 +2960,10 @@ msgstr "Korduspäring" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3134 -#: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:3307 -#: libraries/server_privileges.lib.php:4563 +#: libraries/server_privileges.lib.php:3128 +#: libraries/server_privileges.lib.php:3299 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:4556 #: libraries/server_status_processes.lib.php:84 #: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 @@ -3517,7 +3516,7 @@ msgstr "Võib olla umbkaudne. Vaata [doc@faq3-11]KKK 3.11[/doc]." #: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:656 +#: libraries/controllers/table/TableSearchController.php:645 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." @@ -3690,8 +3689,8 @@ msgstr "Indeksid" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2611 -#: libraries/server_privileges.lib.php:3529 +#: libraries/server_privileges.lib.php:2605 +#: libraries/server_privileges.lib.php:3522 #: libraries/server_user_groups.lib.php:83 #: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 @@ -3805,10 +3804,10 @@ msgstr "Vaade" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3152 -#: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:3313 -#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/server_privileges.lib.php:3146 +#: libraries/server_privileges.lib.php:3305 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4570 libraries/tracking.lib.php:1489 #: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:26 @@ -3847,8 +3846,8 @@ msgstr "Lisa" #: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 #: libraries/Util.php:4363 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:4452 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2603 +#: libraries/server_privileges.lib.php:4445 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Õigused" @@ -3871,7 +3870,7 @@ msgstr "Jälgimine" #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1989 +#: libraries/plugins/export/ExportSql.php:2001 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3912,7 +3911,7 @@ msgstr "Kesksed veerud" #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4556 msgid "Databases" msgstr "Andmebaasid" @@ -7898,15 +7897,15 @@ msgstr "Kuva veergu uuendati edukalt." msgid "Internal relations were successfully updated." msgstr "Sisemised seosete värskendamine oli edukas." -#: libraries/controllers/table/TableSearchController.php:841 +#: libraries/controllers/table/TableSearchController.php:830 msgid "Table search" msgstr "Tabeli otsing" -#: libraries/controllers/table/TableSearchController.php:848 +#: libraries/controllers/table/TableSearchController.php:837 msgid "Zoom search" msgstr "Laienda otsingut" -#: libraries/controllers/table/TableSearchController.php:853 +#: libraries/controllers/table/TableSearchController.php:842 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Otsi ja asenda" @@ -8004,20 +8003,20 @@ msgstr "Skeemi pluginaid ei suudetud laadida, palun kontrolli oma paigaldust!" #: libraries/display_change_password.lib.php:64 #: libraries/replication_gui.lib.php:879 -#: libraries/server_privileges.lib.php:1839 +#: libraries/server_privileges.lib.php:1835 msgid "No Password" msgstr "Ilma paroolita" #: libraries/display_change_password.lib.php:72 #: libraries/plugins/auth/AuthenticationCookie.php:203 #: libraries/replication_gui.lib.php:426 libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1811 msgid "Password:" msgstr "Parool:" #: libraries/display_change_password.lib.php:78 #: libraries/replication_gui.lib.php:890 -#: libraries/server_privileges.lib.php:1857 +#: libraries/server_privileges.lib.php:1853 msgid "Re-type:" msgstr "Tipi uuesti:" @@ -8027,7 +8026,7 @@ msgid "Password Hashing:" msgstr "Parooli räsimine:" #: libraries/display_change_password.lib.php:122 -#: libraries/server_privileges.lib.php:1903 +#: libraries/server_privileges.lib.php:1898 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10086,7 +10085,7 @@ msgstr "Andmete tõmmise valikud" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Andmete tõmmistamine tabelile" @@ -10110,21 +10109,21 @@ msgstr "Definitsioon" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Tabeli struktuur tabelile" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Vaate struktuur" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Sise-vaate struktuur" @@ -10214,7 +10213,7 @@ msgid "Database:" msgstr "Andmebaas:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "Andmed:" @@ -10315,7 +10314,7 @@ msgid "Data creation options" msgstr "Andmete loomise valikud" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "Kärbi tabelit enne lisamist" @@ -10398,8 +10397,8 @@ msgstr "Tundub, et su tabel kasutab protseduure;" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" "aliaste eksportimine võib mõningatel juhtudel töötada mitte usaldusväärselt." @@ -10412,77 +10411,84 @@ msgstr "Tundub, et su tabel kasutab funktsioone;" msgid "Metadata" msgstr "Metaandmed" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "%s metaandmed" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for database %s" +msgstr "%s metaandmed" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Loodud:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Viimati uuendatud:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Viimane kontroll:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "kasutusel" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "Tundub, et su andmebaas kasutab vaateid;" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Tõmmistatud tabelite piirangud" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Piirangud tabelile" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "Indeksid tõmmistatud tabelitele" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "Indeksid tabelile" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT tõmmistatud tabelitele" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT tabelile" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "Tundub, et su tabel kasutab trigereid;" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "Vaate %s struktuur eksporditi tabelina" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "Andmete lugemisel esines viga:" @@ -11311,24 +11317,24 @@ msgstr "" "mitte, siis palun lisa [mysqld] sektsiooni järgnev rida:" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "Kasutajanimi:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Kasutajanimi" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Parool" @@ -11369,38 +11375,38 @@ msgstr "" "host=host_name valikuga." #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Kõik hostid" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Kohalik" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "See host" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Kõik kasutajad" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "Kasuta tekstivälja:" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Kasuta hosti tabelit" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11409,7 +11415,7 @@ msgstr "" "asemel kasutatakse hosti tabelis olevaid väärtusi." #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Tipi uuesti" @@ -12131,7 +12137,7 @@ msgstr "Puudub" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Kasutaja grupp" @@ -12202,9 +12208,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Piirab samaaegsete ühenduste hulka, mida kasutajal võib olla." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Funktsioon" @@ -12225,14 +12231,14 @@ msgstr "Lubab käivitada selle funktsiooni." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Tabelipõhised õigused" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Märkus: MySQL õigused on inglise keeles." @@ -12242,7 +12248,7 @@ msgid "Administration" msgstr "Administreerimine" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Globaalsed õigused" @@ -12251,7 +12257,7 @@ msgid "Global" msgstr "Globaalne" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Andmebaasipõhised õigused" @@ -12263,31 +12269,31 @@ msgstr "Lubab luua uusi tabeleid." msgid "Allows dropping tables." msgstr "Lubab kustutada tabeleid." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 msgid "Native MySQL authentication" msgstr "MySQLi omavahenditega autentimine" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 msgid "SHA256 password authentication" msgstr "SHA256 parooliga autentimine" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 msgid "Native MySQL Authentication" msgstr "MySQLi omavahenditega autentimine" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Sisselogimise teave" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Kasuta tekstivälja" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12295,235 +12301,235 @@ msgstr "" "Sama nimega kasutaja konto on on juba olemas, kuid ilmselt teise hosti " "nimega." -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 msgid "Host name:" msgstr "Hosti nimi:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 msgid "Host name" msgstr "Hosti nimi" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Ära muuda parooli" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 msgid "Authentication Plugin" msgstr "Autentimise pistik" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 msgid "Password Hashing Method" msgstr "Parooli räsimise algoritm" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "%s parool on edukalt vahetatud." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Tühistasid %s õigused." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 msgid "Add user account" msgstr "Lisa kasutajate konto" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 msgid "Database for user account" msgstr "Andmebaas kasutaja kontole" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "Loo samanimeline andmebaas ja anna kõik õigused." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Anna kõik õigused metamärgiga nimele (kasutajanimi\\_%)." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Anna kõik õigused \"%s\" andmebaasis." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Kasutajad, kellel on ligipääs \"%s\" andmebaasile" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "Kasutaja on lisatud." -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Õigused (GRANT)" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "Puuduvad õigused kasutajate kuvamiseks." -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "Kasutajat ei leitud." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Kõik" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "globaalne" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "andmebaasipõhine" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "metamärk" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "tabelipõhine" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 msgid "Edit privileges" msgstr "Muuda õiguseid" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Tühista" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "Muuda kasutaja grupp" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… hoia eelmine alles." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… kustuta eelmine kasutajate tabelist." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… tühista eelmise kõik aktiivsed õigused ja seejärel kustuta see." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… kustuta eelmine kasutajate tabelist ja seejärel lae õigused uuesti." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "Muuda sisselogimise teavet / Kopeeri kasutaja konto" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "Loo uus kasutaja konto samade õigustega ja …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Funktsioonipõhised õigused" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 msgid "Remove selected user accounts" msgstr "Kustuta valitud kasutajate kontod" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Tühista kasutajatelt kõik aktiivsed õigused ning seejärel kustuta need " "kasutajad." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "Kustuta kasutajatega samanimelised andmebaasid." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "Kustutavaid kasutajaid pole valitud!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Õiguste uuesti laadimine" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Valitud kasutajad on edukalt kustutatud." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Uuendasid %s õigusi." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "%s kustutamine" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Õigused on edukalt uuesti laetud." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "Kasutaja %s on juba olemas!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "%s õigused" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Kasutaja" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "Uus" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 msgid "Edit privileges:" msgstr "Muuda õiguseid:" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "Kasutaja konto" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" "Märkus: sa proovid muuta õiguseid kontol, mida kasutasid sisse logimiseks." -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "Kasutaja kontode ülevaade" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " @@ -12533,7 +12539,7 @@ msgstr "" "olemas. See takistab teistel kasutajatel ühendumast, kui nende konto hosti " "pool lubab ühenduda suvalisest (%) masinast." -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12545,7 +12551,7 @@ msgstr "" "Tabelite sisu võib erineda sellest, mida server kasutab, kui neid on käsitsi " "muudetud. Sellisel juhul peaksid enne jätkamist %sõigused uuesti laadima%s." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12558,11 +12564,11 @@ msgstr "" "muudetud. Sellisel juhul peab õigused uuesti laadima, kuid hetkel puudub sul " "uuesti laadimise õigus." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "Valitud kasutajat õiguste tabelist ei leitud." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Lisasid uue kasutaja." @@ -15120,7 +15126,6 @@ msgid "Stacked" msgstr "Jaotatud ühe tulbana" #: templates/table/chart/tbl_chart.phtml:53 -#| msgid "Chart title" msgid "Chart title:" msgstr "Diagrammi pealkiri:" diff --git a/po/eu.po b/po/eu.po index 05f4c150da..c7056a5cf9 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:26+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Basque SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10544,7 +10544,7 @@ msgstr "Datu-basea esportatzeko aukerak" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Taula honen datuak irauli" @@ -10571,14 +10571,14 @@ msgstr "Deskribapena" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Taularen egitura taula honentzat" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 #, fuzzy msgid "Structure for view" @@ -10586,7 +10586,7 @@ msgstr "Egitura soilik" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10698,7 +10698,7 @@ msgid "Database:" msgstr "Datu-basea" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10813,7 +10813,7 @@ msgid "Data creation options" msgstr "Eraldaketen hobespenak" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -10882,8 +10882,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10896,91 +10896,98 @@ msgstr "" msgid "Metadata" msgstr "Datu estatikoak" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" -msgstr "" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Dumping data for table" +msgid "Metadata for table %s" +msgstr "Taula honen datuak irauli" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Create table on database %s" +msgid "Metadata for database %s" +msgstr "Taula berri bat sortu %s datu-basean" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 #, fuzzy #| msgid "Creation" msgid "Creation:" msgstr "Sortzea" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 #, fuzzy #| msgid "Last update" msgid "Last update:" msgstr "Azken eguneraketa" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 #, fuzzy #| msgid "Last check" msgid "Last check:" msgstr "Azken egiaztapena" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "lanean" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Iraulitako taulentzako murrizketak" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Taularentzako murrizketak" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Iraulitako taulentzako murrizketak" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Taulen barnean:" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Gehitu AUTO_INCREMENT balioa" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Gehitu AUTO_INCREMENT balioa" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Egitura soilik" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11835,7 +11842,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11843,18 +11850,18 @@ msgstr "Erabiltzaile-izena" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Erabiltzaile-izena" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Pasahitza" @@ -11895,47 +11902,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Edozein ostalari" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Lokal" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Host hau" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Edozein erabiltzaile" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Testu-eremua erabili" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Host taula erabili" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Berridatzi" @@ -12732,7 +12739,7 @@ msgstr "Batez" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12806,9 +12813,9 @@ msgstr "" "Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Add %s field(s)" @@ -12835,14 +12842,14 @@ msgstr "Taula berriak sortzea baimentzen du." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Taularen pribilegio espezifikoak" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -12854,7 +12861,7 @@ msgid "Administration" msgstr "Kudeaketa" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Pribilegio orokorrak" @@ -12865,7 +12872,7 @@ msgid "Global" msgstr "orokorra" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Datu-basearen pribilegio espezifikoak" @@ -12877,191 +12884,191 @@ msgstr "Taula berriak sortzea baimentzen du." msgid "Allows dropping tables." msgstr "Taulak ezabatzea baimentzen du." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Documentation" msgid "Native MySQL authentication" msgstr "Dokumentazioa" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "Pasahitza aldatu" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Documentation" msgid "Native MySQL Authentication" msgstr "Dokumentazioa" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Saioa hasteko informazioa" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Testu-eremua erabili" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Erabiltzaile-izena" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Constraints for table" msgid "Host name" msgstr "Taularentzako murrizketak" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Pasahitza ez aldatu" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Documentation" msgid "Authentication Plugin" msgstr "Dokumentazioa" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password:" msgid "Password Hashing Method" msgstr "Pasahitza:" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "%s-arentzako pasahitza arrakastaz aldatua izan da." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Zuk %s-(r)en pribilegioak ezeztatu dituzu." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Gehitu erabiltzailea" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database export options" msgid "Database for user account" msgstr "Datu-basea esportatzeko aukerak" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, fuzzy, php-format msgid "Grant all privileges on database \"%s\"." msgstr "\"%s\" datu-basearen pribilegioak egiaztatu." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\"-(e)ra sarbidea duten erabiltzaileak" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 #, fuzzy msgid "User has been added." msgstr "%s eremua ezabatu da" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Baimendu" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Ez da erabiltzailerik aurkitu." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Edozein" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "orokorra" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "Datubasearentzat espezifikoa" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "komodina" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Datubasearentzat espezifikoa" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Editatu Pribilegioak" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Ezeztatu" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "Editatu hurrengo lerroa" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… mantendu aurrekoa." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… zaharra ezabatu erabiltzaileen tauletatik." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… zaharraren pribilegio aktibo guztiak errebokatu eta ondoren ezabatu." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -13069,122 +13076,122 @@ msgstr "" "… zaharra ezabatu erabiltzaileen tauletatik eta ondoren berkargatu " "pribilegioak." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Aldatu saioa hasteko informazioa / Erabiltzailea kopiatu" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Erabiltzaile berri bat sortu pribilegio berdinekin eta …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Zutabearen pribilegio espezifikoak" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Hautatutako erabiltzaileak baztertu" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Erabiltzaileen pribilegio aktibo guztiak ezeztatu eta ondoren denak ezabatu." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "Erabiltzaileen izen berdina duten datu-baseak ezabatu." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Pribilegioak berkargatzen" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "%s-aren pribilegioak eguneratu dituzu." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "%s ezabatzen" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Pribilegioak arrakastaz berkargatu dira." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "%s erabiltzailea badago lehendik ere!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Pribilegioak" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Erabiltzailea" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Editatu Pribilegioak" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "User" msgid "User account" msgstr "Erabiltzailea" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Erabiltzailearen info orokorra" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13198,7 +13205,7 @@ msgstr "" "daitezke. Kasu honetan, jarraitu aurretik %spribilegioak berkargatu%s " "beharko zenituzke." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13218,11 +13225,11 @@ msgstr "" "daitezke. Kasu honetan, jarraitu aurretik %spribilegioak berkargatu%s " "beharko zenituzke." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "Hautatutako erabiltzailea ez da pribilegioen taulan aurkitu." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Erabiltzaile berria gehitu duzu." @@ -18247,9 +18254,6 @@ msgstr "" #~ msgid "Create Table" #~ msgstr "Orri berri bat sortu" -#~ msgid "Create table on database %s" -#~ msgstr "Taula berri bat sortu %s datu-basean" - #~ msgid "Data Label" #~ msgstr "Etiketa" diff --git a/po/fa.po b/po/fa.po index 72bef20ab1..9121f59ae2 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:32+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Persian فلش به ضام #: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3802 +#: libraries/server_privileges.lib.php:3795 msgid "Show all" msgstr "نمايش همه" @@ -3191,10 +3191,10 @@ msgstr "کوئری داخلی" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3134 -#: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:3307 -#: libraries/server_privileges.lib.php:4563 +#: libraries/server_privileges.lib.php:3128 +#: libraries/server_privileges.lib.php:3299 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:4556 #: libraries/server_status_processes.lib.php:84 #: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 @@ -3845,7 +3845,7 @@ msgstr "" #: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:656 +#: libraries/controllers/table/TableSearchController.php:645 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -4036,8 +4036,8 @@ msgstr "فهرست‌ها" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2611 -#: libraries/server_privileges.lib.php:3529 +#: libraries/server_privileges.lib.php:2605 +#: libraries/server_privileges.lib.php:3522 #: libraries/server_user_groups.lib.php:83 #: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 @@ -4148,10 +4148,10 @@ msgstr "نمایه" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3152 -#: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:3313 -#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/server_privileges.lib.php:3146 +#: libraries/server_privileges.lib.php:3305 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4570 libraries/tracking.lib.php:1489 #: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:26 @@ -4190,8 +4190,8 @@ msgstr "درج" #: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 #: libraries/Util.php:4363 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:4452 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2603 +#: libraries/server_privileges.lib.php:4445 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "امتيازات" @@ -4214,7 +4214,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1989 +#: libraries/plugins/export/ExportSql.php:2001 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4257,7 +4257,7 @@ msgstr "اضافه يا حذف ستونها" #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4556 msgid "Databases" msgstr "پايگاههاي داده" @@ -8229,19 +8229,19 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr "ارتباط داخلی افزوده شد" -#: libraries/controllers/table/TableSearchController.php:841 +#: libraries/controllers/table/TableSearchController.php:830 #, fuzzy #| msgid "Search" msgid "Table search" msgstr "جستجو" -#: libraries/controllers/table/TableSearchController.php:848 +#: libraries/controllers/table/TableSearchController.php:837 #, fuzzy #| msgid "Zoom Search" msgid "Zoom search" msgstr "زوم جستجو" -#: libraries/controllers/table/TableSearchController.php:853 +#: libraries/controllers/table/TableSearchController.php:842 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "Hide search criteria" @@ -8350,20 +8350,20 @@ msgstr "خطا در بارگزاری افزونه ها, لطفا مراحل نص #: libraries/display_change_password.lib.php:64 #: libraries/replication_gui.lib.php:879 -#: libraries/server_privileges.lib.php:1839 +#: libraries/server_privileges.lib.php:1835 msgid "No Password" msgstr "بدون کلمه ی عبور" #: libraries/display_change_password.lib.php:72 #: libraries/plugins/auth/AuthenticationCookie.php:203 #: libraries/replication_gui.lib.php:426 libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1811 msgid "Password:" msgstr "اسم رمز:" #: libraries/display_change_password.lib.php:78 #: libraries/replication_gui.lib.php:890 -#: libraries/server_privileges.lib.php:1857 +#: libraries/server_privileges.lib.php:1853 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -8377,7 +8377,7 @@ msgid "Password Hashing:" msgstr "رمزگذاری پسورد" #: libraries/display_change_password.lib.php:122 -#: libraries/server_privileges.lib.php:1903 +#: libraries/server_privileges.lib.php:1898 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10498,7 +10498,7 @@ msgstr "آمار پايگاههاي داده" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "حذف داده‌هاي جدول" @@ -10524,14 +10524,14 @@ msgstr "توضیحات" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 #, fuzzy msgid "Structure for view" @@ -10539,7 +10539,7 @@ msgstr "فقط ساختار" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10647,7 +10647,7 @@ msgid "Database:" msgstr "پايگاه داده" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10761,7 +10761,7 @@ msgid "Data creation options" msgstr "آمار پايگاههاي داده" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -10830,8 +10830,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10845,86 +10845,92 @@ msgstr "" msgid "Metadata" msgstr "داده برای %s وارد نشده است" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, fuzzy, php-format #| msgid "Missing data for %s" -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "داده برای %s وارد نشده است" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Missing data for %s" +msgid "Metadata for database %s" +msgstr "داده برای %s وارد نشده است" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "ایجاد:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "آخرین به روز رسانی:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "آخرین بازدید:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "در حال استفاده" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for dumped tables" msgstr "درجدول های:" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "درجدول های:" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "مقدار افزایشی خودکار اضافه شود" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "مقدار افزایشی خودکار اضافه شود" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "فقط ساختار" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "" @@ -11724,7 +11730,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11732,18 +11738,18 @@ msgstr "نام كاربر" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "نام كاربر" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "اسم رمز" @@ -11784,47 +11790,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "همه ميزبانها" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "محلی" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "همه كاربران" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 #, fuzzy #| msgid "Text fields" msgid "Use text field:" msgstr "فیلد های متنی" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "دوباره نوشتن" @@ -12584,7 +12590,7 @@ msgstr "خير" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12649,9 +12655,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy msgid "Routine" @@ -12678,14 +12684,14 @@ msgstr "دادن مجوز برای ایجاد روال ." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -12697,7 +12703,7 @@ msgid "Administration" msgstr "مدیریت" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "" @@ -12706,7 +12712,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "" @@ -12718,307 +12724,307 @@ msgstr "دادن مجوز برای ایجاد جدول جدید." msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Authentication" msgid "Native MySQL authentication" msgstr "ورود" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "تغيير کلمه ی عبور" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Authentication" msgid "Native MySQL Authentication" msgstr "ورود" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "اطلاعات ورود" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "نام كاربر" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "نام سابقه" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "عدم تغيير اسم رمز" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "ورود" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "رمزگذاری پسورد" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "شما امتيازات %s را ابطال كرديد." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "افزودن کاربر" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database export options" msgid "Database for user account" msgstr "آمار پايگاههاي داده" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "نمای %s حذف گرديد." -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 #, fuzzy msgid "Grant" msgstr "چاپ" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "هيچ كاربري وچود ندارد." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "همه" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "ويرايش امتيازات" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "ابطال" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "ویرایش کردن ردیف بعدی" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Check Privileges" msgid "Routine-specific privileges" msgstr "چک سطح دسترسی" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Removing Selected Users" msgid "Remove selected user accounts" msgstr "حذف کاربران انتخاب شده" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "امتيازات %s به هنگام گرديد." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "در حال پاک کردن %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "امتيازات" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "كاربر" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 #, fuzzy #| msgid "New" msgctxt "Create new user" msgid "New" msgstr "جدید" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "ويرايش امتيازات" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "User" msgid "User account" msgstr "كاربر" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13027,7 +13033,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -13036,11 +13042,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "شما يك كاربر جديد اضافه كرديد." diff --git a/po/fi.po b/po/fi.po index 279da4a1f9..6d5a5eaaac 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-11-12 10:38+0000\n" "Last-Translator: Michal Čihař \n" "Language-Team: Finnish napsauttamalla pudotusvalikon nuolta." #: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3802 +#: libraries/server_privileges.lib.php:3795 msgid "Show all" msgstr "Näytä kaikki" @@ -2985,10 +2985,10 @@ msgstr "Suorita hakulause uudelleen" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3134 -#: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:3307 -#: libraries/server_privileges.lib.php:4563 +#: libraries/server_privileges.lib.php:3128 +#: libraries/server_privileges.lib.php:3299 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:4556 #: libraries/server_status_processes.lib.php:84 #: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 @@ -3543,7 +3543,7 @@ msgstr "Saattaa olla likimääräinen. Katso [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:656 +#: libraries/controllers/table/TableSearchController.php:645 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." @@ -3720,8 +3720,8 @@ msgstr "Indeksit" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2611 -#: libraries/server_privileges.lib.php:3529 +#: libraries/server_privileges.lib.php:2605 +#: libraries/server_privileges.lib.php:3522 #: libraries/server_user_groups.lib.php:83 #: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 @@ -3836,10 +3836,10 @@ msgstr "Näkymä" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3152 -#: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:3313 -#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/server_privileges.lib.php:3146 +#: libraries/server_privileges.lib.php:3305 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4570 libraries/tracking.lib.php:1489 #: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:26 @@ -3878,8 +3878,8 @@ msgstr "Lisää rivi" #: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 #: libraries/Util.php:4363 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:4452 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2603 +#: libraries/server_privileges.lib.php:4445 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Käyttöoikeudet" @@ -3902,7 +3902,7 @@ msgstr "Seuranta" #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1989 +#: libraries/plugins/export/ExportSql.php:2001 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3943,7 +3943,7 @@ msgstr "Keskisarakkeet" #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4556 msgid "Databases" msgstr "Tietokannat" @@ -8005,19 +8005,19 @@ msgstr "Säikeen %s lopetus onnistui." msgid "Internal relations were successfully updated." msgstr "Sisäinen relaatio luotu" -#: libraries/controllers/table/TableSearchController.php:841 +#: libraries/controllers/table/TableSearchController.php:830 #, fuzzy #| msgid "Table Search" msgid "Table search" msgstr "Taulu haku" -#: libraries/controllers/table/TableSearchController.php:848 +#: libraries/controllers/table/TableSearchController.php:837 #, fuzzy #| msgid "Zoom Search" msgid "Zoom search" msgstr "Zoomaushaku" -#: libraries/controllers/table/TableSearchController.php:853 +#: libraries/controllers/table/TableSearchController.php:842 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "Find and Replace" @@ -8124,20 +8124,20 @@ msgstr "Tuontiin tarvittavaa lisäosaa ei voida tuoda, tarkista asetukset!" #: libraries/display_change_password.lib.php:64 #: libraries/replication_gui.lib.php:879 -#: libraries/server_privileges.lib.php:1839 +#: libraries/server_privileges.lib.php:1835 msgid "No Password" msgstr "Ei salasanaa" #: libraries/display_change_password.lib.php:72 #: libraries/plugins/auth/AuthenticationCookie.php:203 #: libraries/replication_gui.lib.php:426 libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1811 msgid "Password:" msgstr "Salasana:" #: libraries/display_change_password.lib.php:78 #: libraries/replication_gui.lib.php:890 -#: libraries/server_privileges.lib.php:1857 +#: libraries/server_privileges.lib.php:1853 msgid "Re-type:" msgstr "Kirjoita uudelleen:" @@ -8147,7 +8147,7 @@ msgid "Password Hashing:" msgstr "Salasanan salaus:" #: libraries/display_change_password.lib.php:122 -#: libraries/server_privileges.lib.php:1903 +#: libraries/server_privileges.lib.php:1898 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10306,7 +10306,7 @@ msgstr "Tiedon vedostusasetukset" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Vedos taulusta" @@ -10330,21 +10330,21 @@ msgstr "Määritys" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Rakenne taululle" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Näkymän rakenne" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Näkymän vararakenne" @@ -10450,7 +10450,7 @@ msgid "Database:" msgstr "Tietokanta" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10557,7 +10557,7 @@ msgid "Data creation options" msgstr "Objektin luontivaihtoehdot" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -10626,8 +10626,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10641,87 +10641,93 @@ msgstr "" msgid "Metadata" msgstr "Kohteesta %s puuttuu tiedot" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, fuzzy, php-format #| msgid "Missing data for %s" -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "Kohteesta %s puuttuu tiedot" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Missing data for %s" +msgid "Metadata for database %s" +msgstr "Kohteesta %s puuttuu tiedot" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Luotu:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Viimeksi päivitetty:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Viimeksi tarkistettu:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "käytössä" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Rajoitteet vedostauluille" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Rajoitteet taululle" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Rajoitteet vedostauluille" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Tauluissa:" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "Älä käytä nolla-arvoissa AUTO_INCREMENT:iä" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Lisää AUTO_INCREMENT-arvo" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "MIME-TYYPIT TAULULLE" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "RELAATIOT TAULULLE" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, 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.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11667,7 +11673,7 @@ msgstr "" "Jos ei ole, lisää seuraava rivi [mysqld]-osaan:" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11675,18 +11681,18 @@ msgstr "Käyttäjänimi" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Käyttäjänimi" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Salasana" @@ -11729,40 +11735,40 @@ msgstr "" "host=host_name." #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Mikä tahansa palvelin" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Paikallinen" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Tämä isäntä" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Kuka tahansa käyttäjä" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Käytä tekstikenttää" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Käytä isäntätaulua" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11771,7 +11777,7 @@ msgstr "" "käytetään Host-taulussa olevia tietoja." #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Kirjoita uudelleen" @@ -12617,7 +12623,7 @@ msgstr "Ei mitään" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12687,9 +12693,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Rajoittaa käyttäjän yhtäaikaisten yhteyksien määrän." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12718,14 +12724,14 @@ msgstr "Sallii talletettujen rutiinien suorittamisen." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Taulukohtaiset käyttöoikeudet" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -12737,7 +12743,7 @@ msgid "Administration" msgstr "Hallinta" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Globaalit käyttöoikeudet" @@ -12748,7 +12754,7 @@ msgid "Global" msgstr "globaali" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Tietokantakohtaiset käyttöoikeudet" @@ -12760,195 +12766,195 @@ msgstr "Sallii uusien taulujen luomisen." msgid "Allows dropping tables." msgstr "Sallii taulujen poistamisen." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Eväste tunnistautuminen" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Sisäänkirjatumistunnitautuminen" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL Authentication" msgstr "Eväste tunnistautuminen" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Kirjautumistiedot" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Käytä tekstikenttää" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Käyttäjänimi" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Lokin nimi" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Älä vaihda salasanaa" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "Todennus" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "Salasanan salaus:" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "Käyttäjän %s salasanan vaihto onnistui." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Käyttäjän %s käyttöoikeudet on poistettu." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Lisää käyttäjä" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Tietokanta käyttäjälle" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "Luo samanniminen tietokanta ja anna kaikki oikeudet." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Anna kaikki oikeudet tietokannalle käyttäen korvausmerkkiä (username\\_%)." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Anna tietokannalle \"%s\" kaikki oikeudet." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Käyttäjät, joilla on oikeus käyttää kohdetta \"%s\"" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Näkymä %s on poistettu" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Valtuudet (GRANT)" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Käyttäjiä ei ole." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Mikä tahansa" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "globaali" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "tietokantakohtainen" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "korvausmerkki" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "tietokantakohtainen" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Muokkaa käyttöoikeuksia" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Pura käyttöoikeudet" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Muokkaa palvelinta" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… säilytä vanha käyttäjä." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… poista vanha käyttäjä käyttäjätauluista." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… peruuta kaikki vanhan käyttäjän aktiiviset käyttöoikeudet ja tuhoa " "käyttäjä sen jälkeen." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12956,122 +12962,122 @@ msgstr "" "… poista käyttäjätauluista vanha käyttäjä ja päivitä sen jälkeen " "käyttöoikeudet." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Vaihda kirjautumistietoja / Kopioi käyttäjä" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Luo uusi käyttäjä samoilla käyttöoikeuksilla ja …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Sarakekohtaiset käyttöoikeudet" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Poista valitut käyttäjät" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Pura kaikki käyttäjän aktiiviset käyttöoikeudet, ja poista ne sen jälkeen." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "Poista tietokannat, joilla on sama nimi kuin käyttäjillä." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "Yhtään käyttäjää ei valittu poistettavaksi!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Ladataan käyttöoikeuksia uudelleen" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Valitsemiesi käyttäjien poisto onnistui." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Käyttäjän %s käyttöoikeudet on päivitetty." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "Poistetaan: %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Käyttöoikeuksien uudelleenlataus onnistui." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "Käyttäjä %s on jo olemassa!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Käyttöoikeudet" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Käyttäjä" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Muokkaa käyttöoikeuksia" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "Users" msgid "User account" msgstr "Käyttäjät" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Käyttäjien yleiskatsaus" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13084,7 +13090,7 @@ msgstr "" "käyttämistä käyttöoikeuksista, jos tauluihin on tehty muutoksia käsin. " "Tällöin %skäyttöoikeudet on ladattava uudestaan%s ennen jatkamista." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13103,11 +13109,11 @@ msgstr "" "käyttämistä käyttöoikeuksista, jos tauluihin on tehty muutoksia käsin. " "Tällöin %skäyttöoikeudet on ladattava uudestaan%s ennen jatkamista." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "Valittua käyttäjää ei löytynyt käyttöoikeustaulusta." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Uusi käyttäjä lisätty." diff --git a/po/fr.po b/po/fr.po index 4a9ffa6f43..bf0795c41d 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-11-14 12:14+0000\n" "Last-Translator: Marc Delisle \n" -"Language-Team: French " -"\n" +"Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -96,7 +96,7 @@ msgstr "Colonne" #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:2602 libraries/tracking.lib.php:893 #: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 @@ -187,11 +187,11 @@ msgstr "Primaire" #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 -#: libraries/server_privileges.lib.php:2785 -#: libraries/server_privileges.lib.php:2973 -#: libraries/server_privileges.lib.php:2993 -#: libraries/server_privileges.lib.php:3631 -#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/server_privileges.lib.php:2779 +#: libraries/server_privileges.lib.php:2967 +#: libraries/server_privileges.lib.php:2987 +#: libraries/server_privileges.lib.php:3624 +#: libraries/server_privileges.lib.php:3647 libraries/tracking.lib.php:946 #: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 @@ -221,11 +221,11 @@ msgstr "Non" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2785 -#: libraries/server_privileges.lib.php:2970 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3628 -#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/server_privileges.lib.php:2779 +#: libraries/server_privileges.lib.php:2964 +#: libraries/server_privileges.lib.php:2985 +#: libraries/server_privileges.lib.php:3621 +#: libraries/server_privileges.lib.php:3647 libraries/tracking.lib.php:946 #: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 @@ -491,9 +491,9 @@ msgstr "Ajouter géométrie" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2345 -#: libraries/server_privileges.lib.php:3116 -#: libraries/server_privileges.lib.php:3735 +#: libraries/server_privileges.lib.php:2339 +#: libraries/server_privileges.lib.php:3110 +#: libraries/server_privileges.lib.php:3728 #: libraries/server_user_groups.lib.php:290 #: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 #: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 @@ -1113,12 +1113,12 @@ msgstr "Le nom de serveur est vide !" msgid "The user name is empty!" msgstr "Le nom d'utilisateur est vide !" -#: js/messages.php:143 libraries/server_privileges.lib.php:2047 +#: js/messages.php:143 libraries/server_privileges.lib.php:2042 #: user_password.php:116 msgid "The password is empty!" msgstr "Le mot de passe est vide !" -#: js/messages.php:144 libraries/server_privileges.lib.php:2045 +#: js/messages.php:144 libraries/server_privileges.lib.php:2040 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Les mots de passe doivent être identiques !" @@ -1332,7 +1332,7 @@ msgstr "Veuillez ajouter au moins une variable à la série !" #: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1699,7 +1699,6 @@ msgid "Formatting SQL…" msgstr "Formatage SQL…" #: js/messages.php:343 -#| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Paramètres manquants !" @@ -1830,10 +1829,10 @@ msgstr "La définition d'une fonction doit comporter un énoncé RETURN !" #: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 #: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2450 -#: libraries/server_privileges.lib.php:2529 -#: libraries/server_privileges.lib.php:2875 -#: libraries/server_privileges.lib.php:3543 +#: libraries/server_privileges.lib.php:2444 +#: libraries/server_privileges.lib.php:2523 +#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:3536 #: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 @@ -1907,8 +1906,8 @@ msgid "%d is not valid row number." msgstr "%d n'est pas un numéro de ligne valable." #: js/messages.php:409 -#: libraries/controllers/table/TableSearchController.php:432 -#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/controllers/table/TableSearchController.php:427 +#: libraries/controllers/table/TableSearchController.php:906 #: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "Afficher les valeurs de la table liée" @@ -2339,7 +2338,7 @@ msgstr "Cliquer sur la flèche
pour gérer l'affichage des colonnes." #: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3802 +#: libraries/server_privileges.lib.php:3795 msgid "Show all" msgstr "Tout afficher" @@ -3004,10 +3003,10 @@ msgstr "Exécuter la requête à nouveau" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3134 -#: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:3307 -#: libraries/server_privileges.lib.php:4563 +#: libraries/server_privileges.lib.php:3128 +#: libraries/server_privileges.lib.php:3299 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:4556 #: libraries/server_status_processes.lib.php:84 #: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 @@ -3563,7 +3562,7 @@ msgstr "Peut être approximatif. Voir [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:656 +#: libraries/controllers/table/TableSearchController.php:645 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." @@ -3742,8 +3741,8 @@ msgstr "Index" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2611 -#: libraries/server_privileges.lib.php:3529 +#: libraries/server_privileges.lib.php:2605 +#: libraries/server_privileges.lib.php:3522 #: libraries/server_user_groups.lib.php:83 #: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 @@ -3858,10 +3857,10 @@ msgstr "Vue" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3152 -#: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:3313 -#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/server_privileges.lib.php:3146 +#: libraries/server_privileges.lib.php:3305 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4570 libraries/tracking.lib.php:1489 #: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:26 @@ -3900,8 +3899,8 @@ msgstr "Insérer" #: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 #: libraries/Util.php:4363 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:4452 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2603 +#: libraries/server_privileges.lib.php:4445 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilèges" @@ -3924,7 +3923,7 @@ msgstr "Suivi" #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1989 +#: libraries/plugins/export/ExportSql.php:2001 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3965,7 +3964,7 @@ msgstr "Colonnes centrales" #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4556 msgid "Databases" msgstr "Bases de données" @@ -8046,15 +8045,15 @@ msgstr "La colonne descriptive a été correctement modifiée." msgid "Internal relations were successfully updated." msgstr "Les relations internes ont été correctement modifiées." -#: libraries/controllers/table/TableSearchController.php:841 +#: libraries/controllers/table/TableSearchController.php:830 msgid "Table search" msgstr "Recherche dans la table" -#: libraries/controllers/table/TableSearchController.php:848 +#: libraries/controllers/table/TableSearchController.php:837 msgid "Zoom search" msgstr "Recherche par zoom" -#: libraries/controllers/table/TableSearchController.php:853 +#: libraries/controllers/table/TableSearchController.php:842 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Chercher et remplacer" @@ -8155,20 +8154,20 @@ msgstr "" #: libraries/display_change_password.lib.php:64 #: libraries/replication_gui.lib.php:879 -#: libraries/server_privileges.lib.php:1839 +#: libraries/server_privileges.lib.php:1835 msgid "No Password" msgstr "Aucun mot de passe" #: libraries/display_change_password.lib.php:72 #: libraries/plugins/auth/AuthenticationCookie.php:203 #: libraries/replication_gui.lib.php:426 libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1811 msgid "Password:" msgstr "Mot de passe : " #: libraries/display_change_password.lib.php:78 #: libraries/replication_gui.lib.php:890 -#: libraries/server_privileges.lib.php:1857 +#: libraries/server_privileges.lib.php:1853 msgid "Re-type:" msgstr "Saisir à nouveau :" @@ -8178,7 +8177,7 @@ msgid "Password Hashing:" msgstr "Hachage du mot de passe : " #: libraries/display_change_password.lib.php:122 -#: libraries/server_privileges.lib.php:1903 +#: libraries/server_privileges.lib.php:1898 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10277,7 +10276,7 @@ msgstr "Options d'exportation" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Contenu de la table" @@ -10301,21 +10300,21 @@ msgstr "Définition" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Structure de la table" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Structure de la vue" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Doublure de structure pour la vue" @@ -10405,7 +10404,7 @@ msgid "Database:" msgstr "Base de données : " #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "Données : " @@ -10507,7 +10506,7 @@ msgid "Data creation options" msgstr "Options de création de données" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "Vider la table avant d'insérer" @@ -10592,8 +10591,8 @@ msgstr "Il semble que votre base de données utilise des procédures;" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 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 " @@ -10607,77 +10606,84 @@ msgstr "Il semble que votre base de données utilise des fonctions;" msgid "Metadata" msgstr "Métadonnées" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "Métadonnées pour %s" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for database %s" +msgstr "Métadonnées pour %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Création : " -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Dernière modification : " -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Dernière vérification : " -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "utilisé" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "Il semble que votre base de données utilise des vues;" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Contraintes pour les tables exportées" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Contraintes pour la table" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "Index pour les tables exportées" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "Index pour la table" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT pour les tables exportées" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT pour la table" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "TYPES MIME POUR LA TABLE" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS POUR LA TABLE" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "Il semble que votre table utilise des déclencheurs;" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, 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.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "Erreur de lecture des données : " @@ -11530,24 +11536,24 @@ msgstr "" "[mysqld] : " #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "Nom d'utilisateur : " #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Nom d'utilisateur" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Mot de passe" @@ -11588,38 +11594,38 @@ msgstr "" "visibles sur cette liste." #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Tout client" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Local" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Ce serveur" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Tout utilisateur" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "Entrez une valeur : " #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Utiliser la table Host" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11628,7 +11634,7 @@ msgstr "" "table Host sont utilisées à la place." #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Saisir à nouveau" @@ -12365,7 +12371,7 @@ msgstr "Aucun" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Groupe d'utilisateurs" @@ -12439,9 +12445,9 @@ msgstr "" "Limite le nombre de connexions simultanées autorisées pour un utilisateur." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Procédure stockée" @@ -12464,14 +12470,14 @@ msgstr "Permission d'exécuter cette procédure." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Privilèges spécifiques à une table" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Veuillez noter que les noms de privilèges sont exprimés en anglais." @@ -12481,7 +12487,7 @@ msgid "Administration" msgstr "Administration" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Privilèges globaux" @@ -12490,7 +12496,7 @@ msgid "Global" msgstr "Global" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Privilèges spécifiques à une base de données" @@ -12502,31 +12508,31 @@ msgstr "Permission de créer des tables." msgid "Allows dropping tables." msgstr "Permission d'effacer des tables." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 msgid "Native MySQL authentication" msgstr "Authentification MySQL native" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 msgid "SHA256 password authentication" msgstr "Authentification par mot de passe SHA256" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 msgid "Native MySQL Authentication" msgstr "Authentification MySQL native" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Information pour la connexion" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Entrez une valeur" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12534,227 +12540,227 @@ msgstr "" "Un compte existe déjà avec le même nom d'utilisateur, mais éventuellement un " "nom d'hôte différent." -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 msgid "Host name:" msgstr "Nom d'hôte :" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 msgid "Host name" msgstr "Nom d'hôte" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Conserver le mot de passe" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 msgid "Authentication Plugin" msgstr "Greffon d'authentification" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 msgid "Password Hashing Method" msgstr "Hachage du mot de passe" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "Le mot de passe de %s a été changé." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Vous avez révoqué les privilèges pour %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 msgid "Add user account" msgstr "Ajouter un compte d'utilisateur" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 msgid "Database for user account" msgstr "Base de données pour ce compte d'utilisateur" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" "Créer une base portant son nom et donner à cet utilisateur tous les " "privilèges sur cette base." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Donner les privilèges passepartout (utilisateur\\_%)." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Donner tous les privilèges sur la base de données \"%s\"." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Utilisateurs ayant accès à \"%s\"" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "La vue %s a été supprimée." -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "«Grant»" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "Privilèges insuffisants pour visualiser les utilisateurs." -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "Aucun utilisateur n'a été trouvé." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "N'importe quel" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "spécifique à cette base de données" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "passepartout" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "spécifique à cette table" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 msgid "Edit privileges" msgstr "Changer les privilèges" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Révoquer" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "Modifier un groupe d'utilisateurs" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… conserver intact l'ancien utilisateur." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… supprimer l'ancien utilisateur." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… effacer tous les privilèges de l'ancien utilisateur, puis l'effacer." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… supprimer l'ancien utilisateur, puis recharger les privilèges au serveur." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "" "Changement des informations de connexion / Copie de compte d'utilisateur" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "Créer un nouveau compte d'utilisateur avec les mêmes privilèges et …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Privilèges spécifiques à la procédure stockée" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 msgid "Remove selected user accounts" msgstr "Effacer les comptes d'utilisateurs sélectionnés" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Effacer tous les privilèges de ces utilisateurs, puis les effacer." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" "Supprimer les bases de données portant le même nom que les utilisateurs." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "Aucun utilisateur n'a été choisi en vue de le détruire !" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Chargement des privilèges en cours" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Les utilisateurs sélectionnés ont été effacés." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Vous avez modifié les privilèges pour %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "Destruction de %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Les privilèges ont été rechargés." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "L'utilisateur %s existe déjà !" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "Privilèges pour %s" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Utilisateur" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "Nouvel utilisateur" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 msgid "Edit privileges:" msgstr "Changer les privilèges :" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "Compte d'utilisateur" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12762,11 +12768,11 @@ msgstr "" "Remarque : Vous tentez de modifier les privilèges de l'utilisateur avec " "lequel vous êtes actuellement connecté." -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "Aperçu des comptes d'utilisateur" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " @@ -12777,7 +12783,7 @@ msgstr "" "connecter si la partie hôte de leur compte permet une connexion de n'importe " "quel hôte (%)." -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12790,7 +12796,7 @@ msgstr "" "effectifs, si des changements manuels ont été apportés. Dans ce cas, vous " "devriez %srecharger les privilèges%s avant de continuer." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12803,11 +12809,11 @@ msgstr "" "effectifs, si des changements manuels ont été apportés. Dans ce cas, les " "privilèges doivent être rechargés mais il vous manque le privilège RELOAD." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "L'utilisateur choisi n'existe pas dans la table des privilèges." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Vous avez ajouté un utilisateur." @@ -15400,7 +15406,6 @@ msgid "Stacked" msgstr "En piles" #: templates/table/chart/tbl_chart.phtml:53 -#| msgid "Chart title" msgid "Chart title:" msgstr "Titre du graphique :" diff --git a/po/fy.po b/po/fy.po index a7943cb809..986e4d72d0 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-04-15 22:05+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Frisian SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -9645,7 +9645,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -9669,21 +9669,21 @@ msgstr "Definysje" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Tabelstruktuer foar tabel" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -9773,7 +9773,7 @@ msgid "Database:" msgstr "Database:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "Gegevens:" @@ -9872,7 +9872,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -9941,8 +9941,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9956,77 +9956,83 @@ msgstr "" msgid "Metadata" msgstr "gegevens" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, php-format -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "No databases" +msgid "Metadata for database %s" +msgstr "Gjin databases" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "" @@ -10775,24 +10781,24 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "Brûkersnamme:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Brûkersnamme" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Wachtwurd" @@ -10831,45 +10837,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Elke host" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "lokaal" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Elke brûker" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "" @@ -11583,7 +11589,7 @@ msgstr "Gjin" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Brûkersgroep" @@ -11646,9 +11652,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -11671,14 +11677,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11688,7 +11694,7 @@ msgid "Administration" msgstr "Administraasje" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "" @@ -11697,7 +11703,7 @@ msgid "Global" msgstr "Globaal" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "" @@ -11709,289 +11715,289 @@ msgstr "" msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "Wachtwurd wizigjen" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 msgid "Native MySQL Authentication" msgstr "" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Oanmeldingsynformaasje" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name:" msgid "Host name:" msgstr "Brûkersnamme:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Lognamme" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 msgid "Authentication Plugin" msgstr "" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "Wachtwurd-hashing:" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Brûker tafoegje" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database structure" msgid "Database for user account" msgstr "Databasestruktuer" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Takenne" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Elke" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "globaal" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "jokerteken" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "Rjochten bewurkje:" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "Brûkersgroep bewurkje" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Privileges" msgid "Routine-specific privileges" msgstr "Rjochten" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 msgid "Remove selected user accounts" msgstr "" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "Rjochten foar %s" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Brûker" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "Nij" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "Rjochten bewurkje:" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "User group" msgid "User account" msgstr "Brûkersgroep" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12000,7 +12006,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12009,11 +12015,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "" diff --git a/po/gl.po b/po/gl.po index 7d867fb3ce..179080541a 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:45+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Galician SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10536,7 +10536,7 @@ msgstr "Opcións de envorcado dos datos" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "A extraer os datos da táboa" @@ -10560,21 +10560,21 @@ msgstr "Definición" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Estrutura da táboa" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Estrutura para a vista" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Estrutura existente para a vista" @@ -10664,7 +10664,7 @@ msgid "Database:" msgstr "Base de datos:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "Datos:" @@ -10774,7 +10774,7 @@ msgid "Data creation options" msgstr "Opcións de creación de datos" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "Baleirar a táboa antes de inserir" @@ -10862,8 +10862,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10877,87 +10877,93 @@ msgstr "" msgid "Metadata" msgstr "Faltan datos de %s" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, fuzzy, php-format #| msgid "Missing data for %s" -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "Faltan datos de %s" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Missing data for %s" +msgid "Metadata for database %s" +msgstr "Faltan datos de %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Creación:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Última actualización:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Última revisión:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "en uso" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Restricións para os envorcados das táboas" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Restricións para a táboa" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Restricións para os envorcados das táboas" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Dentro das táboas:" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "Non empregar AUTO_INCREMENT cos valores cero" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Engadir o valor incremental (AUTO_INCREMENT)" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "TIPOS MIME PARA A TÁBOA" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "RELACIÓNS PARA A TÁBOA" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, 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.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "Produciuse un erro ao ler os datos:" @@ -11877,24 +11883,24 @@ msgstr "" "[mysqld]:" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "Nome de usuario:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Nome do usuario" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Contrasinal" @@ -11935,38 +11941,38 @@ msgstr "" "host=nome_da_máquina." #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Calquera servidor" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Local" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Este servidor" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Calquera usuario" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "Empregar un campo de texto:" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Empregar a táboa Host" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11975,7 +11981,7 @@ msgstr "" "os valores almacenados na táboa Host." #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Reescribir" @@ -12747,7 +12753,7 @@ msgstr "Ningún" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12816,9 +12822,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Limita o número de conexións simultáneas que pode ter o usuario." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12846,14 +12852,14 @@ msgstr "Permite executar rutinas almacenadas." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Privilexios propios das táboas" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -12865,7 +12871,7 @@ msgid "Administration" msgstr "Administración" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Privilexios globais" @@ -12876,7 +12882,7 @@ msgid "Global" msgstr "global" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Privilexios propios das bases de datos" @@ -12888,37 +12894,37 @@ msgstr "Permite crear táboas novas." msgid "Allows dropping tables." msgstr "Permite eliminar táboas." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Autenticación mediante cookies" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Autenticación mediante Signon" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL Authentication" msgstr "Autenticación mediante cookies" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Información sobre o acceso (login)" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Empregar un campo de texto" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 #, fuzzy #| msgid "" #| "An account already exists with the same username but possibly a different " @@ -12930,154 +12936,154 @@ msgstr "" "Xa existe unha conta co mesmo nome de usuario mais con, posibelmente, un " "nome de servidor diferente. Ten a certeza de querer proseguir?" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name:" msgid "Host name:" msgstr "Nome de usuario:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Nome do ficheiro de rexistro" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Non mude o contrasinal" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "Autenticación" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "Hash do contrasinal:" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "Modificouse sen problemas o contrasinal de %s." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Revogou os privilexios de %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Engadir un usuario" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Base de datos para o usuario" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" "Crear unha base de datos co mesmo nome e conceder todos os privilexios." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Conceder todos os privilexios para o nome con comodíns (username\\_%)." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Conceder todos os privilexios sobre a base de datos \"%s\"." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Usuarios que teñen acceso a \"%s\"" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "O usuario foi engadido." -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Conceder" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "Non se achou ningún usuario." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Calquera" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "específico da base de datos" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "comodín" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "específico da base de datos" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "Modificar os privilexios:" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Revogar" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Modificar o servidor" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… manter o anterior." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… eliminar o anterior das táboas de usuarios." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… retirarlle todos os privilexios activos ao anterior e eliminalo despois." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -13085,122 +13091,122 @@ msgstr "" "… eliminar o anterior das táboas de usuarios e recargar os privilexios " "despois." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Modificar a información de acceso (login) / Copiar o usuario" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Crear un usuario novo cos mesmos privilexios e…" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Privilexios propios das columnas" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Eliminar os usuarios seleccionados" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Retirarlles todos os privilexios activos aos usuarios e eliminalos a " "continuación." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "Eliminar as bases de datos que teñan os mesmos nomes que os usuarios." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "Non se escolleu que usuarios eliminar!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "A recargar os privilexios" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Elimináronse sen problemas os usuarios seleccionados." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Acaba de actualizar os privilexios de %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "A eliminar %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Non houbo problemas ao recargar os privilexios." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "Xa existe o usuario %s!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "Privilexios para %s" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Usuario" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "Novo" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "Modificar os privilexios:" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "Users" msgid "User account" msgstr "Usuarios" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "Vista xeral dos usuarios" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13213,7 +13219,7 @@ msgstr "" "privilexios que usa o servidor se se levaron a cabo alteracións manuais. " "Neste caso, debería %svolver a cargar os privilexios%s antes de proseguir." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13232,11 +13238,11 @@ msgstr "" "privilexios que usa o servidor se se levaron a cabo alteracións manuais. " "Neste caso, debería %svolver a cargar os privilexios%s antes de proseguir." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "Non se atopou o usuario escollido na táboa de privilexios." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Engadiu un usuario novo." diff --git a/po/he.po b/po/he.po index 0970fd708d..202611807e 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-07-28 16:36+0200\n" "Last-Translator: Moshe Harush \n" "Language-Team: Hebrew SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10548,7 +10548,7 @@ msgstr "אפשרויות ייצוא מאגר נתונים" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "הוצאת מידע עבור טבלה" @@ -10575,14 +10575,14 @@ msgstr "תיאור" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "מבנה טבלה עבור טבלה" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 #, fuzzy msgid "Structure for view" @@ -10590,7 +10590,7 @@ msgstr "מבנה בלבד" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10705,7 +10705,7 @@ msgid "Database:" msgstr "מסד נתונים" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10821,7 +10821,7 @@ msgid "Data creation options" msgstr "לתבנית זאת אין אפשרויות" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -10890,8 +10890,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10905,85 +10905,92 @@ msgstr "" msgid "Metadata" msgstr "נתונים סטטיים" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" -msgstr "" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Dumping data for table" +msgid "Metadata for table %s" +msgstr "הוצאת מידע עבור טבלה" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Create table on database %s" +msgid "Metadata for database %s" +msgstr "יצירת טבלה חדשה על מאגר נתונים %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "יצירה:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "עדכון אחרון:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "נבדק לאחרונה:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "בשימוש" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "הגבלות לטבלאות שהוצאו" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "הגבלות לטבלה" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "הגבלות לטבלאות שהוצאו" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "בתוך הטבלאות:" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "הוספת ערך AUTO_INCREMENT (מספור אוטומטי)" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "הוספת ערך AUTO_INCREMENT (מספור אוטומטי)" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "מבנה בלבד" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 #, fuzzy msgid "Error reading data:" msgstr "מאפשר מחיקת מידע." @@ -11783,7 +11790,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11791,18 +11798,18 @@ msgstr "שם משתמש" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "שם משתמש" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "סיסמא" @@ -11842,47 +11849,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "כל שרת מארח" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "מקומי" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "מארח זה" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "כל משתמש" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "השתמש בשדה טקסט" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "הקלדה נוספת" @@ -12676,7 +12683,7 @@ msgstr "ללא" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12743,9 +12750,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Add new field" @@ -12770,14 +12777,14 @@ msgstr "מאפשר יצירת שגרות מאוחסנות." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "הרשאות ספציפיות-לטבלאות" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -12789,7 +12796,7 @@ msgid "Administration" msgstr "ניהול" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "הרשאות גלובליות" @@ -12800,7 +12807,7 @@ msgid "Global" msgstr "עולמי" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "הרשאות ספציפיות למאגר נתונים" @@ -12812,312 +12819,312 @@ msgstr "מאפשר יצירת טבלאות חדשות." msgid "Allows dropping tables." msgstr "מאפשר מחיקת טבלאות." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Documentation" msgid "Native MySQL authentication" msgstr "תיעוד" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "שינוי סיסמא" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Documentation" msgid "Native MySQL Authentication" msgstr "תיעוד" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "מידע כניסה" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "השתמש בשדה טקסט" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "שם משתמש" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "שם דו\"ח" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "אל תשנה את הסיסמא" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Documentation" msgid "Authentication Plugin" msgstr "תיעוד" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password:" msgid "Password Hashing Method" msgstr "סיסמא:" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "הסיסמא עבור %s שונתה בהצלחה." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "אתה שללת הרשאות עבור %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "הוספת משתמש" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database export options" msgid "Database for user account" msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, fuzzy, php-format msgid "Grant all privileges on database \"%s\"." msgstr "בדיקת הראשות עבור מאגר נתונים \"%s\"." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 #, fuzzy msgid "User has been added." msgstr "שדה %s נמחק" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "הענקה" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "לא נמצאו משתמשים." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "כל דבר" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "עולמי" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "ספציפי למאגר הנתונים" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "תו כללי" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "ספציפי למאגר הנתונים" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "עריכת הרשאות" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "שלילה" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "עריכת השורה הבאה" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… שמירת הישן." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… מחיקת הישן מטבלאות המשתמשים." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… בטל את כל ההרשאות הפעילות מהישן ומחק אותו לאחר מכן." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… מחיקת הישן מטבלאות המשתמשים וטען מחדש את ההרשאות לאחר מכן." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "שינוי מידע כניסה / העתקת משתמש" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "יצירת משתמש חדש עם אותן ההרשאות וגם …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "הרשאות ספציפיות-לעמודה" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "הסרת משתמשים שנבחרו" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "שלילת כל ההרשאות הפעילות מהמשתמשים ומחיקתם לאחר מכן." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "הסרת מאגרי נתונים שיש להם שמות דומים כמו למשתמשים." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "טוען מחדש הרשאות" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 #, fuzzy msgid "The selected users have been deleted successfully." msgstr "%s מסדי נתונים נמחקו בהצלחה." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "אתה עדכנת הרשאות עבור %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "מוחק %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "ההרשאות נטענו מחדש בהצלחה." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "שם המשתמש %s כבר קיים!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "הרשאות" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "משתמש" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "עריכת הרשאות" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "User" msgid "User account" msgstr "משתמש" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "סקירת משתמשים" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13129,7 +13136,7 @@ msgstr "" "הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן " "ידני. במקרה זה, אתה צריך לבצע %sטעינה מחדש של הרשאות%s לפני שאתה ממשיך." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13147,11 +13154,11 @@ msgstr "" "הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן " "ידני. במקרה זה, אתה צריך לבצע %sטעינה מחדש של הרשאות%s לפני שאתה ממשיך." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "המשתמש שנבחר לא נמצא בטבלת ההרשאות." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "משתמש חדש נוסף." @@ -18129,9 +18136,6 @@ msgstr "" #~ msgid "Create Table" #~ msgstr "יצירת עמוד חדש" -#~ msgid "Create table on database %s" -#~ msgstr "יצירת טבלה חדשה על מאגר נתונים %s" - #~ msgid "Data Label" #~ msgstr "תווית" diff --git a/po/hi.po b/po/hi.po index 2b8d1a368d..ca96a9cc93 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:29+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Hindi SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10839,7 +10839,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -10865,21 +10865,21 @@ msgstr "वर्णन" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "वीएव के लिए संरचना" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10991,7 +10991,7 @@ msgid "Database:" msgstr "डाटाबेस" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11108,7 +11108,7 @@ msgid "Data creation options" msgstr "परिवर्तन के विकल्प" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -11177,8 +11177,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11192,87 +11192,93 @@ msgstr "" msgid "Metadata" msgstr "मेटाडेटा हेडर" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, fuzzy, php-format #| msgid "Metadata Headers" -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "मेटाडेटा हेडर" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Metadata Headers" +msgid "Metadata for database %s" +msgstr "मेटाडेटा हेडर" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "रचना:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "पिछला नवीनीकरण:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "पिछली जाँच:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "उपयोग में है" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "दुम्प टेबलओं के लिए प्रतिबन्ध" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "टेबल के लिए प्रतिबन्ध" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "दुम्प टेबलओं के लिए प्रतिबन्ध" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "टेबल में:" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "शुन्य मूल्य के लिए AUTO_INCREMENT का प्रयोग न करें" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT मूल्य जोडें" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "टेबल के लिए MIME प्रकार" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "टेबल के लिए संबंध" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "वीएव के लिए संरचना" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -12084,7 +12090,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "User name" msgid "User name:" @@ -12092,18 +12098,18 @@ msgstr "यूसर नेम" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "यूसर नेम" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "पासवर्ड" @@ -12144,47 +12150,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "कोई भी होस्ट" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Local" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "इस होस्ट" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "कोई भी यूसर" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 #, fuzzy #| msgid "Text fields" msgid "Use text field:" msgstr "पाठ फ़ील्ड" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "होस्ट टेबल का उपयोग करें" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "फिर से लिखें" @@ -13015,7 +13021,7 @@ msgstr "नहीं" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -13082,9 +13088,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "यूसर के समकालिक कनेक्शन की संख्या सिमित है।" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -13111,14 +13117,14 @@ msgstr "संग्रहीत दिनचर्या को क्रिय #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "केवल टेबल के प्रिविलेज" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -13130,7 +13136,7 @@ msgid "Administration" msgstr "एडमिनिस्ट्रेशन" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "वैश्विक प्रिविलेज" @@ -13141,7 +13147,7 @@ msgid "Global" msgstr "वैश्विक" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "केवल डाटाबेस के प्रिविलेज" @@ -13153,308 +13159,308 @@ msgstr "नया टेबल बनाने की अनुमति दे msgid "Allows dropping tables." msgstr "टेबल को हटाने की अनुमति देता है।" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "कुकी प्रमाणीकरण" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "signon प्रमाणीकरण" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL Authentication" msgstr "कुकी प्रमाणीकरण" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "प्रवेश जानकारी" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "यूसर नेम" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "लॉग नाम" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "पासवर्ड मत बदलिये" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "प्रमाणीकरण" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "शब्दकूट हैशिंग" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "%s का पासवर्ड सफलतापूर्वक बदल गया।" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "आपने %s के privileges वापस ले लिया." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "नया प्रयोक्ता जोड़ें" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "यूसर के लिए डेटाबेस" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "एक ही नाम के साथ डेटाबेस बनाएँ और सभी विशेषाधिकारों को अनुदान।" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "वाइल्डकार्ड नाम (यूसरनाम\\_%) पर सभी विशेषाधिकार अनुदान।" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "\"%s\" डेटाबेस पर सभी विशेषाधिकारों का अनुदान करें।" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "द्रश्य %s रद्द दिया गया है." -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "अनुदान" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "कोई यूसर नहीं।" -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "कोई" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "वैश्विक" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "डेटाबेस-विशेष" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "वाइल्डकार्ड" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "डेटाबेस-विशेष" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "प्रिविलेज एडिट करें" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "वापस लो" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "सर्वर को संपादित करें" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… पुराने रखना।" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… पुराने यूसर को टेबल से हटाना।" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "केवल कोलम के प्रिविलेज" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "चयनित यूसर हटायें" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "यूसर से सभी सक्रिय विशेषाधिकार रद्द करने और उन्हें बाद में हटा।" -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "विशेषाधिकार पुनः लोड" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "आपने %s के प्रिविलेज अपडेट कर दिया ।" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "चयनित यूसर को सफलतापूर्वक हटा दिया गया है।" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "उपयोगकर्ता %s पहले से मौजूद है!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "प्रिविलेज" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "यूजर" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "प्रिविलेज एडिट करें" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "User" msgid "User account" msgstr "यूसर" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "यूसर सिंहावलोकन" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13463,7 +13469,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -13472,11 +13478,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "आपने नया यूसर बना लिया।" diff --git a/po/hr.po b/po/hr.po index 4bf3ede60a..f87ad359f9 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:24+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Croatian SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10850,7 +10850,7 @@ msgstr "Opcije izvoza baze podataka" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Izbacivanje podataka za tablicu" @@ -10876,21 +10876,21 @@ msgstr "Opis" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Tablična struktura za tablicu" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Struktura za pregledavanje" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Unutarnja struktura za pregledavanje" @@ -11004,7 +11004,7 @@ msgid "Database:" msgstr "Baza podataka" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11120,7 +11120,7 @@ msgid "Data creation options" msgstr "Opcije preoblikovanja" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -11189,8 +11189,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11204,92 +11204,99 @@ msgstr "" msgid "Metadata" msgstr "Podatci" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" -msgstr "" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Dumping data for table" +msgid "Metadata for table %s" +msgstr "Izbacivanje podataka za tablicu" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Create table on database %s" +msgid "Metadata for database %s" +msgstr "Izradi novu tablicu u bazi podataka %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 #, fuzzy #| msgid "Creation" msgid "Creation:" msgstr "Izrada" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 #, fuzzy #| msgid "Last update" msgid "Last update:" msgstr "Posljednje ažuriranje" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 #, fuzzy #| msgid "Last check" msgid "Last check:" msgstr "Posljednja provjera" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "u upotrebi" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Ograničenja za izbačene tablice" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Ograničenja za tablicu" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Ograničenja za izbačene tablice" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Unutar tablica:" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Dodaj vrijednost AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Dodaj vrijednost AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "MIME VRSTE ZA TABLICU" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "RELACIJE TABLICE" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Struktura za pregledavanje" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -12188,7 +12195,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "User name" msgid "User name:" @@ -12196,18 +12203,18 @@ msgstr "Korisničko ime" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Korisničko ime" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Lozinka" @@ -12249,47 +12256,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Bilo koje računalo" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Lokalno" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Ovo računalo" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Bilo koji korisnik" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Upotrijebi tekstualno polje" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Upotrijebi tablicu poslužitelja" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Ponovite" @@ -13117,7 +13124,7 @@ msgstr "bez kompresije" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -13190,9 +13197,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Ograničava broj istovremenih povezivanja koje korisnik može imati." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -13220,14 +13227,14 @@ msgstr "Dopušta pokretanje pohranjenih rutina." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Privilegije specifične za tablicu" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -13239,7 +13246,7 @@ msgid "Administration" msgstr "Administracija" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Opće privilegije" @@ -13250,7 +13257,7 @@ msgid "Global" msgstr "opće" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Privilegije specifične za bazu podataka" @@ -13262,314 +13269,314 @@ msgstr "Dopušta izradu novih tablica." msgid "Allows dropping tables." msgstr "Dopušta odbacivanje tablica." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Documentation" msgid "Native MySQL authentication" msgstr "Dokumentacija" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "Promijeni lozinku" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Documentation" msgid "Native MySQL Authentication" msgstr "Dokumentacija" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "_Podaci prijave" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Upotrijebi tekstualno polje" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Korisničko ime" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Naziv zapisnika" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Ne mijenjaj lozinku" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Documentation" msgid "Authentication Plugin" msgstr "Dokumentacija" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Izrada presjeka lozinke" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "Lozinka za %s uspješno je promijenjena." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Opozvali ste privilegije za %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Dodaj korisnika" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Baza podataka za korisnika" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "Izradi bazu podataka istog naziva i podari sve privilegije." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Podari sve privilegije imenima s džokerima (korisničkoime_%)." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, fuzzy, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Provjeri privilegije za bazu podataka \"%s\"." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Korisnici koji imaju pristup u \"%s\"" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Index %s je ispušten" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Podarivanje" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Korisnici nisu pronađeni." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Bilo koji" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "opće" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "specifično za bazu podataka" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "džoker" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "specifično za bazu podataka" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Uredi privilegije" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Opozovi" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 #, fuzzy msgid "Edit user group" msgstr "Web poslužitelj" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… zadržati staru." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… izbriši starog iz korisničkih tablica." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… opozovi sve aktivne privilegije iz stare i potom je izbriši." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… izbriši starog iz korisničkih tablica i potom ponovo učitaj privilegije." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Promjena podataka prijave / Kopiranje korisnika" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Izradi novog korisnika s istim privilegijama i…" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Privilegije specifične za stupac" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Ukloni odabrane korisnike" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Opozovi sve aktivne privilegije korisnika i potom ih izbriši." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "Ispusti baze podataka koje imaju iste nazive i korisnike." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "Nema odabranih korisnika za uklanjanje!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Ponovno učitavanje privilegija" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Odabrani korisnici uspješno su izbrisani." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Ažurirali ste privilegije za %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "Brisanje %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspješno učitane." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "Korisnik %s već postoji!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilegije" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Korisnik" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 #, fuzzy #| msgid "New" msgctxt "Create new user" msgid "New" msgstr "Novo" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Uredi privilegije" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "User" msgid "User account" msgstr "Korisnik" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Pregled korisnika" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13582,7 +13589,7 @@ msgstr "" "može se razlikovati od privilegija koje upotrebljava poslužitelj. U tom je " "slučaju potrebno %sponovo učitati privilegije%s prije nastavljanja rada." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13601,11 +13608,11 @@ msgstr "" "može se razlikovati od privilegija koje upotrebljava poslužitelj. U tom je " "slučaju potrebno %sponovo učitati privilegije%s prije nastavljanja rada." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "Odabrani korisnik nije pronađen u tablici privilegija." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Dodali ste novog korisnika." @@ -19143,9 +19150,6 @@ msgstr "najv. uzastopnih veza" #~ msgstr "" #~ "(ili priključak lokalnog MySQL poslužitelja nije ispravno konfiguriran)" -#~ msgid "Create table on database %s" -#~ msgstr "Izradi novu tablicu u bazi podataka %s" - #~ msgid "Data Label" #~ msgstr "Oznaka" diff --git a/po/hu.po b/po/hu.po index 5b73e22d1e..9878a1ca61 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:09+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Hungarian SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10327,7 +10327,7 @@ msgstr "Adatkiírási beállítások" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "A tábla adatainak kiíratása" @@ -10351,21 +10351,21 @@ msgstr "Meghatározás" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Tábla szerkezet ehhez a táblához" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Nézet szerkezete" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "A nézet helyettes szerkezete" @@ -10456,7 +10456,7 @@ msgid "Database:" msgstr "Adatbázis:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "Adatok:" @@ -10558,7 +10558,7 @@ msgid "Data creation options" msgstr "Adatlétrehozási beállítások" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "Tábla csonkolása beszúrás előtt" @@ -10641,8 +10641,8 @@ msgstr "Úgy tűnik, az adatbázis eljárásokat használ;" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 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." @@ -10654,77 +10654,84 @@ msgstr "Úgy tűnik, az adatbázis függvényeket használ;" msgid "Metadata" msgstr "Metaadat" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "%s metaadatai" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for database %s" +msgstr "%s metaadatai" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Létrehozva:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Utolsó frissítés:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Utolsó ellenőrzés:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "használatban" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "Úgy tűnik, az adatbázis nézeteket használ;" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Megkötések a kiírt táblákhoz" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Megkötések a táblához" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "Indexek a kiírt táblákhoz" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "A tábla indexei" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "A kiírt táblák AUTO_INCREMENT értéke" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT a táblához" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "Tábla MIME-típusok" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "TÁBLA KAPCSOLATAI" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "Úgy tűnik, a tábla eseményindítókat használ;" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, 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.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "Hiba az adatolvasás közben:" @@ -11587,24 +11594,24 @@ msgstr "" "szakaszhoz:" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "Felhasználónév:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Felhasználónév" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Jelszó" @@ -11644,38 +11651,38 @@ msgstr "" "Csak a --report-host=host_name-mel kezdődő szolgák láthatók ebben a listában." #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Bármilyen gép" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Helyi" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Ez a gép" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Bármilyen felhasználó" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "Szöveges mező használata:" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Géptábla használata" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11684,7 +11691,7 @@ msgstr "" "értékek kerülnek felhasználásra helyette." #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Újraírás" @@ -12420,7 +12427,7 @@ msgstr "Nincs" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Felhasználói csoport" @@ -12497,9 +12504,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Korlátozza a felhasználó egyidejű kapcsolatainak számát." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12528,14 +12535,14 @@ msgstr "Engedélyezi a tárolt eljárások végrehajtását." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Táblaspecifikus jogok" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Megjegyzés: a MySQL jogosultságnevek az angolból származnak." @@ -12545,7 +12552,7 @@ msgid "Administration" msgstr "Adminisztráció" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Globális jogok" @@ -12554,7 +12561,7 @@ msgid "Global" msgstr "Globális" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Adatbázis-specifikus jogok" @@ -12566,37 +12573,37 @@ msgstr "Engedélyezi új táblák készítését." msgid "Allows dropping tables." msgstr "Engedélyezi a táblák eldobását." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Cookie hitelesítés" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Signon hitelesítés" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL Authentication" msgstr "Cookie hitelesítés" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Bejelentkezési adatok" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Szöveges mező használata" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12604,229 +12611,229 @@ msgstr "" "Egy fiók már létezik ugyanezzel a felhasználónévvel, de esetleg egy másik " "gépnévvel." -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 msgid "Host name:" msgstr "Gépnév:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 msgid "Host name" msgstr "Gépnév" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Nincs jelszó megváltoztatás" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 msgid "Authentication Plugin" msgstr "Hitelesítés bővítmény" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "Jelszó hash:" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "%s jelszavának megváltoztatása sikerült." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "%s jogainak visszavonása megtörtént." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 msgid "Add user account" msgstr "Felhasználói fiók hozzáadása" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 msgid "Database for user account" msgstr "Adatbázis a felhasználói fiók számára" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "Azonos nevű adatbázis létrehozása, és az összes jog engedélyezése." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Az összes jog engedélyezése karakterhelyettesítős néven (username\\_%)." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Az összes jog engedélyezése a(z) \"%s\" adatbázison." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "A(z) \"%s\" adatbázishoz hozzáférhető felhasználók" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "A felhasználó hozzáadása megtörtént." -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Engedélyezés" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "Nincs elegendő jogosultság a felhasználók megtekintéséhez." -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "Nem található felhasználó." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Bármi" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "globális" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "adatbázis-specifikus" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "karakterhelyettesítő" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "tábla-specifikus" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit privileges:" msgid "Edit privileges" msgstr "Jogok szerkesztése:" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Visszavonás" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "Felhasználói csoport szerkesztése" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… a régiek megőrzése." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… a régiek törlése a felhasználói táblákból." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… az összes aktív jog visszaállítása a régiekből, majd törlés." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… a régiek törlése a felhasználói táblákból, majd a jogok újratöltése." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "Bejelentkezési adatok módosítása / Felhasználói fiók másolása" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "Új felhasználói fiók létrehozása ezekkel a jogokkal, és …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Oszlopspecifikus jogok" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 msgid "Remove selected user accounts" msgstr "A kijelölt felhasználói fiókok eltávolítása" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "A felhasználók összes jogának visszavonása, majd törlése." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "A felhasználókéval azonos nevű adatbázisok eldobása." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "Nincs törlésre kijelölt felhasználó!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "A jogok újratöltése" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "A kiválasztott felhasználók törlése sikerült." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Ön frissítette %s jogait." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "%s törlése" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "A jogok újratöltése sikerült." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "%s felhasználó már létezik!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "%s jogosultságai" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Felhasználó" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "új" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 msgid "Edit privileges:" msgstr "Jogok szerkesztése:" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "Felhasználói fiók" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12834,11 +12841,11 @@ msgstr "" "Megjegyzés: annak a felhasználónak a jogosultságait próbálja szerkeszteni, " "amellyel jelenleg be van lépve." -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "Felhasználói fiókok áttekintése" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " @@ -12849,7 +12856,7 @@ msgstr "" "kapcsolódását, ha a fiókjuk gép része lehetővé tesz egy kapcsolatot bármely " "(%) gépről." -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12862,7 +12869,7 @@ msgstr "" "használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben " "%stöltse be újra a jogokat%s a folytatás előtt." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12875,11 +12882,11 @@ msgstr "" "által használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben a " "jogokat újra kell tölteni, de jelenleg nincs RELOAD joga." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "Nem található a kiválasztott felhasználó a privilégium táblában." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Az új felhasználó hozzáadása megtörtént." diff --git a/po/hy.po b/po/hy.po index a7b175dc83..5e2e8dd912 100644 --- a/po/hy.po +++ b/po/hy.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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-24 16:49+0200\n" "Last-Translator: Andrey Aleksanyants \n" "Language-Team: Armenian սյունակի տեսա #: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3802 +#: libraries/server_privileges.lib.php:3795 msgid "Show all" msgstr "Ցուցադրել բոլորը" @@ -2996,10 +2996,10 @@ msgstr "Կրկնել հարցումը" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3134 -#: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:3307 -#: libraries/server_privileges.lib.php:4563 +#: libraries/server_privileges.lib.php:3128 +#: libraries/server_privileges.lib.php:3299 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:4556 #: libraries/server_status_processes.lib.php:84 #: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 @@ -3555,7 +3555,7 @@ msgstr "Կարող է մոտավոր լինել։ Դիմեք [doc@faq3-11]FAQ 3. #: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:656 +#: libraries/controllers/table/TableSearchController.php:645 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." @@ -3731,8 +3731,8 @@ msgstr "Ցուցակագրեր" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2611 -#: libraries/server_privileges.lib.php:3529 +#: libraries/server_privileges.lib.php:2605 +#: libraries/server_privileges.lib.php:3522 #: libraries/server_user_groups.lib.php:83 #: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 @@ -3847,10 +3847,10 @@ msgstr "Ներկայացում" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3152 -#: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:3313 -#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/server_privileges.lib.php:3146 +#: libraries/server_privileges.lib.php:3305 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4570 libraries/tracking.lib.php:1489 #: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:26 @@ -3889,8 +3889,8 @@ msgstr "Զետեղել" #: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 #: libraries/Util.php:4363 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:4452 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2603 +#: libraries/server_privileges.lib.php:4445 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Արտոնություններ" @@ -3913,7 +3913,7 @@ msgstr "Հետագծում" #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1989 +#: libraries/plugins/export/ExportSql.php:2001 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3954,7 +3954,7 @@ msgstr "Կենտրոնական սյունակներ" #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4556 msgid "Databases" msgstr "Տվյալների բազաներ" @@ -7723,15 +7723,15 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr "Ներքին կապակցումները հաջողությամբ արդիացվեցին։" -#: libraries/controllers/table/TableSearchController.php:841 +#: libraries/controllers/table/TableSearchController.php:830 msgid "Table search" msgstr "Աղյուսակում որոնում" -#: libraries/controllers/table/TableSearchController.php:848 +#: libraries/controllers/table/TableSearchController.php:837 msgid "Zoom search" msgstr "Մոտեցնելով որոնում" -#: libraries/controllers/table/TableSearchController.php:853 +#: libraries/controllers/table/TableSearchController.php:842 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Գտնել և փոխարինել" @@ -7827,20 +7827,20 @@ msgstr "" #: libraries/display_change_password.lib.php:64 #: libraries/replication_gui.lib.php:879 -#: libraries/server_privileges.lib.php:1839 +#: libraries/server_privileges.lib.php:1835 msgid "No Password" msgstr "Առանց գաղտնաբառի" #: libraries/display_change_password.lib.php:72 #: libraries/plugins/auth/AuthenticationCookie.php:203 #: libraries/replication_gui.lib.php:426 libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1811 msgid "Password:" msgstr "Գաղտնաբառ՝" #: libraries/display_change_password.lib.php:78 #: libraries/replication_gui.lib.php:890 -#: libraries/server_privileges.lib.php:1857 +#: libraries/server_privileges.lib.php:1853 msgid "Re-type:" msgstr "Հաստատել՝" @@ -7850,7 +7850,7 @@ msgid "Password Hashing:" msgstr "" #: libraries/display_change_password.lib.php:122 -#: libraries/server_privileges.lib.php:1903 +#: libraries/server_privileges.lib.php:1898 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -9794,7 +9794,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -9818,21 +9818,21 @@ msgstr "Սահմանում" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Աղյուսակի կառուցվածքը" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -9922,7 +9922,7 @@ msgid "Database:" msgstr "Տվյալների բազան՝" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "Տվյալներ՝" @@ -10014,7 +10014,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "Դատարկել աղյուսակը՝ տվյալներ զետեղելուց առաջ" @@ -10083,8 +10083,8 @@ msgstr "Ըստ երևույթի, ձեր ՏԲ-ն օգտագործում է ընթ #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10096,77 +10096,84 @@ msgstr "Ըստ երևույթի, ձեր ՏԲ-ն օգտագործում է գոր msgid "Metadata" msgstr "Անդրտվյալներ" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "%s-ի անդրտվյալները" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for database %s" +msgstr "%s-ի անդրտվյալները" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Ստեղծում՝" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Վերջին թարմացումը՝" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Վերջին ստուգումը՝" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "օգտագործվում է" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "Ըստ երևույթի, ձեր ՏԲ-ն օգտագործում է ներկայացումներ;" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "Պահպանված աղյուսակների ցուցակագրերը" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "Աղյուսակի ցուցակագրերը" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT՝ պահպանված աղյուսակների համար" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT՝ աղյուսակի համար" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "ԱՂՅՈՒՍԱԿՆԵՐԻ MIME ՏԵՍԱԿՆԵՐԸ" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "Ըստ երևույթի, ձեր ՏԲ-ն օգտագործում է ձգաններ;" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "Տվյալների կարդալու սխալ՝" @@ -10921,24 +10928,24 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "Օգտանուն՝" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Օգտանուն" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Գաղտնաբառ" @@ -10977,45 +10984,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Ցանկացած խնամորդ" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Տեղային" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Յաս խնամորդը" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Ցանկացած օգտվող" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "Օգտագործել գրվածքի դաշտը՝" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Օգտագործել խնամորդի աղյուսակը" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Հաստատել" @@ -11726,7 +11733,7 @@ msgstr "Չկա" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Օգտվողների խումբ" @@ -11798,9 +11805,9 @@ msgstr "" "Սահմանափակում է մեկ օգտվողի մասով միաժամանակ միացումների առավելագույն քանակը։" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Գործընթաց" @@ -11821,14 +11828,14 @@ msgstr "Թույլատրում է տվյալ գործընթացի կատարու #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11839,7 +11846,7 @@ msgid "Administration" msgstr "Կառավարում" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Ընդհանրական արտոնություններ" @@ -11848,7 +11855,7 @@ msgid "Global" msgstr "Ընդհանրական" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "" @@ -11860,274 +11867,274 @@ msgstr "Թույլատրում է նոր աղյուսակների ստեղծու msgid "Allows dropping tables." msgstr "Թույլատրում է աղյուսակների ջնջումը։" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 msgid "Native MySQL authentication" msgstr "MySQL-ի բնականոն վավերացումը" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 msgid "SHA256 password authentication" msgstr "SHA256 գաղտնաբառով վավերացումը" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 msgid "Native MySQL Authentication" msgstr "MySQL-ի բնականոն վավերացումը" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Հաշվի հավատարմագրերը" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Օգտագործել գրվածքի դաշտը" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 msgid "Host name:" msgstr "Խնամորդի անունը՝" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 msgid "Host name" msgstr "Խնամորդի անունը" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 msgid "Authentication Plugin" msgstr "Վավերացման խրվակ" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Դուք չեղարկեցիք արտոնությունները %s-ի համար։" -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 msgid "Add user account" msgstr "Ավելացնել օգտվողի հաշիվ" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 msgid "Database for user account" msgstr "Տվյալների բազա՝ օգտվողի հաշվի համար" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" "Ստեղծել տվյալների բազան նույն անունով և շնորհել բոլոր արտոնությունները։" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Շնորհել բոլոր արտոնությունները դերանշանին համապատասխանող օգտանուններին " "(օգտանուն\\_%)։" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Օգտվողներ՝ \"%s\" մատչման հնարավորությումբ" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "Օգտվողը ավելացվեց։" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Շնորհել" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "Օգտնողներին դիտելու համար արտոնությունները բավարար չեն։" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "Օգտվողը չի գտնվել։" -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Ցանկացած" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "ընդհանրական" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "դերանշան" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 msgid "Edit privileges" msgstr "Խմբագրել արտոնությունները" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Հետարկել" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "Խմբագրել օգտվողների խումբը" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… պահել ավելի հինը։" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… ջնջել օգտվողների աղյուսակներից ավելի հինը։" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Գործընթացին բնորոշ արտոնություններ" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 msgid "Remove selected user accounts" msgstr "Ջնջել նշված օգտվողների հաշիվները" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" "Ջնջել տվյալների բազաները, որոնց անունները համընկնում են օգտվողների անունների " "հետ։" -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Արտոնությունների վերաբեռնում" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "%s-ի ջնջում" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "%s օգտվողը արդեն իսկ առկա է։" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "Արտոնություններ %s-ի համար" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Օգտվող" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "Նոր" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 msgid "Edit privileges:" msgstr "Խմբագրել արտոնությունները՝" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "Օգտվողի հաշիվ" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "Օգտվողների հաշիվների ակնարկում" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12136,7 +12143,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12145,11 +12152,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "" diff --git a/po/ia.po b/po/ia.po index ef428f88c2..60067f8c4b 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-11-15 22:07+0000\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" @@ -99,7 +99,7 @@ msgstr "Columna" #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:2602 libraries/tracking.lib.php:893 #: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 @@ -190,11 +190,11 @@ msgstr "Primari" #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 -#: libraries/server_privileges.lib.php:2785 -#: libraries/server_privileges.lib.php:2973 -#: libraries/server_privileges.lib.php:2993 -#: libraries/server_privileges.lib.php:3631 -#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/server_privileges.lib.php:2779 +#: libraries/server_privileges.lib.php:2967 +#: libraries/server_privileges.lib.php:2987 +#: libraries/server_privileges.lib.php:3624 +#: libraries/server_privileges.lib.php:3647 libraries/tracking.lib.php:946 #: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 @@ -224,11 +224,11 @@ msgstr "No" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2785 -#: libraries/server_privileges.lib.php:2970 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3628 -#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/server_privileges.lib.php:2779 +#: libraries/server_privileges.lib.php:2964 +#: libraries/server_privileges.lib.php:2985 +#: libraries/server_privileges.lib.php:3621 +#: libraries/server_privileges.lib.php:3647 libraries/tracking.lib.php:946 #: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 @@ -494,9 +494,9 @@ msgstr "Adde un geometria" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2345 -#: libraries/server_privileges.lib.php:3116 -#: libraries/server_privileges.lib.php:3735 +#: libraries/server_privileges.lib.php:2339 +#: libraries/server_privileges.lib.php:3110 +#: libraries/server_privileges.lib.php:3728 #: libraries/server_user_groups.lib.php:290 #: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 #: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 @@ -1110,12 +1110,12 @@ msgstr "Le nomine de hospite es vacue!" msgid "The user name is empty!" msgstr "Le nomine de usator es vacue!" -#: js/messages.php:143 libraries/server_privileges.lib.php:2047 +#: js/messages.php:143 libraries/server_privileges.lib.php:2042 #: user_password.php:116 msgid "The password is empty!" msgstr "Le contrassigno es vacue!" -#: js/messages.php:144 libraries/server_privileges.lib.php:2045 +#: js/messages.php:144 libraries/server_privileges.lib.php:2040 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Le contrasignos non es le mesme!" @@ -1330,7 +1330,7 @@ msgstr "Pro favor tu adde al minus un variabile al series!" #: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1701,7 +1701,6 @@ msgid "Formatting SQL…" msgstr "Formatante SQL…" #: js/messages.php:343 -#| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Il non trovava aucun parametros!" @@ -1834,10 +1833,10 @@ msgstr "" #: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 #: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2450 -#: libraries/server_privileges.lib.php:2529 -#: libraries/server_privileges.lib.php:2875 -#: libraries/server_privileges.lib.php:3543 +#: libraries/server_privileges.lib.php:2444 +#: libraries/server_privileges.lib.php:2523 +#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:3536 #: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 @@ -1912,8 +1911,8 @@ msgid "%d is not valid row number." msgstr "%d non es un valide numero de rangos." #: js/messages.php:409 -#: libraries/controllers/table/TableSearchController.php:432 -#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/controllers/table/TableSearchController.php:427 +#: libraries/controllers/table/TableSearchController.php:906 #: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "Naviga inter valores externe" @@ -2347,7 +2346,7 @@ msgstr "" #: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3802 +#: libraries/server_privileges.lib.php:3795 msgid "Show all" msgstr "Monstra omnes" @@ -3014,10 +3013,10 @@ msgstr "Repite Query" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3134 -#: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:3307 -#: libraries/server_privileges.lib.php:4563 +#: libraries/server_privileges.lib.php:3128 +#: libraries/server_privileges.lib.php:3299 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:4556 #: libraries/server_status_processes.lib.php:84 #: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 @@ -3575,7 +3574,7 @@ msgstr "Il pote esser approximate. Vide[doc@faq3-11]FAQ 3.11[/doc]." #: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:656 +#: libraries/controllers/table/TableSearchController.php:645 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." @@ -3751,8 +3750,8 @@ msgstr "Indices" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2611 -#: libraries/server_privileges.lib.php:3529 +#: libraries/server_privileges.lib.php:2605 +#: libraries/server_privileges.lib.php:3522 #: libraries/server_user_groups.lib.php:83 #: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 @@ -3866,10 +3865,10 @@ msgstr "Vista" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3152 -#: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:3313 -#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/server_privileges.lib.php:3146 +#: libraries/server_privileges.lib.php:3305 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4570 libraries/tracking.lib.php:1489 #: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:26 @@ -3908,8 +3907,8 @@ msgstr "Inserta" #: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 #: libraries/Util.php:4363 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:4452 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2603 +#: libraries/server_privileges.lib.php:4445 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Permissiones" @@ -3932,7 +3931,7 @@ msgstr "Traciamento" #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1989 +#: libraries/plugins/export/ExportSql.php:2001 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3973,7 +3972,7 @@ msgstr "Columnas central" #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4556 msgid "Databases" msgstr "Base de datos" @@ -8065,15 +8064,15 @@ msgstr "Columna de monstrar esseva actualisate con successo." msgid "Internal relations were successfully updated." msgstr "Relationes interne ha essite actualisate on successo." -#: libraries/controllers/table/TableSearchController.php:841 +#: libraries/controllers/table/TableSearchController.php:830 msgid "Table search" msgstr "Cerca de tabella" -#: libraries/controllers/table/TableSearchController.php:848 +#: libraries/controllers/table/TableSearchController.php:837 msgid "Zoom search" msgstr "Cerca de zoom" -#: libraries/controllers/table/TableSearchController.php:853 +#: libraries/controllers/table/TableSearchController.php:842 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Trova e reimplacia" @@ -8176,20 +8175,20 @@ msgstr "" #: libraries/display_change_password.lib.php:64 #: libraries/replication_gui.lib.php:879 -#: libraries/server_privileges.lib.php:1839 +#: libraries/server_privileges.lib.php:1835 msgid "No Password" msgstr "Necun contrasigno" #: libraries/display_change_password.lib.php:72 #: libraries/plugins/auth/AuthenticationCookie.php:203 #: libraries/replication_gui.lib.php:426 libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1811 msgid "Password:" msgstr "Contrasigno:" #: libraries/display_change_password.lib.php:78 #: libraries/replication_gui.lib.php:890 -#: libraries/server_privileges.lib.php:1857 +#: libraries/server_privileges.lib.php:1853 msgid "Re-type:" msgstr "Re-typa:" @@ -8199,7 +8198,7 @@ msgid "Password Hashing:" msgstr "Hachage de contrasigno:" #: libraries/display_change_password.lib.php:122 -#: libraries/server_privileges.lib.php:1903 +#: libraries/server_privileges.lib.php:1898 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10278,7 +10277,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -10302,21 +10301,21 @@ msgstr "Definition" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10406,7 +10405,7 @@ msgid "Database:" msgstr "Base de datos:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "Datos:" @@ -10502,7 +10501,7 @@ msgid "Data creation options" msgstr "Optiones de creation de datos" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -10586,8 +10585,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10599,77 +10598,84 @@ msgstr "" msgid "Metadata" msgstr "Metadatos" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "Metadata pro %s" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for database %s" +msgstr "Metadata pro %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Creation:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Ultime actualisation:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Ultime controlo:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "in uso" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Limites pro tabellas delite (dumped)" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Limites pro tabella" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "Indices pro tabellas delite (dumped)" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "Indices pro tabella" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT pro tabellas delite (dumped)" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT pro tabella" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "Structura pro vider %s exportate como un tabella" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "Il habeva un error quando on legeva datos:" @@ -11421,24 +11427,24 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "Nomine de usator:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Nomine de usator" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Contrasigno" @@ -11477,45 +11483,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Omne hospite" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Local" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Iste hospite" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Omne hospite" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "" @@ -12223,7 +12229,7 @@ msgstr "Necun" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Gruppo de Usator" @@ -12286,9 +12292,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Routine" @@ -12309,14 +12315,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -12326,7 +12332,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "" @@ -12335,7 +12341,7 @@ msgid "Global" msgstr "Global" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "" @@ -12347,269 +12353,269 @@ msgstr "" msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 msgid "Native MySQL authentication" msgstr "Authentication de MySQL native" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 msgid "SHA256 password authentication" msgstr "Authentication de contrasigno SHA256" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 msgid "Native MySQL Authentication" msgstr "Authentication de MySQL native" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 msgid "Host name:" msgstr "Nomine de hospite:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 msgid "Host name" msgstr "Nomine de hospite" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 msgid "Authentication Plugin" msgstr "Plugin de Authentication" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 msgid "Password Hashing Method" msgstr "Methodo de hashing de contrasigno" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 msgid "Add user account" msgstr "Adde conto de usator" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 msgid "Database for user account" msgstr "Base de datos pro conto de usator" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Omne" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "Global" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 msgid "Edit privileges" msgstr "Modifica privilegios" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Revoca" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Privilegios specific pro le routine" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 msgid "Remove selected user accounts" msgstr "Remove contos de usator selectionate" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Usator" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "Nove" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 msgid "Edit privileges:" msgstr "Modifica privilegios:" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "Conto de usator" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12618,7 +12624,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12627,11 +12633,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "" @@ -15002,7 +15008,6 @@ msgid "Stacked" msgstr "" #: templates/table/chart/tbl_chart.phtml:53 -#| msgid "Chart title" msgid "Chart title:" msgstr "Titulo del diagramma:" diff --git a/po/id.po b/po/id.po index e6d09ad493..eb730dd4a1 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Indonesian untuk beralih visibilitas kolom." #: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3802 +#: libraries/server_privileges.lib.php:3795 msgid "Show all" msgstr "Tampilkan semua" @@ -3078,10 +3078,10 @@ msgstr "Kueri ulang" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3134 -#: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:3307 -#: libraries/server_privileges.lib.php:4563 +#: libraries/server_privileges.lib.php:3128 +#: libraries/server_privileges.lib.php:3299 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:4556 #: libraries/server_status_processes.lib.php:84 #: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 @@ -3661,7 +3661,7 @@ msgstr "Kemungkinan hanya perkiraan saja. Lihat [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:656 +#: libraries/controllers/table/TableSearchController.php:645 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." @@ -3840,8 +3840,8 @@ msgstr "Indeks" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2611 -#: libraries/server_privileges.lib.php:3529 +#: libraries/server_privileges.lib.php:2605 +#: libraries/server_privileges.lib.php:3522 #: libraries/server_user_groups.lib.php:83 #: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 @@ -3954,10 +3954,10 @@ msgstr "Gambarkan" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3152 -#: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:3313 -#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/server_privileges.lib.php:3146 +#: libraries/server_privileges.lib.php:3305 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4570 libraries/tracking.lib.php:1489 #: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:26 @@ -3996,8 +3996,8 @@ msgstr "Tambahkan" #: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 #: libraries/Util.php:4363 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:4452 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2603 +#: libraries/server_privileges.lib.php:4445 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Hak Akses" @@ -4020,7 +4020,7 @@ msgstr "Pelacakan" #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1989 +#: libraries/plugins/export/ExportSql.php:2001 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4061,7 +4061,7 @@ msgstr "Tengah kolom" #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4556 msgid "Databases" msgstr "Basis data" @@ -8361,15 +8361,15 @@ msgstr "Sukses hentikan Thread %s." msgid "Internal relations were successfully updated." msgstr "Relasi internal ditambahkan" -#: libraries/controllers/table/TableSearchController.php:841 +#: libraries/controllers/table/TableSearchController.php:830 msgid "Table search" msgstr "Pencarian Tabel" -#: libraries/controllers/table/TableSearchController.php:848 +#: libraries/controllers/table/TableSearchController.php:837 msgid "Zoom search" msgstr "Perbesar pencarian" -#: libraries/controllers/table/TableSearchController.php:853 +#: libraries/controllers/table/TableSearchController.php:842 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Cari dan Gantikan" @@ -8473,20 +8473,20 @@ msgstr "Tidak dapat memuat plugin import, harap periksa instalasi Anda!" #: libraries/display_change_password.lib.php:64 #: libraries/replication_gui.lib.php:879 -#: libraries/server_privileges.lib.php:1839 +#: libraries/server_privileges.lib.php:1835 msgid "No Password" msgstr "Kata Sandi tidak ditetapkan" #: libraries/display_change_password.lib.php:72 #: libraries/plugins/auth/AuthenticationCookie.php:203 #: libraries/replication_gui.lib.php:426 libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1811 msgid "Password:" msgstr "Kata Sandi:" #: libraries/display_change_password.lib.php:78 #: libraries/replication_gui.lib.php:890 -#: libraries/server_privileges.lib.php:1857 +#: libraries/server_privileges.lib.php:1853 msgid "Re-type:" msgstr "Ketik ulang:" @@ -8498,7 +8498,7 @@ msgid "Password Hashing:" msgstr "Pengernaian Kata Sandi (Password Hashing)" #: libraries/display_change_password.lib.php:122 -#: libraries/server_privileges.lib.php:1903 +#: libraries/server_privileges.lib.php:1898 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10769,7 +10769,7 @@ msgstr "Opsi dump data" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Dumping data untuk tabel" @@ -10793,21 +10793,21 @@ msgstr "Definisi" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Struktur dari tabel" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Struktur untuk view" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 #, fuzzy msgid "Stand-in structure for view" @@ -10914,7 +10914,7 @@ msgid "Database:" msgstr "Basis data" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11037,7 +11037,7 @@ msgid "Data creation options" msgstr "Opsi pembuatan objek" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 #, fuzzy msgid "Truncate table before insert" msgstr "Truncate table sebelum insert" @@ -11128,8 +11128,8 @@ msgstr "Tampaknya database Anda menggunakan prosedur;" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 #, fuzzy msgid "alias export may not work reliably in all cases." msgstr "ekspor alias mungkin tidak bekerja andal dalam semua kasus." @@ -11145,90 +11145,96 @@ msgstr "Tampaknya database Anda menggunakan fungsi;" msgid "Metadata" msgstr "Kepala Metadata" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, fuzzy, php-format #| msgid "Metadata Headers" -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "Kepala Metadata" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Metadata Headers" +msgid "Metadata for database %s" +msgstr "Kepala Metadata" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Pembuatan:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Pembaruan terakhir:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Pemeriksaan terakhir:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "sedang digunakan" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 #, fuzzy msgid "It appears your database uses views;" msgstr "Tampaknya database Anda menggunakan pandangan;" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Ketidakleluasaan untuk tabel pelimpahan (Dumped Tables)" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Ketidakleluasaan untuk tabel" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Ketidakleluasaan untuk tabel pelimpahan (Dumped Tables)" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Dalam tabel:" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "Jangan gunakan AUTO_INCREMENT untuk nilai nol" # Imperative verb -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Tambahkan nilai AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "JENIS MIME UNTUK TABEL" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "RELASI UNTUK TABEL" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 #, fuzzy msgid "It appears your table uses triggers;" msgstr "Tampaknya meja Anda menggunakan pemicu;" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Struktur untuk view" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "Galat pembacaan data:" @@ -12130,7 +12136,7 @@ msgstr "" "Jika tidak, silakan tambahkan baris berikut ke dalam seksi [mysqld]:" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "User name" msgid "User name:" @@ -12138,18 +12144,18 @@ msgstr "Nama pengguna" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Nama pengguna" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Kata Sandi" @@ -12190,40 +12196,40 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Semua inang" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Lokal" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Inang Ini" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Setiap pengguna" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Gunakan text field" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Gunakan Host Table" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 #, fuzzy msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -12233,7 +12239,7 @@ msgstr "" "tersimpan dalam tabel host yang digunakan sebagai gantinya." #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Ketik ulang" @@ -13009,7 +13015,7 @@ msgstr "Tidak ada" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Grup pengguna" @@ -13084,9 +13090,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Membatasi jumlah koneksi simultan yang dapat dibuat pengguna." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -13115,14 +13121,14 @@ msgstr "Mengizinkan eksekusi routine tersimpan." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Hak akses khusus tabel" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -13134,7 +13140,7 @@ msgid "Administration" msgstr "Administrasi" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Hak akses global" @@ -13145,7 +13151,7 @@ msgid "Global" msgstr "global" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Hak akses khusus basis data" @@ -13157,37 +13163,37 @@ msgstr "Mengizinkan untuk membuat tabel baru." msgid "Allows dropping tables." msgstr "Mengizinkan untuk hapus tabel." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Autentikasi kuki" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Autentikasi signon" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL Authentication" msgstr "Autentikasi kuki" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Informasi Masuk" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Gunakan text field" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 #, fuzzy msgid "" "An account already exists with the same username but possibly a different " @@ -13196,258 +13202,258 @@ msgstr "" "Account yang sudah ada dengan nama pengguna yang sama tapi mungkin nama host " "yang berbeda." -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Nama pengguna" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Catat nama" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Jangan ubah Kata Sandi" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "Autentikasi" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Pengernaian Kata Sandi (Password Hashing)" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "Sukses mengubah Kata Sandi untuk %s ." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Anda telah mencabut hak akses untuk %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add user group" msgid "Add user account" msgstr "Tambah grup pengguna" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Basis data untuk pengguna" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "Buat basis data dengan nama yang sama dan beri semua hak." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Berikan semua hak untuk nama wildcard (pengguna\\_%)." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Berikan semua hak untuk basis data \"%s\"." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Pengguna memiliki akses ke \"%s\"" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "Pengguna %s telah ditambahkan." # Table column to indicate if the user able to grant a privilege -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Pemberi Izin" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 #, fuzzy msgid "Not enough privilege to view users." msgstr "Hak akses tidak cukup untuk melihat pengguna." -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "Pengguna tidak ditemukan." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Semua" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "khusus basis data" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 #, fuzzy msgid "wildcard" msgstr "wildcard" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "khusus basis data" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Edit Hak Akses" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Cabut" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 #, fuzzy msgid "Edit user group" msgstr "Edit server" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… mempertahankan yang lama." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… hapus yang lama dari User Table." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… cabut seluruh hak yang aktif, kemudian hapuskan yang lama." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… hapuskan yang lama dari tabel pengguna, kemudian muat ulang hak akses." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Ubah Informasi Masuk / Salin Pengguna" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Buat pengguna baru dengan hak akses yang sama dan …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Hak akses khusus kolom" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Hapus pengguna yang dipilih" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Cabut semua hak akses dari pengguna dan hapus setelahnya." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "Hapus basis data yang memiliki nama yang sama dengan pengguna." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "Tidak ada pengguna yang dipilih untuk dihapus!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Memuat hak akses" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Sukses menghapus pengguna yang dipilih." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Anda telah memperbarui hak akses untuk %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "Menghapus %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Hak akses berhasil dimuat ulang." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "Pengguna %s telah terdaftar!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Hak Akses untuk %s" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Pengguna" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 #, fuzzy #| msgid "New" msgctxt "Create new user" msgid "New" msgstr "Baru" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Edit Hak Akses" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "User group" msgid "User account" msgstr "Grup pengguna" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 #, fuzzy msgid "" "Note: You are attempting to edit privileges of the user with which you are " @@ -13455,20 +13461,20 @@ msgid "" msgstr "" "Catatan: Anda mencoba untuk mengedit hak-hak user yang Anda sedang login." -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "Ikhtisar pengguna" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13482,7 +13488,7 @@ msgstr "" "diubah secara manual. Disarankan untuk %sme-reload profil pengguna%s sebelum " "melanjut." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13502,11 +13508,11 @@ msgstr "" "diubah secara manual. Disarankan untuk %sme-reload profil pengguna%s sebelum " "melanjut." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "Pengguna yang dipilih tidak ditemukan pada tabel hak akses." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Pengguna baru telah ditambahkan." diff --git a/po/it.po b/po/it.po index 24d2346376..989daecb68 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-11-14 09:24+0000\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" @@ -95,7 +95,7 @@ msgstr "Colonna" #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:2602 libraries/tracking.lib.php:893 #: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 @@ -186,11 +186,11 @@ msgstr "Primaria" #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 -#: libraries/server_privileges.lib.php:2785 -#: libraries/server_privileges.lib.php:2973 -#: libraries/server_privileges.lib.php:2993 -#: libraries/server_privileges.lib.php:3631 -#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/server_privileges.lib.php:2779 +#: libraries/server_privileges.lib.php:2967 +#: libraries/server_privileges.lib.php:2987 +#: libraries/server_privileges.lib.php:3624 +#: libraries/server_privileges.lib.php:3647 libraries/tracking.lib.php:946 #: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 @@ -220,11 +220,11 @@ msgstr "No" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2785 -#: libraries/server_privileges.lib.php:2970 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3628 -#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/server_privileges.lib.php:2779 +#: libraries/server_privileges.lib.php:2964 +#: libraries/server_privileges.lib.php:2985 +#: libraries/server_privileges.lib.php:3621 +#: libraries/server_privileges.lib.php:3647 libraries/tracking.lib.php:946 #: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 @@ -488,9 +488,9 @@ msgstr "Aggiungi una geometria" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2345 -#: libraries/server_privileges.lib.php:3116 -#: libraries/server_privileges.lib.php:3735 +#: libraries/server_privileges.lib.php:2339 +#: libraries/server_privileges.lib.php:3110 +#: libraries/server_privileges.lib.php:3728 #: libraries/server_user_groups.lib.php:290 #: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 #: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 @@ -1111,12 +1111,12 @@ msgstr "Il nome di host è vuoto!" msgid "The user name is empty!" msgstr "Il nome utente è vuoto!" -#: js/messages.php:143 libraries/server_privileges.lib.php:2047 +#: js/messages.php:143 libraries/server_privileges.lib.php:2042 #: user_password.php:116 msgid "The password is empty!" msgstr "La password è vuota!" -#: js/messages.php:144 libraries/server_privileges.lib.php:2045 +#: js/messages.php:144 libraries/server_privileges.lib.php:2040 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "La password non coincide!" @@ -1331,7 +1331,7 @@ msgstr "Aggiungi almeno una variabile alla serie!" #: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1699,7 +1699,6 @@ msgid "Formatting SQL…" msgstr "Formatto SQL…" #: js/messages.php:343 -#| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Parametri errati!" @@ -1832,10 +1831,10 @@ msgstr "" #: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 #: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2450 -#: libraries/server_privileges.lib.php:2529 -#: libraries/server_privileges.lib.php:2875 -#: libraries/server_privileges.lib.php:3543 +#: libraries/server_privileges.lib.php:2444 +#: libraries/server_privileges.lib.php:2523 +#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:3536 #: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 @@ -1910,8 +1909,8 @@ msgid "%d is not valid row number." msgstr "%d non è un numero valido di righe." #: js/messages.php:409 -#: libraries/controllers/table/TableSearchController.php:432 -#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/controllers/table/TableSearchController.php:427 +#: libraries/controllers/table/TableSearchController.php:906 #: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "Naviga tra i valori esterni" @@ -2344,7 +2343,7 @@ msgstr "" #: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3802 +#: libraries/server_privileges.lib.php:3795 msgid "Show all" msgstr "Mostra tutti" @@ -3008,10 +3007,10 @@ msgstr "Re-query" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3134 -#: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:3307 -#: libraries/server_privileges.lib.php:4563 +#: libraries/server_privileges.lib.php:3128 +#: libraries/server_privileges.lib.php:3299 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:4556 #: libraries/server_status_processes.lib.php:84 #: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 @@ -3566,7 +3565,7 @@ msgstr "Può essere approssimativo. Vedi [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:656 +#: libraries/controllers/table/TableSearchController.php:645 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." @@ -3740,8 +3739,8 @@ msgstr "Indici" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2611 -#: libraries/server_privileges.lib.php:3529 +#: libraries/server_privileges.lib.php:2605 +#: libraries/server_privileges.lib.php:3522 #: libraries/server_user_groups.lib.php:83 #: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 @@ -3856,10 +3855,10 @@ msgstr "Vista" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3152 -#: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:3313 -#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/server_privileges.lib.php:3146 +#: libraries/server_privileges.lib.php:3305 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4570 libraries/tracking.lib.php:1489 #: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:26 @@ -3898,8 +3897,8 @@ msgstr "Inserisci" #: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 #: libraries/Util.php:4363 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:4452 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2603 +#: libraries/server_privileges.lib.php:4445 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilegi" @@ -3922,7 +3921,7 @@ msgstr "Monitoraggio" #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1989 +#: libraries/plugins/export/ExportSql.php:2001 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3963,7 +3962,7 @@ msgstr "Colonne centrali" #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4556 msgid "Databases" msgstr "Database" @@ -8058,15 +8057,15 @@ msgstr "Il campo display è stato aggiornato con successo." msgid "Internal relations were successfully updated." msgstr "Le relazioni interne sono state aggiornate con successo." -#: libraries/controllers/table/TableSearchController.php:841 +#: libraries/controllers/table/TableSearchController.php:830 msgid "Table search" msgstr "Ricerca nella Tabella" -#: libraries/controllers/table/TableSearchController.php:848 +#: libraries/controllers/table/TableSearchController.php:837 msgid "Zoom search" msgstr "Ricerca Zoom" -#: libraries/controllers/table/TableSearchController.php:853 +#: libraries/controllers/table/TableSearchController.php:842 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Trova e sostituisci" @@ -8168,20 +8167,20 @@ msgstr "" #: libraries/display_change_password.lib.php:64 #: libraries/replication_gui.lib.php:879 -#: libraries/server_privileges.lib.php:1839 +#: libraries/server_privileges.lib.php:1835 msgid "No Password" msgstr "Nessuna Password" #: libraries/display_change_password.lib.php:72 #: libraries/plugins/auth/AuthenticationCookie.php:203 #: libraries/replication_gui.lib.php:426 libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1811 msgid "Password:" msgstr "Password:" #: libraries/display_change_password.lib.php:78 #: libraries/replication_gui.lib.php:890 -#: libraries/server_privileges.lib.php:1857 +#: libraries/server_privileges.lib.php:1853 msgid "Re-type:" msgstr "Re-inserisci:" @@ -8191,7 +8190,7 @@ msgid "Password Hashing:" msgstr "Password Hashing:" #: libraries/display_change_password.lib.php:122 -#: libraries/server_privileges.lib.php:1903 +#: libraries/server_privileges.lib.php:1898 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10284,7 +10283,7 @@ msgstr "Opzioni del dump dei dati" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Dump dei dati per la tabella" @@ -10308,21 +10307,21 @@ msgstr "Definizione" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Struttura della tabella" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Struttura per la vista" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Struttura stand-in per le viste" @@ -10414,7 +10413,7 @@ msgid "Database:" msgstr "Database:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "Dati:" @@ -10518,7 +10517,7 @@ msgid "Data creation options" msgstr "Opzioni di creazione dei dati" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "Svuota la tabella prima dell'inserimento" @@ -10601,8 +10600,8 @@ msgstr "Il tuo database sembra utilizzare le procedure;" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" "l'esportazione degli alias potrebbe non funzionare correttamente in tutti i " @@ -10616,77 +10615,84 @@ msgstr "Il tuo database sembra utilizzare le funzioni;" msgid "Metadata" msgstr "Metadati" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "Metadati per %s" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for database %s" +msgstr "Metadati per %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Creazione:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Ultimo aggiornamento:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Ultimo controllo:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "in uso" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "Il tuo database sembra utilizzare le viste;" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Limiti per le tabelle scaricate" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Limiti per la tabella" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "Indici per le tabelle scaricate" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "Indici per le tabelle" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT per le tabelle scaricate" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT per la tabella" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "Il tuo database sembra utilizzare i trigger;" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, 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.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "Si è verificato un errore durante la lettura dei dati:" @@ -11537,24 +11543,24 @@ msgstr "" "cnf). Altrimenti, aggiungi la linea seguente nella sezione [mysqld]:" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "Nome utente:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Nome utente" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Password" @@ -11595,38 +11601,38 @@ msgstr "" "questa lista." #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Qualsiasi host" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Locale" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Questo Host" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Qualsiasi utente" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "Utilizza campo text:" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Utilizza la Tabella dell'Host" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11635,7 +11641,7 @@ msgstr "" "memorizzati nella tabella Host invece utilizzati." #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Reinserisci" @@ -12372,7 +12378,7 @@ msgstr "Nessun" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Gruppo utenti" @@ -12445,9 +12451,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Limite di connessioni simultanee che un utente può fare." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Routine" @@ -12470,14 +12476,14 @@ msgstr "Permette l'esecuzione di questa routine." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Privilegi relativi alle tabelle" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Nota: i nomi dei privilegi di MySQL sono espressi in Inglese." @@ -12487,7 +12493,7 @@ msgid "Administration" msgstr "Amministrazione" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Privilegi globali" @@ -12496,7 +12502,7 @@ msgid "Global" msgstr "Globale" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Privilegi specifici al database" @@ -12508,31 +12514,31 @@ msgstr "Permette di creare nuove tabelle." msgid "Allows dropping tables." msgstr "Permette di eliminare tabelle." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 msgid "Native MySQL authentication" msgstr "Autenticazione MySQL nativa" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 msgid "SHA256 password authentication" msgstr "Autenticazione password tramite SHA256" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 msgid "Native MySQL Authentication" msgstr "Autenticazione MySQL nativa" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Informazioni di Login" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Utilizza campo text" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12540,135 +12546,135 @@ msgstr "" "Esiste già un account con lo stesso nome utente (username), ma probabilmente " "con un nome host (hostname) diverso." -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 msgid "Host name:" msgstr "Nome host:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 msgid "Host name" msgstr "Nome host" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Non cambiare la password" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 msgid "Authentication Plugin" msgstr "Plugin di Autenticazione" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 msgid "Password Hashing Method" msgstr "Metodo di Password Hashing" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "La password per l'utente %s è cambiata con successo." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Hai revocato i privilegi per %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 msgid "Add user account" msgstr "Aggiungi account utente" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 msgid "Database for user account" msgstr "Database per account utente" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "Crea un database con lo stesso nome e concedi tutti i privilegi." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Concedi tutti i privilegi al nome con caratteri jolly (username\\_%)." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Garantisci tutti i privilegi per il database \"%s\"." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Utenti che hanno accesso a \"%s\"" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "L'utente é stato aggiunto." -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Grant" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "Non hai sufficienti privilegi per visualizzare gli utenti." -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "Nessun utente trovato." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Qualsiasi" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "globale" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "specifico del database" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "carattere jolly" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "specifico di tabella" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 msgid "Edit privileges" msgstr "Modifica privilegi" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Revoca" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "Modifica il gruppo utente" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… mantieni quello vecchio." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… cancella quello vecchio dalla tabella degli utenti." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… revoca tutti i privilegi attivi da quello vecchio e in seguito cancellalo." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12676,89 +12682,89 @@ msgstr "" "… cancella quello vecchio dalla tabella degli utenti e in seguito ricarica i " "privilegi." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "Cambia le informazioni di login / Copia account utente" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "Crea un nuovo account utente con gli stessi privilegi e …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Privilegi specifici per la routine" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 msgid "Remove selected user accounts" msgstr "Rimuove gli account utente selezionati" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Revoca tutti i privilegi attivi agli utenti e dopo li cancella." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "Elimina i databases gli stessi nomi degli utenti." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "Nessun utente selezionato per la cancellazione!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Caricamento dei privilegi in corso" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Gli utenti selezionati sono stati cancellati con successo." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Hai aggiornato i permessi per %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "Cancellazione in corso di %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "I privilegi sono stati ricaricati con successo." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "L'utente %s esiste già!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "Privilegi per %s" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Utente" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "Nuovo" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 msgid "Edit privileges:" msgstr "Modifica privilegi:" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "Account utente" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12766,11 +12772,11 @@ msgstr "" "Nota: Stai cercando di modificare i privilegi dell'utente con cui sei " "collegato attualmente." -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "Vista d'insieme degli account utente" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " @@ -12781,7 +12787,7 @@ msgstr "" "di connettersi se la parte host del loro account permette una connessione da " "host qualsiasi (%)." -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12794,7 +12800,7 @@ msgstr "" "privilegi usati dal server se sono stati fatti cambiamenti manuali. In " "questo caso, Si dovrebbero %srinfrescare i privilegi%s prima di continuare." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12808,11 +12814,11 @@ msgstr "" "questo caso, si devono ricaricare i privilegi ma al momento non disponi del " "privilegio RELOAD." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "L'utente selezionato non è stato trovato nella tabella dei privilegi." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Hai aggiunto un nuovo utente." @@ -15419,7 +15425,6 @@ msgid "Stacked" msgstr "Sovrapposti" #: templates/table/chart/tbl_chart.phtml:53 -#| msgid "Chart title" msgid "Chart title:" msgstr "Titolo del grafico:" diff --git a/po/ja.po b/po/ja.po index 58fc41af16..288f545b8b 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-18 20:27+0200\n" "Last-Translator: Eshin Kunishima \n" "Language-Team: Japanese ができるドロッ #: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3802 +#: libraries/server_privileges.lib.php:3795 msgid "Show all" msgstr "すべて表示" @@ -3139,10 +3139,10 @@ msgstr "サブクエリ" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3134 -#: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:3307 -#: libraries/server_privileges.lib.php:4563 +#: libraries/server_privileges.lib.php:3128 +#: libraries/server_privileges.lib.php:3299 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:4556 #: libraries/server_status_processes.lib.php:84 #: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 @@ -3789,7 +3789,7 @@ msgstr "正確な数字とは限りません。[doc@faq3-11]FAQ 3.11[/doc] を #: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:656 +#: libraries/controllers/table/TableSearchController.php:645 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -3986,8 +3986,8 @@ msgstr "インデックス" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2611 -#: libraries/server_privileges.lib.php:3529 +#: libraries/server_privileges.lib.php:2605 +#: libraries/server_privileges.lib.php:3522 #: libraries/server_user_groups.lib.php:83 #: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 @@ -4100,10 +4100,10 @@ msgstr "ビュー" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3152 -#: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:3313 -#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/server_privileges.lib.php:3146 +#: libraries/server_privileges.lib.php:3305 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4570 libraries/tracking.lib.php:1489 #: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:26 @@ -4142,8 +4142,8 @@ msgstr "挿入" #: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 #: libraries/Util.php:4363 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:4452 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2603 +#: libraries/server_privileges.lib.php:4445 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "特権" @@ -4166,7 +4166,7 @@ msgstr "SQL コマンドの追跡" #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1989 +#: libraries/plugins/export/ExportSql.php:2001 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4209,7 +4209,7 @@ msgstr "textarea の 1 行の文字数" #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4556 msgid "Databases" msgstr "データベース" @@ -8827,19 +8827,19 @@ msgstr "スレッド %s は正常終了しました。" msgid "Internal relations were successfully updated." msgstr "内部リレーションを追加しました" -#: libraries/controllers/table/TableSearchController.php:841 +#: libraries/controllers/table/TableSearchController.php:830 #, fuzzy #| msgid "Table Search" msgid "Table search" msgstr "テーブル検索" -#: libraries/controllers/table/TableSearchController.php:848 +#: libraries/controllers/table/TableSearchController.php:837 #, fuzzy #| msgid "Zoom Search" msgid "Zoom search" msgstr "検索プロット" -#: libraries/controllers/table/TableSearchController.php:853 +#: libraries/controllers/table/TableSearchController.php:842 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "Hide find and replace criteria" @@ -8941,20 +8941,20 @@ msgstr "" #: libraries/display_change_password.lib.php:64 #: libraries/replication_gui.lib.php:879 -#: libraries/server_privileges.lib.php:1839 +#: libraries/server_privileges.lib.php:1835 msgid "No Password" msgstr "パスワード無し" #: libraries/display_change_password.lib.php:72 #: libraries/plugins/auth/AuthenticationCookie.php:203 #: libraries/replication_gui.lib.php:426 libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1811 msgid "Password:" msgstr "パスワード:" #: libraries/display_change_password.lib.php:78 #: libraries/replication_gui.lib.php:890 -#: libraries/server_privileges.lib.php:1857 +#: libraries/server_privileges.lib.php:1853 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -8968,7 +8968,7 @@ msgid "Password Hashing:" msgstr "パスワードハッシュ" #: libraries/display_change_password.lib.php:122 -#: libraries/server_privileges.lib.php:1903 +#: libraries/server_privileges.lib.php:1898 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -11137,7 +11137,7 @@ msgstr "データのダンプオプション" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "テーブルのデータのダンプ" @@ -11161,21 +11161,21 @@ msgstr "定義" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "テーブルの構造" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "ビュー用の構造" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "ビュー用の代替構造" @@ -11281,7 +11281,7 @@ msgid "Database:" msgstr "データベース" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11392,7 +11392,7 @@ msgid "Data creation options" msgstr "生成オプション" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "挿入前にテーブルを空にする" @@ -11476,8 +11476,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11491,87 +11491,93 @@ msgstr "" msgid "Metadata" msgstr "メタデータヘッダ" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, fuzzy, php-format #| msgid "Metadata Headers" -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "メタデータヘッダ" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Metadata Headers" +msgid "Metadata for database %s" +msgstr "メタデータヘッダ" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "作成日時:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "最終更新:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "最終検査:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "使用中" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "ダンプしたテーブルの制約" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "テーブルの制約" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "ダンプしたテーブルの制約" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "検索するテーブル:" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "値がゼロのものに対して AUTO_INCREMENT を使用しない" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT 値を追加する" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "テーブルに含まれている MIME タイプ" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "テーブルのリレーション" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "ビュー用の構造" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "データ読み込みエラー:" @@ -12480,7 +12486,7 @@ msgstr "" "さい。もしそうでないならば、[mysqld] セクションに以下の行を追加してください。" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "User name" msgid "User name:" @@ -12488,18 +12494,18 @@ msgstr "ユーザ名" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "ユーザ名" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "パスワード" @@ -12542,40 +12548,40 @@ msgstr "" "されます。" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "すべてのホスト" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "ローカル" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "このホスト" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "すべてのユーザ" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "テキスト入力項目の値を利用する" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "ホストテーブルを使う" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -12584,7 +12590,7 @@ msgstr "" "るホストテーブルに格納されている値を設定します。" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "もう一度入力してください" @@ -13353,7 +13359,7 @@ msgstr "なし" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -13421,9 +13427,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "ユーザの同時接続数を制限する。" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -13450,14 +13456,14 @@ msgstr "ストアドルーチンの実行を許可する。" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "テーブル固有の特権" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -13469,7 +13475,7 @@ msgid "Administration" msgstr "管理" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "グローバル特権" @@ -13480,7 +13486,7 @@ msgid "Global" msgstr "グローバル" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "データベースに固有の特権" @@ -13492,310 +13498,310 @@ msgstr "新しいテーブルの作成を許可する。" msgid "Allows dropping tables." msgstr "テーブルの削除を許可する。" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "クッキー認証" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "サインオン認証" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL Authentication" msgstr "クッキー認証" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "ログイン情報" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "テキスト入力項目の値を利用する" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "ユーザ名" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "ログ名" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "パスワードは変更しない" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "認証" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "パスワードハッシュ" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "%s のパスワードは正しく変更されました。" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "%s の特権を取り消しました。" -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "ユーザを追加する" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "ユーザ専用データベース" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "同名のデータベースを作成してすべての特権を与える。" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "ワイルドカード(ユーザ名_%)に該当するデータベースにすべての特権を与える。" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "データベース \"%s\" への全ての特権を与える。" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\" にアクセスできるユーザ" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "ビュー %s を破棄しました。" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "権限委譲" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "ユーザが存在しません。" -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "すべて" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "グローバル" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "データベース固有" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "ワイルドカード" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "データベース固有" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "特権を編集" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "取り消し" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "サーバの編集" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "元のユーザも残す。" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "ユーザテーブルから元のユーザを削除する。" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "元のユーザの特権をすべて無効にしてから削除する。" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "ユーザテーブルから元のユーザを削除し、特権の再読み込みをする。" -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "ログイン情報の変更 / ユーザの複製" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "同じ特権を持つ新しいユーザを作る…" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "このカラムに固有の特権" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "選択したユーザを削除する" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "特権をすべて取り消してユーザを削除する。" -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "ユーザと同名のデータベースを削除する。" -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "削除するユーザが選択されていません!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "特権を再読み込みしています" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "選択されたユーザは正常に削除されました。" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "%s の特権を更新しました。" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "%s を削除中です" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "特権を正常に再読み込みしました。" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "ユーザ %s は既に存在します!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "%s に対する特権" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "ユーザ" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 #, fuzzy #| msgid "New" msgctxt "Create new user" msgid "New" msgstr "新規作成" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "特権を編集" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "Users" msgid "User account" msgstr "ユーザグループ" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "ユーザ概略" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13808,7 +13814,7 @@ msgstr "" "特権の内容が一致しなくなることがありますので、作業を続ける前に %s特権の再読み" "込み%s をしてください。" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13827,11 +13833,11 @@ msgstr "" "特権の内容が一致しなくなることがありますので、作業を続ける前に %s特権の再読み" "込み%s をしてください。" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "特権テーブルには選択したユーザがいません。" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "新しいユーザを追加しました。" diff --git a/po/ka.po b/po/ka.po index 5e5f2a1c41..8ed041dd29 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Georgian SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10941,7 +10941,7 @@ msgstr "მონაცემთა ბაზის ჩვენების პ #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -10967,21 +10967,21 @@ msgstr "აღწერილობა" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "სტრუქტურა ხედისათვის" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -11099,7 +11099,7 @@ msgid "Database:" msgstr "მონაცემთა ბაზა" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11214,7 +11214,7 @@ msgid "Data creation options" msgstr "გარდაქმნის პარამეტრები" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -11283,8 +11283,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11298,90 +11298,97 @@ msgstr "" msgid "Metadata" msgstr "Export type" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" -msgstr "" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Dumping data for table" +msgid "Metadata for table %s" +msgstr "Dumping data for table" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Create table on database %s" +msgid "Metadata for database %s" +msgstr "Create new table on database %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 #, fuzzy #| msgid "Creation" msgid "Creation:" msgstr "შეიქმნა" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 #, fuzzy #| msgid "Last update" msgid "Last update:" msgstr "უკანასკნელი განახლება" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for dumped tables" msgstr "ცხრილ(ებ)ში:" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "ცხრილ(ებ)ში:" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Add AUTO_INCREMENT value" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Add AUTO_INCREMENT value" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "სტრუქტურა ხედისათვის" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -12265,7 +12272,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "User name" msgid "User name:" @@ -12273,18 +12280,18 @@ msgstr "მომხმარებლის სახელი" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "მომხმარებლის სახელი" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "პაროლი" @@ -12326,47 +12333,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "ნებისმიერი ჰოსტი" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "ლოკალური" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "ეს ჰოსტი" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "ნებისმიერი მომხმარებელი" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "გამოიყენე ტექსტური ველი" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "" @@ -13187,7 +13194,7 @@ msgstr "არაა" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -13254,9 +13261,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -13279,14 +13286,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -13296,7 +13303,7 @@ msgid "Administration" msgstr "ადმინისტრირება" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "გლობალური პრივილეგიები" @@ -13307,7 +13314,7 @@ msgid "Global" msgstr "გლობალულრი" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "" @@ -13319,191 +13326,191 @@ msgstr "" msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Host authentication order" msgid "Native MySQL authentication" msgstr "Host authentication order" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Host authentication order" msgid "SHA256 password authentication" msgstr "Host authentication order" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Host authentication order" msgid "Native MySQL Authentication" msgstr "Host authentication order" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "გამოიყენე ტექსტური ველი" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "მომხმარებლის სახელი" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "ჟურნალის სახელი" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "არ შეცვალო პაროლი" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Authentication type" msgid "Authentication Plugin" msgstr "ავთენტიფიკაციის ტიპი" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Password Hashing" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "მომხმარებლის დამატება" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "მონაცემთა ბაზა მომხმარებლისთვის" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" "იგივე სახელის მქონე მონაცემთა ბაზის შექმნა და ყველა პრივილეგიის მინიჭება." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "ყველა პრივილეგიის მინიჭება მონაცემთა ბაზისთვის \"%s\"." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "View %s has been dropped" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Grant" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "მომხმარებლ(ებ)ის პოვნა ვერ მოხერხდა." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "ნებისმიერი" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "გლობალულრი" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "wildcard" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "პრივილეგიების რედაქტირება" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "სერვერის რედაქტირება" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… ძველის შენახვა." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… ძველი მომხმარებლის მომხმარებლების ცხრილიდან წაშლა." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -13511,119 +13518,119 @@ msgstr "" "… ძველი მომხმარებლის მომხმარებლების სიიდან წაშლა და შემდეგ პრივილეგიების " "გადატვირთვა." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "იგივე პრივილეგიების მქონე ახალი მომხმარებლის შექმნა და …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Check Privileges" msgid "Routine-specific privileges" msgstr "პრივილეგიების შემოწმება" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Remove selected users" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "%s-ის წაშლა" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "მომხმარებელი %s უკვე არსებობს!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "პრივილეგიები" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "მომხმარებელი" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "პრივილეგიების რედაქტირება" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "User" msgid "User account" msgstr "მომხმარებელი" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "მომხმარებლის მიმოხილვა" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13632,7 +13639,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -13641,11 +13648,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "თქვენ დაამატეთ ახალი მომხმარებელი." @@ -18818,9 +18825,6 @@ msgstr "max. concurrent connections" #~ msgid "(or the local Drizzle server's socket is not correctly configured)" #~ msgstr "(or the local MySQL server's socket is not correctly configured)" -#~ msgid "Create table on database %s" -#~ msgstr "Create new table on database %s" - #~ msgid "Data Label" #~ msgstr "Label" diff --git a/po/kk.po b/po/kk.po index d9da914b7c..58175e263d 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Kazakh SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10065,7 +10065,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -10089,21 +10089,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10201,7 +10201,7 @@ msgid "Database:" msgstr "Дерекқор" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Database" msgid "Data:" @@ -10302,7 +10302,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -10371,8 +10371,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10386,85 +10386,92 @@ msgstr "" msgid "Metadata" msgstr "Статикалық мәлiметтер" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" -msgstr "" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Delete tracking data for this table" +msgid "Metadata for table %s" +msgstr "Кесте үшін мәліметтерді бақылауды тоқтату" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Remove database" +msgid "Metadata for database %s" +msgstr "Дерекқорын өшіру" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Құру:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Соңғы жаңарту:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Соңғы тексеріс:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "қолданыста" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for dumped tables" msgstr "Кесте бойынша:" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Кесте бойынша:" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT қосу" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT қосу" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "" @@ -11238,7 +11245,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "Username:" msgid "User name:" @@ -11246,18 +11253,18 @@ msgstr "Қолданушы:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "" @@ -11296,45 +11303,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "" @@ -12050,7 +12057,7 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12117,9 +12124,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" @@ -12140,14 +12147,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -12157,7 +12164,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "" @@ -12166,7 +12173,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "" @@ -12178,291 +12185,291 @@ msgstr "" msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Password:" msgid "SHA256 password authentication" msgstr "Құпия сөз:" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 msgid "Native MySQL Authentication" msgstr "" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "Username:" msgid "Host name:" msgstr "Қолданушы:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Add constraints" msgid "Host name" msgstr "Шектеу қою" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Current settings" msgid "Authentication Plugin" msgstr "Ағымдағы баптау" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password:" msgid "Password Hashing Method" msgstr "Құпия сөз:" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Қолданушыны қосу" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database comment" msgid "Database for user account" msgstr "Дерекқорына түсініктеме: " -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Reloading Privileges" msgid "Edit privileges" msgstr "Артықшылықтардың қайта қосылуы" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Reloading Privileges" msgid "Routine-specific privileges" msgstr "Артықшылықтардың қайта қосылуы" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Removing Selected Users" msgid "Remove selected user accounts" msgstr "Таңдалынған қолдаушыларды жою" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Reloading Privileges" msgid "Edit privileges:" msgstr "Артықшылықтардың қайта қосылуы" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12471,7 +12478,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12480,11 +12487,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "" diff --git a/po/km.po b/po/km.po index 9164724ef9..47719e041e 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:06+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Central Khmer SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -9738,7 +9738,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -9762,21 +9762,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -9866,7 +9866,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "" @@ -9959,7 +9959,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -10028,8 +10028,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10041,77 +10041,83 @@ msgstr "" msgid "Metadata" msgstr "" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Delete tracking data for this table" +msgid "Metadata for table %s" +msgstr "លុប​ទិន្នន័យ​តាមដាន​សម្រាប់​តារាង​នេះ" + +#: libraries/plugins/export/ExportSql.php:1070 #, php-format -msgid "Metadata for %s" +msgid "Metadata for database %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "ការបង្កើត៖" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "បច្ចុប្បន្នភាពចុងក្រោយ៖" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "ពិនិត្យចុងក្រោយ៖" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "កំពុង​ប្រើ" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "" @@ -10867,24 +10873,24 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "" @@ -10923,45 +10929,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "" @@ -11674,7 +11680,7 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -11737,9 +11743,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" @@ -11760,14 +11766,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11777,7 +11783,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "" @@ -11786,7 +11792,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "" @@ -11798,277 +11804,277 @@ msgstr "" msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "ប្ដូរ​ពាក្យ​សម្ងាត់" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 msgid "Native MySQL Authentication" msgstr "" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 msgid "Host name:" msgstr "" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 msgid "Host name" msgstr "" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 msgid "Authentication Plugin" msgstr "" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database comment" msgid "Database for user account" msgstr "មតិយោបល់​មូលដ្ឋាន​ទិន្នន័យ៖" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Index" msgid "Edit privileges" msgstr "កែ​សន្ទស្សន៍" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Removing Selected Users" msgid "Remove selected user accounts" msgstr "ការ​លុប​អ្នក​ប្រើ​ដែល​បាន​ជ្រើស" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12077,7 +12083,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12086,11 +12092,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "" diff --git a/po/kn.po b/po/kn.po index 929c61fb61..7fb7564b1f 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-07-24 13:05+0200\n" "Last-Translator: Shameem Ahmed A Mulla \n" "Language-Team: Kannada SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -9519,7 +9519,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -9543,21 +9543,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -9647,7 +9647,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "" @@ -9739,7 +9739,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -9808,8 +9808,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9821,77 +9821,82 @@ msgstr "" msgid "Metadata" msgstr "" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, php-format -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, php-format +msgid "Metadata for database %s" +msgstr "" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "ಸೃಷ್ಟಿ:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "ಕೊನೆಯ ನವೀಕರಣ:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "ಕೊನೆಯ ಪರಿಶೀಲನೆ:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "ಬಳಕೆಯಲ್ಲಿ" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "" @@ -10630,24 +10635,24 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "ಬಳಕೆಯ ಹೆಸರು:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "ಬಳಕೆಯ ಹೆಸರು" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "" @@ -10686,45 +10691,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "" @@ -11432,7 +11437,7 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -11495,9 +11500,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" @@ -11518,14 +11523,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11535,7 +11540,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "" @@ -11544,7 +11549,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "" @@ -11556,273 +11561,273 @@ msgstr "" msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 msgid "SHA256 password authentication" msgstr "" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 msgid "Native MySQL Authentication" msgstr "" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name:" msgid "Host name:" msgstr "ಬಳಕೆಯ ಹೆಸರು:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "User name" msgid "Host name" msgstr "ಬಳಕೆಯ ಹೆಸರು" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 msgid "Authentication Plugin" msgstr "" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 msgid "Database for user account" msgstr "" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 msgid "Remove selected user accounts" msgstr "" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "ಸದಸ್ಯ" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11831,7 +11836,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11840,11 +11845,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "" diff --git a/po/ko.po b/po/ko.po index 1e52cfa744..b8911a836a 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-26 11:00+0200\n" "Last-Translator: Kyeong Su Shin \n" "Language-Team: Korean 드롭다운 화살표를 #: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3802 +#: libraries/server_privileges.lib.php:3795 msgid "Show all" msgstr "모두 보기" @@ -2917,10 +2917,10 @@ msgstr "다시 쿼리하기" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3134 -#: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:3307 -#: libraries/server_privileges.lib.php:4563 +#: libraries/server_privileges.lib.php:3128 +#: libraries/server_privileges.lib.php:3299 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:4556 #: libraries/server_status_processes.lib.php:84 #: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 @@ -3471,7 +3471,7 @@ msgstr "근사값입니다. [doc@faq3-11]FAQ 3.11[/doc]를 참조하세요." #: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:656 +#: libraries/controllers/table/TableSearchController.php:645 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." @@ -3645,8 +3645,8 @@ msgstr "인덱스" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2611 -#: libraries/server_privileges.lib.php:3529 +#: libraries/server_privileges.lib.php:2605 +#: libraries/server_privileges.lib.php:3522 #: libraries/server_user_groups.lib.php:83 #: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 @@ -3758,10 +3758,10 @@ msgstr "뷰" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3152 -#: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:3313 -#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/server_privileges.lib.php:3146 +#: libraries/server_privileges.lib.php:3305 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4570 libraries/tracking.lib.php:1489 #: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:26 @@ -3800,8 +3800,8 @@ msgstr "삽입" #: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 #: libraries/Util.php:4363 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:4452 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2603 +#: libraries/server_privileges.lib.php:4445 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "사용권한" @@ -3824,7 +3824,7 @@ msgstr "SQL 명령어 트래킹" #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1989 +#: libraries/plugins/export/ExportSql.php:2001 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3865,7 +3865,7 @@ msgstr "중심 열" #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4556 msgid "Databases" msgstr "데이터베이스" @@ -7856,17 +7856,17 @@ msgstr "쓰레드 %s 를 죽였습니다." msgid "Internal relations were successfully updated." msgstr "내부 릴레이션이 추가됨" -#: libraries/controllers/table/TableSearchController.php:841 +#: libraries/controllers/table/TableSearchController.php:830 msgid "Table search" msgstr "테이블 검색" -#: libraries/controllers/table/TableSearchController.php:848 +#: libraries/controllers/table/TableSearchController.php:837 #, fuzzy #| msgid "Zoom Search" msgid "Zoom search" msgstr "추가 검색" -#: libraries/controllers/table/TableSearchController.php:853 +#: libraries/controllers/table/TableSearchController.php:842 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "찾기 및 바꾸기" @@ -7965,20 +7965,20 @@ msgstr "개요 플러그인을 로드할 수 없습니다. 올바로 설치되 #: libraries/display_change_password.lib.php:64 #: libraries/replication_gui.lib.php:879 -#: libraries/server_privileges.lib.php:1839 +#: libraries/server_privileges.lib.php:1835 msgid "No Password" msgstr "암호 없음" #: libraries/display_change_password.lib.php:72 #: libraries/plugins/auth/AuthenticationCookie.php:203 #: libraries/replication_gui.lib.php:426 libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1811 msgid "Password:" msgstr "암호:" #: libraries/display_change_password.lib.php:78 #: libraries/replication_gui.lib.php:890 -#: libraries/server_privileges.lib.php:1857 +#: libraries/server_privileges.lib.php:1853 msgid "Re-type:" msgstr "재입력:" @@ -7988,7 +7988,7 @@ msgid "Password Hashing:" msgstr "비밀번호 해싱:" #: libraries/display_change_password.lib.php:122 -#: libraries/server_privileges.lib.php:1903 +#: libraries/server_privileges.lib.php:1898 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10042,7 +10042,7 @@ msgstr "데이터 덤프 옵션" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "테이블의 덤프 데이터" @@ -10066,21 +10066,21 @@ msgstr "정의" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "테이블 구조" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "뷰 구조" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10172,7 +10172,7 @@ msgid "Database:" msgstr "데이터베이스:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "데이터:" @@ -10277,7 +10277,7 @@ msgid "Data creation options" msgstr "데이터 생성 옵션" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "삽입 전에 테이블 비우기" @@ -10354,8 +10354,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10369,79 +10369,85 @@ msgstr "" msgid "Metadata" msgstr "%s 데이터 누락" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, fuzzy, php-format #| msgid "Missing data for %s" -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "%s 데이터 누락" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Missing data for %s" +msgid "Metadata for database %s" +msgstr "%s 데이터 누락" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "생성:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "마지막 업데이트:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "마지막 검사:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "사용중" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "덤프된 테이블의 제약사항" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "테이블의 제약사항" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "덤프된 테이블의 인덱스" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "테이블의 인덱스" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "덤프된 테이블의 AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "테이블의 AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "뷰 구조" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "데이터 읽기 오류:" @@ -11245,24 +11251,24 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "사용자명:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "사용자명" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "암호" @@ -11301,38 +11307,38 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "아무데서나" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "로컬" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "현재 호스트" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "아무나" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "호스트 테이블 사용" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11341,7 +11347,7 @@ msgstr "" "사용됩니다." #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "재입력" @@ -12082,7 +12088,7 @@ msgstr "없음" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12150,9 +12156,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12177,14 +12183,14 @@ msgstr "테이블 생성 허용." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "테이블에 관한 권한" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "주의: MySQL 권한 이름은 영어로 표시됩니다." @@ -12194,7 +12200,7 @@ msgid "Administration" msgstr "관리" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "전체적 권한" @@ -12203,7 +12209,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "데이터베이스에 관한 권한" @@ -12215,310 +12221,310 @@ msgstr "테이블 생성 허용." msgid "Allows dropping tables." msgstr "테이블 삭제 허용." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "쿠키 인증" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Signon 인증" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL Authentication" msgstr "쿠키 인증" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "로그인 정보" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "텍스트 입력 필드를 사용" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name:" msgid "Host name:" msgstr "사용자명:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "로그 이름" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "암호를 변경하지 않음" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "인증" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "비밀번호 해싱:" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "%s 의 암호가 바뀌었습니다." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "%s의 권한을 제거했습니다." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "사용자 추가" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "유저 전용 데이터베이스" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "동명의 데이터베이스를 생성하고 모든 권한을 부여." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "데이터베이스 \"%s\"에 대한 모든 권한을 부여." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\" 에 접근할 수 있는 사용자들" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "사용자가 추가되었습니다." -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "허용" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "사용자가 없습니다." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "누구나" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "데이터베이스 고유" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 #, fuzzy #| msgid "Databases" msgid "table-specific" msgstr "데이터베이스" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "권한 수정:" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "제거" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "서버 수정" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 #, fuzzy #| msgid "Delete the matches for the %s table?" msgid "… delete the old one from the user tables." msgstr "테이블 %s에 대하여 일치하는 것들을 삭제 하겠습니까?" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "... 이전 버전의 모든 활성화된 권한을 취소한 후 이전 버전을 삭제합니다." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "... 사용자 테이블로부터 이전 것을 삭제하고, 권한 정보를 새로고침 합니다." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "로그인 정보 변경 / 사용자 복사" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "새로운 사용자를 동일한 권한으로 생성하고 …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "열(칼럼)에 관한 권한" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "선택한 사용자를 삭제" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "모든 활성화된 권한을 박탈하고 사용자를 삭제함." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "사용자명과 같은 이름의 데이터베이스를 삭제합니다." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "삭제할 사용자를 선택하세요!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "사용권한을 갱신합니다(Reloading the privileges)" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "선택한 사용자들을 삭제했습니다." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "%s 의 권한을 업데이트했습니다." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "%s 을 삭제합니다" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "권한을 다시 로딩했습니다." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "사용자 %s 가 이미 존재합니다!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "%s에 대한 권한" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "사용자" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "권한 수정:" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "Users" msgid "User account" msgstr "사용자" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "사용자 개요" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12530,7 +12536,7 @@ msgstr "" "다. 만약 수동으로 서버의 권한 정보를 수정하였다면, 서버의 정보와 맞지 않을 " "수 있습니다. 이 경우, %sreload the privileges%s를 먼저 수행하세요." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -12548,11 +12554,11 @@ msgstr "" "다. 만약 수동으로 서버의 권한 정보를 수정하였다면, 서버의 정보와 맞지 않을 " "수 있습니다. 이 경우, %sreload the privileges%s를 먼저 수행하세요." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "선택한 사용자는 사용권한 테이블에 존재하지 않습니다." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "새 사용자를 추가했습니다." diff --git a/po/ksh.po b/po/ksh.po index ae479e0b2c..b8ed4e763a 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2014-10-02 15:09+0200\n" "Last-Translator: Purodha \n" "Language-Team: Colognian SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -9580,7 +9580,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -9604,21 +9604,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -9708,7 +9708,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "" @@ -9800,7 +9800,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -9869,8 +9869,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9882,77 +9882,82 @@ msgstr "" msgid "Metadata" msgstr "" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, php-format -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, php-format +msgid "Metadata for database %s" +msgstr "" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "weed jebruch" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "" @@ -10692,24 +10697,24 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "" @@ -10748,45 +10753,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "" @@ -11498,7 +11503,7 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -11561,9 +11566,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" @@ -11584,14 +11589,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11601,7 +11606,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "" @@ -11610,7 +11615,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "" @@ -11622,269 +11627,269 @@ msgstr "" msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 msgid "SHA256 password authentication" msgstr "" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 msgid "Native MySQL Authentication" msgstr "" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 msgid "Host name:" msgstr "" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 msgid "Host name" msgstr "" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 msgid "Authentication Plugin" msgstr "" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 msgid "Database for user account" msgstr "" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 msgid "Remove selected user accounts" msgstr "" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11893,7 +11898,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11902,11 +11907,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "" diff --git a/po/ky.po b/po/ky.po index db9e806a54..c795037ce6 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Kyrgyz SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -9634,7 +9634,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -9658,21 +9658,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -9762,7 +9762,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "" @@ -9854,7 +9854,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -9923,8 +9923,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9936,77 +9936,82 @@ msgstr "" msgid "Metadata" msgstr "" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, php-format -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, php-format +msgid "Metadata for database %s" +msgstr "" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Тузуу:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Акыркы жанылоо:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Акыркы текшеруу:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "колдонууда" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "" @@ -10760,24 +10765,24 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "" @@ -10816,45 +10821,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "" @@ -11564,7 +11569,7 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -11627,9 +11632,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" @@ -11650,14 +11655,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11667,7 +11672,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "" @@ -11676,7 +11681,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "" @@ -11688,273 +11693,273 @@ msgstr "" msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 msgid "SHA256 password authentication" msgstr "" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 msgid "Native MySQL Authentication" msgstr "" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 msgid "Host name:" msgstr "" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 msgid "Host name" msgstr "" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 msgid "Authentication Plugin" msgstr "" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Value for the column \"%s\"" msgid "Add user account" msgstr "\"%s\" мамычанын мааниси" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database comment" msgid "Database for user account" msgstr "Берилиштер базасы жөнүндө маалымат:" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 msgid "Remove selected user accounts" msgstr "" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11963,7 +11968,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11972,11 +11977,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "" diff --git a/po/li.po b/po/li.po index d07eedc67f..eb0702d169 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2014-12-21 13:06+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -95,7 +95,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:2602 libraries/tracking.lib.php:893 #: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 @@ -186,11 +186,11 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 -#: libraries/server_privileges.lib.php:2785 -#: libraries/server_privileges.lib.php:2973 -#: libraries/server_privileges.lib.php:2993 -#: libraries/server_privileges.lib.php:3631 -#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/server_privileges.lib.php:2779 +#: libraries/server_privileges.lib.php:2967 +#: libraries/server_privileges.lib.php:2987 +#: libraries/server_privileges.lib.php:3624 +#: libraries/server_privileges.lib.php:3647 libraries/tracking.lib.php:946 #: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 @@ -220,11 +220,11 @@ msgstr "" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2785 -#: libraries/server_privileges.lib.php:2970 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3628 -#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/server_privileges.lib.php:2779 +#: libraries/server_privileges.lib.php:2964 +#: libraries/server_privileges.lib.php:2985 +#: libraries/server_privileges.lib.php:3621 +#: libraries/server_privileges.lib.php:3647 libraries/tracking.lib.php:946 #: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 @@ -480,9 +480,9 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2345 -#: libraries/server_privileges.lib.php:3116 -#: libraries/server_privileges.lib.php:3735 +#: libraries/server_privileges.lib.php:2339 +#: libraries/server_privileges.lib.php:3110 +#: libraries/server_privileges.lib.php:3728 #: libraries/server_user_groups.lib.php:290 #: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 #: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 @@ -1025,12 +1025,12 @@ msgstr "" msgid "The user name is empty!" msgstr "" -#: js/messages.php:143 libraries/server_privileges.lib.php:2047 +#: js/messages.php:143 libraries/server_privileges.lib.php:2042 #: user_password.php:116 msgid "The password is empty!" msgstr "" -#: js/messages.php:144 libraries/server_privileges.lib.php:2045 +#: js/messages.php:144 libraries/server_privileges.lib.php:2040 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "" @@ -1240,7 +1240,7 @@ msgstr "" #: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1714,10 +1714,10 @@ msgstr "" #: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 #: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2450 -#: libraries/server_privileges.lib.php:2529 -#: libraries/server_privileges.lib.php:2875 -#: libraries/server_privileges.lib.php:3543 +#: libraries/server_privileges.lib.php:2444 +#: libraries/server_privileges.lib.php:2523 +#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:3536 #: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 @@ -1790,8 +1790,8 @@ msgid "%d is not valid row number." msgstr "" #: js/messages.php:409 -#: libraries/controllers/table/TableSearchController.php:432 -#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/controllers/table/TableSearchController.php:427 +#: libraries/controllers/table/TableSearchController.php:906 #: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "" @@ -2199,7 +2199,7 @@ msgstr "" #: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3802 +#: libraries/server_privileges.lib.php:3795 msgid "Show all" msgstr "" @@ -2828,10 +2828,10 @@ msgstr "" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3134 -#: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:3307 -#: libraries/server_privileges.lib.php:4563 +#: libraries/server_privileges.lib.php:3128 +#: libraries/server_privileges.lib.php:3299 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:4556 #: libraries/server_status_processes.lib.php:84 #: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 @@ -3381,7 +3381,7 @@ msgstr "" #: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:656 +#: libraries/controllers/table/TableSearchController.php:645 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." @@ -3551,8 +3551,8 @@ msgstr "" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2611 -#: libraries/server_privileges.lib.php:3529 +#: libraries/server_privileges.lib.php:2605 +#: libraries/server_privileges.lib.php:3522 #: libraries/server_user_groups.lib.php:83 #: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 @@ -3663,10 +3663,10 @@ msgstr "" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3152 -#: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:3313 -#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/server_privileges.lib.php:3146 +#: libraries/server_privileges.lib.php:3305 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4570 libraries/tracking.lib.php:1489 #: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:26 @@ -3705,8 +3705,8 @@ msgstr "" #: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 #: libraries/Util.php:4363 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:4452 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2603 +#: libraries/server_privileges.lib.php:4445 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" @@ -3729,7 +3729,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1989 +#: libraries/plugins/export/ExportSql.php:2001 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3770,7 +3770,7 @@ msgstr "" #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4556 msgid "Databases" msgstr "" @@ -7439,15 +7439,15 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr "" -#: libraries/controllers/table/TableSearchController.php:841 +#: libraries/controllers/table/TableSearchController.php:830 msgid "Table search" msgstr "" -#: libraries/controllers/table/TableSearchController.php:848 +#: libraries/controllers/table/TableSearchController.php:837 msgid "Zoom search" msgstr "" -#: libraries/controllers/table/TableSearchController.php:853 +#: libraries/controllers/table/TableSearchController.php:842 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "" @@ -7543,20 +7543,20 @@ msgstr "" #: libraries/display_change_password.lib.php:64 #: libraries/replication_gui.lib.php:879 -#: libraries/server_privileges.lib.php:1839 +#: libraries/server_privileges.lib.php:1835 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:72 #: libraries/plugins/auth/AuthenticationCookie.php:203 #: libraries/replication_gui.lib.php:426 libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1811 msgid "Password:" msgstr "" #: libraries/display_change_password.lib.php:78 #: libraries/replication_gui.lib.php:890 -#: libraries/server_privileges.lib.php:1857 +#: libraries/server_privileges.lib.php:1853 msgid "Re-type:" msgstr "" @@ -7566,7 +7566,7 @@ msgid "Password Hashing:" msgstr "" #: libraries/display_change_password.lib.php:122 -#: libraries/server_privileges.lib.php:1903 +#: libraries/server_privileges.lib.php:1898 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -9502,7 +9502,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -9526,21 +9526,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -9630,7 +9630,7 @@ msgid "Database:" msgstr "Database:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "" @@ -9722,7 +9722,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -9791,8 +9791,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9804,77 +9804,82 @@ msgstr "" msgid "Metadata" msgstr "" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, php-format -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, php-format +msgid "Metadata for database %s" +msgstr "" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "" @@ -10613,24 +10618,24 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "" @@ -10669,45 +10674,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "" @@ -11415,7 +11420,7 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -11478,9 +11483,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" @@ -11501,14 +11506,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11518,7 +11523,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "" @@ -11527,7 +11532,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "" @@ -11539,269 +11544,269 @@ msgstr "" msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 msgid "SHA256 password authentication" msgstr "" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 msgid "Native MySQL Authentication" msgstr "" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 msgid "Host name:" msgstr "" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 msgid "Host name" msgstr "" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 msgid "Authentication Plugin" msgstr "" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 msgid "Database for user account" msgstr "" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 msgid "Remove selected user accounts" msgstr "" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Gebroeker" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11810,7 +11815,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11819,11 +11824,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "" diff --git a/po/lt.po b/po/lt.po index f509b8dc9e..cfda1e2b3f 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:20+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Lithuanian SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -11042,7 +11042,7 @@ msgstr "Duomenų išvedimo nustatymai" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Sukurta duomenų kopija lentelei" @@ -11068,21 +11068,21 @@ msgstr "Paaiškinimas" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Sukurta duomenų struktūra lentelei" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Struktūra peržiūrėjimui" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Tik struktūra rodiniui" @@ -11188,7 +11188,7 @@ msgid "Database:" msgstr "Duomenų bazė" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11305,7 +11305,7 @@ msgid "Data creation options" msgstr "Objekto kūrimo nustatymai" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -11390,8 +11390,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11405,87 +11405,93 @@ msgstr "" msgid "Metadata" msgstr "Trūksta duomenų %s" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, fuzzy, php-format #| msgid "Missing data for %s" -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "Trūksta duomenų %s" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Missing data for %s" +msgid "Metadata for database %s" +msgstr "Trūksta duomenų %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Kūrimas:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Paskutinis atnaujinimas:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Paskutinis patikrinimas:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "šiuo metu naudojama" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Apribojimai eksportuotom lentelėm" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Apribojimai lentelei" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Apribojimai eksportuotom lentelėm" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Viduje lentelių:" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "Nenaudoti AUTO_INCREMENT nulinėms reikšmėms" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Pridėti AUTO_INCREMENT reikšmę" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "MIME TIPAI LENTELEI" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "SĄRYŠIAI LENTELEI" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, 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.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "Klaida skaitant duomenis:" @@ -12409,7 +12415,7 @@ msgstr "" "skiltį:" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "User name" msgid "User name:" @@ -12417,18 +12423,18 @@ msgstr "Naudotojo vardas" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Naudotojo vardas" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Slaptažodis" @@ -12469,47 +12475,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Bet kurį prisijungimo adresą" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Lokali darbinė stotis" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Dabartinis serveris" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Bet kurį vartotoją" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Naudokite teksto įvedimo lauką" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Naudoti Host lentelę" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Įveskite dar kartą" @@ -13293,7 +13299,7 @@ msgstr "Nėra" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -13364,9 +13370,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Riboti skaičių lygiagrečių prisijungimų kurį naudotojai gali turėti." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Column names" @@ -13395,14 +13401,14 @@ msgstr "Leisti įvykdyti saugomas programas (stored routines)." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Specifinės lentelių privilegijos" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -13414,7 +13420,7 @@ msgid "Administration" msgstr "Administracija" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Globalios teisės" @@ -13425,7 +13431,7 @@ msgid "Global" msgstr "globalus" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Specifinės duomenų bazių privilegijos" @@ -13437,190 +13443,190 @@ msgstr "Leisti kurti naujas lenteles." msgid "Allows dropping tables." msgstr "Leisti šalinti lenteles." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Autentifikavimas slapukais" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Prisijungimo tapatybės nustatymas" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL Authentication" msgstr "Autentifikavimas slapukais" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Prisijungimo informacija" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Naudokite teksto įvedimo lauką" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Naudotojo vardas" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Logo pavadinimas" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Nekeisti slaptažodžio" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "Atpažinimas" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Slaptažodžių Hešavimas" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "Vartotojo %s slaptažodis sėkmingai pakeistas." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Jūs panaikinote privilegijas %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Pridėti naudotoją" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Vartotojo duomenų bazė" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" "Sukurti duomenų bazę su tokiu pat vardu ir suteikti jai visas privilegijas." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Suteikti visas privilegijas pakaitos vardui (username\\_%)." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Suteikti visas privilegijas duomenų bazei „%s“." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Vartotojai turintys priėjimą prie „%s“" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "Naudotojas buvo pridėtas." -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Suteikti" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "Nerasta jokių naudotojų." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Bet kurį(ią)" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "globalus" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "tam tikros duomenų bazės" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "pakaitos simbolis" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "tam tikros duomenų bazės" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Redaguoti privilegijas" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Panaikinti" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Redaguoti serverį" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… palikti seną vartotoją." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… pašalinti seną vartotoją iš vartotojų lentelės." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… panaikinti visas privilegijas iš seno vartotojo ir poto jį pašalinti." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -13628,124 +13634,124 @@ msgstr "" "… pašalinti seną vartotoją iš vartotojų lentelės ir po to perkrauti " "privilegijas." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Pakeisti prisijungimo informaciją / Kopijuoti vartotojo duomenis" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Sukurti naują vartotoją su tom pačiom privilegijom ir …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Specifinės stulpelių privilegijos" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Pašalinti pažymėtus vartotojus" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Panaikinti visas aktyvias vartotojų privilegijas ir pašalinti vartotojus." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" "Pašalinti duomenų bazes, turinčias tokius pačius pavadinimus kaip ir " "vartotojai." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "Nepasirinta vartotojų trynimui!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Perkraunamos privilegijos" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Pažymėti vartotojai sėkmingai pašalinti." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Jūs pakeitėte privilegijas %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "Šaliname: %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Teisės sėkmingai perkrautos." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "Vartotojas %s jau yra!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilegijos" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Naudotojas" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Redaguoti privilegijas" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "Users" msgid "User account" msgstr "Naudotojai" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "Naudotojų apžvalga" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13757,7 +13763,7 @@ msgstr "" "lentelės. Šiose lentelėse nurodytos teisės gali skirtis nuo nustatymų " "failuose nurodytų teisių. Todėl %sperkraukite teises%s, jeigu norite tęsti." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13775,11 +13781,11 @@ msgstr "" "lentelės. Šiose lentelėse nurodytos teisės gali skirtis nuo nustatymų " "failuose nurodytų teisių. Todėl %sperkraukite teises%s, jeigu norite tęsti." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "Privilegijų lentelėje pasirinktas vartotojas nerastas." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Jūs sukūrėte naują vartotoją." diff --git a/po/lv.po b/po/lv.po index 608749f8b2..3bb574af32 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:23+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Latvian SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10526,7 +10526,7 @@ msgstr "Datubāzu eksporta opcijas" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Dati tabulai" @@ -10553,14 +10553,14 @@ msgstr "Apraksts" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Tabulas struktūra tabulai" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 #, fuzzy msgid "Structure for view" @@ -10568,7 +10568,7 @@ msgstr "Tikai struktūra" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10686,7 +10686,7 @@ msgid "Database:" msgstr "Datubāze" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10801,7 +10801,7 @@ msgid "Data creation options" msgstr "Transformācijas opcijas" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -10870,8 +10870,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10885,85 +10885,92 @@ msgstr "" msgid "Metadata" msgstr "Statiski dati" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" -msgstr "" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Dumping data for table" +msgid "Metadata for table %s" +msgstr "Dati tabulai" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Create table on database %s" +msgid "Metadata for database %s" +msgstr "Izveidot jaunu tabulu datubāzē %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Izveidošana:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Pēdējo reizi atjaunots:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Pēdējā pārbaude:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "lietošanā" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Ierobežojumi izmestām tabulām" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Ierobežojumi tabulai" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Ierobežojumi izmestām tabulām" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "Tabulā(s):" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Pievienot AUTO_INCREMENT vērtību" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Pievienot AUTO_INCREMENT vērtību" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "MIME TIPI TABULAI" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "RELĀCIJAS TABULAI" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Tikai struktūra" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11826,7 +11833,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11834,18 +11841,18 @@ msgstr "Lietotājvārds" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Lietotājvārds" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Parole" @@ -11885,47 +11892,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Jebkurš hosts" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Lokāls" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Šis hosts" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Jebkurš lietotājs" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Lietot teksta lauku" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Lietot hostu tabulu" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Atkārtojiet" @@ -12723,7 +12730,7 @@ msgstr "Nav" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12796,9 +12803,9 @@ msgstr "" "Ierobežo jauno konekciju skaitu, ko lietotājs var atvērt stundas laikā." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Add new field" @@ -12825,14 +12832,14 @@ msgstr "Ļauj veidot jaunas tabulas." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Tabulu specifiskās privilēģijas" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -12844,7 +12851,7 @@ msgid "Administration" msgstr "Administrācija" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Globālās privilēģijas" @@ -12855,7 +12862,7 @@ msgid "Global" msgstr "globāls" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Datubāžu specifiskās privilēģijas" @@ -12867,191 +12874,191 @@ msgstr "Ļauj veidot jaunas tabulas." msgid "Allows dropping tables." msgstr "Ļauj dzēst tabulas." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Documentation" msgid "Native MySQL authentication" msgstr "Dokumentācija" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "Mainīt paroli" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Documentation" msgid "Native MySQL Authentication" msgstr "Dokumentācija" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Piekļuves informācija" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Lietot teksta lauku" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Lietotājvārds" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Log-faila nosaukums" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Nemainīt paroli" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Documentation" msgid "Authentication Plugin" msgstr "Dokumentācija" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Paroles jaukšana" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "Lietotāja %s parole tika veiksmīgi mainīta." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Jūs atņēmāt privilēgijas lietotājam %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Pievienot lietotāju" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database export options" msgid "Database for user account" msgstr "Datubāzu eksporta opcijas" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, fuzzy, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Pārbaudīt privilēģijas uz datubāzi \"%s\"." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Lietotāji, kam ir pieja datubāzei \"%s\"" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 #, fuzzy msgid "User has been added." msgstr "Lauks %s tika izdzēsts" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Piešķirt" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Lietotāji netika atrasti." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Jebkurš" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "globāls" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "datubāzei specifisks" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "aizstājējzīme" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "datubāzei specifisks" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Mainīt privilēģijas" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Atsaukt" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… paturēt veco lietotāju." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… dzēst veco lietotāju no lietotāju tabulas." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… atņemt vecajam lietotājam visas aktīvās privilēģijas, un pēc tam dzēst " "viņu." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -13059,121 +13066,121 @@ msgstr "" "… dzēst veco lietotāju no lietotāju tabulas, un pēc tam pārlādēt " "privilēģijas." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Mainīt piekļuves informāciju / Klonēt lietotāju" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Izveidot jaunu lietotāju ar tādām pašām privilēģijām un …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Kolonnu specifiskās privilēģijas" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Dzēst izvēlētos lietotājus" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Atņemt visas aktīvās privilēģijas lietotājiem, un pēc tam dzēst tos." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "Dzēst datubāzes, kurām ir tādi paši vārdi, kā lietotājiem." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Pārlādējam privilēģijas" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Jūs modificējāt privilēģijas objektam %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "Dzēšam %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Privilēģijas tika veiksmīgi pārlādētas." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "Lietotājs %s jau eksistē!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilēģijas" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Lietotājs" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Mainīt privilēģijas" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "User" msgid "User account" msgstr "Lietotājs" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Lietotāju pārskats" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13186,7 +13193,7 @@ msgstr "" "lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams " "%spārlādēt privilēģijas%s pirms Jūs turpināt." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13205,11 +13212,11 @@ msgstr "" "lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams " "%spārlādēt privilēģijas%s pirms Jūs turpināt." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "Izvēlētais lietotājs nav atrasts privilēģiju tabulā." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Jūs pievienojāt jaunu lietotāju." @@ -18238,9 +18245,6 @@ msgstr "" #~ msgid "Create Table" #~ msgstr "Izveidot jaunu lapu" -#~ msgid "Create table on database %s" -#~ msgstr "Izveidot jaunu tabulu datubāzē %s" - #~ msgid "Data Label" #~ msgstr "Nosaukums" diff --git a/po/mk.po b/po/mk.po index d1dd56f894..8396428d87 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:23+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Macedonian SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10630,7 +10630,7 @@ msgstr "Опции за извоз на бази на податоци" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Приказ на податоци од табелата" @@ -10657,14 +10657,14 @@ msgstr "Опис" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Структура на табелата" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 #, fuzzy msgid "Structure for view" @@ -10672,7 +10672,7 @@ msgstr "Само структура" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10790,7 +10790,7 @@ msgid "Database:" msgstr "База на податоци" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10905,7 +10905,7 @@ msgid "Data creation options" msgstr "Опции на трансформацијата" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -10974,8 +10974,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10989,91 +10989,98 @@ msgstr "" msgid "Metadata" msgstr "Тип на извоз" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" -msgstr "" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Dumping data for table" +msgid "Metadata for table %s" +msgstr "Приказ на податоци од табелата" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Create table on database %s" +msgid "Metadata for database %s" +msgstr "Креирај нова табела во базата на податоци %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 #, fuzzy #| msgid "Creation" msgid "Creation:" msgstr "Направено" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 #, fuzzy #| msgid "Last update" msgid "Last update:" msgstr "Последна измена" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 #, fuzzy #| msgid "Last check" msgid "Last check:" msgstr "Последна проверка" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "се користи" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Ограничувања за извезените табели" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Ограничувања за табелите" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Ограничувања за извезените табели" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "во табела(и):" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Додади AUTO_INCREMENT вредност" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Додади AUTO_INCREMENT вредност" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "MIME ТИПОВИ ЗА ТАБЕЛА" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "РЕЛАЦИИ НА ТАБЕЛИТЕ" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Само структура" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11951,7 +11958,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11959,18 +11966,18 @@ msgstr "Назив на корисник" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Назив на корисник" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Лозинка" @@ -12010,47 +12017,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Било кој host" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Локален" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Овој host" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Било кој корисник" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Користи текст поле" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Користи ја табелата на host-от" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Повтори внес" @@ -12849,7 +12856,7 @@ msgstr "нема" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12927,9 +12934,9 @@ msgstr "" "еден час." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12958,14 +12965,14 @@ msgstr "Дозволува извршување на stored рутини." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Привилегии поврзани со табелата" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -12978,7 +12985,7 @@ msgid "Administration" msgstr "Администрација" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Глобални привилегии" @@ -12989,7 +12996,7 @@ msgid "Global" msgstr "глобално" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Привилегии во врска со базата на податоци" @@ -13001,192 +13008,192 @@ msgstr "Дозволува креирање на нови табела." msgid "Allows dropping tables." msgstr "Дозволува бришење на табели." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Documentation" msgid "Native MySQL authentication" msgstr "Документација" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "Промена на лозинка" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Documentation" msgid "Native MySQL Authentication" msgstr "Документација" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Податоци за најавувањето" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Користи текст поле" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Назив на корисник" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Назив на дневникот" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Немој да ја менуваш лозинката" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Documentation" msgid "Authentication Plugin" msgstr "Документација" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Хеширање на лозинката" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "Лозинката за %s успешно е променета." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Ги забранивте привилегиите за %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Било кој корисник" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database export options" msgid "Database for user account" msgstr "Опции за извоз на бази на податоци" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, fuzzy, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Провери привилегии за базата на податоци \"%s\"." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Корисници кои имаат пристап \"%s\"" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Прегледот %s е избришан" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Овозможи" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Корисникот не е пронајден." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Било кој" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "глобално" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "Специфично за базата на податоци" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "џокер" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Специфично за базата на податоци" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Промена на привилегии" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Забрани" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "Ажурирање на следниот запис" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… сочувај го стариот." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… избриши ги старите од табелата на корисници." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… прво одземи ги сите привилегии на корисниците а потоа избриши ги." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -13194,122 +13201,122 @@ msgstr "" "… избриши го стариот корисник од табелата на корисници а потоа повторно " "вчитај ги привилегиите." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Промени ги информациите за најавувањето / Копирај го корисникот" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Направи нов корисник со исти привилегии и …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Привилегии врзани за колоните" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Избриши ги селектираните корисници" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Одземи ги сите привилегии на активните корисници а потоа избриши ги." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" "Избриши ги базите на податоци кои се именувани исто како и корисниците." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Повторно ги вчитувам привилегиите" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Изабраните корисници успешно се избришани." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Ги ажуриравте привилегиите за %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "Бришам %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Привилегиите се успешно вчитани." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "Корисник %s веќе постои!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Привилегии" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Корисник" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Промена на привилегии" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "User" msgid "User account" msgstr "Корисник" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Преглед на корисници" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13323,7 +13330,7 @@ msgstr "" "измени. Во тој случај %sповторно вчитајте ги привилегиите%s пред да " "продолжите со работа." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13343,11 +13350,11 @@ msgstr "" "измени. Во тој случај %sповторно вчитајте ги привилегиите%s пред да " "продолжите со работа." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "Изабраниот корисник не е пронајден во табелата на привилегии." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Додадовте нов корисник." @@ -18421,9 +18428,6 @@ msgstr "" #~ msgid "(or the local Drizzle server's socket is not correctly configured)" #~ msgstr "(или приклучокот со локалниот MySQL сервер не е исправно подесен)" -#~ msgid "Create table on database %s" -#~ msgstr "Креирај нова табела во базата на податоци %s" - #~ msgid "Data Label" #~ msgstr "Назив" diff --git a/po/ml.po b/po/ml.po index 318473ae9c..bfa8491ea2 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:05+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Malayalam SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -9753,7 +9753,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -9777,21 +9777,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -9885,7 +9885,7 @@ msgid "Database:" msgstr "വിവരശേഖര അഭിപ്രായം: " #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "" @@ -9982,7 +9982,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -10051,8 +10051,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10064,83 +10064,89 @@ msgstr "" msgid "Metadata" msgstr "" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, php-format -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Copy database to" +msgid "Metadata for database %s" +msgstr "വിവരശേഖരം പകർത്തുക" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 #, fuzzy #| msgid "Creation" msgid "Creation:" msgstr "സൃഷ്‌ടി" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 #, fuzzy #| msgid "Last update" msgid "Last update:" msgstr "അവസാനം നവീകരിച്ചത്" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 #, fuzzy #| msgid "Last check" msgid "Last check:" msgstr "അന്തിമ പരിശോധന" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "ഉപയോഗത്തിൽ" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "" @@ -10904,24 +10910,24 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "" @@ -10960,45 +10966,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "" @@ -11709,7 +11715,7 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -11772,9 +11778,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" @@ -11795,14 +11801,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11812,7 +11818,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "" @@ -11821,7 +11827,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "" @@ -11833,275 +11839,275 @@ msgstr "" msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 msgid "SHA256 password authentication" msgstr "" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 msgid "Native MySQL Authentication" msgstr "" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 msgid "Host name:" msgstr "" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 msgid "Host name" msgstr "" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 msgid "Authentication Plugin" msgstr "" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add/Delete columns" msgid "Add user account" msgstr "നിരകൾ ചേർക്കുക/മായക്കുക" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database comment" msgid "Database for user account" msgstr "വിവരശേഖര അഭിപ്രായം: " -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove database" msgid "Remove selected user accounts" msgstr "വിവരശേഖരം നീക്കുക" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12110,7 +12116,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12119,11 +12125,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "" diff --git a/po/mn.po b/po/mn.po index 207e6f512b..ba0ea7f9f3 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:25+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Mongolian SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10721,7 +10721,7 @@ msgstr "ӨС гаргах сонголтууд" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Хүснэгтийн өгөгдлийг устгах" @@ -10747,21 +10747,21 @@ msgstr "Тайлбар" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Хүснэгтийн бүтэц" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Харах бүтэц" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10879,7 +10879,7 @@ msgid "Database:" msgstr "ӨС" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10997,7 +10997,7 @@ msgid "Data creation options" msgstr "Өөрчлөлийн сонголтууд" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -11066,8 +11066,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11081,92 +11081,99 @@ msgstr "" msgid "Metadata" msgstr "Гаргах төрөл" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" -msgstr "" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Dumping data for table" +msgid "Metadata for table %s" +msgstr "Хүснэгтийн өгөгдлийг устгах" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Create table on database %s" +msgid "Metadata for database %s" +msgstr "%s ӨС-д шинэ хүснэгт үүсгэх" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 #, fuzzy #| msgid "Creation" msgid "Creation:" msgstr "Үүсгэлт" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 #, fuzzy #| msgid "Last update" msgid "Last update:" msgstr "Сүүлийн шинэчлэл" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 #, fuzzy #| msgid "Last check" msgid "Last check:" msgstr "Сүүлийн шалгалт" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "хэрэглэгдэж байна" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Асгарсан хүснэгтийг хүчлэх" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Асгарсан хүснэгтийг хүчлэх" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "Хүснэгт(үүд) дотор:" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT утга нэмэх" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT утга нэмэх" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "Хүснэгтийн MIME-төрлүүд" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "Хүснэгтийн хамаарал" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Харах бүтэц" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -12032,7 +12039,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "User name" msgid "User name:" @@ -12040,18 +12047,18 @@ msgstr "Хэрэглэгчийн нэр" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Хэрэглэгчийн нэр" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Нууц үг" @@ -12092,47 +12099,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Дурын хост" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Local" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Энэ хост" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Дурын хэрэглэгч" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Бичвэр талбар хэрэглэх" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Хост хүснэгт хэрэглэх" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Дахин бич" @@ -12945,7 +12952,7 @@ msgstr "Байхгүй" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -13014,9 +13021,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Хэрэглэгчдэд байх зэрэг холболтын хязгаарлах тоо." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Add new field" @@ -13045,14 +13052,14 @@ msgstr "Хадгалагдсан заншлыг ажиллуулахыг зөв #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Хүснэгтийн тусгай онцгой эрхүүд" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -13064,7 +13071,7 @@ msgid "Administration" msgstr "Зохион байгуулалт" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Глобал онцгой эрх" @@ -13075,7 +13082,7 @@ msgid "Global" msgstr "global" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Онцгой эрх, өгөгдлийн сангийн эрх" @@ -13087,192 +13094,192 @@ msgstr "Шинэ хүснэгт үүсгэхийг зөвшөөрөх." msgid "Allows dropping tables." msgstr "Хүснэгт устгахыг зөвшөөрөх." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Documentation" msgid "Native MySQL authentication" msgstr "Баримт" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "Нууц үг солих" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Documentation" msgid "Native MySQL Authentication" msgstr "Баримт" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Нэвтрэх мэдээлэл" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Бичвэр талбар хэрэглэх" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Хэрэглэгчийн нэр" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Log нэр" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Нууц үгийг солихгүй" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Documentation" msgid "Authentication Plugin" msgstr "Баримт" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Нууц үг хувиргах" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "%s-ы нууц үг солигдлоо." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Онцгой эрх %s -ыг хүчингүй болголоо." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Дурын хэрэглэгч" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Хэрэглэгчийн өгөгдлийн сан" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Хэрэглэгчдийн хандсан нь \"%s\"" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Харц %s нь устгагдсан" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Хандив" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Хэрэглэгч олдсонгүй." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Дурын" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "Өгөгдлийн сангийн эрх" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "загвар" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Өгөгдлийн сангийн эрх" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Онцгой эрхүүдийг засах" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Хүчингүй" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "Дараагийн мөрийг засах" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… хуучныг үлдээх." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… хэрэглэгчийн хүснэгтүүдээс устгах." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… хуучнаас бүх онцгой эрхийг хүчингүй болгоод дараа нь устга." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -13280,123 +13287,123 @@ msgstr "" "… хэрэглэгчийн хүснэгтүүдээс нэгийг устгаад дараа нь онцгой эрхийг дахин " "дууд." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Нэвтрэх мэдээллийг солих/ Хэрэглэгч хуулах" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Адил онцгой эрхтэй хэрэглэгч үүсгэх ба …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Онцгой эрх, баганын эрх" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Сонгогдсон хэрэглэгчдийг хасах" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Устгахын төгсгөлд нь хэрэглэгчдээс идэвхтэй бүх онцгой эрхийг хүчингүй " "болгох." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "Хэрэглэгчтэй адил нэртэй өгөгдлийн санг устгах." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "Устгахаар хэрэглэгч сонгогдсонгүй!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Онцгой эрхийг дахин дуудаж байна" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Сонгогдсон хэрэглэгч устгагдлаа." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, fuzzy, php-format msgid "You have updated the privileges for %s." msgstr "Онцгой эрх шинэчлэгдлээ" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "%s-г устгаж байна" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Онцгой эрхүүд дахин дуудагдлаа." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "Хэрэглэгч %s оршин байна!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Онцгой эрхүүд" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Хэрэглэгч" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Онцгой эрхүүдийг засах" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "User" msgid "User account" msgstr "Хэрэглэгч" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "User overview" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13409,7 +13416,7 @@ msgstr "" "агуулга нь сервэрт хэрэглэгдэж буйгаас өөр байна. Энэ тохиолдолд %sдахин " "дуудаж%s үргэлжлүүлнэ үү." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13428,11 +13435,11 @@ msgstr "" "агуулга нь сервэрт хэрэглэгдэж буйгаас өөр байна. Энэ тохиолдолд %sдахин " "дуудаж%s үргэлжлүүлнэ үү." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "Сонгогдсон хэрэглэгч онцгой эрхийн хүснэгтэд алга байна." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Шинэ хэрэглэгч нэмэгдлээ." @@ -18618,9 +18625,6 @@ msgstr "ХИ. давхацсан холболтууд" #~ msgid "(or the local Drizzle server's socket is not correctly configured)" #~ msgstr "(эсвэл дотоод MySQL сервэрийн socket нь зөв тохируулагдаагүй)" -#~ msgid "Create table on database %s" -#~ msgstr "%s ӨС-д шинэ хүснэгт үүсгэх" - #~ msgid "Data Label" #~ msgstr "Хаяг" diff --git a/po/ms.po b/po/ms.po index a318e72d6d..b421f70174 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:06+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Malay SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10428,7 +10428,7 @@ msgstr "Statistik pangkalan data" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Melonggok data bagi jadual" @@ -10455,14 +10455,14 @@ msgstr "Keterangan" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Struktur jadual bagi jadual" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 #, fuzzy msgid "Structure for view" @@ -10470,7 +10470,7 @@ msgstr "Struktur sahaja" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10582,7 +10582,7 @@ msgid "Database:" msgstr "Pangkalan Data" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10693,7 +10693,7 @@ msgid "Data creation options" msgstr "Statistik pangkalan data" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -10762,8 +10762,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10777,91 +10777,97 @@ msgstr "" msgid "Metadata" msgstr "Eksport" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" -msgstr "" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Dumping data for table" +msgid "Metadata for table %s" +msgstr "Melonggok data bagi jadual" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +msgid "Metadata for database %s" +msgstr "Tiada pangkalan data" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 #, fuzzy #| msgid "Creation" msgid "Creation:" msgstr "Mewujudkan" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 #, fuzzy #| msgid "Last update" msgid "Last update:" msgstr "Kemaskini terakhir" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 #, fuzzy #| msgid "Last check" msgid "Last check:" msgstr "Semakan Terakhir" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "sedang digunakan" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for dumped tables" msgstr "Di dalam jadual:" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Di dalam jadual:" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Tambahkan nilai AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Tambahkan nilai AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Struktur sahaja" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "" @@ -11655,7 +11661,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11663,18 +11669,18 @@ msgstr "Kata Pengenalan" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Kata Pengenalan" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Katalaluan" @@ -11715,47 +11721,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Sebarang hos" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Local" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Sebarang pengguna" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 #, fuzzy #| msgid "Add new field" msgid "Use text field:" msgstr "Tambah medan baru" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Ulang-taip" @@ -12528,7 +12534,7 @@ msgstr "Tiada" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12596,9 +12602,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy msgid "Routine" @@ -12620,14 +12626,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -12639,7 +12645,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 #, fuzzy msgid "Global privileges" msgstr "Tiada Privilej" @@ -12651,7 +12657,7 @@ msgid "Global" msgstr "Nilai Global" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "" @@ -12663,301 +12669,301 @@ msgstr "" msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Documentation" msgid "Native MySQL authentication" msgstr "Dokumentasi" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "Ubah Katalaluan" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Documentation" msgid "Native MySQL Authentication" msgstr "Dokumentasi" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 #, fuzzy msgid "Login Information" msgstr "Informasi MasaJana" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Kata Pengenalan" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Column names" msgid "Host name" msgstr "Nama Kolum" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Jangan tukar katalaluan" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Documentation" msgid "Authentication Plugin" msgstr "Dokumentasi" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password:" msgid "Password Hashing Method" msgstr "Katalaluan:" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Anda telah menarikbalik privilej Keistimewaan untuk %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Sebarang pengguna" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy msgid "Database for user account" msgstr "Statistik pangkalan data" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 #, fuzzy msgid "User has been added." msgstr "Medan %s telah digugurkan" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 #, fuzzy msgid "Grant" msgstr "Cetak" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Tiada pengguna dijumpai." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Sebarang" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Ubah Privilej" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "TarikBalik" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy msgid "Routine-specific privileges" msgstr "Tiada Privilej" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "With selected:" msgid "Remove selected user accounts" msgstr "Dengan pilihan:" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Anda telah mengemaskini privilej bagi %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilej" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Pengguna" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Ubah Privilej" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "User" msgid "User account" msgstr "Pengguna" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12966,7 +12972,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12975,11 +12981,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Anda telah menambah pengguna baru." diff --git a/po/nb.po b/po/nb.po index 0bf0d1263f..2836b513db 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-11-11 21:15+0000\n" "Last-Translator: nils kristian tomren \n" "Language-Team: Norwegian Bokmål for å bytte på kolonnens synlighet." #: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3802 +#: libraries/server_privileges.lib.php:3795 msgid "Show all" msgstr "Vis alle" @@ -3034,10 +3034,10 @@ msgstr "Spør igjen" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3134 -#: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:3307 -#: libraries/server_privileges.lib.php:4563 +#: libraries/server_privileges.lib.php:3128 +#: libraries/server_privileges.lib.php:3299 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:4556 #: libraries/server_status_processes.lib.php:84 #: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 @@ -3619,7 +3619,7 @@ msgstr "Kan være unøyaktig. Se [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:656 +#: libraries/controllers/table/TableSearchController.php:645 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." @@ -3799,8 +3799,8 @@ msgstr "Indekser" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2611 -#: libraries/server_privileges.lib.php:3529 +#: libraries/server_privileges.lib.php:2605 +#: libraries/server_privileges.lib.php:3522 #: libraries/server_user_groups.lib.php:83 #: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 @@ -3913,10 +3913,10 @@ msgstr "Vis" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3152 -#: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:3313 -#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/server_privileges.lib.php:3146 +#: libraries/server_privileges.lib.php:3305 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4570 libraries/tracking.lib.php:1489 #: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:26 @@ -3955,8 +3955,8 @@ msgstr "Sett inn" #: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 #: libraries/Util.php:4363 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:4452 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2603 +#: libraries/server_privileges.lib.php:4445 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilegier" @@ -3979,7 +3979,7 @@ msgstr "Overvåkning" #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1989 +#: libraries/plugins/export/ExportSql.php:2001 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4020,7 +4020,7 @@ msgstr "Senter kolonner" #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4556 msgid "Databases" msgstr "Databaser" @@ -8556,15 +8556,15 @@ msgstr "Tråd %s ble avsluttet med suksess." msgid "Internal relations were successfully updated." msgstr "Intern relasjon lagt til" -#: libraries/controllers/table/TableSearchController.php:841 +#: libraries/controllers/table/TableSearchController.php:830 msgid "Table search" msgstr "Tabellsøk" -#: libraries/controllers/table/TableSearchController.php:848 +#: libraries/controllers/table/TableSearchController.php:837 msgid "Zoom search" msgstr "Utvidet søk" -#: libraries/controllers/table/TableSearchController.php:853 +#: libraries/controllers/table/TableSearchController.php:842 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Finn og erstatt" @@ -8671,20 +8671,20 @@ msgstr "Kan ikke starte importerings-tilleggene, kontroller din installasjon!" #: libraries/display_change_password.lib.php:64 #: libraries/replication_gui.lib.php:879 -#: libraries/server_privileges.lib.php:1839 +#: libraries/server_privileges.lib.php:1835 msgid "No Password" msgstr "Intet passord" #: libraries/display_change_password.lib.php:72 #: libraries/plugins/auth/AuthenticationCookie.php:203 #: libraries/replication_gui.lib.php:426 libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1811 msgid "Password:" msgstr "Passord:" #: libraries/display_change_password.lib.php:78 #: libraries/replication_gui.lib.php:890 -#: libraries/server_privileges.lib.php:1857 +#: libraries/server_privileges.lib.php:1853 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -8698,7 +8698,7 @@ msgid "Password Hashing:" msgstr "Passordnøkling" #: libraries/display_change_password.lib.php:122 -#: libraries/server_privileges.lib.php:1903 +#: libraries/server_privileges.lib.php:1898 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10879,7 +10879,7 @@ msgstr "Databasevisningsinnstillinger" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Dataark for tabell" @@ -10905,21 +10905,21 @@ msgstr "Beskrivelse" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Tabellstruktur for tabell" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Visningsstruktur" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Erstatningsstruktur for visning" @@ -11029,7 +11029,7 @@ msgid "Database:" msgstr "Database" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11149,7 +11149,7 @@ msgid "Data creation options" msgstr "Transformasjonsvalg" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -11218,8 +11218,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11233,87 +11233,93 @@ msgstr "" msgid "Metadata" msgstr "Mangler data for %s" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, fuzzy, php-format #| msgid "Missing data for %s" -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "Mangler data for %s" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Missing data for %s" +msgid "Metadata for database %s" +msgstr "Mangler data for %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Opprettet:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Sist oppdatert:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Sist sjekket:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "i bruk" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Begrensninger for dumpede tabeller" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Begrensninger for tabell" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Begrensninger for dumpede tabeller" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "I tabellene:" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "Ikke bruk AUTO_INCREMENT for nullverdier" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Legg til AUTO_INCREMENT verdi" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPER FOR TABELLEN" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "RELASJONER FOR TABELLEN" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Visningsstruktur" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -12233,7 +12239,7 @@ msgstr "" "Hvis ikke, legg til følgende linje i [mysqld] seksjonen:" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "User name" msgid "User name:" @@ -12241,18 +12247,18 @@ msgstr "Brukernavn" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Brukernavn" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Passord" @@ -12295,40 +12301,40 @@ msgstr "" "lista." #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Alle verter" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Lokal" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Denne vert" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Alle brukere" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Bruk tekstfelt" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Vis vert tabell" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -12337,7 +12343,7 @@ msgstr "" "vertstabellen blir brukt istedet." #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Gjenta" @@ -13179,7 +13185,7 @@ msgstr "Ingen" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -13248,9 +13254,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Begrens antall samtidige tilkoblinger brukeren kan ha." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -13279,14 +13285,14 @@ msgstr "Tillater utføring av lagrede rutiner." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Tabell-spesifikke privilegier" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -13298,7 +13304,7 @@ msgid "Administration" msgstr "Administrasjon" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Globale privilegier" @@ -13309,7 +13315,7 @@ msgid "Global" msgstr "global" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Databasespesifikke privilegier" @@ -13321,312 +13327,312 @@ msgstr "Tillater oppretting av nye tabeller." msgid "Allows dropping tables." msgstr "Tillater sletting av tabeller." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Autentisering informasjonskapsler" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Host authentication order" msgid "SHA256 password authentication" msgstr "Rekkefølge for vertsautentisering" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL Authentication" msgstr "Autentisering informasjonskapsler" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Innlogingsinformasjon" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Bruk tekstfelt" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Brukernavn" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Loggnavn" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Ikke endre passordet" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "Godkjenning" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Passordnøkling" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "Passordet til %s er endret." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Du har fjernet privilegiene til %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Legg til bruker" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Brukerdatabase" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "Opprett database med samme navn og gi alle rettigheter." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Gi alle rettigheter på jokertegnavn (username\\_%)." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Gi alle privilegier for databasen \"%s\"." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Brukere som har adgang til \"%s\"" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Visningen %s har blitt slettet" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Rettighet" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "Ingen bruker(e) funnet." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Alle" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "databasespesifikk" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "jokertegn" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "databasespesifikk" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Rediger privilegier" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Tilbakekall" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Rediger tjener" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… behold den gamle." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… slett den gamle fra brukertabellene." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… tilbakekall alle aktive privilegier fra den gamle og slett den etterpå." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… slett den gamle fra brukertabellene og deretter oppfrisk privilegiene." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Endre innloggingsinformasjon / kopiere bruker" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Opprett ny bruker med de samme privilegier og …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Kolonne-spesifikke privilegier" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Fjern valgte brukere" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Tilbakekall alle aktive privilegier fra brukerne og slett dem etterpå." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "Slett databasene som har det samme navnet som brukerne." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "Ingen brukere merket for sletting!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Oppfrisker privilegiene" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "De valgte brukerne har blitt slettet." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Du har oppdatert privilegiene til %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "Sletter %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Oppfriskingen av privilegiene lyktes." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "Brukeren %s finnes fra før!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilegier" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Bruker" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Rediger privilegier" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "Users" msgid "User account" msgstr "Brukere" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Brukeroversikt" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13639,7 +13645,7 @@ msgstr "" "privilegiene tjeneren bruker hvis det er utført manuelle endringer på den. I " "så fall bør du %soppfriske privilegiene%s før du fortsetter." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13658,11 +13664,11 @@ msgstr "" "privilegiene tjeneren bruker hvis det er utført manuelle endringer på den. I " "så fall bør du %soppfriske privilegiene%s før du fortsetter." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "Den valgte brukeren ble ikke funnet i privilegietabellen." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Du har lagt til en ny bruker." diff --git a/po/ne.po b/po/ne.po index d0a2b41906..56e9848ae8 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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Nepali SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -9556,7 +9556,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -9580,21 +9580,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -9684,7 +9684,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "" @@ -9776,7 +9776,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -9845,8 +9845,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9858,77 +9858,83 @@ msgstr "" msgid "Metadata" msgstr "" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Delete tracking data for this table" +msgid "Metadata for table %s" +msgstr "यो तालिकाको लागि ट्रैकिंग डेटा मेट्नुहोस्" + +#: libraries/plugins/export/ExportSql.php:1070 #, php-format -msgid "Metadata for %s" +msgid "Metadata for database %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "निर्माण:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "पछिल्लो विवरण:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "पछिल्लो जाँच:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "प्रयोगमा" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "" @@ -10669,24 +10675,24 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "" @@ -10725,45 +10731,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "" @@ -11473,7 +11479,7 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -11536,9 +11542,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" @@ -11559,14 +11565,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11576,7 +11582,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "" @@ -11585,7 +11591,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "" @@ -11597,271 +11603,271 @@ msgstr "" msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 msgid "SHA256 password authentication" msgstr "" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 msgid "Native MySQL Authentication" msgstr "" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 msgid "Host name:" msgstr "" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 msgid "Host name" msgstr "" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 msgid "Authentication Plugin" msgstr "" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database comment" msgid "Database for user account" msgstr "टिप्पणी:" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 msgid "Remove selected user accounts" msgstr "" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11870,7 +11876,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11879,11 +11885,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "" diff --git a/po/nl.po b/po/nl.po index 181549518b..8f7384d626 100644 --- a/po/nl.po +++ b/po/nl.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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-11-14 10:36+0000\n" "Last-Translator: dingo thirteen \n" -"Language-Team: Dutch " -"\n" +"Language-Team: Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -95,7 +95,7 @@ msgstr "Kolom" #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:2602 libraries/tracking.lib.php:893 #: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 @@ -186,11 +186,11 @@ msgstr "Primaire sleutel" #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 -#: libraries/server_privileges.lib.php:2785 -#: libraries/server_privileges.lib.php:2973 -#: libraries/server_privileges.lib.php:2993 -#: libraries/server_privileges.lib.php:3631 -#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/server_privileges.lib.php:2779 +#: libraries/server_privileges.lib.php:2967 +#: libraries/server_privileges.lib.php:2987 +#: libraries/server_privileges.lib.php:3624 +#: libraries/server_privileges.lib.php:3647 libraries/tracking.lib.php:946 #: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 @@ -220,11 +220,11 @@ msgstr "Nee" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2785 -#: libraries/server_privileges.lib.php:2970 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3628 -#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/server_privileges.lib.php:2779 +#: libraries/server_privileges.lib.php:2964 +#: libraries/server_privileges.lib.php:2985 +#: libraries/server_privileges.lib.php:3621 +#: libraries/server_privileges.lib.php:3647 libraries/tracking.lib.php:946 #: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 @@ -489,9 +489,9 @@ msgstr "Geometrie toevoegen" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2345 -#: libraries/server_privileges.lib.php:3116 -#: libraries/server_privileges.lib.php:3735 +#: libraries/server_privileges.lib.php:2339 +#: libraries/server_privileges.lib.php:3110 +#: libraries/server_privileges.lib.php:3728 #: libraries/server_user_groups.lib.php:290 #: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 #: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 @@ -1107,12 +1107,12 @@ msgstr "De hostnaam is leeg!" msgid "The user name is empty!" msgstr "De gebruikersnaam is leeg!" -#: js/messages.php:143 libraries/server_privileges.lib.php:2047 +#: js/messages.php:143 libraries/server_privileges.lib.php:2042 #: user_password.php:116 msgid "The password is empty!" msgstr "Het wachtwoord is leeg!" -#: js/messages.php:144 libraries/server_privileges.lib.php:2045 +#: js/messages.php:144 libraries/server_privileges.lib.php:2040 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "De wachtwoorden zijn niet gelijk!" @@ -1327,7 +1327,7 @@ msgstr "Voeg tenminste één variabele toe aan de reeks!" #: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1694,7 +1694,6 @@ msgid "Formatting SQL…" msgstr "Aanmaken SQL…" #: js/messages.php:343 -#| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Parameters niet gevonden!" @@ -1826,10 +1825,10 @@ msgstr "" #: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 #: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2450 -#: libraries/server_privileges.lib.php:2529 -#: libraries/server_privileges.lib.php:2875 -#: libraries/server_privileges.lib.php:3543 +#: libraries/server_privileges.lib.php:2444 +#: libraries/server_privileges.lib.php:2523 +#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:3536 #: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 @@ -1904,8 +1903,8 @@ msgid "%d is not valid row number." msgstr "%d is geen geldig rijnummer." #: js/messages.php:409 -#: libraries/controllers/table/TableSearchController.php:432 -#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/controllers/table/TableSearchController.php:427 +#: libraries/controllers/table/TableSearchController.php:906 #: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "Bekijk vreemde waarden" @@ -2340,7 +2339,7 @@ msgstr "Klik op het pijltje
om de zichtbaarheid van de kolom te wijzigen." #: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3802 +#: libraries/server_privileges.lib.php:3795 msgid "Show all" msgstr "Toon alles" @@ -2998,10 +2997,10 @@ msgstr "Query opnieuw uitvoeren" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3134 -#: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:3307 -#: libraries/server_privileges.lib.php:4563 +#: libraries/server_privileges.lib.php:3128 +#: libraries/server_privileges.lib.php:3299 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:4556 #: libraries/server_status_processes.lib.php:84 #: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 @@ -3556,7 +3555,7 @@ msgstr "Bij benadering. Zie [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:656 +#: libraries/controllers/table/TableSearchController.php:645 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." @@ -3733,8 +3732,8 @@ msgstr "Indexen" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2611 -#: libraries/server_privileges.lib.php:3529 +#: libraries/server_privileges.lib.php:2605 +#: libraries/server_privileges.lib.php:3522 #: libraries/server_user_groups.lib.php:83 #: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 @@ -3849,10 +3848,10 @@ msgstr "View" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3152 -#: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:3313 -#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/server_privileges.lib.php:3146 +#: libraries/server_privileges.lib.php:3305 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4570 libraries/tracking.lib.php:1489 #: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:26 @@ -3891,8 +3890,8 @@ msgstr "Invoegen" #: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 #: libraries/Util.php:4363 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:4452 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2603 +#: libraries/server_privileges.lib.php:4445 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Rechten" @@ -3915,7 +3914,7 @@ msgstr "Traceren" #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1989 +#: libraries/plugins/export/ExportSql.php:2001 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3956,7 +3955,7 @@ msgstr "Centrale kolommen" #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4556 msgid "Databases" msgstr "Databases" @@ -8037,15 +8036,15 @@ msgstr "De weergavekolom is succesvol bijgewerkt." msgid "Internal relations were successfully updated." msgstr "Interne relaties werden succesvol bijgewerkt." -#: libraries/controllers/table/TableSearchController.php:841 +#: libraries/controllers/table/TableSearchController.php:830 msgid "Table search" msgstr "Tabel zoeken" -#: libraries/controllers/table/TableSearchController.php:848 +#: libraries/controllers/table/TableSearchController.php:837 msgid "Zoom search" msgstr "Zoeken door in te zoomen" -#: libraries/controllers/table/TableSearchController.php:853 +#: libraries/controllers/table/TableSearchController.php:842 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Zoek en vervang" @@ -8145,20 +8144,20 @@ msgstr "" #: libraries/display_change_password.lib.php:64 #: libraries/replication_gui.lib.php:879 -#: libraries/server_privileges.lib.php:1839 +#: libraries/server_privileges.lib.php:1835 msgid "No Password" msgstr "Geen wachtwoord" #: libraries/display_change_password.lib.php:72 #: libraries/plugins/auth/AuthenticationCookie.php:203 #: libraries/replication_gui.lib.php:426 libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1811 msgid "Password:" msgstr "Wachtwoord:" #: libraries/display_change_password.lib.php:78 #: libraries/replication_gui.lib.php:890 -#: libraries/server_privileges.lib.php:1857 +#: libraries/server_privileges.lib.php:1853 msgid "Re-type:" msgstr "Tik opnieuw in:" @@ -8168,7 +8167,7 @@ msgid "Password Hashing:" msgstr "Wachtwoord-hashing:" #: libraries/display_change_password.lib.php:122 -#: libraries/server_privileges.lib.php:1903 +#: libraries/server_privileges.lib.php:1898 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10262,7 +10261,7 @@ msgstr "Dataexport-opties" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Gegevens worden geëxporteerd voor tabel" @@ -10286,21 +10285,21 @@ msgstr "Definitie" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Tabelstructuur voor tabel" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Structuur voor de view" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Stand-in structuur voor view" @@ -10391,7 +10390,7 @@ msgid "Database:" msgstr "Database:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "Gegevens:" @@ -10493,7 +10492,7 @@ msgid "Data creation options" msgstr "Data-aanmaakopties" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "Tabel leegmaken voor invoegen" @@ -10577,8 +10576,8 @@ msgstr "Het lijkt erop dat uw databaseprocedures gebruikt;" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "alias uitvoer mogelijk niet betrouwbaar in alle gevallen." @@ -10590,77 +10589,84 @@ msgstr "Het lijkt erop dat uw databasefuncties gebruikt;" msgid "Metadata" msgstr "Metadata" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "Metadata voor %s" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for database %s" +msgstr "Metadata voor %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Aangemaakt:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Laatst bijgewerkt:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Laatst gecontroleerd:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "in gebruik" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "Het lijkt erop dat uw databaseviews gebruikt;" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Beperkingen voor geëxporteerde tabellen" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Beperkingen voor tabel" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "Indexen voor geëxporteerde tabellen" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "Indexen voor tabel" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT voor geëxporteerde tabellen" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT voor een tabel" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "MIME-TYPES VOOR TABEL" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "RELATIES VOOR TABEL" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "Het lijkt erop dat uw tabel triggers gebruikt;" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "Structuur voor view %s geëxporteerd als tabel" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "Fout bij het lezen van gegevens:" @@ -11508,24 +11514,24 @@ msgstr "" "aan de sectie [mysqld]:" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "Gebruikersnaam:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Gebruikersnaam" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Wachtwoord" @@ -11566,38 +11572,38 @@ msgstr "" "deze lijst." #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Elke host" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "lokaal" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Deze host" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Elke gebruiker" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "Tekstveld gebruiken:" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Gebruik hosttabel" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11606,7 +11612,7 @@ msgstr "" "toepassing." #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Type opnieuw" @@ -12339,7 +12345,7 @@ msgstr "Geen" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Gebruikersgroep" @@ -12413,9 +12419,9 @@ msgstr "" "hebben." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Routine" @@ -12438,14 +12444,14 @@ msgstr "Staat het toe deze routine uit te voeren." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Tabel-specifieke rechten" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -12456,7 +12462,7 @@ msgid "Administration" msgstr "Administratie" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Globale rechten" @@ -12465,7 +12471,7 @@ msgid "Global" msgstr "Globaal" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Database-specifieke rechten" @@ -12477,31 +12483,31 @@ msgstr "Maakt het mogelijk nieuwe tabellen te maken." msgid "Allows dropping tables." msgstr "Maakt het mogelijk tabellen te verwijderen." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 msgid "Native MySQL authentication" msgstr "MySQL authenticatie" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 msgid "SHA256 password authentication" msgstr "SHA256 wachtwoord authenticatie" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 msgid "Native MySQL Authentication" msgstr "MySQL authenticatie" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Aanmeldingsinformatie" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Tekstveld gebruiken" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12509,136 +12515,136 @@ msgstr "" "Er bestaat al een account met dezelfde gebruikersnaam maar mogelijk met een " "andere hostnaam." -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 msgid "Host name:" msgstr "Server naam:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 msgid "Host name" msgstr "Server naam" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Wijzig het wachtwoord niet" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 msgid "Authentication Plugin" msgstr "Authenticatie Plugin" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 msgid "Password Hashing Method" msgstr "Wachtwoord hashing methode" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "Het wachtwoord voor %s is succesvol veranderd." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "U heeft de rechten ingetrokken voor %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 msgid "Add user account" msgstr "Gebruikersaccount toevoegen" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 msgid "Database for user account" msgstr "Database voor gebruikersaccount" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "Een database aanmaken met dezelfde naam en alle rechten hierop geven." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Alle rechten geven op de wildcardnaam (gebruikersnaam\\_%)." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Alle rechten geven op database \"%s\"." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Gebruikers die toegang hebben tot \"%s\"" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "Gebruiker is toegevoegd." -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Toekennen" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "Niet genoeg rechten om gebruikers in te zien." # Enkelvoud. -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "Geen gebruiker gevonden." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Elke" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "globaal" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "database-specifiek" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "jokerteken" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "tabel-specifiek" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 msgid "Edit privileges" msgstr "Rechten bewerken" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Ongedaan maken" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "Gebruikersgroep bewerken" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… de oude behouden." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… de oude verwijderen van de gebruikerstabellen." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… alle actieve rechten van de oude intrekken en deze daarna verwijderen." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12646,90 +12652,90 @@ msgstr "" "… de oude verwijderen van de gebruikerstabellen en de rechten nadien " "vernieuwen." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "Aanmeldingsinformatie wijzigen / Gebruikersaccount kopiëren" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "Een nieuwe gebruikersaccount aanmaken met dezelfde rechten en …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Routine-specifieke rechten" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 msgid "Remove selected user accounts" msgstr "De geselecteerde gebruikersaccounts verwijderen" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Trek alle actieve rechten in van alle gebruikers en verwijder deze daarna." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "Verwijder de databases die dezelfde naam hebben als de gebruikers." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "Geen gebruikers geselecteerd om te verwijderen!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "De rechten werden opnieuw ingeladen" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "De geselecteerde gebruikers zijn met succes verwijderd." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "U heeft de rechten aangepast voor %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "Verwijderen van %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "De rechten werden succesvol opnieuw ingeladen." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "De gebruiker %s bestaat al!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "Rechten voor %s" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Gebruiker" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "Nieuw" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 msgid "Edit privileges:" msgstr "Rechten bewerken:" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "Gebruikersaccount" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12737,11 +12743,11 @@ msgstr "" "Opmerking: U probeert de rechten te wijzigen van de gebruikersnaam waarmee u " "op dit moment ingelogd bent." -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "Gebruikersaccount overzicht" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " @@ -12752,7 +12758,7 @@ msgstr "" "maken als het server deel van hun account een verbinding toestaat vanaf elke " "server (%)." -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12766,7 +12772,7 @@ msgstr "" "geval zijn dan moet men %sde rechtentabel vernieuwen%s voordat men verder " "gaat." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12780,11 +12786,11 @@ msgstr "" "dit het geval zijn dan moet de gebruikersrechten opnieuw geladen worden, " "maar op dit moment heeft u niet het RELOAD gebruikersrecht." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "De geselecteerde gebruiker werd niet aangetroffen in de rechtentabel." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "U heeft een nieuwe gebruiker toegevoegd." @@ -15395,7 +15401,6 @@ msgid "Stacked" msgstr "Opgestapeld" #: templates/table/chart/tbl_chart.phtml:53 -#| msgid "Chart title" msgid "Chart title:" msgstr "Grafiektitel:" diff --git a/po/pa.po b/po/pa.po index 718c7575cf..b17cfff45c 100644 --- a/po/pa.po +++ b/po/pa.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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2014-01-06 12:13+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Punjabi SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -9561,7 +9561,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -9585,21 +9585,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -9689,7 +9689,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "" @@ -9781,7 +9781,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -9850,8 +9850,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9863,77 +9863,82 @@ msgstr "" msgid "Metadata" msgstr "" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, php-format -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, php-format +msgid "Metadata for database %s" +msgstr "" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "" @@ -10684,24 +10689,24 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "ਵਰਤੋਂਕਾਰ ਦਾ ਨਾਂ:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "ਵਰਤੋਂਕਾਰ ਦਾ ਨਾਂ" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "" @@ -10740,45 +10745,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "" @@ -11486,7 +11491,7 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -11549,9 +11554,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" @@ -11572,14 +11577,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11589,7 +11594,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "" @@ -11598,7 +11603,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "" @@ -11610,273 +11615,273 @@ msgstr "" msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 msgid "SHA256 password authentication" msgstr "" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 msgid "Native MySQL Authentication" msgstr "" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name:" msgid "Host name:" msgstr "ਵਰਤੋਂਕਾਰ ਦਾ ਨਾਂ:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "User name" msgid "Host name" msgstr "ਵਰਤੋਂਕਾਰ ਦਾ ਨਾਂ" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 msgid "Authentication Plugin" msgstr "" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 msgid "Database for user account" msgstr "" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 msgid "Remove selected user accounts" msgstr "" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11885,7 +11890,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11894,11 +11899,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "" diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index f99b4243b0..27f173ad0a 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -96,7 +96,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:2602 libraries/tracking.lib.php:893 #: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 @@ -187,11 +187,11 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 -#: libraries/server_privileges.lib.php:2785 -#: libraries/server_privileges.lib.php:2973 -#: libraries/server_privileges.lib.php:2993 -#: libraries/server_privileges.lib.php:3631 -#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/server_privileges.lib.php:2779 +#: libraries/server_privileges.lib.php:2967 +#: libraries/server_privileges.lib.php:2987 +#: libraries/server_privileges.lib.php:3624 +#: libraries/server_privileges.lib.php:3647 libraries/tracking.lib.php:946 #: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 @@ -221,11 +221,11 @@ msgstr "" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2785 -#: libraries/server_privileges.lib.php:2970 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3628 -#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/server_privileges.lib.php:2779 +#: libraries/server_privileges.lib.php:2964 +#: libraries/server_privileges.lib.php:2985 +#: libraries/server_privileges.lib.php:3621 +#: libraries/server_privileges.lib.php:3647 libraries/tracking.lib.php:946 #: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 @@ -481,9 +481,9 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2345 -#: libraries/server_privileges.lib.php:3116 -#: libraries/server_privileges.lib.php:3735 +#: libraries/server_privileges.lib.php:2339 +#: libraries/server_privileges.lib.php:3110 +#: libraries/server_privileges.lib.php:3728 #: libraries/server_user_groups.lib.php:290 #: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 #: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 @@ -1026,12 +1026,12 @@ msgstr "" msgid "The user name is empty!" msgstr "" -#: js/messages.php:143 libraries/server_privileges.lib.php:2047 +#: js/messages.php:143 libraries/server_privileges.lib.php:2042 #: user_password.php:116 msgid "The password is empty!" msgstr "" -#: js/messages.php:144 libraries/server_privileges.lib.php:2045 +#: js/messages.php:144 libraries/server_privileges.lib.php:2040 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "" @@ -1241,7 +1241,7 @@ msgstr "" #: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1715,10 +1715,10 @@ msgstr "" #: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 #: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2450 -#: libraries/server_privileges.lib.php:2529 -#: libraries/server_privileges.lib.php:2875 -#: libraries/server_privileges.lib.php:3543 +#: libraries/server_privileges.lib.php:2444 +#: libraries/server_privileges.lib.php:2523 +#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:3536 #: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 @@ -1791,8 +1791,8 @@ msgid "%d is not valid row number." msgstr "" #: js/messages.php:409 -#: libraries/controllers/table/TableSearchController.php:432 -#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/controllers/table/TableSearchController.php:427 +#: libraries/controllers/table/TableSearchController.php:906 #: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "" @@ -2200,7 +2200,7 @@ msgstr "" #: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3802 +#: libraries/server_privileges.lib.php:3795 msgid "Show all" msgstr "" @@ -2829,10 +2829,10 @@ msgstr "" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3134 -#: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:3307 -#: libraries/server_privileges.lib.php:4563 +#: libraries/server_privileges.lib.php:3128 +#: libraries/server_privileges.lib.php:3299 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:4556 #: libraries/server_status_processes.lib.php:84 #: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 @@ -3382,7 +3382,7 @@ msgstr "" #: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:656 +#: libraries/controllers/table/TableSearchController.php:645 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." @@ -3552,8 +3552,8 @@ msgstr "" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2611 -#: libraries/server_privileges.lib.php:3529 +#: libraries/server_privileges.lib.php:2605 +#: libraries/server_privileges.lib.php:3522 #: libraries/server_user_groups.lib.php:83 #: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 @@ -3664,10 +3664,10 @@ msgstr "" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3152 -#: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:3313 -#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/server_privileges.lib.php:3146 +#: libraries/server_privileges.lib.php:3305 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4570 libraries/tracking.lib.php:1489 #: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:26 @@ -3706,8 +3706,8 @@ msgstr "" #: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 #: libraries/Util.php:4363 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:4452 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2603 +#: libraries/server_privileges.lib.php:4445 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "" @@ -3730,7 +3730,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1989 +#: libraries/plugins/export/ExportSql.php:2001 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3771,7 +3771,7 @@ msgstr "" #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4556 msgid "Databases" msgstr "" @@ -7440,15 +7440,15 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr "" -#: libraries/controllers/table/TableSearchController.php:841 +#: libraries/controllers/table/TableSearchController.php:830 msgid "Table search" msgstr "" -#: libraries/controllers/table/TableSearchController.php:848 +#: libraries/controllers/table/TableSearchController.php:837 msgid "Zoom search" msgstr "" -#: libraries/controllers/table/TableSearchController.php:853 +#: libraries/controllers/table/TableSearchController.php:842 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "" @@ -7544,20 +7544,20 @@ msgstr "" #: libraries/display_change_password.lib.php:64 #: libraries/replication_gui.lib.php:879 -#: libraries/server_privileges.lib.php:1839 +#: libraries/server_privileges.lib.php:1835 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:72 #: libraries/plugins/auth/AuthenticationCookie.php:203 #: libraries/replication_gui.lib.php:426 libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1811 msgid "Password:" msgstr "" #: libraries/display_change_password.lib.php:78 #: libraries/replication_gui.lib.php:890 -#: libraries/server_privileges.lib.php:1857 +#: libraries/server_privileges.lib.php:1853 msgid "Re-type:" msgstr "" @@ -7567,7 +7567,7 @@ msgid "Password Hashing:" msgstr "" #: libraries/display_change_password.lib.php:122 -#: libraries/server_privileges.lib.php:1903 +#: libraries/server_privileges.lib.php:1898 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -9501,7 +9501,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -9525,21 +9525,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -9629,7 +9629,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "" @@ -9721,7 +9721,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -9790,8 +9790,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9803,77 +9803,82 @@ msgstr "" msgid "Metadata" msgstr "" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, possible-php-format -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, possible-php-format +msgid "Metadata for database %s" +msgstr "" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, possible-php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "" @@ -10612,24 +10617,24 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "" @@ -10668,45 +10673,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "" @@ -11414,7 +11419,7 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -11477,9 +11482,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" @@ -11500,14 +11505,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11517,7 +11522,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "" @@ -11526,7 +11531,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "" @@ -11538,269 +11543,269 @@ msgstr "" msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 msgid "SHA256 password authentication" msgstr "" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 msgid "Native MySQL Authentication" msgstr "" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 msgid "Host name:" msgstr "" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 msgid "Host name" msgstr "" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 msgid "Authentication Plugin" msgstr "" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, possible-php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, possible-php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 msgid "Database for user account" msgstr "" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, possible-php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, possible-php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 msgid "Remove selected user accounts" msgstr "" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, possible-php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, possible-php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, possible-php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, possible-php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, possible-php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11809,7 +11814,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11818,11 +11823,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "" diff --git a/po/pl.po b/po/pl.po index a27be5259a..01f92ffa7d 100644 --- a/po/pl.po +++ b/po/pl.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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-11-14 12:43+0000\n" "Last-Translator: Michał VonFlynee \n" -"Language-Team: Polish " -"\n" +"Language-Team: Polish \n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -96,7 +96,7 @@ msgstr "Kolumna" #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:2602 libraries/tracking.lib.php:893 #: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 @@ -187,11 +187,11 @@ msgstr "Podstawowy" #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 -#: libraries/server_privileges.lib.php:2785 -#: libraries/server_privileges.lib.php:2973 -#: libraries/server_privileges.lib.php:2993 -#: libraries/server_privileges.lib.php:3631 -#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/server_privileges.lib.php:2779 +#: libraries/server_privileges.lib.php:2967 +#: libraries/server_privileges.lib.php:2987 +#: libraries/server_privileges.lib.php:3624 +#: libraries/server_privileges.lib.php:3647 libraries/tracking.lib.php:946 #: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 @@ -221,11 +221,11 @@ msgstr "Nie" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2785 -#: libraries/server_privileges.lib.php:2970 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3628 -#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/server_privileges.lib.php:2779 +#: libraries/server_privileges.lib.php:2964 +#: libraries/server_privileges.lib.php:2985 +#: libraries/server_privileges.lib.php:3621 +#: libraries/server_privileges.lib.php:3647 libraries/tracking.lib.php:946 #: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 @@ -490,9 +490,9 @@ msgstr "Dodaj geometrię" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2345 -#: libraries/server_privileges.lib.php:3116 -#: libraries/server_privileges.lib.php:3735 +#: libraries/server_privileges.lib.php:2339 +#: libraries/server_privileges.lib.php:3110 +#: libraries/server_privileges.lib.php:3728 #: libraries/server_user_groups.lib.php:290 #: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 #: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 @@ -782,22 +782,16 @@ msgstr "" "skutkować niespodziewanymi rezultatami." #: index.php:509 -#| msgid "" -#| "Your PHP parameter [a@http://php.net/manual/en/session.configuration." -#| "php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower " -#| "than cookie validity configured in phpMyAdmin, because of this, your " -#| "login will expire sooner than configured in phpMyAdmin." msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than " "cookie validity configured in phpMyAdmin, because of this, your login might " "expire sooner than configured in phpMyAdmin." msgstr "" -"Parametr PHP " -"[a@http://php.net/manual/en/session.configuration.php#ini.session.gc-" -"maxlifetime@_blank]session.gc_maxlifetime[/a] ma mniejszą wartość niż czas " -"przechowywania ciasteczka skonfigurowany w phpMyAdmin. Z tego powodu sesja " -"wygaśnie wcześniej niż jest to skonfigurowane w phpMyAdmin." +"Parametr PHP [a@http://php.net/manual/en/session.configuration.php#ini." +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] ma mniejszą wartość " +"niż czas przechowywania ciasteczka skonfigurowany w phpMyAdmin. Z tego " +"powodu sesja wygaśnie wcześniej niż jest to skonfigurowane w phpMyAdmin." #: index.php:528 msgid "" @@ -1034,7 +1028,6 @@ msgid "Reset" msgstr "Resetuj" #: js/messages.php:110 -#| msgid "Reset All" msgid "Reset all" msgstr "Zresetuj wszystkie" @@ -1121,12 +1114,12 @@ msgstr "Nazwa hosta jest pusta!" msgid "The user name is empty!" msgstr "Nazwa użytkownika jest pusta!" -#: js/messages.php:143 libraries/server_privileges.lib.php:2047 +#: js/messages.php:143 libraries/server_privileges.lib.php:2042 #: user_password.php:116 msgid "The password is empty!" msgstr "Hasło jest puste!" -#: js/messages.php:144 libraries/server_privileges.lib.php:2045 +#: js/messages.php:144 libraries/server_privileges.lib.php:2040 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Hasła nie są identyczne!" @@ -1241,22 +1234,18 @@ msgid "Used memory" msgstr "Pamięć użyta" #: js/messages.php:188 -#| msgid "Total Swap" msgid "Total swap" msgstr "Całkowita przestrzeń wymiany" #: js/messages.php:189 -#| msgid "Cached Swap" msgid "Cached swap" msgstr "Podręczna przestrzeń wymiany" #: js/messages.php:190 -#| msgid "Used Swap" msgid "Used swap" msgstr "Użyta przestrzeń wymiany" #: js/messages.php:191 -#| msgid "Free Swap" msgid "Free swap" msgstr "Wolna przestrzeń wymiany" @@ -1344,7 +1333,7 @@ msgstr "Dodaj co najmniej jedną zmienną do serii!" #: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1670,7 +1659,6 @@ msgid "No files available on server for import!" msgstr "Brak dostępnych plików na serwerze do importu!" #: js/messages.php:328 -#| msgid "Analyse Query" msgid "Analyse query" msgstr "Analizuj zapytanie" @@ -1728,7 +1716,6 @@ msgid "Cancel" msgstr "Anuluj" #: js/messages.php:350 libraries/Header.php:457 -#| msgid "Change settings" msgid "Page-related settings" msgstr "Ustawienia strony" @@ -1742,22 +1729,18 @@ msgid "Loading…" msgstr "Wczytywanie…" #: js/messages.php:355 -#| msgid "Request Aborted!!" msgid "Request aborted!!" msgstr "Żądanie przerwane!" #: js/messages.php:356 -#| msgid "Processing Request" msgid "Processing request" msgstr "Przetwarzanie żądania" #: js/messages.php:357 -#| msgid "Request Aborted!!" msgid "Request failed!!" msgstr "Żądanie nieudane!" #: js/messages.php:358 -#| msgid "Error in processing request:" msgid "Error in processing request" msgstr "Błąd podczas przetwarzania żądania" @@ -1777,12 +1760,10 @@ msgid "No databases selected." msgstr "Żadna baza danych nie został wybrana." #: js/messages.php:362 -#| msgid "Dropping Column" msgid "Dropping column" msgstr "Usuwanie kolumny" #: js/messages.php:363 -#| msgid "Add primary key" msgid "Adding primary key" msgstr "Dodawanie klucza głównego" @@ -1801,22 +1782,18 @@ msgid "Click to dismiss this notification" msgstr "Kliknij, aby zamknąć to powiadomienie" #: js/messages.php:368 -#| msgid "Renaming Databases" msgid "Renaming databases" msgstr "Zmienianie nazw baz danych" #: js/messages.php:369 -#| msgid "Copying Database" msgid "Copying database" msgstr "Kopiowanie bazy danych" #: js/messages.php:370 -#| msgid "Changing Charset" msgid "Changing charset" msgstr "Zmiana kodowania" #: js/messages.php:374 libraries/Util.php:3289 -#| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Włącz sprawdzanie kluczy obcych" @@ -1854,10 +1831,10 @@ msgstr "Definicja przechowywania funkcji musi zawierać deklarację RETURN!" #: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 #: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2450 -#: libraries/server_privileges.lib.php:2529 -#: libraries/server_privileges.lib.php:2875 -#: libraries/server_privileges.lib.php:3543 +#: libraries/server_privileges.lib.php:2444 +#: libraries/server_privileges.lib.php:2523 +#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:3536 #: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 @@ -1930,8 +1907,8 @@ msgid "%d is not valid row number." msgstr "%d nie jest prawidłowym numerem wiersza." #: js/messages.php:409 -#: libraries/controllers/table/TableSearchController.php:432 -#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/controllers/table/TableSearchController.php:427 +#: libraries/controllers/table/TableSearchController.php:906 #: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "Przeglądaj zewnętrzne wartości" @@ -2366,7 +2343,7 @@ msgstr "Kliknij rozwijane strzałki,
aby przełączyć widoczność kolumn #: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3802 +#: libraries/server_privileges.lib.php:3795 msgid "Show all" msgstr "Pokaż wszystko" @@ -3062,10 +3039,10 @@ msgstr "Wykonaj zapytanie ponownie" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3134 -#: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:3307 -#: libraries/server_privileges.lib.php:4563 +#: libraries/server_privileges.lib.php:3128 +#: libraries/server_privileges.lib.php:3299 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:4556 #: libraries/server_status_processes.lib.php:84 #: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 @@ -3654,7 +3631,7 @@ msgstr "Może być w przybliżeniu. Zobacz [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:656 +#: libraries/controllers/table/TableSearchController.php:645 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." @@ -3834,8 +3811,8 @@ msgstr "Indeksy" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2611 -#: libraries/server_privileges.lib.php:3529 +#: libraries/server_privileges.lib.php:2605 +#: libraries/server_privileges.lib.php:3522 #: libraries/server_user_groups.lib.php:83 #: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 @@ -3948,10 +3925,10 @@ msgstr "Widok" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3152 -#: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:3313 -#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/server_privileges.lib.php:3146 +#: libraries/server_privileges.lib.php:3305 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4570 libraries/tracking.lib.php:1489 #: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:26 @@ -3990,8 +3967,8 @@ msgstr "Wstaw" #: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 #: libraries/Util.php:4363 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:4452 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2603 +#: libraries/server_privileges.lib.php:4445 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Uprawnienia" @@ -4014,7 +3991,7 @@ msgstr "Śledzenie" #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1989 +#: libraries/plugins/export/ExportSql.php:2001 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4055,7 +4032,7 @@ msgstr "Centralne kolumny" #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4556 msgid "Databases" msgstr "Bazy danych" @@ -8435,19 +8412,19 @@ msgstr "Wątek %s został pomyślnie zabity." msgid "Internal relations were successfully updated." msgstr "Relacja wewnętrzna została dodana." -#: libraries/controllers/table/TableSearchController.php:841 +#: libraries/controllers/table/TableSearchController.php:830 #, fuzzy #| msgid "Table Search" msgid "Table search" msgstr "Tabela szukania" -#: libraries/controllers/table/TableSearchController.php:848 +#: libraries/controllers/table/TableSearchController.php:837 #, fuzzy #| msgid "Zoom Search" msgid "Zoom search" msgstr "Powiększ szukanie" -#: libraries/controllers/table/TableSearchController.php:853 +#: libraries/controllers/table/TableSearchController.php:842 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "Find and Replace" @@ -8552,20 +8529,20 @@ msgstr "Nie udało się wczytać wtyczek importu. Proszę sprawdzić instalację #: libraries/display_change_password.lib.php:64 #: libraries/replication_gui.lib.php:879 -#: libraries/server_privileges.lib.php:1839 +#: libraries/server_privileges.lib.php:1835 msgid "No Password" msgstr "Brak hasła" #: libraries/display_change_password.lib.php:72 #: libraries/plugins/auth/AuthenticationCookie.php:203 #: libraries/replication_gui.lib.php:426 libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1811 msgid "Password:" msgstr "Hasło:" #: libraries/display_change_password.lib.php:78 #: libraries/replication_gui.lib.php:890 -#: libraries/server_privileges.lib.php:1857 +#: libraries/server_privileges.lib.php:1853 msgid "Re-type:" msgstr "Powtórz:" @@ -8575,7 +8552,7 @@ msgid "Password Hashing:" msgstr "Sposób kodowania haseł:" #: libraries/display_change_password.lib.php:122 -#: libraries/server_privileges.lib.php:1903 +#: libraries/server_privileges.lib.php:1898 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10699,7 +10676,7 @@ msgstr "Opcje eksportu danych" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Zrzut danych tabeli" @@ -10723,21 +10700,21 @@ msgstr "Określenie" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Struktura tabeli dla tabeli" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Struktura widoku" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Zastąpiona struktura widoku" @@ -10829,7 +10806,7 @@ msgid "Database:" msgstr "Baza danych:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "Dane:" @@ -10938,7 +10915,7 @@ msgid "Data creation options" msgstr "Opcje tworzenia danych" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "Tabela Truncate przed wstawieniem" @@ -11025,8 +11002,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11040,83 +11017,89 @@ msgstr "" msgid "Metadata" msgstr "Nagłówki metadanych" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, fuzzy, php-format #| msgid "Metadata Headers" -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "Nagłówki metadanych" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Metadata Headers" +msgid "Metadata for database %s" +msgstr "Nagłówki metadanych" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Data utworzenia:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Ostatnia aktualizacja:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Ostatnie sprawdzanie:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "w użyciu" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Ograniczenia dla zrzutów tabel" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Ograniczenia dla tabeli" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "Indeksy dla zrzutów tabel" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Wewnątrz tabel:" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "Nie używaj AUTO_INCREMENT dla wartości zerowych" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT dla tabeli" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "TYPY MIME TABELI" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "RELACJE TABELI" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Struktura widoku" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "Błąd odczytu danych:" @@ -12020,24 +12003,24 @@ msgstr "" "ID serwera. Jeśli tak nie jest, dodaj następującą linię w sekcji [mysqld]:" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "Nazwa użytkownika:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Nazwa użytkownika" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Hasło" @@ -12078,38 +12061,38 @@ msgstr "" "widoczne na tej liście." #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Dowolny host" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Host lokalny" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Ten host" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Dowolny użytkownik" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "Użyj pola tekstowego:" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Użyj tabeli hostów" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -12118,7 +12101,7 @@ msgstr "" "w tabeli hostów jest używana zamiast." #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Ponownie" @@ -12879,7 +12862,7 @@ msgstr "Brak" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Grupa użytkownika" @@ -12950,9 +12933,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Ogranicz liczbę jednoczesnych połączeń, które może użytkownik." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12981,14 +12964,14 @@ msgstr "Pozwól wykonywać procedury składowane." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Uprawnienia specyficzne dla tabel" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Uwaga: Uprawnienia MySQL są oznaczone w języku angielskim." @@ -12998,7 +12981,7 @@ msgid "Administration" msgstr "Administracja" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Globalne uprawnienia" @@ -13007,7 +12990,7 @@ msgid "Global" msgstr "Ogólny" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Uprawnienia specyficzne dla baz danych" @@ -13019,37 +13002,37 @@ msgstr "Pozwól tworzyć nowe tabele." msgid "Allows dropping tables." msgstr "Pozwól usuwać tabele." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Uwierzytelnianie ciasteczkami" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Zarejestruj się na uwierzytelnianiu" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL Authentication" msgstr "Uwierzytelnianie ciasteczkami" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Dane użytkownika" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Użyj pola tekstowego" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -13057,273 +13040,273 @@ msgstr "" "Konto już istnieje o tej samej nazwie użytkownika, ale prawdopodobnie inna " "nazwa hosta." -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name:" msgid "Host name:" msgstr "Nazwa użytkownika:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Nazwa dziennika" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Nie zmieniaj hasła" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "Uwierzytelnienie" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "Sposób kodowania haseł:" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "Hasło dla %s zostało zmienione." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Masz cofnięte uprawnienia dla %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add user group" msgid "Add user account" msgstr "Dodaj grupę użytkownika" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Baza danych dla użytkownika" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "Utwórz bazę danych z taką samą nazwą i przyznaj wszystkie uprawnienia." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Przyznaj wszystkie uprawienia do baz danych o nazwach pasujących do maski " "(nazwaużytkownika_%)." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Przyznanie wszystkich uprawnień do bazy danych \"%s\"." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Użytkownicy mają dostęp do \"%s\"" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "Użytkownik został dodany." -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Nadawanie" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "Żadnego użytkownika nie znaleziono." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Dowolny" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "ogólny" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "specyficzne dla bazy danych" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "znak wieloznaczny" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "specyficzne dla bazy danych" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "Edytuj uprawnienia:" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Cofnij" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "Edytuj grupę użytkownika" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… pozostaw starego." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… usunąć starą z tabel użytkowników." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… unieważnij wszystkie aktywne uprawnienia ze starej i usuń je później." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… usuń starą z tabel użytkownika i przeładuj uprawnienia później." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Zmień dane użytkownika / Kopiuj użytkownika" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Utwórz nowego użytkownika z takimi samymi uprawnieniami i …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Uprawnienia specyficzne dla kolumn" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Usuń zaznaczonych użytkowników" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Cofnij wszystkie aktywne uprawnienia użytkownikom, a następnie usuń ich." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "Usuń bazy danych o takich samych nazwach jak użytkownicy." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "Żaden użytkownik ze został zaznaczony do usunięcia!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Przeładuj uprawnienia" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Wybrani użytkownicy zostali usunięci pomyślnie." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Zaktualizowano uprawnienia dla %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "Usuwanie %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Uprawnienia były przeładowane pomyślnie." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "Użytkownik %s już istnieje!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "Uprawnienia dla %s" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Użytkownik" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "Nowy" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "Edytuj uprawnienia:" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "User group" msgid "User account" msgstr "Grupa użytkownika" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "Omówienie użytkowników" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13336,7 +13319,7 @@ msgstr "" "może się różnić od uprawnień jakich faktycznie używa serwer. W takim " "przypadku powinieneś przed dalszą pracą %sprzeładować uprawnienia%s." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13355,11 +13338,11 @@ msgstr "" "może się różnić od uprawnień jakich faktycznie używa serwer. W takim " "przypadku powinieneś przed dalszą pracą %sprzeładować uprawnienia%s." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "Wybrany użytkownik nie został znaleziony w tabeli uprawnień." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Dodałeś nowego użytkownika." diff --git a/po/pt.po b/po/pt.po index cdba423dbc..302ee8b97a 100644 --- a/po/pt.po +++ b/po/pt.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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-26 05:24+0200\n" "Last-Translator: Paulo Lopes Duarte \n" "Language-Team: Portuguese para alternar a visibilidade da coluna." #: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3802 +#: libraries/server_privileges.lib.php:3795 msgid "Show all" msgstr "Mostrar tudo" @@ -3090,10 +3090,10 @@ msgstr "Re-consultar" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3134 -#: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:3307 -#: libraries/server_privileges.lib.php:4563 +#: libraries/server_privileges.lib.php:3128 +#: libraries/server_privileges.lib.php:3299 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:4556 #: libraries/server_status_processes.lib.php:84 #: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 @@ -3681,7 +3681,7 @@ msgstr "Pode ser aproximado. Veja o [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:656 +#: libraries/controllers/table/TableSearchController.php:645 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." @@ -3859,8 +3859,8 @@ msgstr "Índices" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2611 -#: libraries/server_privileges.lib.php:3529 +#: libraries/server_privileges.lib.php:2605 +#: libraries/server_privileges.lib.php:3522 #: libraries/server_user_groups.lib.php:83 #: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 @@ -3972,10 +3972,10 @@ msgstr "Vista" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3152 -#: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:3313 -#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/server_privileges.lib.php:3146 +#: libraries/server_privileges.lib.php:3305 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4570 libraries/tracking.lib.php:1489 #: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:26 @@ -4014,8 +4014,8 @@ msgstr "Insere" #: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 #: libraries/Util.php:4363 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:4452 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2603 +#: libraries/server_privileges.lib.php:4445 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilégios" @@ -4038,7 +4038,7 @@ msgstr "Rastreando" #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1989 +#: libraries/plugins/export/ExportSql.php:2001 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4079,7 +4079,7 @@ msgstr "Colunas centrais" #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4556 msgid "Databases" msgstr "Base de Dados" @@ -8275,19 +8275,19 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr "Relação interna adicionada" -#: libraries/controllers/table/TableSearchController.php:841 +#: libraries/controllers/table/TableSearchController.php:830 #, fuzzy #| msgid "Table Search" msgid "Table search" msgstr "Pesquisa de tabela" -#: libraries/controllers/table/TableSearchController.php:848 +#: libraries/controllers/table/TableSearchController.php:837 #, fuzzy #| msgid "Zoom Search" msgid "Zoom search" msgstr "Pesquisa Avançada" -#: libraries/controllers/table/TableSearchController.php:853 +#: libraries/controllers/table/TableSearchController.php:842 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "Find and Replace" @@ -8399,20 +8399,20 @@ msgstr "" #: libraries/display_change_password.lib.php:64 #: libraries/replication_gui.lib.php:879 -#: libraries/server_privileges.lib.php:1839 +#: libraries/server_privileges.lib.php:1835 msgid "No Password" msgstr "Sem palavra-passe" #: libraries/display_change_password.lib.php:72 #: libraries/plugins/auth/AuthenticationCookie.php:203 #: libraries/replication_gui.lib.php:426 libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1811 msgid "Password:" msgstr "Palavra-passe:" #: libraries/display_change_password.lib.php:78 #: libraries/replication_gui.lib.php:890 -#: libraries/server_privileges.lib.php:1857 +#: libraries/server_privileges.lib.php:1853 msgid "Re-type:" msgstr "Confirma:" @@ -8422,7 +8422,7 @@ msgid "Password Hashing:" msgstr "Hash da palavra-passe:" #: libraries/display_change_password.lib.php:122 -#: libraries/server_privileges.lib.php:1903 +#: libraries/server_privileges.lib.php:1898 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10548,7 +10548,7 @@ msgstr "Opções de exportação da Base de Dados" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Extraindo dados da tabela" @@ -10575,14 +10575,14 @@ msgstr "Descrição" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Estrutura da tabela" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 #, fuzzy msgid "Structure for view" @@ -10590,7 +10590,7 @@ msgstr "Somente estrutura" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 #, fuzzy msgid "Stand-in structure for view" @@ -10703,7 +10703,7 @@ msgid "Database:" msgstr "Base de Dados" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10819,7 +10819,7 @@ msgid "Data creation options" msgstr "Opções de tranformação" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -10891,8 +10891,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10906,86 +10906,92 @@ msgstr "" msgid "Metadata" msgstr "Dados em falta para %s" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, fuzzy, php-format #| msgid "Missing data for %s" -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "Dados em falta para %s" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Missing data for %s" +msgid "Metadata for database %s" +msgstr "Dados em falta para %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Criação:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Última actualização:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Última verificação:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "em utilização" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 #, fuzzy msgid "Constraints for dumped tables" msgstr "Limitadores para a tabela" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Limitadores para a tabela" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy msgid "Indexes for dumped tables" msgstr "Limitadores para a tabela" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Dentro de Tabela(s):" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "Não usar AUTO_INCREMENT para valores zero" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Adicionar valor AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Somente estrutura" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11802,7 +11808,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11810,18 +11816,18 @@ msgstr "Nome do Utilizador" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Nome do Utilizador" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Palavra-passe" @@ -11862,47 +11868,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Qualquer máquina" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Local" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Este Anfitrião" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Qualquer utilizador" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Usar campo de texto" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Usar a tabela do anfitrião" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Confirma" @@ -12694,7 +12700,7 @@ msgstr "Nenhum" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12762,9 +12768,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12791,14 +12797,14 @@ msgstr "Permite criar novas tabelas." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Privilégios específicos da tabela" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -12810,7 +12816,7 @@ msgid "Administration" msgstr "Administração" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Privilégios Globais" @@ -12821,7 +12827,7 @@ msgid "Global" msgstr "global" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Privilégios específicos da Base de Dados" @@ -12833,192 +12839,192 @@ msgstr "Permite criar novas tabelas." msgid "Allows dropping tables." msgstr "Permite apagar tabelas." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Autenticação por cookie" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Autenticação Signon" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL Authentication" msgstr "Autenticação por cookie" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Informação de Login" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Usar campo de texto" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Nome do Utilizador" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Constraints for table" msgid "Host name" msgstr "Limitadores para a tabela" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Mantendo a palavra-passe" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "Autenticação" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "Hash da palavra-passe:" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "A palavra-passe para %s foi alterada com sucesso." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Anulou os privilégios para %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Adicionar utilizador" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database export options" msgid "Database for user account" msgstr "Opções de exportação da Base de Dados" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, fuzzy, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Verificar Privilégios para a Base de Dados \"%s\"." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Utilizadores que tem acesso a \"%s\"" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "A Vista %s foi eliminada" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Conceder/Grant" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nenhum utilizador encontrado." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Todos" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "Especifico da Base de Dados" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Especifico da Base de Dados" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Alterar Privilegios" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Anula" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "Editar próxima coluna" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… manter o antigo." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… apagar o antigo das tabelas do utilizador." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… revogar todos os privilégios activos do antigo e a seguir apagá-lo." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -13026,120 +13032,120 @@ msgstr "" "… apagar o antigo das tabelas do utilizador e depois recarregue os " "privilégios." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Mudar a informação de login / Copiar Utilizador" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Criar um novo utilizador com os mesmo privilégios e …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Privilégios específicos da Coluna" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Remover utilizadores seleccionados" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Revogar todos os privilégios dos utilizadores e apagá-los a seguir." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" "Apagar as Bases de Dados que tenham os mesmos nomes que os utilizadores." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "A recarregar privilégios" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Os utilizadores selecionado foram apagados com sucesso." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Actualizou os privilégios de %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "A apagar %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "O privilégios foram recarregados com sucesso." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "O utilizador %s já existe!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilégios" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Utilizador" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Alterar Privilegios" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "Users" msgid "User account" msgstr "Utilizadores" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13152,7 +13158,7 @@ msgstr "" "privilégios que o servidor usa se alterações manuais nele forem feitas. " "Neste caso, deve %sreload the privileges%s antes de continuar." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13171,11 +13177,11 @@ msgstr "" "privilégios que o servidor usa se alterações manuais nele forem feitas. " "Neste caso, deve %sreload the privileges%s antes de continuar." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "O utilizador selecionado não se encontra na tabela de privilégios." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Acrescentou um novo utilizador." diff --git a/po/pt_BR.po b/po/pt_BR.po index 767777fdb0..4f1c2edb32 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-14 14:56+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Portuguese (Brazil) para alternar a visibilidade da coluna." #: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3802 +#: libraries/server_privileges.lib.php:3795 msgid "Show all" msgstr "Mostrar tudo" @@ -3070,10 +3070,10 @@ msgstr "Fazer novo consulta" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3134 -#: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:3307 -#: libraries/server_privileges.lib.php:4563 +#: libraries/server_privileges.lib.php:3128 +#: libraries/server_privileges.lib.php:3299 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:4556 #: libraries/server_status_processes.lib.php:84 #: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 @@ -3656,7 +3656,7 @@ msgstr "Pode ser aproximado. Veja a [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:656 +#: libraries/controllers/table/TableSearchController.php:645 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." @@ -3836,8 +3836,8 @@ msgstr "Índices" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2611 -#: libraries/server_privileges.lib.php:3529 +#: libraries/server_privileges.lib.php:2605 +#: libraries/server_privileges.lib.php:3522 #: libraries/server_user_groups.lib.php:83 #: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 @@ -3950,10 +3950,10 @@ msgstr "Visualizar" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3152 -#: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:3313 -#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/server_privileges.lib.php:3146 +#: libraries/server_privileges.lib.php:3305 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4570 libraries/tracking.lib.php:1489 #: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:26 @@ -3992,8 +3992,8 @@ msgstr "Inserir" #: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 #: libraries/Util.php:4363 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:4452 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2603 +#: libraries/server_privileges.lib.php:4445 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilégios" @@ -4016,7 +4016,7 @@ msgstr "Monitoramento" #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1989 +#: libraries/plugins/export/ExportSql.php:2001 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4057,7 +4057,7 @@ msgstr "Colunas centrais" #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4556 msgid "Databases" msgstr "Bancos de dados" @@ -8199,15 +8199,15 @@ msgstr "A coluna de exibição foi atualizada com sucesso." msgid "Internal relations were successfully updated." msgstr "As relações internas foram atualizadas com êxito." -#: libraries/controllers/table/TableSearchController.php:841 +#: libraries/controllers/table/TableSearchController.php:830 msgid "Table search" msgstr "pesquisar tabela" -#: libraries/controllers/table/TableSearchController.php:848 +#: libraries/controllers/table/TableSearchController.php:837 msgid "Zoom search" msgstr "pesquisa detalhada" -#: libraries/controllers/table/TableSearchController.php:853 +#: libraries/controllers/table/TableSearchController.php:842 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Pesquisar e substituir" @@ -8309,20 +8309,20 @@ msgstr "" #: libraries/display_change_password.lib.php:64 #: libraries/replication_gui.lib.php:879 -#: libraries/server_privileges.lib.php:1839 +#: libraries/server_privileges.lib.php:1835 msgid "No Password" msgstr "Sem senha" #: libraries/display_change_password.lib.php:72 #: libraries/plugins/auth/AuthenticationCookie.php:203 #: libraries/replication_gui.lib.php:426 libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1811 msgid "Password:" msgstr "Senha:" #: libraries/display_change_password.lib.php:78 #: libraries/replication_gui.lib.php:890 -#: libraries/server_privileges.lib.php:1857 +#: libraries/server_privileges.lib.php:1853 msgid "Re-type:" msgstr "Re-digite:" @@ -8332,7 +8332,7 @@ msgid "Password Hashing:" msgstr "Hashing de senha:" #: libraries/display_change_password.lib.php:122 -#: libraries/server_privileges.lib.php:1903 +#: libraries/server_privileges.lib.php:1898 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10465,7 +10465,7 @@ msgstr "Opções de dump de dados" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Fazendo dump de dados para tabela" @@ -10489,21 +10489,21 @@ msgstr "Definição" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Estrutura para tabela" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Estrutura para view" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Estrutura stand-in para view" @@ -10593,7 +10593,7 @@ msgid "Database:" msgstr "Banco de dados:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "Dados:" @@ -10703,7 +10703,7 @@ msgid "Data creation options" msgstr "Opções de criação de dados" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "Tabela truncada antes do insert" @@ -10784,8 +10784,8 @@ msgstr "Parece que seu banco de dados utiliza procedimentos;" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "exportar alias pode não funcionar confiantemente em todos os casos." @@ -10799,78 +10799,84 @@ msgstr "Parece que seu banco de dados utiliza funções;" msgid "Metadata" msgstr "Dados faltando para %s" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, fuzzy, php-format #| msgid "Missing data for %s" -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "Dados faltando para %s" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Missing data for %s" +msgid "Metadata for database %s" +msgstr "Dados faltando para %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Criação:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Última atualização:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Última verificação:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "em uso" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "Parece que seu banco de dados utiliza visões;" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Restrições para dumps de tabelas" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Restrições para tabelas" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "Índices de tabelas apagadas" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "Índices de tabela" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT de tabelas apagadas" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT de tabela" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "TIPOS MIME PARA TABELAS" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "RELACIONAMENTOS PARA TABELAS" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "Isso demonstra que sua tabela utiliza gatilhos;" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "Estrutura da view %s exportado como tabela" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "Erro ao ler dados:" @@ -11752,24 +11758,24 @@ msgstr "" "seção [mysqld]:" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "Nome de usuário:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Nome do usuário" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Senha" @@ -11810,38 +11816,38 @@ msgstr "" "visíveis nesta lista." #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Qualquer host" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Local" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Este host" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Qualquer usuário" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "Usar campo de texto:" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Usar tabela Host" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11850,7 +11856,7 @@ msgstr "" "na tabela Host são usados no lugar." #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Re-digite" @@ -12579,7 +12585,7 @@ msgstr "Nenhum privilégio" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Grupo de usuários" @@ -12650,9 +12656,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Limitar o número de conexões simultâneas que o usuário pode ter." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12681,14 +12687,14 @@ msgstr "Permitir executar rotinas armazenadas." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Privilégios específicos de tabela" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Nota: os nomes de privilégios do MySQL são expressos em inglês." @@ -12698,7 +12704,7 @@ msgid "Administration" msgstr "Administração" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Privilégios globais" @@ -12707,7 +12713,7 @@ msgid "Global" msgstr "Global" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Privilégios específicos de banco de dados" @@ -12719,37 +12725,37 @@ msgstr "Permitir criar novas tabelas." msgid "Allows dropping tables." msgstr "Permitir eliminar tabelas." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Autenticação por cookie" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Autenticação Signon" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL Authentication" msgstr "Autenticação por cookie" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Informação de login" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Usar campo texto" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12757,270 +12763,270 @@ msgstr "" "Uma conta já existe com o mesmo nome de usuário, mas possivelmente com um " "nome de servidor diferente." -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name:" msgid "Host name:" msgstr "Nome de usuário:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Nome do log" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Não mudar a senha" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "Autenticação" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "Hashing de senha:" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "A senha para %s foi modificada com sucesso." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Você revogou os privilégios para %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add user group" msgid "Add user account" msgstr "Adicionar grupo de usuários" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Banco de dados para usuário" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "Criar banco de dados com o mesmo nome e conceder todos os privilégios." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Conceder todos os privilégios no nome coringa (nome_do_usuário_%)." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Conceder todos os privilégios no banco de dados '%s'." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Usuários que têm acesso à '%s'" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "Usuário foi adicionado." -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Conceder/Grant" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "Privilégio insuficiente para exibir o(s) usuário(s)." -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "Nenhum usuário encontrado." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Qualquer" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "específico de banco de dados" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "coringa" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "específico de tabela" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "Editar privilégios:" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Revogar" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "Editar grupo de usuários" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… manter o antigo." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… apagar o antigo da tabela de usuários." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… revogar todos privilégios ativos do usuário antigo e depois apagá-lo." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… apagar o antigo da tabela de usuários e depois recarregar os privilégios." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Mudar informações de login / Copiar usuário" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Criar um novo usuário com os mesmos privilégios e …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Privilégios específicos de coluna" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Remover os usuários selecionados" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Revogar todos os privilégios ativos dos usuários e depois apagar eles." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "Eliminar os bancos de dados que possem o mesmo nome dos usuários." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "Nenhum usuário selecionado para exclusão!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Recarregando os privilégios" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Os usuários selecionados foram apagados com sucesso." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Você mudou os privilégios para %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "Eliminando %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Os privilégios foram recarregados com sucesso." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "O usuário %s já existe!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "Privilégios para %s" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Usuário" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "Novo usuário" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "Editar privilégios:" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "User group" msgid "User account" msgstr "Grupo de usuários" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" "Nota: Você está tentando editar os privilégios do usuário da sessão atual." -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "Visão geral dos usuários" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13033,7 +13039,7 @@ msgstr "" "privilégios que o servidor usa se eles foram mudados manualmente. Neste " "caso, você deve usar %sAtualizar privilégios%s antes de continuar." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13052,11 +13058,11 @@ msgstr "" "privilégios que o servidor usa se eles foram mudados manualmente. Neste " "caso, você deve usar %sAtualizar privilégios%s antes de continuar." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "O usuário selecionado não foi encontrado na tabela de privilégios." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Você adicionou um novo usuário." diff --git a/po/ro.po b/po/ro.po index b37047e4cf..87e8970538 100644 --- a/po/ro.po +++ b/po/ro.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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:02+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Romanian SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10897,7 +10897,7 @@ msgstr "Opțiuni de afișare a bazelor de date" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Salvarea datelor din tabel" @@ -10921,21 +10921,21 @@ msgstr "Definiție" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Structura de tabel pentru tabelul" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Structură pentru vizualizare" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -11049,7 +11049,7 @@ msgid "Database:" msgstr "Bază de date" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11166,7 +11166,7 @@ msgid "Data creation options" msgstr "Opțiuni de transformare" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -11235,8 +11235,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11250,87 +11250,93 @@ msgstr "" msgid "Metadata" msgstr "Headere Metadata" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, fuzzy, php-format #| msgid "Metadata Headers" -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "Headere Metadata" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Metadata Headers" +msgid "Metadata for database %s" +msgstr "Headere Metadata" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Creare:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Ultima actualizare:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Ultima verificare:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "în uz" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Restrictii pentru tabele sterse" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Restrictii pentru tabele" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Restrictii pentru tabele sterse" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "În interiorul tabelelor:" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "Nu folosi AUTO_INCREMENT pentru valorile de zero" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Adaugă valoare pentru AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "TIPURI MIME PENTRU TABEL" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "RELAȚII PENTRU TABEL" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Structură pentru vizualizare" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -12252,7 +12258,7 @@ msgstr "" "secțiunea [mysqld]:" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "User name" msgid "User name:" @@ -12260,18 +12266,18 @@ msgstr "Nume utilizator" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Nume utilizator" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Parola" @@ -12312,40 +12318,40 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Oricare gazdă" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Local" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Această gazdă" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Oricare utilizator" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Utilizare câmp text" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Utilizare tabel gazde" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -12354,7 +12360,7 @@ msgstr "" "tabela Host sunt folosite în schimb." #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Re-tastează" @@ -13176,7 +13182,7 @@ msgstr "Nici unul(a)" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -13252,9 +13258,9 @@ msgstr "" "Limitează numărul conexiunilor simultane pe care le poate avea utilizatorul." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -13283,14 +13289,14 @@ msgstr "Permite executarea rutinelor stocate." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Drepturi specifice de tabele" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -13302,7 +13308,7 @@ msgid "Administration" msgstr "Administrare" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Privilegii globale" @@ -13313,7 +13319,7 @@ msgid "Global" msgstr "global" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Drepturi specifice bazei de date" @@ -13325,319 +13331,319 @@ msgstr "Permite crearea de noi tabele." msgid "Allows dropping tables." msgstr "Permite aruncarea a unei baze de date." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Autentificare Cookie" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Autentificare Signon" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL Authentication" msgstr "Autentificare Cookie" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Informații de autentificare" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Utilizare câmp text" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Nume utilizator" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Denumire jurnal" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Nu schimbați parola" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "Autentificare" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Criptare Parola" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "Parola pentru %s a fost schimbată cu succes." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Drepturile tale au fost revocate pentru %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Adaugă utilizator" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Bază de date pentru utilizatorul" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "Creează o bază de date cu același nume și acordă toate privilegiile." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, fuzzy, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Verifică privilegiile pentru baza de date \"%s\"." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Utilizatorul are acces la \"%s\"" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Vizualizarea %s a fost eliminată" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Permite" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nu s-a găsit nici un utilizator." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Oricare" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "specific bazei de date" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "Metacaracter" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "specific bazei de date" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Editează drepturile de acces" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Revocare" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Redactează serverul" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… menține cel vechi." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… șterge cel vechi din tabelul de utilizatori." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "…revocă toate privilegiile active de la utilizatorul vechi și șterge-l după " "aceea." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… șterge cel vechi din tabelul de utilizatori și reîncarcă privilegiile." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Schimbă informațiile de autentificare/Copiază utilizator" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Creează un utilizator nou cu aceleași privilegii și…" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Drepturi specifice coloanei" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Eliminarea utilizatorilor selectați" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revocarea tuturor drepturilor active ale utilizatorilor și stergerea " "acestora." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "Aruncă baza de date care are același nume ca utilizatorul." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "Nici un utilizator ales pentru ștergere!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Reîncărcarea drepturilor" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Utilizatorii selectați au fost eliminați." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Ați actualizat privilegiile pentru %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "Șterge %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Drepturile au fost reîncarcate cu succes." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "Utilizatorul %s există deja!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Drepturi de acces" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Utilizator" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 #, fuzzy #| msgid "New" msgctxt "Create new user" msgid "New" msgstr "Nou" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Editează drepturile de acces" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "Users" msgid "User account" msgstr "Utilizatori" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Descriere utilizator" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13650,7 +13656,7 @@ msgstr "" "În acest caz, reîncărcați de aici înainte de a continua %sreîncărcarea " "drepturilor%s." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13669,11 +13675,11 @@ msgstr "" "În acest caz, reîncărcați de aici înainte de a continua %sreîncărcarea " "drepturilor%s." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "Utilizatorul selectat nu a fost găsit în tabelul de drepturi." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Ați adăugat un nou utilizator." diff --git a/po/ru.po b/po/ru.po index 4122900529..7726fc3169 100644 --- a/po/ru.po +++ b/po/ru.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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-09-06 06:59+0200\n" "Last-Translator: Egorov Artyom \n" "Language-Team: Russian для пер #: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3802 +#: libraries/server_privileges.lib.php:3795 msgid "Show all" msgstr "Показать все" @@ -2988,10 +2988,10 @@ msgstr "Повторный запрос" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3134 -#: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:3307 -#: libraries/server_privileges.lib.php:4563 +#: libraries/server_privileges.lib.php:3128 +#: libraries/server_privileges.lib.php:3299 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:4556 #: libraries/server_status_processes.lib.php:84 #: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 @@ -3553,7 +3553,7 @@ msgstr "Может быть приблизительно. Смотрите [doc@ #: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:656 +#: libraries/controllers/table/TableSearchController.php:645 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." @@ -3733,8 +3733,8 @@ msgstr "Индексы" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2611 -#: libraries/server_privileges.lib.php:3529 +#: libraries/server_privileges.lib.php:2605 +#: libraries/server_privileges.lib.php:3522 #: libraries/server_user_groups.lib.php:83 #: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 @@ -3845,10 +3845,10 @@ msgstr "Представление" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3152 -#: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:3313 -#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/server_privileges.lib.php:3146 +#: libraries/server_privileges.lib.php:3305 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4570 libraries/tracking.lib.php:1489 #: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:26 @@ -3887,8 +3887,8 @@ msgstr "Вставить" #: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 #: libraries/Util.php:4363 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:4452 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2603 +#: libraries/server_privileges.lib.php:4445 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Привилегии" @@ -3911,7 +3911,7 @@ msgstr "Слежение" #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1989 +#: libraries/plugins/export/ExportSql.php:2001 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3952,7 +3952,7 @@ msgstr "Центральные столбцы" #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4556 msgid "Databases" msgstr "Базы данных" @@ -8023,15 +8023,15 @@ msgstr "Отображаемый столбец был успешно обнов msgid "Internal relations were successfully updated." msgstr "Внутренние связи были успешно обновлены." -#: libraries/controllers/table/TableSearchController.php:841 +#: libraries/controllers/table/TableSearchController.php:830 msgid "Table search" msgstr "Поиск в таблице" -#: libraries/controllers/table/TableSearchController.php:848 +#: libraries/controllers/table/TableSearchController.php:837 msgid "Zoom search" msgstr "Поиск с приближением" -#: libraries/controllers/table/TableSearchController.php:853 +#: libraries/controllers/table/TableSearchController.php:842 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Найти и заменить" @@ -8133,20 +8133,20 @@ msgstr "" #: libraries/display_change_password.lib.php:64 #: libraries/replication_gui.lib.php:879 -#: libraries/server_privileges.lib.php:1839 +#: libraries/server_privileges.lib.php:1835 msgid "No Password" msgstr "Без пароля" #: libraries/display_change_password.lib.php:72 #: libraries/plugins/auth/AuthenticationCookie.php:203 #: libraries/replication_gui.lib.php:426 libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1811 msgid "Password:" msgstr "Пароль:" #: libraries/display_change_password.lib.php:78 #: libraries/replication_gui.lib.php:890 -#: libraries/server_privileges.lib.php:1857 +#: libraries/server_privileges.lib.php:1853 msgid "Re-type:" msgstr "Подтверждение:" @@ -8156,7 +8156,7 @@ msgid "Password Hashing:" msgstr "Хеширование пароля:" #: libraries/display_change_password.lib.php:122 -#: libraries/server_privileges.lib.php:1903 +#: libraries/server_privileges.lib.php:1898 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10239,7 +10239,7 @@ msgstr "Параметры сохранения данных" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Дамп данных таблицы" @@ -10263,21 +10263,21 @@ msgstr "Определение" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Структура таблицы" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Структура для представления" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Дублирующая структура для представления" @@ -10367,7 +10367,7 @@ msgid "Database:" msgstr "База данных:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "Данные:" @@ -10471,7 +10471,7 @@ msgid "Data creation options" msgstr "Параметры создания данных" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "Очистить таблицу перед добавлением данных" @@ -10556,8 +10556,8 @@ msgstr "Похоже, что база данных использует проц #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "экспорт псевдонима не может надёжно работать во всех случаях." @@ -10569,77 +10569,84 @@ msgstr "Похоже, что база данных использует функ msgid "Metadata" msgstr "Метаданные" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "Метаданные для %s" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for database %s" +msgstr "Метаданные для %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Создание:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Последнее обновление:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Последняя проверка:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "используется" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "Похоже, что база данных использует представления;" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Ограничения внешнего ключа сохраненных таблиц" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Ограничения внешнего ключа таблицы" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "Индексы сохранённых таблиц" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "Индексы таблицы" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT для сохранённых таблиц" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT для таблицы" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "MIME-ТИПЫ ТАБЛИЦЫ" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "СВЯЗИ ТАБЛИЦЫ" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "Похоже, что ваша таблица использует триггеры;" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "Структура для представления %s экспортирована как таблица" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "Ошибка считывания данных:" @@ -11488,24 +11495,24 @@ msgstr "" "server-id. При необходимости, добавьте следующую строку в раздел [mysqld]:" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "Имя пользователя:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Имя пользователя" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Пароль" @@ -11546,38 +11553,38 @@ msgstr "" "видимы в данном списке." #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Любой хост" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Локальный" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Этот хост" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Любой пользователь" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "Использовать текстовое поле:" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Использовать таблицу хостов" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11586,7 +11593,7 @@ msgstr "" "берутся из прописанных при конфигурации." #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Подтверждение" @@ -12313,7 +12320,7 @@ msgstr "Нет" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Группа пользователей" @@ -12385,9 +12392,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Максимальное количество одновременных подключений одного пользователя." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12416,14 +12423,14 @@ msgstr "Разрешает выполнение хранимых процеду #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Привилегии уровня таблицы" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Примечание: типы привилегий MySQL отображаются по-английски." @@ -12433,7 +12440,7 @@ msgid "Administration" msgstr "Администрирование" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Глобальные привилегии" @@ -12442,7 +12449,7 @@ msgid "Global" msgstr "Глобальный" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Привилегии уровня базы данных" @@ -12454,37 +12461,37 @@ msgstr "Разрешает создание новых таблиц." msgid "Allows dropping tables." msgstr "Разрешает удаление таблиц." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Авторизация с помощью cookie" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Авторизация с помощью Signon" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL Authentication" msgstr "Авторизация с помощью cookie" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Информация учётной записи" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Использовать текстовое поле" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12492,231 +12499,231 @@ msgstr "" "Учётная запись с данным именем пользователя, но, возможно, иным именем хоста " "уже существует." -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 msgid "Host name:" msgstr "Имя хоста:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 msgid "Host name" msgstr "Имя хоста" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Не менять пароль" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 msgid "Authentication Plugin" msgstr "Модуль аутентификации" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "Хеширование пароля:" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "Пароль для %s был успешно изменён." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Вы отменили привилегии для %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 msgid "Add user account" msgstr "Добавить учетную запись пользователя" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 msgid "Database for user account" msgstr "База данных для учетных записей пользователей" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" "Создать базу данных с таким же именем и предоставить на неё все привилегии." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Предоставить все привилегии на то, что подпадает под шаблон (имя пользователя" "\\_%)." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Предоставить все привилегии на базу данных \"%s\"." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Пользователи с правами доступа к \"%s\"" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "Пользователь был добавлен." -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Предоставить" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "Недостаточно прав для просмотра пользователей." -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "Пользователь не найден." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Любой" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "глобальный" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "уровень базы данных" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "шаблон" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "уровень таблицы" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 msgid "Edit privileges" msgstr "Редактировать привилегии" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Отменить" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "Редактировать группу пользователей" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… сохранить предыдущего." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… удалить предыдущего из таблиц пользователей." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… отменить все активные привилегии предыдущего и затем удалить его." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… удалить предыдущего из таблиц пользователей и перезагрузить привилегии." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "" "Изменить регистрационные данные / Копировать учетную запись пользователя" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "Создать новую учетную запись пользователя с такими же привилегиями и …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Привилегии уровня столбца" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 msgid "Remove selected user accounts" msgstr "Удалить выбранные учетные записи пользователей" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Отменить все активные привилегии пользователей и затем удалить их." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "Удалить базы данных, имена которых совпадают с именами пользователей." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "Не выбраны пользователи, подлежащие удалению!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Перезагрузка привилегий" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Выбранные пользователи были успешно удалены." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Вы обновили привилегии для %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "Удаление %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Привилегии были успешно перезагружены." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "Пользователь %s уже существует!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "Привилегии для %s" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Пользователь" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "Новый" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 msgid "Edit privileges:" msgstr "Редактировать привилегии:" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "Учетная запись пользователя" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12724,18 +12731,18 @@ msgstr "" "Примечание: Вы пытаетесь изменить привилегии пользователя, под именем " "которого вы в настоящее время вошли в систему." -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "Обзор учетных записей пользователей" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12748,7 +12755,7 @@ msgstr "" "отличаться от привилегий, используемых сервером, если они были изменены " "вручную. В этом случае необходимо %sперезагрузить привилегии%s." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -12767,11 +12774,11 @@ msgstr "" "отличаться от привилегий, используемых сервером, если они были изменены " "вручную. В этом случае необходимо %sперезагрузить привилегии%s." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "Выбранный пользователь не найден в таблице привилегий." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Вы добавили нового пользователя." diff --git a/po/si.po b/po/si.po index ea9f13a380..bae27dadfa 100644 --- a/po/si.po +++ b/po/si.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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-07-24 06:59+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: Sinhala ඊතල #: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3802 +#: libraries/server_privileges.lib.php:3795 msgid "Show all" msgstr "සියල්ල පෙන්වන්න" @@ -3153,10 +3153,10 @@ msgstr "උප විමසුම" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3134 -#: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:3307 -#: libraries/server_privileges.lib.php:4563 +#: libraries/server_privileges.lib.php:3128 +#: libraries/server_privileges.lib.php:3299 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:4556 #: libraries/server_status_processes.lib.php:84 #: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 @@ -3784,7 +3784,7 @@ msgstr "සමහර විට ආසන්න වශයෙන්. [doc@faq3-11] #: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:656 +#: libraries/controllers/table/TableSearchController.php:645 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." @@ -3966,8 +3966,8 @@ msgstr "සූචියන්" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2611 -#: libraries/server_privileges.lib.php:3529 +#: libraries/server_privileges.lib.php:2605 +#: libraries/server_privileges.lib.php:3522 #: libraries/server_user_groups.lib.php:83 #: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 @@ -4078,10 +4078,10 @@ msgstr "දසුන" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3152 -#: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:3313 -#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/server_privileges.lib.php:3146 +#: libraries/server_privileges.lib.php:3305 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4570 libraries/tracking.lib.php:1489 #: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:26 @@ -4120,8 +4120,8 @@ msgstr "ඇතුල් කරන්න" #: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 #: libraries/Util.php:4363 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:4452 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2603 +#: libraries/server_privileges.lib.php:4445 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "වරප්‍රසාද" @@ -4144,7 +4144,7 @@ msgstr "අවධානය" #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1989 +#: libraries/plugins/export/ExportSql.php:2001 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4185,7 +4185,7 @@ msgstr "මධ්‍යම තීර" #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4556 msgid "Databases" msgstr "දත්තගබඩා" @@ -8396,19 +8396,19 @@ msgstr "" msgid "Internal relations were successfully updated." msgstr "අභ්‍යන්තර සබඳතා එක් කරන ලදි" -#: libraries/controllers/table/TableSearchController.php:841 +#: libraries/controllers/table/TableSearchController.php:830 #, fuzzy #| msgid "Table Search" msgid "Table search" msgstr "වගුව තුල සෙවීම" -#: libraries/controllers/table/TableSearchController.php:848 +#: libraries/controllers/table/TableSearchController.php:837 #, fuzzy #| msgid "Zoom Search" msgid "Zoom search" msgstr "Zoom සෙවීම" -#: libraries/controllers/table/TableSearchController.php:853 +#: libraries/controllers/table/TableSearchController.php:842 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "Hide search criteria" @@ -8511,20 +8511,20 @@ msgstr "ආනයනය පේනු පූරණය අසමත් විය. #: libraries/display_change_password.lib.php:64 #: libraries/replication_gui.lib.php:879 -#: libraries/server_privileges.lib.php:1839 +#: libraries/server_privileges.lib.php:1835 msgid "No Password" msgstr "මුරපදයක් නැත" #: libraries/display_change_password.lib.php:72 #: libraries/plugins/auth/AuthenticationCookie.php:203 #: libraries/replication_gui.lib.php:426 libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1811 msgid "Password:" msgstr "මුරපදය:" #: libraries/display_change_password.lib.php:78 #: libraries/replication_gui.lib.php:890 -#: libraries/server_privileges.lib.php:1857 +#: libraries/server_privileges.lib.php:1853 msgid "Re-type:" msgstr "නැවත ටයිප් කරන්න:" @@ -8534,7 +8534,7 @@ msgid "Password Hashing:" msgstr "මුරපදය hash කිරීම:" #: libraries/display_change_password.lib.php:122 -#: libraries/server_privileges.lib.php:1903 +#: libraries/server_privileges.lib.php:1898 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10596,7 +10596,7 @@ msgstr "දත්ත නික්ෂේපන විකල්ප" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "වගු සඳහා නික්ෂේප දත්ත" @@ -10620,21 +10620,21 @@ msgstr "අර්ථ දැක්වීම" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "වගුවක් සඳහා වගු සැකිල්ල" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "දසුන සඳහා සැකිල්ල" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "දසුන සැදීම සඳහා තාවකාලික සැකිල්ල" @@ -10724,7 +10724,7 @@ msgid "Database:" msgstr "දත්තගබඩාව:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "දත්ත:" @@ -10830,7 +10830,7 @@ msgid "Data creation options" msgstr "දත්ත සෑදීමේ විකල්ප" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "ඇතුල් කිරීම් වලට පෙර වගුව හිස් කරන්න" @@ -10916,8 +10916,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10931,87 +10931,93 @@ msgstr "" msgid "Metadata" msgstr "%s සඳහා දත්ත නොමැත" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, fuzzy, php-format #| msgid "Missing data for %s" -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "%s සඳහා දත්ත නොමැත" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Missing data for %s" +msgid "Metadata for database %s" +msgstr "%s සඳහා දත්ත නොමැත" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "සෑදීම:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "අවසන් යාවත්කාලීන කිරීම:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "අවසන් පරීක්ෂාව:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "භාවිතා වෙමින් පවතී" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "නික්ෂේපනය කරන ලද වගු සඳහා සීමා බාධක" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "වගුව සඳහා සීමා බාධක" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "නික්ෂේපනය කරන ලද වගු සඳහා සීමා බාධක" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "වගු තුල:" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "ශුන්‍ය අගයන් සඳහා AUTO_INCREMENT භාවිතා නොකරන්න" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT අගයක් එක් කරන්න" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "දසුන සඳහා සැකිල්ල" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "දත්ත කියවීමේදී දෝෂයකි:" @@ -11855,24 +11861,24 @@ msgstr "" "නම් පහත පේළිය [mysqld] කොටසට ඇතුලත් කරන්න:" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "භාවිත නාමය:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "භාවිත නාමය" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "මුරපදය" @@ -11912,38 +11918,38 @@ msgstr "" "--report-host=host_name විකල්පය සමඟ ඇරඹි අනුගාමි සේවාදායක පමණක් මෙම ලැයිස්තුවේ පෙන්වයි." #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "ඕනෑම දායකයෙක්" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "ස්වදේශී" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "මෙම දායකයා" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "ඕනෑම භාවිතා කරන්නෙක්" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "පෙළ ක්ෂේත්‍ර භාවිතා කරන්න:" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "දායක වගුව භාවිතා කරන්න" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11951,7 +11957,7 @@ msgstr "" "දායක වගුව භාවිතා කෙරෙයි නම් මෙම ක්ෂේත්‍රය නොසැලකෙන අතර දායක වගුවේ ඇති අගයන් භාවිතා කෙරේ." #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "නැවත ටයිප් කරන්න" @@ -12684,7 +12690,7 @@ msgstr "කිසිවක් නැත" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "භාවිතා කරන්නන් කණ්ඩායම" @@ -12751,9 +12757,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12778,14 +12784,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "වගු-විශේෂී වරප්‍රසාද" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "සටහන: MySQL වරප්‍රසාද නම් සඳහන් වනුයේ ඉංග්‍රීසියෙනි." @@ -12795,7 +12801,7 @@ msgid "Administration" msgstr "පරිපාලනය" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "ගෝලීය වරප්‍රසාද" @@ -12804,7 +12810,7 @@ msgid "Global" msgstr "ගෝලීය" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "දත්තගබඩා විශේෂිත වරප්‍රසාද" @@ -12816,285 +12822,285 @@ msgstr "" msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Cookie සත්‍යාපනය" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Signon සත්‍යාපනය" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL Authentication" msgstr "Cookie සත්‍යාපනය" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "ලොගින තොරතුරු" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "පෙළ ක්ෂේත්‍ර භාවිතා කරන්න" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 msgid "Host name:" msgstr "දාරක නාමය:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 msgid "Host name" msgstr "දාරක නාමය" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "මුරපදය වෙනස් නොකරන්න" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "සත්‍යාපනය" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "මුරපදය hash කිරීම:" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "%s ගේ මුරපදය සාර්ථකව වෙනස් කරන ලදි." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "ඔබ %s සඳහා වරප්‍රසාද අහෝසි කර ඇත." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 msgid "Add user account" msgstr "භාවිත ගිණුමක් එක් කරන්න" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 msgid "Database for user account" msgstr "භාවිත ගිණුම සඳහා දත්තගබඩාව" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "එම නමින්ම දත්තගබඩාවක් සාදා එයට සියලු වරප්‍රසාද ප්‍රදානය කරන්න." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "අභිමත ආදේශක නාමයන් සඳහා සියලු වරප්‍රසාද ප්‍රදානය කරන්න (භාවිත නාමය\\_%)." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "\"%s\" දත්තගබඩාව සඳහා සියලු වරප්‍රසාද ප්‍රදානය කරන්න." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\" වෙත ප්‍රවේශ වරප්‍රසාද ඇති භාවිතා කරන්නන්" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "භාවිතා කරන්නා එක් කරන ලදි." -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "ප්‍රදානය කරන්න" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "භාවිතා කරන්නන් හමු නොවිණි." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "ඕනෑම" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "ගෝලීය" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "දත්තගබඩා විශේෂිත" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "අව්‍යවස්ථිත කාඩ්පත" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "වගු විශේෂිත" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "වරප්‍රසාද සංස්කරණය කරන්න:" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "අහෝසි කරන්න" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "භාවිතා කරන්නන් කණ්ඩායම සංස්කරණය කරන්න" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… පැරණි එක තබා ගන්න." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කරන්න." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… පැරැන්නෙන් සියලුම සක්‍රීය වරප්‍රසාද අහෝසි කර අනතුරුව එය ඉවත් කරන්න." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කර වරප්‍රසාද නැවත අලුත් කරන්න." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "ලොගින් තොරතුරු වෙනස් කරන්න / භාවිත ගිණුම පිටපත් කරන්න" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "සහ එකම වරප්‍රසාද සහිතව නව භාවිත ගිණුමක් එක් කරන්න …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "තීර-විශේෂී වරප්‍රසාද" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 msgid "Remove selected user accounts" msgstr "තෝරාගත් භාවිත ගිණුම් ඉවත් කරන්න" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "භාවිතා කරන්නන්ගේ සියලුම සක්‍රීය වරප්‍රසාද අහෝසි කර අනතුරුව ඔවුන් ඉවත් කරන්න." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "භාවිතා කරන්නන් හා සමාන නම් ඇති දත්තගබඩා හලන්න." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "ඉවත් කිරීම සඳහා භාවිතා කරන්නන් කිසිවෙක් තෝරාගෙන නොමැත!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "වරප්‍රසාද පූරණය කෙරෙමින්" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "තෝරාගත් භාවිතා කරන්නන් සාර්ථකව ඉවත් කරන ලදි." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "ඔබ %s සඳහා වරප්‍රසාද අලුත් කර ඇත." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "%s ඉවත් කරමින් පවතී" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "සාර්ථකව වරප්‍රසාද පූරණය කරන්න ලදි." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "%s භාවිතා කරන්නා දැනටමත් පවතී!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "%s සඳහා වරප්‍රසාද" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "භාවිතා කරන්නා" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "නව භාවිතා කරන්නෙක්" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "වරප්‍රසාද සංස්කරණය කරන්න:" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "භාවිත ගිණුම" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "භාවිත ගිණුම් පිළිබඳ දළ විශ්ලේෂණය" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13106,7 +13112,7 @@ msgstr "" "සේවාදායකයේ වරප්‍රසාද වෙනම ම වෙනස් කර ඇත්නම් ඉහත වගුවේ දත්ත සේවාදායකයේ වරප්‍රසාද වලට " "වඩා වෙනස් විය හැකිය. එවැනි අවස්ථාවක ඔබ %sවරප්‍රසාද පූරණය%s කල යුතුය." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13124,11 +13130,11 @@ msgstr "" "සේවාදායකයේ වරප්‍රසාද වෙනම ම වෙනස් කර ඇත්නම් ඉහත වගුවේ දත්ත සේවාදායකයේ වරප්‍රසාද වලට " "වඩා වෙනස් විය හැකිය. එවැනි අවස්ථාවක ඔබ %sවරප්‍රසාද පූරණය%s කල යුතුය." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "තෝරාගත් භාවිත කරන්නා වරප්‍රසාද වගුවේ හමු නොවිණි." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "ඔබ නව භාවිතා කරන්නනෙක් එක් කරන ලදි." diff --git a/po/sk.po b/po/sk.po index 8e77be8144..0d2109bb09 100644 --- a/po/sk.po +++ b/po/sk.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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-12 18:54+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: Slovak SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -9985,7 +9985,7 @@ msgstr "Možnosti uloženia dát" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Sťahujem dáta pre tabuľku" @@ -10009,21 +10009,21 @@ msgstr "Definícia" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Štruktúra tabuľky pre tabuľku" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Štruktúra pre zobrazenie" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10113,7 +10113,7 @@ msgid "Database:" msgstr "Databáza:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "Dáta:" @@ -10212,7 +10212,7 @@ msgid "Data creation options" msgstr "Možnosti vytvárania údajov" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "Vyprázdniť tabuľku pred vložením" @@ -10283,8 +10283,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10296,77 +10296,84 @@ msgstr "" msgid "Metadata" msgstr "Metadáta" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "Metadáta pre %s" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for database %s" +msgstr "Metadáta pre %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Vytvorené:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Posledná zmena:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Posledná kontrola:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "práve sa používa" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Obmedzenie pre exportované tabuľky" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Obmedzenie pre tabuľku" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "Kľúče pre exportované tabuľky" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "Indexy pre tabuľku" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT pre exportované tabuľky" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT pre tabuľku" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPY PRE TABUĽKU" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "PREPOJENIA PRE TABUĽKU" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "Štruktúra pre zobrazenie %s exportovanej ako tabuľka" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "Chyba pri čítaní dát:" @@ -11146,24 +11153,24 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "Meno používateľa:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Meno používateľa" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Heslo" @@ -11202,38 +11209,38 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Akýkoľvek hostiteľ" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Lokálny" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Tento počítač" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Akýkoľvek používateľ" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "Použiť textové pole:" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Použiť tabuľku s hostiteľmi" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11242,7 +11249,7 @@ msgstr "" "použijú hodnoty z tabuľky Host." #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Potvrdiť" @@ -11963,7 +11970,7 @@ msgstr "Žiadny" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12030,9 +12037,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Obmedzuje počet simultánnych pripojení používateľa." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Rutina" @@ -12057,14 +12064,14 @@ msgstr "Umožňuje spúšťať uložené procedúry." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Oprávnenia pre jednotlivé tabuľky" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Poznámka: názvy MySQL oprávnení sú uvádzané po anglicky." @@ -12074,7 +12081,7 @@ msgid "Administration" msgstr "Administrácia" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Globálne práva" @@ -12083,7 +12090,7 @@ msgid "Global" msgstr "Globálny" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Oprávnenia pre jednotlivé databázy" @@ -12095,173 +12102,173 @@ msgstr "Povolí vytváranie nových tabuliek." msgid "Allows dropping tables." msgstr "Povolí odstraňovanie tabuliek." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Overovanie pomocou cookie" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Overovanie signon" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL Authentication" msgstr "Overovanie pomocou cookie" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Prihlasovacie informácie" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Požiť textové pole" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 msgid "Host name:" msgstr "Názov počítača:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 msgid "Host name" msgstr "Názov počítača" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Nezmeniť heslo" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 msgid "Authentication Plugin" msgstr "Rozšírenie pre prihlasovanie" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "Hashovanie hesla:" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "Heslo pre %s bolo úspešne zmenené." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Boli zrušené oprávnenia pre %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 msgid "Add user account" msgstr "Pridať používateľský účet" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 msgid "Database for user account" msgstr "Databáza pre účet používateľa" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "Vytvoriť databázu s rovnakým menom a prideliť všetky oprávnenia." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Prideliť všetky oprávnenia pomocou masky (používateľ\\_%)." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Prideliť všetky oprávnenia na databázu \"%s\"." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Používatelia majúci prístup k \"%s\"" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "Užívateľ bol pridaný." -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Prideliť" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "Nebol nájdený žiadny používateľ." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Akýkoľvek" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "globálny" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "závislé na databáze" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "nahradzujúci znak" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "závislé na tabuľke" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 msgid "Edit privileges" msgstr "Upraviť oprávnenia" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Zrušiť" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "Upraviť užívateľské skupiny" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… zachovať pôvodného používateľa." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… zmazať pôvodného používateľa z tabuliek používateľov." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… odobrať všetky oprávnenia pôvodnému používateľovi a následne ho zmazať." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12269,109 +12276,109 @@ msgstr "" "… zmazať pôvodného používateľa z tabuliek používateľov a potom znovunačítať " "oprávnenia." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "Zmeniť prihlasovacie informácie / Kopírovať účet používateľa" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "Vytvoriť nový účet používateľa s rovnakými právami a …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Oprávnenia pre jednotlivé stĺpce" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 msgid "Remove selected user accounts" msgstr "Odstrániť vybrané účty používateľov" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Odobranie všetkých aktívnych práv používateľom a ich následné odstránenie." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "Odstrániť databázy s rovnakým menom ako majú používatelia." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "Na odstránenie neboli vybraní žiadni používatelia!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Znovunačítanie práv" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Vybraní používatelia bol úspešne odstránený." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Boli aktualizované oprávnenia pre %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "Odstraňuje sa %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Práva boli úspešne znovunačítané." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "Používateľ %s už existuje!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "Oprávnenia pre %s" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Používateľ" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "Nový" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 msgid "Edit privileges:" msgstr "Upraviť oprávnenia:" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "Užívateľský účet" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "Prehľad účtov používateľov" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12384,7 +12391,7 @@ msgstr "" "tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať " "%sznovunačítanie práv%s predtým ako budete pokračovať." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -12403,11 +12410,11 @@ msgstr "" "tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať " "%sznovunačítanie práv%s predtým ako budete pokračovať." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "Zvolený používateľ nebol nájdený v tabuľke práv." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Používateľ bol pridaný." diff --git a/po/sl.po b/po/sl.po index 9c75e9eb16..b7d7e3769e 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3,17 +3,17 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-11-14 02:41+0000\n" "Last-Translator: Domen \n" -"Language-Team: Slovenian " -"\n" +"Language-Team: Slovenian \n" "Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " -"n%100==4 ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3;\n" "X-Generator: Weblate 2.5-dev\n" #: changelog.php:37 license.php:33 @@ -96,7 +96,7 @@ msgstr "Stolpec" #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:2602 libraries/tracking.lib.php:893 #: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 @@ -187,11 +187,11 @@ msgstr "Primarni" #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 -#: libraries/server_privileges.lib.php:2785 -#: libraries/server_privileges.lib.php:2973 -#: libraries/server_privileges.lib.php:2993 -#: libraries/server_privileges.lib.php:3631 -#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/server_privileges.lib.php:2779 +#: libraries/server_privileges.lib.php:2967 +#: libraries/server_privileges.lib.php:2987 +#: libraries/server_privileges.lib.php:3624 +#: libraries/server_privileges.lib.php:3647 libraries/tracking.lib.php:946 #: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 @@ -221,11 +221,11 @@ msgstr "Ne" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2785 -#: libraries/server_privileges.lib.php:2970 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3628 -#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/server_privileges.lib.php:2779 +#: libraries/server_privileges.lib.php:2964 +#: libraries/server_privileges.lib.php:2985 +#: libraries/server_privileges.lib.php:3621 +#: libraries/server_privileges.lib.php:3647 libraries/tracking.lib.php:946 #: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 @@ -487,9 +487,9 @@ msgstr "Dodaj geometrijo" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2345 -#: libraries/server_privileges.lib.php:3116 -#: libraries/server_privileges.lib.php:3735 +#: libraries/server_privileges.lib.php:2339 +#: libraries/server_privileges.lib.php:3110 +#: libraries/server_privileges.lib.php:3728 #: libraries/server_user_groups.lib.php:290 #: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 #: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 @@ -1101,12 +1101,12 @@ msgstr "Ime gostitelja je prazno!" msgid "The user name is empty!" msgstr "Uporabniško ime je prazno!" -#: js/messages.php:143 libraries/server_privileges.lib.php:2047 +#: js/messages.php:143 libraries/server_privileges.lib.php:2042 #: user_password.php:116 msgid "The password is empty!" msgstr "Geslo je prazno!" -#: js/messages.php:144 libraries/server_privileges.lib.php:2045 +#: js/messages.php:144 libraries/server_privileges.lib.php:2040 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Gesli se ne ujemata!" @@ -1320,7 +1320,7 @@ msgstr "Prosimo, da v serijo dodate vsaj eno spremenljivko!" #: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1685,7 +1685,6 @@ msgid "Formatting SQL…" msgstr "Oblikovanje SQL …" #: js/messages.php:343 -#| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Nismo našli nobenih parametrov!" @@ -1816,10 +1815,10 @@ msgstr "Opredelitev shranjene funkcije mora vsebovati izjavo RETURN!" #: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 #: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2450 -#: libraries/server_privileges.lib.php:2529 -#: libraries/server_privileges.lib.php:2875 -#: libraries/server_privileges.lib.php:3543 +#: libraries/server_privileges.lib.php:2444 +#: libraries/server_privileges.lib.php:2523 +#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:3536 #: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 @@ -1892,8 +1891,8 @@ msgid "%d is not valid row number." msgstr "%d ni veljavna številka vrstice." #: js/messages.php:409 -#: libraries/controllers/table/TableSearchController.php:432 -#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/controllers/table/TableSearchController.php:427 +#: libraries/controllers/table/TableSearchController.php:906 #: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "Prebrskaj tuje vrednosti" @@ -2319,7 +2318,7 @@ msgstr "Za preklop vidnosti stolpcev
kliknite spustno puščico." #: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3802 +#: libraries/server_privileges.lib.php:3795 msgid "Show all" msgstr "Pokaži vse" @@ -2976,10 +2975,10 @@ msgstr "Ponovna poizvedba" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3134 -#: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:3307 -#: libraries/server_privileges.lib.php:4563 +#: libraries/server_privileges.lib.php:3128 +#: libraries/server_privileges.lib.php:3299 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:4556 #: libraries/server_status_processes.lib.php:84 #: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 @@ -3541,7 +3540,7 @@ msgstr "Morda je približno. Glej [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:656 +#: libraries/controllers/table/TableSearchController.php:645 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." @@ -3714,8 +3713,8 @@ msgstr "Indeksi" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2611 -#: libraries/server_privileges.lib.php:3529 +#: libraries/server_privileges.lib.php:2605 +#: libraries/server_privileges.lib.php:3522 #: libraries/server_user_groups.lib.php:83 #: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 @@ -3828,10 +3827,10 @@ msgstr "Pogled" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3152 -#: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:3313 -#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/server_privileges.lib.php:3146 +#: libraries/server_privileges.lib.php:3305 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4570 libraries/tracking.lib.php:1489 #: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:26 @@ -3870,8 +3869,8 @@ msgstr "Vstavi" #: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 #: libraries/Util.php:4363 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:4452 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2603 +#: libraries/server_privileges.lib.php:4445 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilegiji" @@ -3894,7 +3893,7 @@ msgstr "Sledenje" #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1989 +#: libraries/plugins/export/ExportSql.php:2001 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3935,7 +3934,7 @@ msgstr "Osrednji stolpci" #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4556 msgid "Databases" msgstr "Zbirke podatkov" @@ -7974,15 +7973,15 @@ msgstr "Prikazni stolpec smo uspešno posodobili." msgid "Internal relations were successfully updated." msgstr "Notranja razmerja smo uspešno posodobili." -#: libraries/controllers/table/TableSearchController.php:841 +#: libraries/controllers/table/TableSearchController.php:830 msgid "Table search" msgstr "Iskanje po tabeli" -#: libraries/controllers/table/TableSearchController.php:848 +#: libraries/controllers/table/TableSearchController.php:837 msgid "Zoom search" msgstr "Iskanje s povečevanjem" -#: libraries/controllers/table/TableSearchController.php:853 +#: libraries/controllers/table/TableSearchController.php:842 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Najdi in zamenjaj" @@ -8082,20 +8081,20 @@ msgstr "Ne morem naložiti vtičnikov sheme, prosimo, preverite vašo namestitev #: libraries/display_change_password.lib.php:64 #: libraries/replication_gui.lib.php:879 -#: libraries/server_privileges.lib.php:1839 +#: libraries/server_privileges.lib.php:1835 msgid "No Password" msgstr "Brez gesla" #: libraries/display_change_password.lib.php:72 #: libraries/plugins/auth/AuthenticationCookie.php:203 #: libraries/replication_gui.lib.php:426 libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1811 msgid "Password:" msgstr "Geslo:" #: libraries/display_change_password.lib.php:78 #: libraries/replication_gui.lib.php:890 -#: libraries/server_privileges.lib.php:1857 +#: libraries/server_privileges.lib.php:1853 msgid "Re-type:" msgstr "Ponovno vnesi:" @@ -8105,7 +8104,7 @@ msgid "Password Hashing:" msgstr "Šifriranje gesel:" #: libraries/display_change_password.lib.php:122 -#: libraries/server_privileges.lib.php:1903 +#: libraries/server_privileges.lib.php:1898 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10173,7 +10172,7 @@ msgstr "Možnosti odlaganja podatkov" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Odloži podatke za tabelo" @@ -10197,21 +10196,21 @@ msgstr "Opredelitev" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Struktura tabele" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Struktura pogleda" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Nadomestna struktura pogleda" @@ -10301,7 +10300,7 @@ msgid "Database:" msgstr "Zbirka podatkov:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "Podatki:" @@ -10401,7 +10400,7 @@ msgid "Data creation options" msgstr "Možnosti ustvarjanja podatkov" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "Počisti tabelo pred vstavljanjem" @@ -10484,8 +10483,8 @@ msgstr "Kot kaže, vaša zbirka podatkov uporablja procedure;" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "izvoz z vzdevkom v vseh primerih morda ne bo deloval zanesljivo." @@ -10497,77 +10496,84 @@ msgstr "Kot kaže, vaša zbirka podatkov uporablja funkcije;" msgid "Metadata" msgstr "Metapodatki" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "Metapodatki za %s" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for database %s" +msgstr "Metapodatki za %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Ustvarjeno:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Zadnjič posodobljeno:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Zadnjič pregledano:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "v uporabi" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "Kot kaže, vaša zbirka podatkov uporablja poglede;" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Omejitve tabel za povzetek stanja" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Omejitve za tabelo" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "Indeksi zavrženih tabel" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "Indeksi tabele" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT zavrženih tabel" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT tabele" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "VRSTE MIME ZA TABELO" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "RELACIJE ZA TABELO" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "Kot kaže, vaša tabela uporablja sprožilce;" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "Struktura pogleda %s, izvoženega kot tabela" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "Napaka med branjem podatkov:" @@ -11403,24 +11409,24 @@ msgstr "" "[mysqld]:" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "Uporabniško ime:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Uporabniško ime" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Geslo" @@ -11461,38 +11467,38 @@ msgstr "" "vidni na tem seznamu." #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Kateri koli gostitelj" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Lokalno" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Ta strežnik" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Kateri koli uporabnik" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "Uporabi besedilno polje:" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Uporabi tabelo gostiteljev" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11501,7 +11507,7 @@ msgstr "" "uporabljene vrednosti shranjene v tabeli Host." #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Ponovno vnesi" @@ -12232,7 +12238,7 @@ msgstr "Brez" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Uporabniška skupina" @@ -12301,9 +12307,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Omeji število sočasnih povezav, ki jih lahko ima uporabnik." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Rutina" @@ -12325,14 +12331,14 @@ msgstr "Omogoča izvajanje rutine." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Privilegiji tipični za tabelo" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Opomba: Imena privilegijev MySQL so zapisana v angleščini." @@ -12342,7 +12348,7 @@ msgid "Administration" msgstr "Administracija" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Globalni privilegiji" @@ -12351,7 +12357,7 @@ msgid "Global" msgstr "Globalno" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Privilegiji, tipični za zbirko podatkov" @@ -12363,31 +12369,31 @@ msgstr "Omogoča ustvarjanje novih tabel." msgid "Allows dropping tables." msgstr "Omogoča brisanje tabel." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 msgid "Native MySQL authentication" msgstr "Domorodna overitev MySQL" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 msgid "SHA256 password authentication" msgstr "Overitev z geslom SHA256" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 msgid "Native MySQL Authentication" msgstr "Domorodna overitev MySQL" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Podatki o prijavi" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Uporabi besedilno polje" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12395,135 +12401,135 @@ msgstr "" "Račun z enakim uporabniškim imenom že obstaja, vendar ima morda drugačnega " "gostitelja." -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 msgid "Host name:" msgstr "Ime gostitelja:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 msgid "Host name" msgstr "Ime gostitelja" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Ne spreminjaj gesla" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 msgid "Authentication Plugin" msgstr "Vtičnik za overovitev" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 msgid "Password Hashing Method" msgstr "Metoda šifriranja gesel" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "Geslo za %s je uspešno spremenjeno." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Odvzeli ste privilegije za %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 msgid "Add user account" msgstr "Dodaj uporabniški račun" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 msgid "Database for user account" msgstr "Zbirka podatkov za uporabniški račun" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "Ustvari zbirko podatkov z enakim imenom in dodeli vse privilegije." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Dodeli vse privilegije na imenu z nadomestnim znakom (uporabniskoime\\_%)." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Dodeli vse privilegije za zbirko podatkov \"%s\"." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Uporabniški dostop do \"%s\"" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "Uporabnik je dodan." -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Dovoli" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "Nimate zadostnih privilegijev za ogled uporabnikov." -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "Najden ni bil noben uporabnik." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Kateri koli" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "globalno" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "glede na zbirko podatkov" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "nadomestni znak" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "glede na tabelo" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 msgid "Edit privileges" msgstr "Uredi privilegije" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Odvzemi" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "Uredi uporabniško skupino" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… obdrži starega." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… izbriši starega s seznama uporabnikov." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… prekliči vse aktivne pravice starega uporabnika ter jih izbriši." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12531,89 +12537,89 @@ msgstr "" "… izbriši starega uporabnika s seznama uporabnikov ter ponovno naloži " "njegove pravice." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "Spremeni prijavne informacije / Kopiraj uporabniški račun" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "Ustvari nov uporabniški račun z enakimi pravicami in …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Privilegiji, vezani na rutino" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 msgid "Remove selected user accounts" msgstr "Izbriši izbrane uporabniške račune" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Odvzemi uporabnikom aktivne privilegije in jih potem izbriši." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "Izbriši zbirke podatkov, ki imajo enako ime kot uporabniki." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "Ni izbranih uporabnikov za brisanje!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Osvežujem privilegije" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Uspešno sem izbrisal izbrane uporabnike." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Posodobili ste privilegije za %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "Brišem %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Uspešno sem osvežil privilegije." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "Uporabnik %s že obstaja!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "Privilegiji %s" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Uporabnik" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "Nov" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 msgid "Edit privileges:" msgstr "Uredi privilegije:" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "Uporabniški račun" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12621,11 +12627,11 @@ msgstr "" "Opozorilo: Poskušate urediti privilegije uporabnika, s katerim ste trenutno " "prijavljeni." -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "Pregled uporabniških računov" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " @@ -12636,7 +12642,7 @@ msgstr "" "gostiteljski del njihovega računa dovoljuje povezavo s katerega koli (%) " "gostitelja." -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12649,7 +12655,7 @@ msgstr "" "jih uporablja strežnik, če so bile tabele ročno spremenjene. V tem primeru " "morate pred nadaljevanjem %sosvežiti privilegije%s." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12663,11 +12669,11 @@ msgstr "" "morate pred nadaljevanjem osvežiti privilegije, vendar trenuno nimate " "privilegija RELOAD." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "Izbranega uporabnika v tabelah privilegijev nisem našel." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Dodali ste novega uporabnika." @@ -15242,7 +15248,6 @@ msgid "Stacked" msgstr "Zloženi" #: templates/table/chart/tbl_chart.phtml:53 -#| msgid "Chart title" msgid "Chart title:" msgstr "Naslov grafikona:" diff --git a/po/sq.po b/po/sq.po index d65184ef7c..60b511f976 100644 --- a/po/sq.po +++ b/po/sq.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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-09-05 23:03+0200\n" "Last-Translator: Arben Çokaj \n" "Language-Team: Albanian SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10258,7 +10258,7 @@ msgstr "Opsionet e heqjes (dump) së të dhënave" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Zbraz të dhënat për tabelën" @@ -10282,21 +10282,21 @@ msgstr "Përkufizimi" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Struktura e tabelës për tabelën" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Struktura për pamjen" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Struktura zëvendësuese për pamjen" @@ -10386,7 +10386,7 @@ msgid "Database:" msgstr "Databaza:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "Të dhëna:" @@ -10488,7 +10488,7 @@ msgid "Data creation options" msgstr "Opsionet e krijimit të të dhënave" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "Cungo tabelën para futjes" @@ -10571,8 +10571,8 @@ msgstr "Duket se databaza juaj përdor procedurat;" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" "eksporti i pseudonimit nuk mund të punojnë në mënyrë të besueshme në të " @@ -10586,77 +10586,84 @@ msgstr "Duket se databaza juaj përdor funksionet;" msgid "Metadata" msgstr "Metadata" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "Metadata për %s" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for database %s" +msgstr "Metadata për %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Krijimi:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Aktualizimi i fundit:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Kontrolli i fundit:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "në përdorim" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "Duket se databaza juaj përdor pamjet;" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Detyrimet për tabelat e hedhura" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Detyrimet për tabelën" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "Indekset për tabelat e hedhura" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "Indekset për tabelë" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT për tabelat e hedhura" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT për tabelë" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "TIPET MIME PËR TABELËN" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "RELACIONET PËR TABELËN" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "Duket se tabela juaj përdor shkrehës;" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "Struktura për pamjen %s eksportuar si një tabelë" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "Gabim në leximin e të dhënave:" @@ -11508,24 +11515,24 @@ msgstr "" "jo, ju lutem, shto linjën që vijon në seksionin [mysqld]:" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "Emri i përdoruesit:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Emri i përdoruesit" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Fjalëkalimi" @@ -11566,38 +11573,38 @@ msgstr "" "dukshëm në listë." #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Çdo host (pritës)" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Lokale" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Ky host (pritës)" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Çdo përdorues" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "Përdor fushën e tekstit:" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Përdor tabelën pritëse" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11606,7 +11613,7 @@ msgstr "" "e ruajtura në tabelën e pritësit (Host) përdoren në vend të tyre." #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Ri-shkruaj" @@ -12332,7 +12339,7 @@ msgstr "Asnjë" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Grup përdoruesi" @@ -12401,9 +12408,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Kufizon numrin e lidhjeve të njëkohëshme, që përdoruesi mund të ketë." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12432,14 +12439,14 @@ msgstr "Lejon ekzekutimin e rutinave të ruajtura." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Privilegjet specifike të tabelës" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Shënim: emrat e privilegjeve të MySQL janë shprehur në Anglisht." @@ -12449,7 +12456,7 @@ msgid "Administration" msgstr "Administrimi" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Privilegje globale" @@ -12458,7 +12465,7 @@ msgid "Global" msgstr "Globale" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Privilegjet specifike të databazës" @@ -12470,37 +12477,37 @@ msgstr "Lejon krijimin e tabelave të reja." msgid "Allows dropping tables." msgstr "Lejon fshirjen e tabelave." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Autentifikimi i gatimeve" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Autentifikimi i hyrjes" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL Authentication" msgstr "Autentifikimi i gatimeve" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Informacioni i hyrjes" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Përdor fushën e tekstit" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12508,232 +12515,232 @@ msgstr "" "Një llogari ekziston ndërkohë me të njëjtin emër përdorimi por ka mundësi me " "emër tjetër pritësi (hostname)." -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 msgid "Host name:" msgstr "Emri i pritësit:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 msgid "Host name" msgstr "Emri i pritësit" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Mos ndrysho fjalëkalimin" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 msgid "Authentication Plugin" msgstr "Shtojca e autentifikimit" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "Ngatërrimi i fjalëkalimit:" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "Fjalëkalimi për %s u ndryshua me sukses." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Keni anuluar privilegjet për %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 msgid "Add user account" msgstr "Shto llogari përdoruesi" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 msgid "Database for user account" msgstr "Databaza për llogarinë e përdoruesit" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "Krijo databazën me të njëjtin emër dhe dhuro të gjitha privilegjet." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Dhuro të gjitha privilegjet në emrin me karaktere të veçanta (wildcard) " "(username\\_%)." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Dhuro të gjithë privilegjet në databazën \"%s\"." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Përdoruesit që kanë hyrje tek \"%s\"" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "Përdoruesi është shtuar." -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Dhuro" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "Nuk ka privilegje të mjaftueshme për të shfaqur përdoruesit." -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "Nuk gjendet asnjë përdorues." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Kushdo" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "globale" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "databazë-specifike" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "wildcard (shenja të veçanta)" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "Privilegjet specifike të tabelës" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 msgid "Edit privileges" msgstr "Korrigjo privilegjet" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Tërhiq" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "Korrigjo grupin e përdoruesit" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… mbaj të vjetrin." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… fshij të vjetrin nga tabelat e përdoruesve." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… të shfuqizojë të gjitha privilegjet aktive që nga i vjetri, e pastaj t'i " "fshijë." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… fshij të vjetrin nga tabela e përdoruesve dhe pastaj ringarko privilegjet." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "Ndrysho informacionin e hyrjes / Kopjo llogarinë e përdoruesit" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "Krijo një llogari të re përdoruesi me të njëjtat privilegje dhe …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Privilegjet specifike të kolonës" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 msgid "Remove selected user accounts" msgstr "Largo llogaritë e zgjedhura të përdoruesve" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Tërhiqi të gjitha privilegjet aktive nga përdoruesit dhe fshij ato më pas." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "Fshij databazat që kanë emra të njëjtë si përdoruesit." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "Nuk janë zgjedhur përdorues për fshirje!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Ringarkon privilegjet" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Përdoruesit e zgjedhur u fshinë me sukses." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Keni aktualizuar privilegjet për %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "Fshin %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Privilegjet u ri-ngarkuan me sukses." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "Përdoruesi %s ekziston ndërkohë!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "Privilegjet për %s" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Përdoruesi" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "I ri" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 msgid "Edit privileges:" msgstr "Korrigjo privilegjet:" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "Llogaria e përdoruesit" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12741,11 +12748,11 @@ msgstr "" "Shënim: Jeni përpjekur për të korrigjuar privilegjet e përdoruesit, me të " "cilën keni hyrë aktualisht." -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "Pamja e përgjithshme e llogarive të përdoruesve" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " @@ -12756,7 +12763,7 @@ msgstr "" "ndërlidhen nëse pjesa e pritësit (host) të llogarisë së tyre lejon një " "lidhje nga çdo pritës (%)." -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12769,7 +12776,7 @@ msgstr "" "privilegjet që përdor serveri, nëse ato janë ndryshuar manualisht. Në këtë " "rast, ju duhet të %sngarkoni privilegjet%s para se të vazhdoni." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12783,11 +12790,11 @@ msgstr "" "rast, privilegjet duhet të ringarkohen, por aktualisht ju nuk duhet të " "RINGARKONI privilegjet." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "Përdoruesi i zgjedhur nuk gjendet në tabelën e të drejtave." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Keni shtuar një përdorues të ri." diff --git a/po/sr.po b/po/sr.po index 38ff0be7cb..e37a9c3c69 100644 --- a/po/sr.po +++ b/po/sr.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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:25+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Serbian SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10759,7 +10759,7 @@ msgstr "Опције за извоз базе" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Приказ података табеле" @@ -10785,21 +10785,21 @@ msgstr "Опис" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Структура табеле" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Структура за поглед (view)" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Структура која замењује поглед" @@ -10917,7 +10917,7 @@ msgid "Database:" msgstr "База података" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11033,7 +11033,7 @@ msgid "Data creation options" msgstr "Опције трансформације" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -11102,8 +11102,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11117,92 +11117,99 @@ msgstr "" msgid "Metadata" msgstr "Тип извоза" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" -msgstr "" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Dumping data for table" +msgid "Metadata for table %s" +msgstr "Приказ података табеле" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Create table on database %s" +msgid "Metadata for database %s" +msgstr "Направи нову табелу у бази %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 #, fuzzy #| msgid "Creation" msgid "Creation:" msgstr "Направљено" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 #, fuzzy #| msgid "Last update" msgid "Last update:" msgstr "Последња измена" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 #, fuzzy #| msgid "Last check" msgid "Last check:" msgstr "Последња провера" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "се користи" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Ограничења за извезене табеле" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Ограничења за табеле" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Ограничења за извезене табеле" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "Унутар табела:" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Додај AUTO_INCREMENT вредност" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Додај AUTO_INCREMENT вредност" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "MIME ТИПОВИ ЗА ТАБЕЛУ" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "РЕЛАЦИЈЕ ТАБЕЛЕ" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Структура за поглед (view)" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -12091,7 +12098,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "User name" msgid "User name:" @@ -12099,18 +12106,18 @@ msgstr "Име корисника" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Име корисника" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Лозинка" @@ -12152,47 +12159,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Било који домаћин" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Локални" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Овај сервер" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Било који корисник" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Користи текст поље" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Користи табелу домаћина" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Поновите унос" @@ -13007,7 +13014,7 @@ msgstr "нема" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -13076,9 +13083,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Ограничава број истовремених конекција које корисник може да има." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -13107,14 +13114,14 @@ msgstr "Дозвољава извршавање сачуваних рутина. #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Привилегије везане за табеле" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -13126,7 +13133,7 @@ msgid "Administration" msgstr "Администрација" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Глобалне привилегије" @@ -13137,7 +13144,7 @@ msgid "Global" msgstr "глобално" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Привилегије везане за базу" @@ -13149,312 +13156,312 @@ msgstr "Дозвољава креирање нових табела." msgid "Allows dropping tables." msgstr "Дозвољава одбацивање табела." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Documentation" msgid "Native MySQL authentication" msgstr "Документација" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "Промени лозинку" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Documentation" msgid "Native MySQL Authentication" msgstr "Документација" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Подаци о пријави" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Користи текст поље" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Име корисника" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Назив дневника" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Немој да мењаш лозинку" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Documentation" msgid "Authentication Plugin" msgstr "Документација" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Хеширање лозинке" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "Лозинка за %s је успешно промењена." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Забранили сте привилегије за %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Било који корисник" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "База за корисника" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "Направи базу са истим именом и додај све привилегије." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Дај све привилегије на имену са џокерима (корисничко_име\\_%)." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, fuzzy, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Провери привилегије за базу \"%s\"." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Корисници који имају приступ \"%s\"" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Поглед %s је одбачен" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Омогући" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Корисник није нађен." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Било који" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "глобално" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "Специфично за базу" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "џокер" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Специфично за базу" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Промени привилегије" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Забрани" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "Уреди следећи ред" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… сачувај старе." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… обриши старе из табела корисника." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… обустави све привилегије старог корисника и затим га обриши." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… обриши старог из табеле корисника и затим поново учитај привилегије." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Промени информације о пријави / Копирај корисника" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Направи новог корисника са истим привилегијама и …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Привилегије везане за колоне" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Уклони изабране кориснике" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Обустави све активне привилегије корисника и затим их обриши." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "Одбаци базе које се зову исто као корисници." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "Ниједан корисник није одабран за брисање!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Поново учитавам привилегије" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Изабрани корисници су успешно обрисани." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Ажурирали сте привилегије за %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "Бришем %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Привилегије су успешно поново учитане." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "Корисник %s већ постоји!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Привилегије" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Корисник" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Промени привилегије" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "User" msgid "User account" msgstr "Корисник" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Преглед корисника" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13467,7 +13474,7 @@ msgstr "" "сервер користи ако су вршене ручне измене. У том случају %sпоново учитајте " "привилегије%s пре него што наставите." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13486,11 +13493,11 @@ msgstr "" "сервер користи ако су вршене ручне измене. У том случају %sпоново учитајте " "привилегије%s пре него што наставите." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "Изабрани корисник није пронађен у табели привилегија." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Додали сте новог корисника." @@ -18822,9 +18829,6 @@ msgstr "макс. истовремених веза" #~ msgid "(or the local Drizzle server's socket is not correctly configured)" #~ msgstr "(или прикључак локалног MySQL сервера није исправно подешен)" -#~ msgid "Create table on database %s" -#~ msgstr "Направи нову табелу у бази %s" - #~ msgid "Data Label" #~ msgstr "Назив" diff --git a/po/sr@latin.po b/po/sr@latin.po index a044e36911..bbbe5ddd31 100644 --- a/po/sr@latin.po +++ b/po/sr@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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:24+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Serbian (latin) da bi ste izmenili vidljivost kolone" #: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3802 +#: libraries/server_privileges.lib.php:3795 msgid "Show all" msgstr "Prikaži sve" @@ -3246,10 +3246,10 @@ msgstr "podupit" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3134 -#: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:3307 -#: libraries/server_privileges.lib.php:4563 +#: libraries/server_privileges.lib.php:3128 +#: libraries/server_privileges.lib.php:3299 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:4556 #: libraries/server_status_processes.lib.php:84 #: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 @@ -3901,7 +3901,7 @@ msgstr "Može biti približno. Vidite [doc@faq3-11]FAQ 3.11[/doc]" #: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:656 +#: libraries/controllers/table/TableSearchController.php:645 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -4100,8 +4100,8 @@ msgstr "Indeksi" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2611 -#: libraries/server_privileges.lib.php:3529 +#: libraries/server_privileges.lib.php:2605 +#: libraries/server_privileges.lib.php:3522 #: libraries/server_user_groups.lib.php:83 #: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 @@ -4214,10 +4214,10 @@ msgstr "Pogled" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3152 -#: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:3313 -#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/server_privileges.lib.php:3146 +#: libraries/server_privileges.lib.php:3305 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4570 libraries/tracking.lib.php:1489 #: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:26 @@ -4256,8 +4256,8 @@ msgstr "Novi zapis" #: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 #: libraries/Util.php:4363 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:4452 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2603 +#: libraries/server_privileges.lib.php:4445 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilegije" @@ -4280,7 +4280,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1989 +#: libraries/plugins/export/ExportSql.php:2001 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4323,7 +4323,7 @@ msgstr "Kolone tekstulanih polja" #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4556 msgid "Databases" msgstr "Baze" @@ -8560,19 +8560,19 @@ msgstr "Proces %s je uspešno prekinut." msgid "Internal relations were successfully updated." msgstr "Dodata interna relacija" -#: libraries/controllers/table/TableSearchController.php:841 +#: libraries/controllers/table/TableSearchController.php:830 #, fuzzy #| msgid "Table Search" msgid "Table search" msgstr "Pretraga tabele" -#: libraries/controllers/table/TableSearchController.php:848 +#: libraries/controllers/table/TableSearchController.php:837 #, fuzzy #| msgid "Zoom Search" msgid "Zoom search" msgstr "Uvećaj polje za pretragu" -#: libraries/controllers/table/TableSearchController.php:853 +#: libraries/controllers/table/TableSearchController.php:842 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "Hide search criteria" @@ -8680,20 +8680,20 @@ msgstr "Ne mogu da učitam dodatke za uvoz, molim proverite svoju instalaciju!" #: libraries/display_change_password.lib.php:64 #: libraries/replication_gui.lib.php:879 -#: libraries/server_privileges.lib.php:1839 +#: libraries/server_privileges.lib.php:1835 msgid "No Password" msgstr "Nema lozinke" #: libraries/display_change_password.lib.php:72 #: libraries/plugins/auth/AuthenticationCookie.php:203 #: libraries/replication_gui.lib.php:426 libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1811 msgid "Password:" msgstr "Lozinka:" #: libraries/display_change_password.lib.php:78 #: libraries/replication_gui.lib.php:890 -#: libraries/server_privileges.lib.php:1857 +#: libraries/server_privileges.lib.php:1853 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -8707,7 +8707,7 @@ msgid "Password Hashing:" msgstr "Heširanje lozinke" #: libraries/display_change_password.lib.php:122 -#: libraries/server_privileges.lib.php:1903 +#: libraries/server_privileges.lib.php:1898 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10813,7 +10813,7 @@ msgstr "Opcije za izvoz podataka" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Prikaz podataka tabele" @@ -10837,21 +10837,21 @@ msgstr "Definicija" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Struktura tabele" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Struktura za pogled (view)" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Struktura koja zamenjuje pogled" @@ -10957,7 +10957,7 @@ msgid "Database:" msgstr "Baza podataka" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11067,7 +11067,7 @@ msgid "Data creation options" msgstr "Opcije transformacije" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -11136,8 +11136,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11151,93 +11151,99 @@ msgstr "" msgid "Metadata" msgstr "Nedostaju podaci za %s" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, fuzzy, php-format #| msgid "Missing data for %s" -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "Nedostaju podaci za %s" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Missing data for %s" +msgid "Metadata for database %s" +msgstr "Nedostaju podaci za %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 #, fuzzy #| msgid "Creation" msgid "Creation:" msgstr "Napravljeno" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 #, fuzzy #| msgid "Last update" msgid "Last update:" msgstr "Poslednja izmena" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 #, fuzzy #| msgid "Last check" msgid "Last check:" msgstr "Poslednja provera" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "se koristi" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Ograničenja za izvezene tabele" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Ograničenja za tabele" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Ograničenja za izvezene tabele" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Unutar tabela:" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "Ne koristi AUTO_INCREMENT za nulte vrednosti" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Dodaj AUTO_INCREMENT vrednost" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "MIME TIPOVI ZA TABELU" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "RELACIJE TABELE" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Struktura za pogled (view)" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "Greška kod čitanja podataka:" @@ -12088,7 +12094,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "User name" msgid "User name:" @@ -12096,18 +12102,18 @@ msgstr "Ime korisnika" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Ime korisnika" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Lozinka" @@ -12148,47 +12154,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Bilo koji domaćin" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Lokalni" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Ovaj server" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Bilo koji korisnik" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Koristi tekst polje" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Koristi tabelu domaćina" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Ponovite unos" @@ -12939,7 +12945,7 @@ msgstr "Nema" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -13008,9 +13014,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Ograničava broj istovremenih konekcija koje korisnik može da ima." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -13039,14 +13045,14 @@ msgstr "Dozvoljava izvršavanje sačuvanih rutina." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Privilegije vezane za tabele" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -13058,7 +13064,7 @@ msgid "Administration" msgstr "Administracija" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Globalne privilegije" @@ -13069,7 +13075,7 @@ msgid "Global" msgstr "globalno" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Privilegije vezane za bazu" @@ -13081,308 +13087,308 @@ msgstr "Dozvoljava kreiranje novih tabela." msgid "Allows dropping tables." msgstr "Dozvoljava odbacivanje tabela." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Authentication" msgid "Native MySQL authentication" msgstr "Autentikacija" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "Promeni lozinku" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Authentication" msgid "Native MySQL Authentication" msgstr "Autentikacija" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Podaci o prijavi" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Koristi tekst polje" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Ime korisnika" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Naziv dnevnika" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Nemoj da menjaš lozinku" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "Autentikacija" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Heširanje lozinke" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "Lozinka za %s je uspešno promenjena." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Zabranili ste privilegije za %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "Dodaj korisnika" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Baza za korisnika" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "Napravi bazu sa istim imenom i dodaj sve privilegije." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Daj sve privilegije na imenu sa džokerima (korisničko_ime\\_%)." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Dodeli sva prava pristupa za bazu \"%s\"." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Korisnici koji imaju pristup \"%s\"" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "Korisnik je dodat." -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Omogući" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "Ni jedan korisnik nije pronađen." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Bilo koji" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "globalno" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "Specifično za bazu" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "džoker" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Specifično za bazu" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Promeni privilegije" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Zabrani" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "Uredi sledeći red" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… sačuvaj stare." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… obriši stare iz tabela korisnika." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… obustavi sve privilegije starog korisnika i zatim ga obriši." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… obriši starog iz tabele korisnika i zatim ponovo učitaj privilegije." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Promeni informacije o prijavi / Kopiraj korisnika" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Napravi novog korisnika sa istim privilegijama i …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Privilegije vezane za kolone" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Ukloni izabrane korisnike" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Obustavi sve aktivne privilegije korisnika i zatim ih obriši." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "Odbaci baze koje se zovu isto kao korisnici." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "Nijedan korisnik nije odabran za brisanje!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Ponovo učitavam privilegije" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Izabrani korisnici su uspešno obrisani." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Ažurirali ste privilegije za %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "Brišem %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspešno ponovo učitane." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "Korisnik %s već postoji!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilegije" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Korisnik" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Promeni privilegije" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "Users" msgid "User account" msgstr "Korisnici" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "Pregled korisnika" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13395,7 +13401,7 @@ msgstr "" "server koristi ako su vršene ručne izmene. U tom slučaju %sponovo učitajte " "privilegije%s pre nego što nastavite." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13414,11 +13420,11 @@ msgstr "" "server koristi ako su vršene ručne izmene. U tom slučaju %sponovo učitajte " "privilegije%s pre nego što nastavite." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Dodali ste novog korisnika." diff --git a/po/sv.po b/po/sv.po index 4a7a1732bc..44bb7d2b49 100644 --- a/po/sv.po +++ b/po/sv.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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-11-12 10:41+0000\n" "Last-Translator: Michal Čihař \n" "Language-Team: Swedish för att växla kolumnens synlighet." #: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3802 +#: libraries/server_privileges.lib.php:3795 msgid "Show all" msgstr "Visa alla" @@ -2954,10 +2954,10 @@ msgstr "Ny fråga" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3134 -#: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:3307 -#: libraries/server_privileges.lib.php:4563 +#: libraries/server_privileges.lib.php:3128 +#: libraries/server_privileges.lib.php:3299 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:4556 #: libraries/server_status_processes.lib.php:84 #: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 @@ -3512,7 +3512,7 @@ msgstr "Kan vara ungefärligt. Se [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:656 +#: libraries/controllers/table/TableSearchController.php:645 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." @@ -3685,8 +3685,8 @@ msgstr "Index" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2611 -#: libraries/server_privileges.lib.php:3529 +#: libraries/server_privileges.lib.php:2605 +#: libraries/server_privileges.lib.php:3522 #: libraries/server_user_groups.lib.php:83 #: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 @@ -3799,10 +3799,10 @@ msgstr "Vy" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3152 -#: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:3313 -#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/server_privileges.lib.php:3146 +#: libraries/server_privileges.lib.php:3305 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4570 libraries/tracking.lib.php:1489 #: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:26 @@ -3841,8 +3841,8 @@ msgstr "Lägg till" #: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 #: libraries/Util.php:4363 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:4452 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2603 +#: libraries/server_privileges.lib.php:4445 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Privilegier" @@ -3865,7 +3865,7 @@ msgstr "Spårning" #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1989 +#: libraries/plugins/export/ExportSql.php:2001 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3906,7 +3906,7 @@ msgstr "Huvud-kolumner" #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4556 msgid "Databases" msgstr "Databaser" @@ -7914,15 +7914,15 @@ msgstr "Kolumnen har uppdaterats." msgid "Internal relations were successfully updated." msgstr "Intern relation har uppdaterats." -#: libraries/controllers/table/TableSearchController.php:841 +#: libraries/controllers/table/TableSearchController.php:830 msgid "Table search" msgstr "Tabellsökning" -#: libraries/controllers/table/TableSearchController.php:848 +#: libraries/controllers/table/TableSearchController.php:837 msgid "Zoom search" msgstr "Zoom sökning" -#: libraries/controllers/table/TableSearchController.php:853 +#: libraries/controllers/table/TableSearchController.php:842 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Sök och ersätt" @@ -8020,20 +8020,20 @@ msgstr "Kunde inte läsa in insticksprogram, kontrollera din installation!" #: libraries/display_change_password.lib.php:64 #: libraries/replication_gui.lib.php:879 -#: libraries/server_privileges.lib.php:1839 +#: libraries/server_privileges.lib.php:1835 msgid "No Password" msgstr "Inget lösenord" #: libraries/display_change_password.lib.php:72 #: libraries/plugins/auth/AuthenticationCookie.php:203 #: libraries/replication_gui.lib.php:426 libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1811 msgid "Password:" msgstr "Lösenord:" #: libraries/display_change_password.lib.php:78 #: libraries/replication_gui.lib.php:890 -#: libraries/server_privileges.lib.php:1857 +#: libraries/server_privileges.lib.php:1853 msgid "Re-type:" msgstr "Skriv igen:" @@ -8043,7 +8043,7 @@ msgid "Password Hashing:" msgstr "Hashning av lösenord:" #: libraries/display_change_password.lib.php:122 -#: libraries/server_privileges.lib.php:1903 +#: libraries/server_privileges.lib.php:1898 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10108,7 +10108,7 @@ msgstr "Dumpningsalternativ för data" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Dumpning av Data i tabell" @@ -10132,21 +10132,21 @@ msgstr "Definition" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Tabellstruktur" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Struktur för vy" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Ersättningsstruktur för vy" @@ -10236,7 +10236,7 @@ msgid "Database:" msgstr "Databas:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "Data:" @@ -10336,7 +10336,7 @@ msgid "Data creation options" msgstr "Valmöjligheter vid skapande av data" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "Trunkera tabell innan inläggning" @@ -10419,8 +10419,8 @@ msgstr "Det verkar som databasen använder följande förfaranden;" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "export med alias fungerar inte alltid tillförlitligt." @@ -10432,77 +10432,84 @@ msgstr "Det verkar som om databasen använder följande funktioner;" msgid "Metadata" msgstr "Metadata" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "Metadata för %s" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for database %s" +msgstr "Metadata för %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Skapat:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Senaste uppdatering:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Senaste kontroll:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "används" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "Det verkar som om databasen använder följande vyer;" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Restriktioner för dumpade tabeller" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Restriktioner för tabell" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "Index för dumpade tabeller" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "Index för tabell" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT för dumpade tabeller" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT för tabell" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "MIME-TYPER FÖR TABELL" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "RELATIONER FÖR TABELL" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "Det verkar dom om tabellen använder följande utlösare;" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "Struktur för vy %s exporterad som en tabell" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "Fel vid läsning av data:" @@ -11343,24 +11350,24 @@ msgstr "" "inte, lägg till följande rad i [mysqld]-sektionen:" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "Användarnamn:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Användarnamn" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Lösenord" @@ -11400,38 +11407,38 @@ msgstr "" "Endast slavar startade med valet --report-host=host_name syns i denna lista." #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Vilken värd som helst" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Lokal" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Denna värd" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Vilken användare som helst" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "Använd textfältet:" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Använd värdtabell" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11440,7 +11447,7 @@ msgstr "" "värdtabellen används istället." #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Skriv igen" @@ -12164,7 +12171,7 @@ msgstr "Inget" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Användargrupp" @@ -12233,9 +12240,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Begränsar antalet samtidiga förbindelser som användaren kan ha." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12264,14 +12271,14 @@ msgstr "Tillåter utförande av lagrade rutiner." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Tabellspecifika privilegier" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Obs: privilegienamn i MySQL uttrycks på engelska." @@ -12281,7 +12288,7 @@ msgid "Administration" msgstr "Administration" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Globala privilegier" @@ -12290,7 +12297,7 @@ msgid "Global" msgstr "Global" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Databasspecifika privilegier" @@ -12302,31 +12309,31 @@ msgstr "Tillåter skapande av nya tabeller." msgid "Allows dropping tables." msgstr "Tillåter borttagning av tabeller." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 msgid "Native MySQL authentication" msgstr "MySQL-autentisering" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 msgid "SHA256 password authentication" msgstr "SHA256 lösenordsautentisering" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 msgid "Native MySQL Authentication" msgstr "MySQL-autentisering" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Inloggningsinformation" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Använd textfältet" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12334,135 +12341,135 @@ msgstr "" "Ett konto existerar redan med samma användarnamn men möjligen ett annat " "värdnamn." -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 msgid "Host name:" msgstr "Värdnamn:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 msgid "Host name" msgstr "Värdnamn" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Ändra inte lösenordet" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 msgid "Authentication Plugin" msgstr "Insticksmodul-verifiering" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 msgid "Password Hashing Method" msgstr "Hashning av lösenord" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "Lösenordet för %s har ändrats." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Du har upphävt privilegierna för %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 msgid "Add user account" msgstr "Lägg till användar" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 msgid "Database for user account" msgstr "Databas för användarkonto" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "Skapa databas med samma namn och tilldela alla privilegier." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Bevilja alla privilegier till namn med jokertecken (username\\_%)." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Bevilja alla privilegier för databas \"%s\"." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Användare som har tillgång till \"%s\"" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "En användare har skapats." -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Bevilja" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "Inte tillräckligt privilegier för att visa användare." -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "Ingen användare hittades." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Vem som helst" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "databasspecifik" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "jokertecken" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "tabellspecifik" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 msgid "Edit privileges" msgstr "Redigera behörigheter" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Upphäv" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "Redigera användargrupp" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… behåll den gamla." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… ta bort den gamla från användartabellerna." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… upphäv alla aktiva privilegier från den gamla och ta bort den efteråt." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12470,92 +12477,92 @@ msgstr "" "… ta bort den gamla från användartabellerna och ladda om privilegierna " "efteråt." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "Ändra information om inloggning / kopiera användarkonto" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "Skapa ett nytt användarkonto med samma privilegier och…" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Kolumnspecifika privilegier" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 msgid "Remove selected user accounts" msgstr "Ta bort markerade användarkonton" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Upphäv alla aktiva privilegier från användarna och ta bort dem efteråt." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "Ta bort databaserna med samma namn som användarna." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "Inga användare valda för borttagning!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Laddar om privilegierna" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "De valda användarna har tagits bort." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Du har uppdaterat privilegierna för %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "Tar bort %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Privilegierna har laddats om." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "Användaren %s finns redan!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "Privilegier för %s" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Användare" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "Ny" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 msgid "Edit privileges:" msgstr "Redigera behörigheter:" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "Användarkonto" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12563,18 +12570,18 @@ msgstr "" "Obs: Du försöker redigera behörigheter för den användare som du är inloggad " "som." -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "Översikt användarkonto" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12587,7 +12594,7 @@ msgstr "" "behörigheter servern använder, om manuella ändringar har gjorts. Är så " "fallet bör du %sladda om behörigheterna%s innan du fortsätter." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12601,11 +12608,11 @@ msgstr "" "fallet bör du ladda om behörigheterna innan du fortsätter, du har dock inte " "privilegierna för detta." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "Den valda användaren kunde inte hittas i privilegietabellen." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Du har lagt till en ny användare." diff --git a/po/ta.po b/po/ta.po index 1e82dda279..7631b421b6 100644 --- a/po/ta.po +++ b/po/ta.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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:17+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Tamil SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -9921,7 +9921,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -9945,21 +9945,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10049,7 +10049,7 @@ msgid "Database:" msgstr "தரவுத்தளம்:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "தரவு:" @@ -10148,7 +10148,7 @@ msgid "Data creation options" msgstr "தரவேற்ற விருப்பங்கள்" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -10217,8 +10217,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10232,77 +10232,84 @@ msgstr "" msgid "Metadata" msgstr "தரவு" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" -msgstr "" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Delete data or table" +msgid "Metadata for table %s" +msgstr "தரவை அல்லது அட்டவணையை அழி" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Go to database: %s" +msgid "Metadata for database %s" +msgstr "தரவுத்தளம்: %s க்கு செல்க" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "உருவாக்கம்:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "கடைசி நிகழ்நிலையாக்கம்:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "கடைசி சரிபார்ப்பு:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "பயன்பாட்டில் உள்ளது" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "குவிக்கப்பட்ட அட்டவணைகளுக்கான தொகுப்புக்குறிகள்" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "அட்டவணைகளில்:->அட்டவணைகளுக்கான தொகுப்புக்குறிகள்" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "குவிக்கப்பட்ட அட்டவணைகளுக்கான AUTO_INCREMENT(தன்னிலைகூட்டு)" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "அட்டவணைக்கான AUTO_INCREMENT(தன்னிலைகூட்டு)" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "" @@ -11067,24 +11074,24 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "பயனர் பெயர்:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "" @@ -11123,45 +11130,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "உரைபுலத்தின் மூலமாக:" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "" @@ -11875,7 +11882,7 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -11942,9 +11949,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "routine" @@ -11967,14 +11974,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11984,7 +11991,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "" @@ -11993,7 +12000,7 @@ msgid "Global" msgstr "உலகளாவிய" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "" @@ -12005,299 +12012,299 @@ msgstr "" msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Authentication" msgid "Native MySQL authentication" msgstr "உறுதிப்படுத்தல்" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "கடவுச்சொல்லை மாற்றவும்" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Authentication" msgid "Native MySQL Authentication" msgstr "உறுதிப்படுத்தல்" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "புகுபதிவு தகவல்" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name:" msgid "Host name:" msgstr "பயனர் பெயர்:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Constraint name" msgid "Host name" msgstr "கட்டுப்பாட்டின் பெயர்" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "உறுதிப்படுத்தல்" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "கடவுச்சொல் கூளமாக்கள்:" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add user group" msgid "Add user account" msgstr "பயனர்குழுவை சேர்க்க" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database operations" msgid "Database for user account" msgstr "தரவுதள நடவடிக்கைகள்" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "புதிய பயனாளரை சேர்க்க->தனிச்சலுகையை தொகுக்க:" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "பயனர் குழுவை தொகுக்க" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Check Privileges" msgid "Routine-specific privileges" msgstr "தனிசலுகைகளை சரிபார்க்க" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Removing Selected Users" msgid "Remove selected user accounts" msgstr "தேர்ந்தெடுக்கப்பட்ட பயனர்கள் நீக்கப்படுகின்றனர்" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "புதியது" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "புதிய பயனாளரை சேர்க்க->தனிச்சலுகையை தொகுக்க:" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "User groups" msgid "User account" msgstr "பயனர் குழுக்கள்" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "பயனர்கள் கண்ணோட்டம்" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12306,7 +12313,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12315,11 +12322,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "நீங்கள் புதிய பயனாளரை சேர்த்துள்ளீர்கள்." diff --git a/po/te.po b/po/te.po index 7891bdb9ce..20ef707709 100644 --- a/po/te.po +++ b/po/te.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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:05+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Telugu SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10337,7 +10337,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -10363,21 +10363,21 @@ msgstr "వివరణ" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10479,7 +10479,7 @@ msgstr "డేటాబేస్" # మొదటి అనువాదము #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Database" msgid "Data:" @@ -10594,7 +10594,7 @@ msgid "Data creation options" msgstr "పట్టిక ఎంపికలు" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -10663,8 +10663,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10678,26 +10678,32 @@ msgstr "" msgid "Metadata" msgstr "భోగట్టా" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, php-format -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Copy database to" +msgid "Metadata for database %s" +msgstr "డేటాబేస్ ను ఇక్కడికి కాపీ చేయి" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 #, fuzzy #| msgid "Creation" msgid "Creation:" msgstr "సృష్టి" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 #, fuzzy #| msgid "Last update" msgid "Last update:" msgstr "చివరి మార్పు" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 #, fuzzy #| msgid "Last check" @@ -10705,61 +10711,61 @@ msgid "Last check:" msgstr "చివరి చూపు" # మొదటి అనువాదము -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "వాడుకలో ఉన్నది" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Use Tables" msgid "Indexes for dumped tables" msgstr "పట్టికల్ని వాడు" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Use Tables" msgid "Indexes for table" msgstr "పట్టికల్ని వాడు" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "" @@ -11547,7 +11553,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11555,18 +11561,18 @@ msgstr "వాడుకరి పేరు" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "వాడుకరి పేరు" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "సంకేతపదం" @@ -11605,49 +11611,49 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "స్థానిక" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "" # మొదటి అనువాదము #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "ఏ వాడుకరి ఐనను" # మొదటి అనువాదము #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 #, fuzzy #| msgid "Add new field" msgid "Use text field:" msgstr "క్రొత్త ఫీల్డ్ చేర్చు" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "మళ్ళీ టైపుచెయ్యండి" @@ -12424,7 +12430,7 @@ msgstr "ఏమీలేవు" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12492,9 +12498,9 @@ msgstr "" # మొదటి అనువాదము #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Add into comments" @@ -12517,14 +12523,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -12534,7 +12540,7 @@ msgid "Administration" msgstr "పరిపాలన" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "" @@ -12545,7 +12551,7 @@ msgid "Global" msgstr "సార్వత్రిక విలువ" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "" @@ -12557,304 +12563,304 @@ msgstr "" msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Server configuration" msgid "Native MySQL authentication" msgstr "సేవకి స్వరూపణం" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "సంకేతపదాన్ని మార్చు" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Server configuration" msgid "Native MySQL Authentication" msgstr "సేవకి స్వరూపణం" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "ప్రవేశపు సమాచారం" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "వాడుకరి పేరు" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Comments" msgid "Host name" msgstr "వ్యాఖ్యలు" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "అధీకరణ" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password:" msgid "Password Hashing Method" msgstr "సంకేతపదం:" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "" # మొదటి అనువాదము -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "ఏ వాడుకరి ఐనను" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Table options" msgid "Database for user account" msgstr "పట్టిక ఎంపికలు" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 #, fuzzy #| msgid "Database %s has been dropped." msgid "User has been added." msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "వాడుకరి కనబడలేదు." # మొదటి అనువాదము -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "ఏదైనను" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Add a new User" msgid "Edit privileges" msgstr "క్రొత్త వాడుకరిని చేర్చు" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "" # మొదటి అనువాదము -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… పాతదే ఉంచుము." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Add a new User" msgid "Routine-specific privileges" msgstr "క్రొత్త వాడుకరిని చేర్చు" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Table name" msgid "Remove selected user accounts" msgstr "పట్టిక పేరు" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "%s అనే వాడుకరి ఇప్పటికే ఉన్నారు!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "వాడుకరి" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Add a new User" msgid "Edit privileges:" msgstr "క్రొత్త వాడుకరిని చేర్చు" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "User" msgid "User account" msgstr "వాడుకరి" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Overview" msgid "User accounts overview" msgstr "అవలోకనం" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12863,7 +12869,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12872,12 +12878,12 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "" # మొదటి అనువాదము -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "మీరు క్రొత్త వాడుకరిని చేర్చారు." diff --git a/po/th.po b/po/th.po index 84f7ec63be..c75e0d93af 100644 --- a/po/th.po +++ b/po/th.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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:31+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Thai เพื่อดูสด #: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3802 +#: libraries/server_privileges.lib.php:3795 msgid "Show all" msgstr "แสดงทั้งหมด" @@ -3182,10 +3182,10 @@ msgstr "ในคำค้น" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3134 -#: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:3307 -#: libraries/server_privileges.lib.php:4563 +#: libraries/server_privileges.lib.php:3128 +#: libraries/server_privileges.lib.php:3299 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:4556 #: libraries/server_status_processes.lib.php:84 #: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 @@ -3838,7 +3838,7 @@ msgstr "มีข้อผิดพลาดระหว่างการอั #: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:656 +#: libraries/controllers/table/TableSearchController.php:645 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 #, fuzzy @@ -4031,8 +4031,8 @@ msgstr "ดัชนี" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2611 -#: libraries/server_privileges.lib.php:3529 +#: libraries/server_privileges.lib.php:2605 +#: libraries/server_privileges.lib.php:3522 #: libraries/server_user_groups.lib.php:83 #: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 @@ -4143,10 +4143,10 @@ msgstr "ตารางจำลอง (View)" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3152 -#: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:3313 -#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/server_privileges.lib.php:3146 +#: libraries/server_privileges.lib.php:3305 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4570 libraries/tracking.lib.php:1489 #: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:26 @@ -4185,8 +4185,8 @@ msgstr "แทรก" #: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 #: libraries/Util.php:4363 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:4452 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2603 +#: libraries/server_privileges.lib.php:4445 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "สิทธิ" @@ -4209,7 +4209,7 @@ msgstr "การติดตาม" #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1989 +#: libraries/plugins/export/ExportSql.php:2001 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -4252,7 +4252,7 @@ msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)" #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4556 msgid "Databases" msgstr "ฐานข้อมูล" @@ -8307,19 +8307,19 @@ msgstr "เธรด %s ถูกทำลายเรียบร้อยแ msgid "Internal relations were successfully updated." msgstr "รีเลชันภายใน" -#: libraries/controllers/table/TableSearchController.php:841 +#: libraries/controllers/table/TableSearchController.php:830 #, fuzzy #| msgid "Search" msgid "Table search" msgstr "ค้นหา" -#: libraries/controllers/table/TableSearchController.php:848 +#: libraries/controllers/table/TableSearchController.php:837 #, fuzzy #| msgid "Zoom Search" msgid "Zoom search" msgstr "ค้นหาแบบ Zoom" -#: libraries/controllers/table/TableSearchController.php:853 +#: libraries/controllers/table/TableSearchController.php:842 #: templates/table/search/selection_form.phtml:59 #, fuzzy #| msgid "Hide search criteria" @@ -8426,20 +8426,20 @@ msgstr "ไม่สามารถโหลดนำเข้าปลั๊ก #: libraries/display_change_password.lib.php:64 #: libraries/replication_gui.lib.php:879 -#: libraries/server_privileges.lib.php:1839 +#: libraries/server_privileges.lib.php:1835 msgid "No Password" msgstr "ไม่มีรหัสผ่าน" #: libraries/display_change_password.lib.php:72 #: libraries/plugins/auth/AuthenticationCookie.php:203 #: libraries/replication_gui.lib.php:426 libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1811 msgid "Password:" msgstr "รหัสผ่าน:" #: libraries/display_change_password.lib.php:78 #: libraries/replication_gui.lib.php:890 -#: libraries/server_privileges.lib.php:1857 +#: libraries/server_privileges.lib.php:1853 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -8453,7 +8453,7 @@ msgid "Password Hashing:" msgstr "รหัสผ่าน:" #: libraries/display_change_password.lib.php:122 -#: libraries/server_privileges.lib.php:1903 +#: libraries/server_privileges.lib.php:1898 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10560,7 +10560,7 @@ msgstr "สถิติฐานข้อมูล" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "dump ตาราง" @@ -10586,14 +10586,14 @@ msgstr "รายละเอียด" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "โครงสร้างตาราง" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 #, fuzzy msgid "Structure for view" @@ -10601,7 +10601,7 @@ msgstr "เฉพาะโครงสร้าง" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10715,7 +10715,7 @@ msgid "Database:" msgstr "ฐานข้อมูล" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10828,7 +10828,7 @@ msgid "Data creation options" msgstr "ตัวเลือกการแปลง" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -10897,8 +10897,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10912,86 +10912,92 @@ msgstr "" msgid "Metadata" msgstr "ข้อมูลที่หายไปสำหรับ %s" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, fuzzy, php-format #| msgid "Missing data for %s" -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "ข้อมูลที่หายไปสำหรับ %s" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Missing data for %s" +msgid "Metadata for database %s" +msgstr "ข้อมูลที่หายไปสำหรับ %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "สร้าง:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "ปรับปรุงครั้งสุดท้าย:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "ตรวจสอบครั้งสุดท้าย:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "ใช้อยู่" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for dumped tables" msgstr "ภายในตาราง:" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "ภายในตาราง:" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "เพิ่มค่า AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "เพิ่มค่า AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "เฉพาะโครงสร้าง" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11809,7 +11815,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11817,18 +11823,18 @@ msgstr "ชื่อผู้ใช้" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "ชื่อผู้ใช้" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "รหัสผ่าน" @@ -11869,47 +11875,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "โฮสต์ใดๆ" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "โลคอล" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "โฮสต์นี้" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "ผู้ใช้ใดๆ" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "ใช้ช่องใส่ข้อความ (text field)" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "อีกครั้ง" @@ -12708,7 +12714,7 @@ msgstr "ไม่มี" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12777,9 +12783,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Add new field" @@ -12804,14 +12810,14 @@ msgstr "อนุญาตให้สร้างตารางใหม่." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "สิทธิเจาะจงเฉพาะตาราง" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -12823,7 +12829,7 @@ msgid "Administration" msgstr "การดูแลระบบ" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "สิทธิแบบโกลบอล" @@ -12834,7 +12840,7 @@ msgid "Global" msgstr "โกลบอล" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "สิทธิเจาะจงเฉพาะฐานข้อมูล" @@ -12846,311 +12852,311 @@ msgstr "อนุญาตให้สร้างตารางใหม่." msgid "Allows dropping tables." msgstr "อนุญาตให้ทิ้งตาราง" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "การรับรองความถูกต้องของคุกกี้" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "การรับรองความถูกต้องของการเข้าสู่ระบบ" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL Authentication" msgstr "การรับรองความถูกต้องของคุกกี้" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "ข้อมูลล็อกอิน" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "ใช้ช่องใส่ข้อความ (text field)" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "ชื่อผู้ใช้" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Column names" msgid "Host name" msgstr "ชื่อคอลัมน์" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "กรุณาอย่าเปลี่ยนรหัสผ่าน" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "รับรองความถูกต้อง" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password:" msgid "Password Hashing Method" msgstr "รหัสผ่าน:" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "เปลี่ยนรหัสผ่านของ %s เรียบร้อยแล้ว" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "คุณได้เพิกถอนสิทธิของ %s" -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add user" msgid "Add user account" msgstr "เพิ่มผู้ใช้" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy msgid "Database for user account" msgstr "สถิติฐานข้อมูล" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "มอบสิทธิทั้งหมดสำหรับฐานข้อมูล \"%s\"." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "ผู้ใช้มีสิทธิเข้าถึงฐานข้อมูล \"%s\"" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "โยนวิว %s ทิ้งไปเรียบร้อยแล้ว" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "มอบสิทธิ" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "ไม่พบผู้ใช้ใดๆ." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "ใดๆ" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "โกลบอล" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "เฉพาะฐานข้อมูล" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "ไวล์การ์ด" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "เฉพาะฐานข้อมูล" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "แก้ไขสิทธิ" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "เพิกถอน" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "แก้ไข เครื่องแม่ข่าย" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… เก็บของเก่าไว้." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… ลบของเก่าทิ้งไปจากตารางผู้ใช้." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… เรียกคืนสิทธิ์ทั้งหมดจากเดิม แล้วลบมันหลังจากนั้น." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… ลบของเก่าจากตารางผู้ใช้ แล้วเรียกใช้รายการสิทธิ์ใหม่หลังจากนั้น." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "เปลี่ยนข้อมูลล็อกอิน / ทำสำเนาผู้ใช้" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "สร้างผู้ใช้ใหม่ ให้มีสิทธิเหมือนกัน และ …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "สิทธิเฉพาะคอลัมน์" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "ถอนผู้ใช้ที่เลือก" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "เพิกถอน active privileges ทั้งหมดจากผู้ใช้ และลบผู้ใช้ทิ้งหลังจากนั้น." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "โยนฐานข้อมูลที่มีชื่อเดียวกับผู้ใช้ทิ้ง." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "ปรับปรุงสิทธิเข้าถึงใหม่อีกรอบ" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "คุณได้ปรับปรุงสิทธิสำหรับ %s แล้ว" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "กำลังลบ %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "สิทธิได้ถูกเรียกใช้ใหม่เรียบร้อยแล้ว" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "มีผู้ใช้ %s อยู่แล้ว!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "สิทธิ" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "ผู้ใช้" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "แก้ไขสิทธิ" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "Users" msgid "User account" msgstr "ผู้ใช้" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "ข้อมูลทั่วไปของผู้ใช้" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13159,7 +13165,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -13168,11 +13174,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "ไม่พบผู้ใช้ที่เลือกในตารางแสดงสิทธิ" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "เพิ่มผู้ใช้ใหม่เรียบร้อยแล้ว" diff --git a/po/tk.po b/po/tk.po index 0d4f16f5df..f94bb58cb3 100644 --- a/po/tk.po +++ b/po/tk.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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2013-05-07 17:12+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Turkmen SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -9604,7 +9604,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -9628,21 +9628,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -9732,7 +9732,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "" @@ -9825,7 +9825,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -9894,8 +9894,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9907,77 +9907,82 @@ msgstr "" msgid "Metadata" msgstr "" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, php-format -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, php-format +msgid "Metadata for database %s" +msgstr "" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "" @@ -10731,24 +10736,24 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "" @@ -10787,45 +10792,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "" @@ -11533,7 +11538,7 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -11596,9 +11601,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" @@ -11619,14 +11624,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11636,7 +11641,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "" @@ -11645,7 +11650,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "" @@ -11657,269 +11662,269 @@ msgstr "" msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 msgid "SHA256 password authentication" msgstr "" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 msgid "Native MySQL Authentication" msgstr "" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 msgid "Host name:" msgstr "" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 msgid "Host name" msgstr "" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 msgid "Authentication Plugin" msgstr "" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 msgid "Database for user account" msgstr "" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 msgid "Remove selected user accounts" msgstr "" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11928,7 +11933,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11937,11 +11942,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "" diff --git a/po/tr.po b/po/tr.po index 7f270173de..7b4ece97c0 100644 --- a/po/tr.po +++ b/po/tr.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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-11-14 10:46+0000\n" "Last-Translator: Burak Yavuz \n" -"Language-Team: Turkish " -"\n" +"Language-Team: Turkish \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -95,7 +95,7 @@ msgstr "Sütun" #: libraries/rte/rte_routines.lib.php:892 #: libraries/rte/rte_routines.lib.php:921 #: libraries/rte/rte_routines.lib.php:1581 -#: libraries/server_privileges.lib.php:2608 libraries/tracking.lib.php:893 +#: libraries/server_privileges.lib.php:2602 libraries/tracking.lib.php:893 #: libraries/tracking.lib.php:987 #: templates/columns_definitions/table_fields_definitions.phtml:11 #: templates/database/structure/table_header.phtml:48 @@ -186,11 +186,11 @@ msgstr "Birincil" #: libraries/plugins/export/ExportOdt.php:787 #: libraries/plugins/export/ExportTexytext.php:606 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:708 -#: libraries/server_privileges.lib.php:2785 -#: libraries/server_privileges.lib.php:2973 -#: libraries/server_privileges.lib.php:2993 -#: libraries/server_privileges.lib.php:3631 -#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/server_privileges.lib.php:2779 +#: libraries/server_privileges.lib.php:2967 +#: libraries/server_privileges.lib.php:2987 +#: libraries/server_privileges.lib.php:3624 +#: libraries/server_privileges.lib.php:3647 libraries/tracking.lib.php:946 #: libraries/tracking.lib.php:1025 libraries/tracking.lib.php:1030 #: prefs_manage.php:143 templates/prefs_autoload.phtml:15 #: templates/privileges/privileges_summary_row.phtml:4 @@ -220,11 +220,11 @@ msgstr "Hayır" #: libraries/plugins/schema/pdf/PdfRelationSchema.php:709 #: libraries/server_databases.lib.php:476 #: libraries/server_databases.lib.php:486 -#: libraries/server_privileges.lib.php:2785 -#: libraries/server_privileges.lib.php:2970 -#: libraries/server_privileges.lib.php:2991 -#: libraries/server_privileges.lib.php:3628 -#: libraries/server_privileges.lib.php:3654 libraries/tracking.lib.php:946 +#: libraries/server_privileges.lib.php:2779 +#: libraries/server_privileges.lib.php:2964 +#: libraries/server_privileges.lib.php:2985 +#: libraries/server_privileges.lib.php:3621 +#: libraries/server_privileges.lib.php:3647 libraries/tracking.lib.php:946 #: libraries/tracking.lib.php:1023 libraries/tracking.lib.php:1028 #: prefs_manage.php:141 templates/prefs_autoload.phtml:14 #: templates/privileges/privileges_summary_row.phtml:4 @@ -487,9 +487,9 @@ msgstr "Geometri ekle" #: libraries/rte/rte_routines.lib.php:1669 #: libraries/rte/rte_triggers.lib.php:398 libraries/server_bin_log.lib.php:64 #: libraries/server_privileges.lib.php:710 -#: libraries/server_privileges.lib.php:2345 -#: libraries/server_privileges.lib.php:3116 -#: libraries/server_privileges.lib.php:3735 +#: libraries/server_privileges.lib.php:2339 +#: libraries/server_privileges.lib.php:3110 +#: libraries/server_privileges.lib.php:3728 #: libraries/server_user_groups.lib.php:290 #: libraries/sql_query_form.lib.php:370 libraries/sql_query_form.lib.php:430 #: libraries/tracking.lib.php:546 libraries/tracking.lib.php:666 @@ -1102,12 +1102,12 @@ msgstr "Anamakine adı boş!" msgid "The user name is empty!" msgstr "Kullanıcı adı boş!" -#: js/messages.php:143 libraries/server_privileges.lib.php:2047 +#: js/messages.php:143 libraries/server_privileges.lib.php:2042 #: user_password.php:116 msgid "The password is empty!" msgstr "Parola boş!" -#: js/messages.php:144 libraries/server_privileges.lib.php:2045 +#: js/messages.php:144 libraries/server_privileges.lib.php:2040 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Parolalar birbiriyle aynı değil!" @@ -1321,7 +1321,7 @@ msgstr "Lütfen diziye en az bir değişken ekleyin!" #: js/messages.php:216 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:696 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #: libraries/plugins/schema/SchemaPdf.php:101 #: libraries/server_status_monitor.lib.php:237 #: libraries/server_status_processes.lib.php:285 @@ -1685,7 +1685,6 @@ msgid "Formatting SQL…" msgstr "SQL biçimlendiriliyor…" #: js/messages.php:343 -#| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Hiç parametre bulunamadı!" @@ -1816,10 +1815,10 @@ msgstr "Depolanan işlevin tanımı RETURN ifadesi içermek zorunda!" #: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 #: libraries/Util.php:4361 libraries/config/messages.inc.php:254 #: libraries/display_export.lib.php:172 libraries/rte/rte_list.lib.php:149 -#: libraries/server_privileges.lib.php:2450 -#: libraries/server_privileges.lib.php:2529 -#: libraries/server_privileges.lib.php:2875 -#: libraries/server_privileges.lib.php:3543 +#: libraries/server_privileges.lib.php:2444 +#: libraries/server_privileges.lib.php:2523 +#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:3536 #: libraries/server_status_monitor.lib.php:322 prefs_manage.php:306 #: setup/frames/menu.inc.php:27 #: templates/database/structure/check_all_tables.phtml:11 @@ -1894,8 +1893,8 @@ msgid "%d is not valid row number." msgstr "%d geçerli bir satır sayısı değil." #: js/messages.php:409 -#: libraries/controllers/table/TableSearchController.php:432 -#: libraries/controllers/table/TableSearchController.php:917 +#: libraries/controllers/table/TableSearchController.php:427 +#: libraries/controllers/table/TableSearchController.php:906 #: libraries/sql.lib.php:197 tbl_change.php:159 msgid "Browse foreign values" msgstr "Dış değerlere gözat" @@ -2327,7 +2326,7 @@ msgstr "" #: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3802 +#: libraries/server_privileges.lib.php:3795 msgid "Show all" msgstr "Tümünü göster" @@ -2980,10 +2979,10 @@ msgstr "Yeniden sorgula" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3134 -#: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:3307 -#: libraries/server_privileges.lib.php:4563 +#: libraries/server_privileges.lib.php:3128 +#: libraries/server_privileges.lib.php:3299 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:4556 #: libraries/server_status_processes.lib.php:84 #: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 @@ -3539,7 +3538,7 @@ msgstr "Yaklaşık olabilir. [doc@faq3-11]SSS 3.11[/doc]'e bakın." #: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:656 +#: libraries/controllers/table/TableSearchController.php:645 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." @@ -3713,8 +3712,8 @@ msgstr "İndeksler" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2611 -#: libraries/server_privileges.lib.php:3529 +#: libraries/server_privileges.lib.php:2605 +#: libraries/server_privileges.lib.php:3522 #: libraries/server_user_groups.lib.php:83 #: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 @@ -3827,10 +3826,10 @@ msgstr "Görünüm" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3152 -#: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:3313 -#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/server_privileges.lib.php:3146 +#: libraries/server_privileges.lib.php:3305 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4570 libraries/tracking.lib.php:1489 #: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:26 @@ -3869,8 +3868,8 @@ msgstr "Ekle" #: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 #: libraries/Util.php:4363 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:4452 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2603 +#: libraries/server_privileges.lib.php:4445 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "Yetkiler" @@ -3893,7 +3892,7 @@ msgstr "İzleme" #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1989 +#: libraries/plugins/export/ExportSql.php:2001 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3934,7 +3933,7 @@ msgstr "Merkezi sütunlar" #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4556 msgid "Databases" msgstr "Veritabanları" @@ -7986,15 +7985,15 @@ msgstr "Sütun görüntüleme başarılı olarak güncellendi." msgid "Internal relations were successfully updated." msgstr "İç bağlantılar başarılı olarak güncellendi." -#: libraries/controllers/table/TableSearchController.php:841 +#: libraries/controllers/table/TableSearchController.php:830 msgid "Table search" msgstr "Tablo arama" -#: libraries/controllers/table/TableSearchController.php:848 +#: libraries/controllers/table/TableSearchController.php:837 msgid "Zoom search" msgstr "Odaklı arama" -#: libraries/controllers/table/TableSearchController.php:853 +#: libraries/controllers/table/TableSearchController.php:842 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "Bul ve değiştir" @@ -8092,20 +8091,20 @@ msgstr "Şema eklentileri yüklenemedi, lütfen kurulumunuzu kontrol edin!" #: libraries/display_change_password.lib.php:64 #: libraries/replication_gui.lib.php:879 -#: libraries/server_privileges.lib.php:1839 +#: libraries/server_privileges.lib.php:1835 msgid "No Password" msgstr "Parola yok" #: libraries/display_change_password.lib.php:72 #: libraries/plugins/auth/AuthenticationCookie.php:203 #: libraries/replication_gui.lib.php:426 libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1811 msgid "Password:" msgstr "Parola:" #: libraries/display_change_password.lib.php:78 #: libraries/replication_gui.lib.php:890 -#: libraries/server_privileges.lib.php:1857 +#: libraries/server_privileges.lib.php:1853 msgid "Re-type:" msgstr "Parola tekrarı:" @@ -8115,7 +8114,7 @@ msgid "Password Hashing:" msgstr "Parola Adreslemesi:" #: libraries/display_change_password.lib.php:122 -#: libraries/server_privileges.lib.php:1903 +#: libraries/server_privileges.lib.php:1898 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10189,7 +10188,7 @@ msgstr "Veri dökümü seçenekleri" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Tablo döküm verisi" @@ -10213,21 +10212,21 @@ msgstr "Tanım" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Tablo için tablo yapısı" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Görünüm yapısı" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Görünüm yapısı durumu" @@ -10317,7 +10316,7 @@ msgid "Database:" msgstr "Veritabanı:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "Veri:" @@ -10418,7 +10417,7 @@ msgid "Data creation options" msgstr "Veri oluşturma seçenekleri" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "Eklemeden önce tabloyu kes" @@ -10502,8 +10501,8 @@ msgstr "Görünüşe göre veritabanınız yordamları kullanmakta;" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" "kodadını dışa aktarma, her durumda güvenilir bir şekilde çalışmayabilir." @@ -10516,77 +10515,84 @@ msgstr "Görünüşe göre veritabanınız işlevleri kullanmakta;" msgid "Metadata" msgstr "Üstveri" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "%s için üstveri" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for database %s" +msgstr "%s için üstveri" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Oluşturma:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Son güncelleme:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Son kontrol:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "kullanımda" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "Görünüşe göre veritabanınız görünümleri kullanmakta;" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Dökümü yapılmış tablolar için kısıtlamalar" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Tablo kısıtlamaları" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "Dökümü yapılmış tablolar için indeksler" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "Tablo için indeksler" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "Dökümü yapılmış tablolar için AUTO_INCREMENT değeri" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "Tablo için AUTO_INCREMENT değeri" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "TABLO MIME TÜRLERİ" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "TABLO BAĞLANTILARI" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "Görünüşe göre tablonuz tetikleyicileri kullanmakta;" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "Görünüm yapısı %s bir tablo olarak dışa aktarıldı" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "Veri okunması hatası:" @@ -11427,24 +11433,24 @@ msgstr "" "olun. Eğer değilseniz lütfen aşağıdaki satırı [mysqld] bölümü içine ekleyin:" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "Kullanıcı adı:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Kullanıcı Adı" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Parola" @@ -11485,38 +11491,38 @@ msgstr "" "şekilde başlar." #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Herhangi anamakine" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Yerel" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Bu Anamakine" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Herhangi kullanıcı" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "Metin alanını kullan:" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Anamakine Tablosu kullan" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11525,7 +11531,7 @@ msgstr "" "tablosunda saklanan değerler kullanılır." #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Parola tekrarı" @@ -12251,7 +12257,7 @@ msgstr "Yok" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "Kullanıcı grubu" @@ -12318,9 +12324,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Kullanıcının eşzamanlı bağlantı sayısını sınırlar." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "Yordam" @@ -12343,14 +12349,14 @@ msgstr "Bu yordamın yürütülmesine izin verir." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Tabloya özgü yetkiler" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Not: MySQL yetki adları İngilizce olarak belirtilir." @@ -12360,7 +12366,7 @@ msgid "Administration" msgstr "Yönetim" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Genel yetkiler" @@ -12369,7 +12375,7 @@ msgid "Global" msgstr "Genel" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Veritabanına özgü yetkiler" @@ -12381,31 +12387,31 @@ msgstr "Yeni tabloların oluşturulmasına izin verir." msgid "Allows dropping tables." msgstr "Tabloların kaldırılmasına izin verir." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 msgid "Native MySQL authentication" msgstr "Yerel MySQL kimlik doğrulaması" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 msgid "SHA256 password authentication" msgstr "SHA256 parola kimlik doğrulaması" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 msgid "Native MySQL Authentication" msgstr "Yerel MySQL Kimlik Doğrulaması" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Oturum Açma Bilgisi" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Metin alanını kullan" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12413,223 +12419,223 @@ msgstr "" "Hesap zaten aynı kullanıcı adıyla mevcut ancak farklı bir anamakine adı " "olması mümkün." -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 msgid "Host name:" msgstr "Anamakine adı:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 msgid "Host name" msgstr "Anamakine adı" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Parolayı değiştirme" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 msgid "Authentication Plugin" msgstr "Kimlik Doğrulama Eklentisi" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 msgid "Password Hashing Method" msgstr "Parola Adresleme Yöntemi" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "%s için parola başarılı olarak değiştirildi." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "%s için yetkileri geri aldınız." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 msgid "Add user account" msgstr "Kullanıcı hesabı ekle" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 msgid "Database for user account" msgstr "Kullanıcı hesabı için veritabanı" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "Aynı isimle veritabanı oluşturur ve tüm yetkileri verir." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Joker isimlere tüm yetkileri ver (kullanıcıadı\\_%)." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "\"%s\" veritabanı üzerindeki tüm yetkileri verir." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\" veritabanına erişimi olan kullanıcılar" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "Kullanıcı eklendi." -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Onaylı" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "Kullanıcıları görüntülemek için yetersiz yetki." -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "Kullanıcı bulunamadı." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Herhangi" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "genel" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "Veritabanına özgü" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "joker" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "tabloya özgü" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 msgid "Edit privileges" msgstr "Yetkileri düzenle" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Geri al" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "Kullanıcı grubunu düzenle" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… eski olanı sakla." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… eski olanı kullanıcı tablolarından sil." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… eski olandan bütün aktif yetkileri geri al ve sonra da sil." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… eski olanı kullanıcı tablolarından sil ve sonra da yetkileri yeniden yükle." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "Oturum açma bilgisini değiştir / Kullanıcı hesabını kopyala" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "Aynı yetkilerle yeni bir kullanıcı hesabı oluştur ve …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "Yordama özgü yetkiler" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 msgid "Remove selected user accounts" msgstr "Seçilen kullanıcı hesaplarını kaldır" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Kullanıcılardan tüm aktif yetkileri geri alır ve sonra da siler." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "Kullanıcılarla aynı isimlerde olan veritabanlarını kaldır." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "Silmek için kullanıcı seçilmedi!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Yetkiler yeniden yükleniyor" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Seçilen kullanıcılar başarılı olarak silindi." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "%s için yetkileri güncellediniz." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "%s siliniyor" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Yetkiler başarılı olarak yüklendi." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "%s kullanıcısı zaten var!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "%s için yetkiler" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Kullanıcı" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "Yeni" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 msgid "Edit privileges:" msgstr "Yetkileri düzenle:" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "Kullanıcı hesabı" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12637,11 +12643,11 @@ msgstr "" "Not: Şu anda oturum açtığınız kullanıcının yetkilerini düzenlemeye " "çalışıyorsunuz." -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "Kullanıcı hesaplarına genel bakış" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " @@ -12652,7 +12658,7 @@ msgstr "" "herhangi bir (%) anamakineden bir bağlantıya izin veriyorsa bu " "kullanıcıların bağlanmalarını önler." -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12665,7 +12671,7 @@ msgstr "" "sunucunun kullandığı yetkilerden farklı olabilir. Bu durumda devam etmeden " "önce %syetkileri yeniden yüklemeniz%s gerekir." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12679,11 +12685,11 @@ msgstr "" "yeniden yüklenmek zorundadır ancak şu anda, yetkileri YENİDEN YÜKLEMENİZ " "gerekmez." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "Seçilen kullanıcı yetki tablosunda bulunamadı." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Yeni bir kullanıcı eklediniz." @@ -15260,7 +15266,6 @@ msgid "Stacked" msgstr "İstiflendi" #: templates/table/chart/tbl_chart.phtml:53 -#| msgid "Chart title" msgid "Chart title:" msgstr "Çizelge başlığı:" diff --git a/po/tt.po b/po/tt.po index 66d39944e4..80d6a563c6 100644 --- a/po/tt.po +++ b/po/tt.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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:22+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Tatar SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10672,7 +10672,7 @@ msgstr "Biremlek saqlaw köyläneşe" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Tüşämä eçtälegen çığaru" @@ -10699,14 +10699,14 @@ msgstr "Açıqlama" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Tüşämä tözeleşe" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 #, fuzzy msgid "Structure for view" @@ -10714,7 +10714,7 @@ msgstr "Tözeleşen genä" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 #, fuzzy msgid "Stand-in structure for view" @@ -10829,7 +10829,7 @@ msgid "Database:" msgstr "Biremlek" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10945,7 +10945,7 @@ msgid "Data creation options" msgstr "Transformation options" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -11014,8 +11014,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11029,91 +11029,98 @@ msgstr "" msgid "Metadata" msgstr "Çığaru ısulı" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" -msgstr "" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Dumping data for table" +msgid "Metadata for table %s" +msgstr "Tüşämä eçtälegen çığaru" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Create table on database %s" +msgid "Metadata for database %s" +msgstr "%s biremlegendä yaña tüşämä yaratu" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 #, fuzzy #| msgid "Creation" msgid "Creation:" msgstr "Yasalışı" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 #, fuzzy #| msgid "Last update" msgid "Last update:" msgstr "Soñğı yañartılu" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 #, fuzzy #| msgid "Last check" msgid "Last check:" msgstr "Soñğı tikşerü" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "totıla" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for dumped tables" msgstr "Kiläse tüşämä eçendä:" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "Kiläse tüşämä eçendä:" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "\"AUTO_INCREMENT\" bäyäsen östise" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "\"AUTO_INCREMENT\" bäyäsen östise" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Tözeleşen genä" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11974,7 +11981,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11982,18 +11989,18 @@ msgstr "İreşü iseme" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "İreşü iseme" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Sersüz" @@ -12033,47 +12040,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Bar bulğan host" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Cirle" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Bu Sanaq" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Törle qullanuçı" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Bu mätennän" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Host Tüşämä eçennän" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Qabatla" @@ -12875,7 +12882,7 @@ msgstr "Buş" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12943,9 +12950,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Add %s field(s)" @@ -12972,14 +12979,14 @@ msgstr "Eçke funksílar eşlätterergä birä." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Berär tüşämä öçen xoquqlar" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -12991,7 +12998,7 @@ msgid "Administration" msgstr "İdärä" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Töp xoquq" @@ -13002,7 +13009,7 @@ msgid "Global" msgstr "ğömümi" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Berär biremlekkä qağılışlı xoquqlar" @@ -13014,308 +13021,308 @@ msgstr "Yaña tüşämä yasaw xoquqı." msgid "Allows dropping tables." msgstr "Tüşämä beterü xoquqı." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Documentation" msgid "Native MySQL authentication" msgstr "Qullanma" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "Sersüz üzgärtü" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Documentation" msgid "Native MySQL Authentication" msgstr "Qullanma" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Kereş Turında" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Bu mätennän" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "İreşü iseme" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Köndälek adı" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Sersüzen üzgärtäse tügel" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Documentation" msgid "Authentication Plugin" msgstr "Qullanma" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Sersüz Hash'law" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "\"%s\" öçen sezsüz üzgärtü uñışlı uzdı." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Törle qullanuçı" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Qullanuçı biremlege" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, fuzzy, php-format msgid "Grant all privileges on database \"%s\"." msgstr "\"%s\" biremlege öçen xoquqlar tikşerü." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\" belän eşläw xoquqı bulğan qullanuçılar" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "\"%s\" atlı Qaraş beterelgän buldı" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Xoquq" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Qullanuçı yuq." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Törle" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "ğömümi" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "berär biremlekkä qağılışlı" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "almaşbilge" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "berär biremlekkä qağılışlı" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Xoquqlar Üzgärtü" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Töşer" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "Kiläse yazma üzgärtü" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Berär bağana öçen xoquqlar" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Saylanğan qullanuçı beterü" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Qullanuçı xoquqların awdarıp beteräse." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "Bu qullanuçılar kebek atalğan biremleklärne beteräse." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "Beteräse qullanuçılar saylanmağan!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Bu xoquqlarnı yöklä" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Saylanğan qullanuçını beterü uñışlı uzdı." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "\"%s\" Beterü" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Bu xoquqlarnı yökläw uñışlı uzdı." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "\"%s\" atlı qullanuçı bar inde!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Xoquqlar" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Qullanuçı" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Xoquqlar Üzgärtü" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "User" msgid "User account" msgstr "Qullanuçı" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Qullanuçılar tezmäse" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13328,7 +13335,7 @@ msgstr "" "alardan ayırıla ala. Andí çaqlarda, dawam itü aldınnan, %sxoquqlarnı qabat " "yökläp alası%s." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13347,11 +13354,11 @@ msgstr "" "alardan ayırıla ala. Andí çaqlarda, dawam itü aldınnan, %sxoquqlarnı qabat " "yökläp alası%s." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "Bu qullanuçı xoquqlar tüşämä eçendä tabılmadı." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Yana qullanuçı östälände." @@ -18450,9 +18457,6 @@ msgstr "" #~ msgid "(or the local Drizzle server's socket is not correctly configured)" #~ msgstr "(yä cirle MySQL-server soketı döres köylänmägän ide)" -#~ msgid "Create table on database %s" -#~ msgstr "%s biremlegendä yaña tüşämä yaratu" - #~ msgid "Data Label" #~ msgstr "Yarlıq" diff --git a/po/ug.po b/po/ug.po index 6a5f6e4d57..0e78b99438 100644 --- a/po/ug.po +++ b/po/ug.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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uighur SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10437,7 +10437,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "ئايلاندۇرۇپ ساقلاش جەدىۋېلىدىكى سانلىق مەلۇمات" @@ -10463,21 +10463,21 @@ msgstr "ئىزاھات" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "جەدېۋەلنىڭ تۈزىلىشى" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -10589,7 +10589,7 @@ msgid "Database:" msgstr "ساندان" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10704,7 +10704,7 @@ msgid "Data creation options" msgstr "ئامال" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -10773,8 +10773,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10788,91 +10788,98 @@ msgstr "" msgid "Metadata" msgstr "چىقىرىش" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" -msgstr "" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Delete tracking data for this table" +msgid "Metadata for table %s" +msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Create table on database %s" +msgid "Metadata for database %s" +msgstr "ساندان %s غا جەدىۋەل قۇرۇش" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 #, fuzzy #| msgid "Creation" msgid "Creation:" msgstr "قۇرۇش" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 #, fuzzy #| msgid "Last update" msgid "Last update:" msgstr "ئاخىرقى يېڭلىنىش" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 #, fuzzy #| msgid "Last check" msgid "Last check:" msgstr "ئاخىرقى تەكشۈرۈش" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "ئىشلىتىلمەكتە" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for dumped tables" msgstr "تۆۋەندىكى جەدۋەل(لەر): " -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "تۆۋەندىكى جەدۋەل(لەر): " -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT قوشۇش" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT قوشۇش" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "" @@ -11668,7 +11675,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "Username:" msgid "User name:" @@ -11676,18 +11683,18 @@ msgstr "ئابۇنىت ئىسمى:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "پارول" @@ -11728,45 +11735,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "قايتا كىرگۈزىش" @@ -12553,7 +12560,7 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12620,9 +12627,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12645,14 +12652,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -12662,7 +12669,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "" @@ -12671,7 +12678,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "" @@ -12683,298 +12690,298 @@ msgstr "" msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Authenticating…" msgid "Native MySQL authentication" msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ…" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Authenticating…" msgid "SHA256 password authentication" msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ…" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Authenticating…" msgid "Native MySQL Authentication" msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ…" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "Username:" msgid "Host name:" msgstr "ئابۇنىت ئىسمى:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Routines" msgid "Host name" msgstr "دائىملىق" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Authenticating…" msgid "Authentication Plugin" msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ…" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "پارول ھېسابلاش" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add %s" msgid "Add user account" msgstr "قوشۇلغىنى %s" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database comment" msgid "Database for user account" msgstr "ساندان ئىزاھاتى:" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "%s كۆرۈنمە ئۆچۈرۈلدى" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Privileges" msgid "Edit privileges" msgstr "ھۇقۇقى" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Privileges" msgid "Routine-specific privileges" msgstr "ھۇقۇقى" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "With selected:" msgid "Remove selected user accounts" msgstr "تاللانغىنى:" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "ھۇقۇقى" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Privileges" msgid "Edit privileges:" msgstr "ھۇقۇقى" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12983,7 +12990,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12992,11 +12999,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "" diff --git a/po/uk.po b/po/uk.po index aa5abca6fd..e2a1a44a95 100644 --- a/po/uk.po +++ b/po/uk.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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:19+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Ukrainian SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10414,7 +10414,7 @@ msgstr "Параметри дампу даних" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Дамп даних таблиці" @@ -10438,21 +10438,21 @@ msgstr "Визначення" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Структура таблиці" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Структура для представлення" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Дублююча структура для представлення" @@ -10542,7 +10542,7 @@ msgid "Database:" msgstr "База даних:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "Дані:" @@ -10650,7 +10650,7 @@ msgid "Data creation options" msgstr "Параметри створення даних" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -10739,8 +10739,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10754,78 +10754,84 @@ msgstr "" msgid "Metadata" msgstr "Пропущені дані для %s" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, fuzzy, php-format #| msgid "Missing data for %s" -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "Пропущені дані для %s" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Missing data for %s" +msgid "Metadata for database %s" +msgstr "Пропущені дані для %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Створення:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Останнє оновлення:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Остання перевірка:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "використовується" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Обмеження зовнішнього ключа збережених таблиць" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Обмеження зовнішнього ключа таблиці" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "Індекси збережених таблиць" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "Індекси таблиці" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT для збережених таблиць" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT для таблиці" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "MIME-ТИПИ ТАБЛИЦІ" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "ЗВ'ЯЗКИ ТАБЛИЦІ" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "Структура для подання %s, експортованого як таблиця" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "Помилка читання даних:" @@ -11722,24 +11728,24 @@ msgstr "" "server-id. При необхідності, додайте наступний рядок в розділ [mysqld]:" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "Ім'я користувача:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Ім'я користувача" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Пароль" @@ -11780,38 +11786,38 @@ msgstr "" "даному списку." #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Довільний хост" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Локальний" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Цей хост" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Довільний користувач" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "Використовувати текстове поле:" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Використовувати Таблицю Хостів" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11820,7 +11826,7 @@ msgstr "" "прописаних при конфігурації." #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Підтвердження" @@ -12548,7 +12554,7 @@ msgstr "Немає" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -12621,9 +12627,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Обмежити кількість одночасних підключень, які користувач може мати." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12651,14 +12657,14 @@ msgstr "Дозволяє виконання збережених процеду #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Права, які стосуються таблиці" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "Примітка: назви прав MySQL задаються англійською." @@ -12668,7 +12674,7 @@ msgid "Administration" msgstr "Адміністрування" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Глобальні права" @@ -12677,7 +12683,7 @@ msgid "Global" msgstr "Глобальний" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Права, які стосуються бази даних" @@ -12689,37 +12695,37 @@ msgstr "Дозволяє створювати нові таблиці." msgid "Allows dropping tables." msgstr "Дозволяє знищувати таблиці." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Авторизація за допомогою cookie" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Авторизація за допомогою Signon" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL Authentication" msgstr "Авторизація за допомогою cookie" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Інформація авторизації" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Використовувати текстове поле" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12727,151 +12733,151 @@ msgstr "" "Вже існує обліковий запис з таким іменем користувача, але, можливо, з іншою " "назвою хоста." -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name:" msgid "Host name:" msgstr "Ім'я користувача:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Назва журналу" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Не змінювати пароль" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "Аутентифікація" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "Хешування паролю:" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "Пароль для %s змінено вдало." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "Ви відмінили привілеї для %s." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add user group" msgid "Add user account" msgstr "Додати групу користувачів" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "База даних для користувача" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "Створити базу даних з таким самим іменем та надати всі привілеї." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Надати всі привілеї на те, що підпадає під шаблон (ім'я користувача\\_%)." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Надати всі привілеї на базу даних \"%s\"." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "Користувачі, що мають доступ до \"%s\"" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "Користувача було додано." -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "Надати" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "Користувача не знайдено." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Довільний" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "глобальний" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "специфічний для бази даних" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "шаблон" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "специфічний для таблиці" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges" msgstr "Редагувати привілеї:" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Відмінити" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "Редагувати групу користувачів" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… зберегти попереднього." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… видалити попереднього з таблиці користувачів." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… анулювати всі активні привілеї попереднього користувача та видалити його " "після того." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12879,120 +12885,120 @@ msgstr "" "… видалити попереднього з таблиці користувачів та перевантажити права після " "того." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Змінити реєстраційні дані / Копіювати користувача" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Створити нового користувача з такими ж правами та …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Привілеї, що стосуються стовпчиків таблиці" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Видалити обраних користувачів" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Відмінити всі активні привілеї користувачів та видалити їх після того." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "Видалити бази даних, які мають такі ж назви, як імена користувачів." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "Жодного користувача не обрано для видалення!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Перезавантаження прав" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Обраних користувачів видалено вдало." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "Ви оновили привілеї для %s." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "Видалення %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Привілеї перезавантажено вдало." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "Користувач %s вже існує!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "Привілеї для %s" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Користувач" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "Новий" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges:" msgid "Edit privileges:" msgstr "Редагувати привілеї:" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "User groups" msgid "User account" msgstr "Групи користувачів" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Users overview" msgid "User accounts overview" msgstr "Перегляд користувачів" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13005,7 +13011,7 @@ msgstr "" "сервером, якщо в цю таблицю вносилися зміни вручну. У цьому випадку Вам " "необхідно %sперезавантажити права%s перед продовженням." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -13024,11 +13030,11 @@ msgstr "" "сервером, якщо в цю таблицю вносилися зміни вручну. У цьому випадку Вам " "необхідно %sперезавантажити права%s перед продовженням." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "Вказаного користувача не знайдено в таблиці прав." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Ви додали нового користувача." diff --git a/po/ur.po b/po/ur.po index 179683f7b1..5ed35b9a23 100644 --- a/po/ur.po +++ b/po/ur.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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:05+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Urdu SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -10876,7 +10876,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -10902,21 +10902,21 @@ msgstr "وضاحت" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -11024,7 +11024,7 @@ msgid "Database:" msgstr "کوائفیہ" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11137,7 +11137,7 @@ msgid "Data creation options" msgstr "عمل" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -11206,8 +11206,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11221,88 +11221,94 @@ msgstr "" msgid "Metadata" msgstr "کوائف نہیں ملا برائے %s" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, fuzzy, php-format #| msgid "Missing data for %s" -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "کوائف نہیں ملا برائے %s" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Missing data for %s" +msgid "Metadata for database %s" +msgstr "کوائف نہیں ملا برائے %s" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 #, fuzzy #| msgid "Creation" msgid "Creation:" msgstr "بنائیں" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "آخری تازہ کاری:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "آخری پڑتال:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "استعمال میں ہے" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for dumped tables" msgstr "جدول میں:" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "جدول میں:" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "صفر قدروں کے لیے AUTO_INCREMENT استعمال مت کریں" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT قدر اضافہ کریں" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "" @@ -12103,7 +12109,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "Username:" msgid "User name:" @@ -12111,18 +12117,18 @@ msgstr "صارف نام:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "" @@ -12163,47 +12169,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 #, fuzzy #| msgid "Text fields" msgid "Use text field:" msgstr "متن قطعے" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "" @@ -12995,7 +13001,7 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -13062,9 +13068,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Add/Delete Field Columns" @@ -13087,14 +13093,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -13104,7 +13110,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "" @@ -13113,7 +13119,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "" @@ -13125,298 +13131,298 @@ msgstr "" msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Authentication" msgid "Native MySQL authentication" msgstr "توثیق" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Change password" msgid "SHA256 password authentication" msgstr "خفیہ ہندسہ تبدیل کریں" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Authentication" msgid "Native MySQL Authentication" msgstr "توثیق" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "Username:" msgid "Host name:" msgstr "صارف نام:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Comments" msgid "Host name" msgstr "آراء-رائے" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "توثیق" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password:" msgid "Password Hashing Method" msgstr "پاس ورڈ:" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Add %s" msgid "Add user account" msgstr "اضافہ کریں %s" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Databases display options" msgid "Database for user account" msgstr "کوائفیہ دکھانے کے اختیارات" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "جدول نقل %s چھوڑا جاچکا ہے۔" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Reloading Privileges" msgid "Edit privileges" msgstr "استحقاق پھر لوڈ کرتے ہوئے" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Check Privileges" msgid "Routine-specific privileges" msgstr "استحقاق پڑتال کریں" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Removing Selected Users" msgid "Remove selected user accounts" msgstr "منتخب صارفین حذف کیے جا رہے ہیں" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, fuzzy, php-format #| msgid "Check Privileges" msgid "Privileges for %s" msgstr "استحقاق پڑتال کریں" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Reloading Privileges" msgid "Edit privileges:" msgstr "استحقاق پھر لوڈ کرتے ہوئے" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -13425,7 +13431,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -13434,11 +13440,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "" diff --git a/po/uz.po b/po/uz.po index 62ba699782..74c3520d76 100644 --- a/po/uz.po +++ b/po/uz.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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:39+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uzbek SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -11529,7 +11529,7 @@ msgstr "Маълумотлар базаларини кўрсатиш афзал #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Жадвал маълумотларини дамп қилиш" @@ -11555,21 +11555,21 @@ msgstr "Тавсифи" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Жадвал тузилиши" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Намойиш этиш учун тузилма" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Намойиш этиш учун тузилма" @@ -11683,7 +11683,7 @@ msgid "Database:" msgstr "Маълумотлар базаси" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11801,7 +11801,7 @@ msgid "Data creation options" msgstr "Ўгиришлар параметрлари" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -11870,8 +11870,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11885,87 +11885,93 @@ msgstr "" msgid "Metadata" msgstr "\"%s\" майдонида маълумот йўқ" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, fuzzy, php-format #| msgid "Missing data for %s" -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "\"%s\" майдонида маълумот йўқ" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Missing data for %s" +msgid "Metadata for database %s" +msgstr "\"%s\" майдонида маълумот йўқ" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Тузиш:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Охирги янгиланиш:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Охирги текширув:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "ишлатилмоқда" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Сақланган жадвалларнинг ташқи калитида чекловлар" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Жадвалларнинг ташқи калитида чекловлар" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Сақланган жадвалларнинг ташқи калитида чекловлар" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Жадваллардан:" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "Ноль қийматлари учун \"AUTO_INCREMENT\" ишлатмаслик" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT қўшиш" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "ЖАДВАЛ УЧУН MIME ТУРЛАРИ" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "Жадвал алоқалари" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Намойиш этиш учун тузилма" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -12934,7 +12940,7 @@ msgstr "" "қўшинг:" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "User name" msgid "User name:" @@ -12942,18 +12948,18 @@ msgstr "Фойдаланувчи номи" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Фойдаланувчи номи" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Парол" @@ -12996,40 +13002,40 @@ msgstr "" "серверлар кўрсатилмоқда." #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Ҳар қайси хост" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Локал" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Ушбу хост" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Ҳар қайси фойдаланувчи" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Матнмайдонини ишлатиш" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Хостлар жадвалидан фойдаланиш" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -13038,7 +13044,7 @@ msgstr "" "унинг ўрнига Хостлар жадвалидаги қийматлар ишлатилади." #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Тасдиқлаш" @@ -13886,7 +13892,7 @@ msgstr "Йўқ" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -13960,9 +13966,9 @@ msgstr "" "уланишлар сони." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -13991,14 +13997,14 @@ msgstr "Сақланадиган муолажаларни бажаришга р #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Жадвал даражасижаги привилегиялар" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -14010,7 +14016,7 @@ msgid "Administration" msgstr "Администрация" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Глобал привилегиялар" @@ -14021,7 +14027,7 @@ msgid "Global" msgstr "Глобал" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Маълумотлар базаси привилегиялари" @@ -14033,319 +14039,319 @@ msgstr "Янги жадваллар тузишга рухсат беради." msgid "Allows dropping tables." msgstr "Жадвалларни ўчиришга рухъсат беради." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Host authentication order" msgid "Native MySQL authentication" msgstr "Аутентификация тартиби" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Host authentication order" msgid "SHA256 password authentication" msgstr "Аутентификация тартиби" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Host authentication order" msgid "Native MySQL Authentication" msgstr "Аутентификация тартиби" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Фойдаланувчи ҳисоби ҳақида маълумот" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Матнмайдонини ишлатиш" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Фойдаланувчи номи" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Журнал файли" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Паролни ўзгартирмаслик" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Authentication type" msgid "Authentication Plugin" msgstr "Аутентификация усули" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Паролни хешлаш" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "\"%s\" фойдаланувчининг пароли муваффақиятли ўзгартирилди." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "\"%s\" фойдаланувчининг привилегиялари бекор қилинди." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Ҳар қайси фойдаланувчи" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Фойдаланувчи учун маълумотлар базаси" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" "Фойдаланувчи номи билан аталган маълумотлар базаси тузиш ва унга тўлиқ " "привилегияларни бериш." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "(фойдаланувчи\\_%) шаблонига тўғри келадиган барча маълумотлар базаларига " "тўлиқ привилегияларни бериш." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "\"%s\" маълумотлар базасига барча привилегияларни бериш." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\"га рухсати бўлган фойдаланувчилар" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "\"%s\" намойиши ўчирилди" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "GRANT" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Биронта ҳам фойдаланувчи топилмади." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Ҳар қайси" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "Глобал" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "Маълумотлар базаси даражасида" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "Гуруҳлаш белгиси" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Маълумотлар базаси даражасида" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Привилегияларни таҳрирлаш" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Бекор қилиш" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Серверларни таҳрирлаш" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "ва эскисини сақлаш." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "ва фойдаланувчилар жадвалидан эскисини ўчириш." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr ", эскисининг барча фаол привилегияларини бекор қилиб ўчириш." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" ", фойдаланувчилар жадвалидан эскисини ўчириб привилегияларни қайта юклаш." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Фойдаланувчининг логинини ўзгартириш / Фойдаланувчидан нусха олиш" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Худди шундай привилегияли янги фойдаланувчи киритиш…" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Майдон привилегиялари" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Белгиланган фойдаланувчиларни ўчириш" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Фойдаланувчиларнинг барча фаол привилегияларини бекор қилиш, сўнг уларни " "ўчириш." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "Фойдаланувчилар номлари билан аталган маълумотлар базаларини ўчириш." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "Ўчириш лозим бўлган фойдаланувчилар танланмаган!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Привилегиялар қайта юкланмоқда" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Белгиланган фойдаланувчилар муваффақиятли ўчирилди." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "\"%s\" учун привилегиялар ўзгартирилди." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "\"%s\" ўчирилмоқда" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Привилегиялар муваффақиятли қайта юкланди." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "\"%s\" номли фойдаланувчи мавжуд!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Привилегиялар" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Фойдаланувчи" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Привилегияларни таҳрирлаш" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "User" msgid "User account" msgstr "Фойдаланувчи" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Фойдаланувчилар ҳисобини кўриб чиқиш" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -14358,7 +14364,7 @@ msgstr "" "маълумотлар сервер томонидан ишлатилаётган привилегиялардан фарқ қилиши " "мумкин. Бу ҳолда %sпривилегияларни қайта юклаш%s керак." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -14377,11 +14383,11 @@ msgstr "" "маълумотлар сервер томонидан ишлатилаётган привилегиялардан фарқ қилиши " "мумкин. Бу ҳолда %sпривилегияларни қайта юклаш%s керак." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "Белгиланган фойдаланувчи привилегиялар жадвалида топилмади." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Сиз янги фойдаланувчи қўшдингиз." diff --git a/po/uz@latin.po b/po/uz@latin.po index a8c731b6ab..2ff369e596 100644 --- a/po/uz@latin.po +++ b/po/uz@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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:22+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uzbek (latin) SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -11574,7 +11574,7 @@ msgstr "Ma`lumotlar bazalarini ko‘rsatish afzalliklari" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "Jadval ma`lumotlarini damp qilish" @@ -11600,21 +11600,21 @@ msgstr "Tavsifi" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "Jadval tuzilishi" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "Namoyish etish uchun tuzilma" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "Namoyish etish uchun tuzilma" @@ -11728,7 +11728,7 @@ msgid "Database:" msgstr "Ma`lumotlar bazasi" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11847,7 +11847,7 @@ msgid "Data creation options" msgstr "O‘girishlar parametrlari" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -11916,8 +11916,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11931,93 +11931,99 @@ msgstr "" msgid "Metadata" msgstr "\"%s\" maydonida ma`lumot yo‘q" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, fuzzy, php-format #| msgid "Missing data for %s" -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "\"%s\" maydonida ma`lumot yo‘q" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Missing data for %s" +msgid "Metadata for database %s" +msgstr "\"%s\" maydonida ma`lumot yo‘q" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 #, fuzzy #| msgid "Creation" msgid "Creation:" msgstr "Tuzish" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 #, fuzzy #| msgid "Last update" msgid "Last update:" msgstr "Oxirgi yangilanish" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 #, fuzzy #| msgid "Last check" msgid "Last check:" msgstr "Oxirgi tekshiruv" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "ishlatilmoqda" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "Saqlangan jadvallarning tashqi kalitida cheklovlar" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "Jadvallarning tashqi kalitida cheklovlar" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Saqlangan jadvallarning tashqi kalitida cheklovlar" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "Quyidagi jadval(lar)da qidirish:" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "Nol qiymatlari uchun \"AUTO_INCREMENT\" ishlatmaslik" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT qo‘shish" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "JADVAL UCHUN MIME TURLARI" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "Jadval aloqalari" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Namoyish etish uchun tuzilma" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -12994,7 +13000,7 @@ msgstr "" "bo‘limiga qo‘shing:" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "User name" msgid "User name:" @@ -13002,18 +13008,18 @@ msgstr "Foydalanuvchi nomi" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Foydalanuvchi nomi" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "Parol" @@ -13056,40 +13062,40 @@ msgstr "" "sеrvеrlar ko‘rsatilmoqda." #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "Har qaysi xost" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "Lokal" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "Ushbu xost" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "Har qaysi foydalanuvchi" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Matnmaydonini ishlatish" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "Xostlar jadvalidan foydalanish" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -13098,7 +13104,7 @@ msgstr "" "uning o‘rniga Xostlar jadvalidagi qiymatlar ishlatiladi." #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "Tasdiqlash" @@ -13951,7 +13957,7 @@ msgstr "Yo‘q" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -14027,9 +14033,9 @@ msgstr "" "ulanishlar soni." #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -14058,14 +14064,14 @@ msgstr "Saqlanadigan muolajalarni bajarishga ruxsat beradi." #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "Jadval darajasijagi privilegiyalar" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -14077,7 +14083,7 @@ msgid "Administration" msgstr "Administratsiya" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "Global privilegiyalar" @@ -14088,7 +14094,7 @@ msgid "Global" msgstr "Global" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "Ma`lumotlar bazasi privilegiyalari" @@ -14100,196 +14106,196 @@ msgstr "Yangi jadvallar tuzishga ruxsat beradi." msgid "Allows dropping tables." msgstr "Jadvallarni o‘chirishga rux`sat beradi." -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Host authentication order" msgid "Native MySQL authentication" msgstr "Autentifikatsiya tartibi" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Host authentication order" msgid "SHA256 password authentication" msgstr "Autentifikatsiya tartibi" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Host authentication order" msgid "Native MySQL Authentication" msgstr "Autentifikatsiya tartibi" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "Foydalanuvchi hisobi haqida ma`lumot" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "Matnmaydonini ishlatish" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "Foydalanuvchi nomi" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "Jurnal fayli" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "Parolni o‘zgartirmaslik" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Authentication type" msgid "Authentication Plugin" msgstr "Autentifikatsiya usuli" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing" msgid "Password Hashing Method" msgstr "Parolni xeshlash" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "\"%s\" foydalanuvchining paroli muvaffaqiyatli o‘zgartirildi." -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "\"%s\" foydalanuvchining privilegiyalari bekor qilindi." -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 #, fuzzy #| msgid "Any user" msgid "Add user account" msgstr "Har qaysi foydalanuvchi" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database for user" msgid "Database for user account" msgstr "Foydalanuvchi uchun ma`lumotlar bazasi" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" "Foydalanuvchi nomi bilan atalgan ma`lumotlar bazasi tuzish va unga to‘liq " "privilegiyalarni berish." -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "(foydalanuvchi\\_%) shabloniga to‘g‘ri keladigan barcha ma`lumotlar " "bazalariga to‘liq privilegiyalarni berish." -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "\"%s\" ma`lumotlar bazasiga barcha privilegiyalarni berish." -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\"ga ruxsati bo‘lgan foydalanuvchilar" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "\"%s\" namoyishi o‘chirildi" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "GRANT" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Bironta ham foydalanuvchi topilmadi." -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "Har qaysi" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "Global" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "Ma`lumotlar bazasi darajasida" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "Guruhlash belgisi" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Ma`lumotlar bazasi darajasida" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges" msgstr "Privilegiyalarni tahrirlash" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "Bekor qilish" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Serverlarni tahrirlash" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "va eskisini saqlash." -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "va foydalanuvchilar jadvalidan eskisini o‘chirish." -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr ", eskisining barcha faol privilegiyalarini bekor qilib o‘chirish." -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -14297,124 +14303,124 @@ msgstr "" ", foydalanuvchilar jadvalidan eskisini o‘chirib privilegiyalarni qayta " "yuklash." -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 #, fuzzy #| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" msgstr "Foydalanuvchining loginini o‘zgartirish / Foydalanuvchidan nusxa olish" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 #, fuzzy #| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" msgstr "Xuddi shunday privilegiyali yangi foydalanuvchi kiritish…" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Maydon privilegiyalari" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 #, fuzzy #| msgid "Remove selected users" msgid "Remove selected user accounts" msgstr "Belgilangan foydalanuvchilarni o‘chirish" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Foydalanuvchilarning barcha faol privilegiyalarini bekor qilish, so‘ng " "ularni o‘chirish." -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" "Foydalanuvchilar nomlari bilan atalgan ma`lumotlar bazalarini o‘chirish." -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "O‘chirish lozim bo‘lgan foydalanuvchilar tanlanmagan!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "Privilegiyalar qayta yuklanmoqda" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "Belgilangan foydalanuvchilar muvaffaqiyatli o‘chirildi." -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "\"%s\" uchun privilegiyalar o‘zgartirildi." -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "\"%s\" o‘chirilmoqda" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "Privilegiyalar muvaffaqiyatli qayta yuklandi." -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "\"%s\" nomli foydalanuvchi mavjud!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilegiyalar" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Foydalanuvchi" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 #, fuzzy #| msgid "Edit Privileges" msgid "Edit privileges:" msgstr "Privilegiyalarni tahrirlash" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 #, fuzzy #| msgid "User" msgid "User account" msgstr "Foydalanuvchi" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "User accounts overview" msgstr "Foydalanuvchilar hisobini ko‘rib chiqish" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -14427,7 +14433,7 @@ msgstr "" "ma`lumotlar server tomonidan ishlatilayotgan privilegiyalardan farq qilishi " "mumkin. Bu holda %sprivilegiyalarni qayta yuklash%s kerak." -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 #, fuzzy #| msgid "" #| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " @@ -14446,11 +14452,11 @@ msgstr "" "ma`lumotlar server tomonidan ishlatilayotgan privilegiyalardan farq qilishi " "mumkin. Bu holda %sprivilegiyalarni qayta yuklash%s kerak." -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "Belgilangan foydalanuvchi privilegiyalar jadvalida topilmadi." -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "Siz yangi foydalanuvchi qo‘shdingiz." diff --git a/po/vi.po b/po/vi.po index 2bb52689c6..d8c8c01dee 100644 --- a/po/vi.po +++ b/po/vi.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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-10-15 11:36+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Vietnamese SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -9545,7 +9545,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -9569,21 +9569,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -9673,7 +9673,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "" @@ -9765,7 +9765,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -9834,8 +9834,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9847,77 +9847,83 @@ msgstr "" msgid "Metadata" msgstr "" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Delete tracking data for this table" +msgid "Metadata for table %s" +msgstr "Xóa bỏ dữ liệu theo dõi cho bảng hiện tại" + +#: libraries/plugins/export/ExportSql.php:1070 #, php-format -msgid "Metadata for %s" +msgid "Metadata for database %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "Khởi tạo:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "Lần sửa đối cuối:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "Lần cuối kiểm tra:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "Thông dụng" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "" @@ -10658,24 +10664,24 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "" @@ -10714,45 +10720,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "" @@ -11460,7 +11466,7 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -11523,9 +11529,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" @@ -11546,14 +11552,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11563,7 +11569,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "" @@ -11572,7 +11578,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "" @@ -11584,271 +11590,271 @@ msgstr "" msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 msgid "SHA256 password authentication" msgstr "" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 msgid "Native MySQL Authentication" msgstr "" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 msgid "Host name:" msgstr "" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 msgid "Host name" msgstr "" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 msgid "Authentication Plugin" msgstr "" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 #, fuzzy #| msgid "Database comment" msgid "Database for user account" msgstr "Chú thích của Database:" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 msgid "Remove selected user accounts" msgstr "" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11857,7 +11863,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11866,11 +11872,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "" @@ -15714,6 +15720,3 @@ msgstr "" #~ msgid "Select All" #~ msgstr "Chọn tất cả" - -#~ msgid "Delete tracking data for this table" -#~ msgstr "Xóa bỏ dữ liệu theo dõi cho bảng hiện tại" diff --git a/po/vls.po b/po/vls.po index 1aee6d1f5d..73f01206f4 100644 --- a/po/vls.po +++ b/po/vls.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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2014-12-23 23:39+0200\n" "Last-Translator: Robin van der Vliet \n" "Language-Team: West Flemish SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -9504,7 +9504,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "" @@ -9528,21 +9528,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "" @@ -9632,7 +9632,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "" @@ -9724,7 +9724,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "" @@ -9793,8 +9793,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9806,77 +9806,82 @@ msgstr "" msgid "Metadata" msgstr "" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, php-format -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, php-format +msgid "Metadata for database %s" +msgstr "" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "" @@ -10615,24 +10620,24 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "Gebrukersnoame:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "Gebrukersnoame" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "" @@ -10671,45 +10676,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "" @@ -11417,7 +11422,7 @@ msgstr "" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -11480,9 +11485,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 msgid "Routine" msgstr "" @@ -11503,14 +11508,14 @@ msgstr "" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11520,7 +11525,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "" @@ -11529,7 +11534,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "" @@ -11541,273 +11546,273 @@ msgstr "" msgid "Allows dropping tables." msgstr "" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 msgid "Native MySQL authentication" msgstr "" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 msgid "SHA256 password authentication" msgstr "" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 msgid "Native MySQL Authentication" msgstr "" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name:" msgid "Host name:" msgstr "Gebrukersnoame:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "User name" msgid "Host name" msgstr "Gebrukersnoame" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 msgid "Authentication Plugin" msgstr "" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 msgid "Password Hashing Method" msgstr "" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 msgid "Add user account" msgstr "" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 msgid "Database for user account" msgstr "" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 msgid "Edit privileges" msgstr "" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 msgid "Routine-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 msgid "Remove selected user accounts" msgstr "" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "Gebruker" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 msgid "Edit privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -11816,7 +11821,7 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -11825,11 +11830,11 @@ msgid "" "privilege." msgstr "" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 8fda65ef4c..6b332d3fd9 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-11-02 02:33+0200\n" "Last-Translator: San \n" "Language-Team: Chinese (China) 以设置显示的字段。" #: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3802 +#: libraries/server_privileges.lib.php:3795 msgid "Show all" msgstr "显示全部" @@ -2889,10 +2889,10 @@ msgstr "重新查询" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3134 -#: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:3307 -#: libraries/server_privileges.lib.php:4563 +#: libraries/server_privileges.lib.php:3128 +#: libraries/server_privileges.lib.php:3299 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:4556 #: libraries/server_status_processes.lib.php:84 #: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 @@ -3439,7 +3439,7 @@ msgstr "可能是近似值。参见[doc@faq3-11]常见问题 3.11[/doc]。" #: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:656 +#: libraries/controllers/table/TableSearchController.php:645 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." @@ -3609,8 +3609,8 @@ msgstr "索引" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2611 -#: libraries/server_privileges.lib.php:3529 +#: libraries/server_privileges.lib.php:2605 +#: libraries/server_privileges.lib.php:3522 #: libraries/server_user_groups.lib.php:83 #: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 @@ -3721,10 +3721,10 @@ msgstr "视图" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3152 -#: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:3313 -#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/server_privileges.lib.php:3146 +#: libraries/server_privileges.lib.php:3305 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4570 libraries/tracking.lib.php:1489 #: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:26 @@ -3763,8 +3763,8 @@ msgstr "插入" #: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 #: libraries/Util.php:4363 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:4452 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2603 +#: libraries/server_privileges.lib.php:4445 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "权限" @@ -3787,7 +3787,7 @@ msgstr "追踪" #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1989 +#: libraries/plugins/export/ExportSql.php:2001 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3828,7 +3828,7 @@ msgstr "文本框列" #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4556 msgid "Databases" msgstr "数据库" @@ -7636,17 +7636,17 @@ msgstr "显示字段已成功更新。" msgid "Internal relations were successfully updated." msgstr "成功更新内联关系。" -#: libraries/controllers/table/TableSearchController.php:841 +#: libraries/controllers/table/TableSearchController.php:830 msgid "Table search" msgstr "普通搜索" -#: libraries/controllers/table/TableSearchController.php:848 +#: libraries/controllers/table/TableSearchController.php:837 #, fuzzy #| msgid "Zoom Search" msgid "Zoom search" msgstr "缩放搜索" -#: libraries/controllers/table/TableSearchController.php:853 +#: libraries/controllers/table/TableSearchController.php:842 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "查找和替换" @@ -7742,20 +7742,20 @@ msgstr "无法加载schema插件,请检查您的安装!" #: libraries/display_change_password.lib.php:64 #: libraries/replication_gui.lib.php:879 -#: libraries/server_privileges.lib.php:1839 +#: libraries/server_privileges.lib.php:1835 msgid "No Password" msgstr "无密码" #: libraries/display_change_password.lib.php:72 #: libraries/plugins/auth/AuthenticationCookie.php:203 #: libraries/replication_gui.lib.php:426 libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1811 msgid "Password:" msgstr "密码:" #: libraries/display_change_password.lib.php:78 #: libraries/replication_gui.lib.php:890 -#: libraries/server_privileges.lib.php:1857 +#: libraries/server_privileges.lib.php:1853 msgid "Re-type:" msgstr "重新输入:" @@ -7765,7 +7765,7 @@ msgid "Password Hashing:" msgstr "密码加密方式:" #: libraries/display_change_password.lib.php:122 -#: libraries/server_privileges.lib.php:1903 +#: libraries/server_privileges.lib.php:1898 #, fuzzy msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " @@ -9760,7 +9760,7 @@ msgstr "数据转储选项" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "转存表中的数据" @@ -9784,21 +9784,21 @@ msgstr "定义" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "表的结构" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "视图结构" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "替换视图以便查看" @@ -9904,7 +9904,7 @@ msgid "Database:" msgstr "数据库" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10010,7 +10010,7 @@ msgid "Data creation options" msgstr "数据创建选项" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "插入之前先把表清空(truncate)" @@ -10093,8 +10093,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10108,83 +10108,89 @@ msgstr "" msgid "Metadata" msgstr "元数据头" -#: libraries/plugins/export/ExportSql.php:1061 +#: libraries/plugins/export/ExportSql.php:1063 #, fuzzy, php-format #| msgid "Metadata Headers" -msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "元数据头" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Metadata Headers" +msgid "Metadata for database %s" +msgstr "元数据头" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "创建时间:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "最后更新:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "最后检查:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "使用中" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "限制导出的表" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "限制表" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "限制导出的表" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "于下列表:" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "在导出的表使用AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "使用表AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "MIME 类型表" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "表的关联" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "视图结构" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "读取数据时发生错误:" @@ -11059,7 +11065,7 @@ msgstr "" "添加此行到 [mysqld] 一节中:" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11067,18 +11073,18 @@ msgstr "用户名" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "用户名" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "密码" @@ -11119,47 +11125,47 @@ msgid "" msgstr "仅通过 --report-host=主机名 参数启动的从服务器可见。" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "任意主机" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "本地" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "此主机" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "任意用户" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "使用文本域" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "使用主机表" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "使用主机表时,此处的数据会被主机表中的数据所替换。" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "重新输入" @@ -11918,7 +11924,7 @@ msgstr "无" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "" @@ -11985,9 +11991,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "限制该用户的并发连接数。" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -12014,14 +12020,14 @@ msgstr "允许运行存储过程。" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "按表指定权限" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" @@ -12033,7 +12039,7 @@ msgid "Administration" msgstr "管理" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "全局权限" @@ -12044,7 +12050,7 @@ msgid "Global" msgstr "全局" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "按数据库指定权限" @@ -12056,289 +12062,289 @@ msgstr "允许创建新数据表。" msgid "Allows dropping tables." msgstr "允许删除数据表。" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL authentication" msgstr "Cookie 认证" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 #, fuzzy #| msgid "Signon authentication" msgid "SHA256 password authentication" msgstr "Signon 认证" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 #, fuzzy #| msgid "Cookie authentication" msgid "Native MySQL Authentication" msgstr "Cookie 认证" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "登录信息" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "使用文本域" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 #, fuzzy #| msgid "User name" msgid "Host name:" msgstr "用户名" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 #, fuzzy #| msgid "Log name" msgid "Host name" msgstr "日志文件名" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "保持原密码" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 #, fuzzy #| msgid "Authentication" msgid "Authentication Plugin" msgstr "认证" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 #, fuzzy #| msgid "Password Hashing:" msgid "Password Hashing Method" msgstr "密码加密方式:" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "%s 的密码已修改。" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "您已撤销 %s 的权限。" -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 msgid "Add user account" msgstr "新增用户账户" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 msgid "Database for user account" msgstr "用户账户数据库" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "创建与用户同名的数据库并授予所有权限。" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "给以 用户名_ 开头的数据库 (username\\_%) 授予所有权限。" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "授予数据库“%s”的所有权限。" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "用户可以访问“%s”" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "用户已添加。" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "授权" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "未找到用户。" -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "任意" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "全局" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "按数据库指定" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "通配符" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "按数据库指定" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 msgid "Edit privileges" msgstr "修改权限" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "撤销" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "编辑服务器" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… 保留旧用户。" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… 从用户表中删除旧用户。" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… 撤销旧用户的所有权限,然后删除旧用户。" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… 从用户表中删除旧用户,然后重新载入权限。" -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "修改登录信息/复制用户账户" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "创建具有相同权限的新用户账户然后 …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "按字段指定权限" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 msgid "Remove selected user accounts" msgstr "删除选中的用户账户" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "撤销用户所有权限,然后删除用户。" -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "删除与用户同名的数据库。" -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "没有选择要删除的用户!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "重新载入权限" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "已成功删除选中的用户。" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "您已更新了 %s 的权限。" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "正在删除 %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "已成功重新载入权限。" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "用户 %s 己存在!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "%s 的权限" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "用户" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "新建" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 msgid "Edit privileges:" msgstr "修改权限:" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "用户账户" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "注意:您正在尝试修改您正在使用的账号的权限。" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "用户账户概况" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12350,7 +12356,7 @@ msgstr "" "将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权" "限%s。" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12362,11 +12368,11 @@ msgstr "" "内容将可能与服务器使用的用户权限有异。在这种情况下,应当重新载入权限表,但您" "没有RELOAD权限。" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "在权限表内找不到选中的用户。" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "您已添加了一个新用户。" diff --git a/po/zh_TW.po b/po/zh_TW.po index 30bc287def..2462ed5797 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.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-11-13 19:14-0500\n" +"POT-Creation-Date: 2015-11-17 08:14-0500\n" "PO-Revision-Date: 2015-11-04 16:31+0000\n" "Last-Translator: Kelvin Lee \n" "Language-Team: Chinese (Taiwan) 以切換欄位的顯示程度。" #: js/messages.php:573 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 -#: libraries/server_privileges.lib.php:3802 +#: libraries/server_privileges.lib.php:3795 msgid "Show all" msgstr "全部顯示" @@ -2906,10 +2906,10 @@ msgstr "重新查詢" #: libraries/plugins/export/ExportTexytext.php:131 #: libraries/server_databases.lib.php:305 #: libraries/server_privileges.lib.php:1269 -#: libraries/server_privileges.lib.php:3134 -#: libraries/server_privileges.lib.php:3305 -#: libraries/server_privileges.lib.php:3307 -#: libraries/server_privileges.lib.php:4563 +#: libraries/server_privileges.lib.php:3128 +#: libraries/server_privileges.lib.php:3299 +#: libraries/server_privileges.lib.php:3301 +#: libraries/server_privileges.lib.php:4556 #: libraries/server_status_processes.lib.php:84 #: templates/table/relation/common_form.phtml:25 #: templates/table/relation/foreign_key_row.phtml:147 @@ -3459,7 +3459,7 @@ msgstr "可能為近似值,請參考 [doc@faq3-11]FAQ 3.11[/doc]。" #: libraries/DisplayResults.php:4333 libraries/Message.php:181 #: libraries/controllers/table/TableRelationController.php:253 -#: libraries/controllers/table/TableSearchController.php:656 +#: libraries/controllers/table/TableSearchController.php:645 #: libraries/rte/rte_routines.lib.php:1420 libraries/sql_query_form.lib.php:89 #: tbl_operations.php:224 tbl_row_action.php:140 view_operations.php:63 msgid "Your SQL query has been executed successfully." @@ -3629,8 +3629,8 @@ msgstr "索引" #: libraries/Index.php:691 libraries/central_columns.lib.php:688 #: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_list.lib.php:92 #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 -#: libraries/server_privileges.lib.php:2611 -#: libraries/server_privileges.lib.php:3529 +#: libraries/server_privileges.lib.php:2605 +#: libraries/server_privileges.lib.php:3522 #: libraries/server_user_groups.lib.php:83 #: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 @@ -3741,10 +3741,10 @@ msgstr "檢視表" #: libraries/plugins/export/ExportXml.php:501 #: libraries/rte/rte_list.lib.php:90 libraries/rte/rte_triggers.lib.php:333 #: libraries/server_privileges.lib.php:1272 -#: libraries/server_privileges.lib.php:3152 -#: libraries/server_privileges.lib.php:3311 -#: libraries/server_privileges.lib.php:3313 -#: libraries/server_privileges.lib.php:4577 libraries/tracking.lib.php:1489 +#: libraries/server_privileges.lib.php:3146 +#: libraries/server_privileges.lib.php:3305 +#: libraries/server_privileges.lib.php:3307 +#: libraries/server_privileges.lib.php:4570 libraries/tracking.lib.php:1489 #: libraries/tracking.lib.php:1635 #: templates/database/structure/table_header.phtml:21 #: templates/table/relation/common_form.phtml:26 @@ -3783,8 +3783,8 @@ msgstr "新增" #: libraries/Menu.php:365 libraries/Menu.php:469 libraries/Util.php:4347 #: libraries/Util.php:4363 libraries/config.values.php:107 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2609 -#: libraries/server_privileges.lib.php:4452 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2603 +#: libraries/server_privileges.lib.php:4445 #: templates/privileges/privileges_summary.phtml:16 msgid "Privileges" msgstr "權限" @@ -3807,7 +3807,7 @@ msgstr "追蹤" #: libraries/plugins/export/ExportHtmlword.php:576 #: libraries/plugins/export/ExportOdt.php:708 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1989 +#: libraries/plugins/export/ExportSql.php:2001 #: libraries/plugins/export/ExportTexytext.php:531 #: libraries/plugins/export/ExportXml.php:120 #: libraries/rte/rte_words.lib.php:50 @@ -3848,7 +3848,7 @@ msgstr "中央欄位" #: libraries/config.values.php:104 libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:343 #: libraries/navigation/NavigationTree.php:1273 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4563 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4556 msgid "Databases" msgstr "資料庫" @@ -7664,15 +7664,15 @@ msgstr "顯示欄位已成功更新。" msgid "Internal relations were successfully updated." msgstr "內部關聯已成功更新。" -#: libraries/controllers/table/TableSearchController.php:841 +#: libraries/controllers/table/TableSearchController.php:830 msgid "Table search" msgstr "資料表搜尋" -#: libraries/controllers/table/TableSearchController.php:848 +#: libraries/controllers/table/TableSearchController.php:837 msgid "Zoom search" msgstr "縮放搜尋" -#: libraries/controllers/table/TableSearchController.php:853 +#: libraries/controllers/table/TableSearchController.php:842 #: templates/table/search/selection_form.phtml:59 msgid "Find and replace" msgstr "搜尋與取代" @@ -7769,20 +7769,20 @@ msgstr "無法載入綱要(Schema)外掛程式,請檢查您的安裝!" #: libraries/display_change_password.lib.php:64 #: libraries/replication_gui.lib.php:879 -#: libraries/server_privileges.lib.php:1839 +#: libraries/server_privileges.lib.php:1835 msgid "No Password" msgstr "無密碼" #: libraries/display_change_password.lib.php:72 #: libraries/plugins/auth/AuthenticationCookie.php:203 #: libraries/replication_gui.lib.php:426 libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1811 msgid "Password:" msgstr "密碼:" #: libraries/display_change_password.lib.php:78 #: libraries/replication_gui.lib.php:890 -#: libraries/server_privileges.lib.php:1857 +#: libraries/server_privileges.lib.php:1853 msgid "Re-type:" msgstr "重新輸入:" @@ -7792,7 +7792,7 @@ msgid "Password Hashing:" msgstr "密碼加密方式:" #: libraries/display_change_password.lib.php:122 -#: libraries/server_privileges.lib.php:1903 +#: libraries/server_privileges.lib.php:1898 msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " @@ -9786,7 +9786,7 @@ msgstr "資料匯出選項" #: libraries/plugins/export/ExportHtmlword.php:205 #: libraries/plugins/export/ExportOdt.php:265 -#: libraries/plugins/export/ExportSql.php:2293 +#: libraries/plugins/export/ExportSql.php:2305 #: libraries/plugins/export/ExportTexytext.php:188 msgid "Dumping data for table" msgstr "資料表的匯出資料" @@ -9810,21 +9810,21 @@ msgstr "定義" #: libraries/plugins/export/ExportHtmlword.php:558 #: libraries/plugins/export/ExportOdt.php:685 -#: libraries/plugins/export/ExportSql.php:1958 +#: libraries/plugins/export/ExportSql.php:1970 #: libraries/plugins/export/ExportTexytext.php:511 msgid "Table structure for table" msgstr "資料表結構" #: libraries/plugins/export/ExportHtmlword.php:583 #: libraries/plugins/export/ExportOdt.php:718 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2040 #: libraries/plugins/export/ExportTexytext.php:536 msgid "Structure for view" msgstr "檢視表結構" #: libraries/plugins/export/ExportHtmlword.php:597 #: libraries/plugins/export/ExportOdt.php:739 -#: libraries/plugins/export/ExportSql.php:2073 +#: libraries/plugins/export/ExportSql.php:2085 #: libraries/plugins/export/ExportTexytext.php:552 msgid "Stand-in structure for view" msgstr "替換檢視表以便查看" @@ -9914,7 +9914,7 @@ msgid "Database:" msgstr "資料庫:" #: libraries/plugins/export/ExportLatex.php:313 -#: libraries/plugins/export/ExportSql.php:2133 +#: libraries/plugins/export/ExportSql.php:2145 msgid "Data:" msgstr "資料:" @@ -10008,7 +10008,7 @@ msgid "Data creation options" msgstr "資料建立選項" #: libraries/plugins/export/ExportSql.php:344 -#: libraries/plugins/export/ExportSql.php:2239 +#: libraries/plugins/export/ExportSql.php:2251 msgid "Truncate table before insert" msgstr "資料表新增前先清除舊資料" @@ -10089,8 +10089,8 @@ msgstr "您的資料庫使用了程序(Procedure);" #: libraries/plugins/export/ExportSql.php:522 #: libraries/plugins/export/ExportSql.php:561 -#: libraries/plugins/export/ExportSql.php:1515 -#: libraries/plugins/export/ExportSql.php:2018 +#: libraries/plugins/export/ExportSql.php:1527 +#: libraries/plugins/export/ExportSql.php:2030 msgid "alias export may not work reliably in all cases." msgstr "別名匯出可能無法在所有的情況下正常運作。" @@ -10102,77 +10102,84 @@ msgstr "您的資料庫使用了函數(Function);" msgid "Metadata" msgstr "詮釋資料" -#: libraries/plugins/export/ExportSql.php:1061 -#, php-format -msgid "Metadata for %s" +#: libraries/plugins/export/ExportSql.php:1063 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for table %s" msgstr "%s 的 Metadata" -#: libraries/plugins/export/ExportSql.php:1390 +#: libraries/plugins/export/ExportSql.php:1070 +#, fuzzy, php-format +#| msgid "Metadata for %s" +msgid "Metadata for database %s" +msgstr "%s 的 Metadata" + +#: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 msgid "Creation:" msgstr "建立時間:" -#: libraries/plugins/export/ExportSql.php:1403 +#: libraries/plugins/export/ExportSql.php:1415 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:613 msgid "Last update:" msgstr "最後更新:" -#: libraries/plugins/export/ExportSql.php:1416 +#: libraries/plugins/export/ExportSql.php:1428 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:620 msgid "Last check:" msgstr "最後檢查:" -#: libraries/plugins/export/ExportSql.php:1463 +#: libraries/plugins/export/ExportSql.php:1475 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" msgstr "使用中" -#: libraries/plugins/export/ExportSql.php:1512 +#: libraries/plugins/export/ExportSql.php:1524 msgid "It appears your database uses views;" msgstr "您的資料庫使用了檢視表(View);" -#: libraries/plugins/export/ExportSql.php:1674 +#: libraries/plugins/export/ExportSql.php:1686 msgid "Constraints for dumped tables" msgstr "已匯出資料表的限制(Constraint)" -#: libraries/plugins/export/ExportSql.php:1675 +#: libraries/plugins/export/ExportSql.php:1687 msgid "Constraints for table" msgstr "資料表的 Constraints" -#: libraries/plugins/export/ExportSql.php:1705 +#: libraries/plugins/export/ExportSql.php:1717 msgid "Indexes for dumped tables" msgstr "已匯出資料表的索引" -#: libraries/plugins/export/ExportSql.php:1706 +#: libraries/plugins/export/ExportSql.php:1718 msgid "Indexes for table" msgstr "資料表索引" -#: libraries/plugins/export/ExportSql.php:1734 +#: libraries/plugins/export/ExportSql.php:1746 msgid "AUTO_INCREMENT for dumped tables" msgstr "在匯出的資料表使用 AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1735 +#: libraries/plugins/export/ExportSql.php:1747 msgid "AUTO_INCREMENT for table" msgstr "使用資料表 AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1810 +#: libraries/plugins/export/ExportSql.php:1822 msgid "MIME TYPES FOR TABLE" msgstr "MIME 類型表" -#: libraries/plugins/export/ExportSql.php:1834 +#: libraries/plugins/export/ExportSql.php:1846 msgid "RELATIONS FOR TABLE" msgstr "表的關聯" -#: libraries/plugins/export/ExportSql.php:2015 +#: libraries/plugins/export/ExportSql.php:2027 msgid "It appears your table uses triggers;" msgstr "您的資料表使用了觸發(Trigger);" -#: libraries/plugins/export/ExportSql.php:2052 +#: libraries/plugins/export/ExportSql.php:2064 #, php-format msgid "Structure for view %s exported as a table" msgstr "將視表 %s 結構匯出成資料表" -#: libraries/plugins/export/ExportSql.php:2154 +#: libraries/plugins/export/ExportSql.php:2166 msgid "Error reading data:" msgstr "讀取資料錯誤:" @@ -10982,24 +10989,24 @@ msgstr "" "請將下列設定新增到 [mysqld] 設定區塊中:" #: libraries/replication_gui.lib.php:414 libraries/replication_gui.lib.php:800 -#: libraries/server_privileges.lib.php:1623 +#: libraries/server_privileges.lib.php:1619 msgid "User name:" msgstr "帳號:" #: libraries/replication_gui.lib.php:420 libraries/replication_gui.lib.php:804 #: libraries/replication_gui.lib.php:820 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:1660 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:3516 +#: libraries/server_privileges.lib.php:1624 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:2600 +#: libraries/server_privileges.lib.php:3509 msgid "User name" msgstr "帳號" #: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:870 #: libraries/replication_gui.lib.php:886 -#: libraries/server_privileges.lib.php:1819 -#: libraries/server_privileges.lib.php:1847 -#: libraries/server_privileges.lib.php:3518 +#: libraries/server_privileges.lib.php:1815 +#: libraries/server_privileges.lib.php:1843 +#: libraries/server_privileges.lib.php:3511 msgid "Password" msgstr "密碼" @@ -11038,45 +11045,45 @@ msgid "" msgstr "只有執行時加入 --report-host=host_name 參數的次要伺服器會列在此清單。" #: libraries/replication_gui.lib.php:757 -#: libraries/server_privileges.lib.php:1752 +#: libraries/server_privileges.lib.php:1748 msgid "Any host" msgstr "任意主機" #: libraries/replication_gui.lib.php:762 -#: libraries/server_privileges.lib.php:1760 +#: libraries/server_privileges.lib.php:1756 msgid "Local" msgstr "本機" #: libraries/replication_gui.lib.php:769 -#: libraries/server_privileges.lib.php:1769 +#: libraries/server_privileges.lib.php:1765 msgid "This Host" msgstr "此主機" #: libraries/replication_gui.lib.php:811 -#: libraries/server_privileges.lib.php:1644 +#: libraries/server_privileges.lib.php:1640 msgid "Any user" msgstr "任意使用者" #: libraries/replication_gui.lib.php:816 libraries/replication_gui.lib.php:849 #: libraries/replication_gui.lib.php:882 -#: libraries/server_privileges.lib.php:1788 +#: libraries/server_privileges.lib.php:1784 msgid "Use text field:" msgstr "使用文字欄位:" #: libraries/replication_gui.lib.php:843 -#: libraries/server_privileges.lib.php:1779 +#: libraries/server_privileges.lib.php:1775 msgid "Use Host Table" msgstr "使用主機表" #: libraries/replication_gui.lib.php:859 -#: libraries/server_privileges.lib.php:1807 +#: libraries/server_privileges.lib.php:1803 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "使用主機表時,此處的資料會被主機資料表中的資料所替換。" #: libraries/replication_gui.lib.php:894 -#: libraries/server_privileges.lib.php:1861 +#: libraries/server_privileges.lib.php:1857 msgid "Re-type" msgstr "重新輸入" @@ -11791,7 +11798,7 @@ msgstr "無" #: libraries/server_privileges.lib.php:532 #: libraries/server_privileges.lib.php:559 -#: libraries/server_privileges.lib.php:3525 +#: libraries/server_privileges.lib.php:3518 #: libraries/server_user_groups.lib.php:79 msgid "User group" msgstr "使用者群組" @@ -11856,9 +11863,9 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "使用者可同時連線的數量限制。" #: libraries/server_privileges.lib.php:1008 -#: libraries/server_privileges.lib.php:3317 -#: libraries/server_privileges.lib.php:3319 -#: libraries/server_privileges.lib.php:4592 +#: libraries/server_privileges.lib.php:3311 +#: libraries/server_privileges.lib.php:3313 +#: libraries/server_privileges.lib.php:4585 #: templates/privileges/edit_routine_privileges.phtml:11 #, fuzzy #| msgid "Routines" @@ -11885,14 +11892,14 @@ msgstr "允許執行預存程序(Stored routine)。" #: libraries/server_privileges.lib.php:1102 #: libraries/server_privileges.lib.php:1271 -#: libraries/server_privileges.lib.php:3312 +#: libraries/server_privileges.lib.php:3306 #: templates/privileges/privileges_summary.phtml:19 msgid "Table-specific privileges" msgstr "指定資料表權限" #: libraries/server_privileges.lib.php:1105 #: libraries/server_privileges.lib.php:1281 -#: libraries/server_privileges.lib.php:3521 +#: libraries/server_privileges.lib.php:3514 #: templates/privileges/edit_routine_privileges.phtml:16 msgid "Note: MySQL privilege names are expressed in English." msgstr "注意: MySQL 權限名稱會以英文表示。" @@ -11902,7 +11909,7 @@ msgid "Administration" msgstr "管理" #: libraries/server_privileges.lib.php:1265 -#: libraries/server_privileges.lib.php:3519 +#: libraries/server_privileges.lib.php:3512 msgid "Global privileges" msgstr "全域權限" @@ -11911,7 +11918,7 @@ msgid "Global" msgstr "全域" #: libraries/server_privileges.lib.php:1268 -#: libraries/server_privileges.lib.php:3306 +#: libraries/server_privileges.lib.php:3300 msgid "Database-specific privileges" msgstr "指定資料庫權限" @@ -11923,264 +11930,264 @@ msgstr "允許建立新資料表。" msgid "Allows dropping tables." msgstr "允許刪除資料表。" -#: libraries/server_privileges.lib.php:1550 +#: libraries/server_privileges.lib.php:1546 msgid "Native MySQL authentication" msgstr "原生 MySQL 認證" -#: libraries/server_privileges.lib.php:1552 +#: libraries/server_privileges.lib.php:1548 msgid "SHA256 password authentication" msgstr "SHA256 密碼認證" -#: libraries/server_privileges.lib.php:1566 +#: libraries/server_privileges.lib.php:1562 msgid "Native MySQL Authentication" msgstr "原生 MySQL 認證" -#: libraries/server_privileges.lib.php:1620 -#: libraries/server_privileges.lib.php:3098 +#: libraries/server_privileges.lib.php:1616 +#: libraries/server_privileges.lib.php:3092 msgid "Login Information" msgstr "登入資訊" -#: libraries/server_privileges.lib.php:1653 -#: libraries/server_privileges.lib.php:1842 +#: libraries/server_privileges.lib.php:1649 +#: libraries/server_privileges.lib.php:1838 #: templates/privileges/add_privileges_routine.phtml:7 #: templates/privileges/add_privileges_table.phtml:7 msgid "Use text field" msgstr "使用文字方塊" -#: libraries/server_privileges.lib.php:1680 +#: libraries/server_privileges.lib.php:1676 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "已存在與此帳號相同的使用者名稱,但可能使用不同的主機名稱。" -#: libraries/server_privileges.lib.php:1689 +#: libraries/server_privileges.lib.php:1685 msgid "Host name:" msgstr "主機名稱:" -#: libraries/server_privileges.lib.php:1694 -#: libraries/server_privileges.lib.php:1796 -#: libraries/server_privileges.lib.php:2607 -#: libraries/server_privileges.lib.php:3517 +#: libraries/server_privileges.lib.php:1690 +#: libraries/server_privileges.lib.php:1792 +#: libraries/server_privileges.lib.php:2601 +#: libraries/server_privileges.lib.php:3510 msgid "Host name" msgstr "主機名稱" -#: libraries/server_privileges.lib.php:1832 +#: libraries/server_privileges.lib.php:1828 msgid "Do not change the password" msgstr "不修改密碼" -#: libraries/server_privileges.lib.php:1883 +#: libraries/server_privileges.lib.php:1878 msgid "Authentication Plugin" msgstr "認證外掛程式" -#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:1885 msgid "Password Hashing Method" msgstr "密碼加密方式" -#: libraries/server_privileges.lib.php:2163 +#: libraries/server_privileges.lib.php:2158 #, php-format msgid "The password for %s was changed successfully." msgstr "%s 的密碼已修改。" -#: libraries/server_privileges.lib.php:2210 +#: libraries/server_privileges.lib.php:2205 #, php-format msgid "You have revoked the privileges for %s." msgstr "您已移除 %s 的權限。" -#: libraries/server_privileges.lib.php:2298 -#: libraries/server_privileges.lib.php:4521 +#: libraries/server_privileges.lib.php:2292 +#: libraries/server_privileges.lib.php:4514 msgid "Add user account" msgstr "新增使用者帳號" -#: libraries/server_privileges.lib.php:2307 +#: libraries/server_privileges.lib.php:2301 msgid "Database for user account" msgstr "使用者帳號的資料庫" -#: libraries/server_privileges.lib.php:2311 +#: libraries/server_privileges.lib.php:2305 msgid "Create database with same name and grant all privileges." msgstr "建立與使用者同名的資料庫並授予所有權限。" -#: libraries/server_privileges.lib.php:2317 +#: libraries/server_privileges.lib.php:2311 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "給以 帳號_ 開頭的資料庫 (username\\_%) 授予所有權限。" -#: libraries/server_privileges.lib.php:2326 +#: libraries/server_privileges.lib.php:2320 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "授予資料庫“%s”的所有權限。" -#: libraries/server_privileges.lib.php:2427 -#: libraries/server_privileges.lib.php:2493 +#: libraries/server_privileges.lib.php:2421 +#: libraries/server_privileges.lib.php:2487 #, php-format msgid "Users having access to \"%s\"" msgstr "可以存取 \"%s\" 的使用者" -#: libraries/server_privileges.lib.php:2462 +#: libraries/server_privileges.lib.php:2456 msgid "User has been added." msgstr "已新增使用者。" -#: libraries/server_privileges.lib.php:2610 -#: libraries/server_privileges.lib.php:3527 +#: libraries/server_privileges.lib.php:2604 +#: libraries/server_privileges.lib.php:3520 #: templates/privileges/privileges_summary.phtml:17 msgid "Grant" msgstr "允許授權" -#: libraries/server_privileges.lib.php:2625 +#: libraries/server_privileges.lib.php:2619 msgid "Not enough privilege to view users." msgstr "權限不足檢視使用者。" -#: libraries/server_privileges.lib.php:2645 -#: libraries/server_privileges.lib.php:3997 +#: libraries/server_privileges.lib.php:2639 +#: libraries/server_privileges.lib.php:3990 msgid "No user found." msgstr "未找到使用者。" -#: libraries/server_privileges.lib.php:2676 -#: libraries/server_privileges.lib.php:2963 -#: libraries/server_privileges.lib.php:3603 +#: libraries/server_privileges.lib.php:2670 +#: libraries/server_privileges.lib.php:2957 +#: libraries/server_privileges.lib.php:3596 msgid "Any" msgstr "任意" -#: libraries/server_privileges.lib.php:2727 +#: libraries/server_privileges.lib.php:2721 msgid "global" msgstr "全域" -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:2724 msgid "database-specific" msgstr "指定資料庫" -#: libraries/server_privileges.lib.php:2732 +#: libraries/server_privileges.lib.php:2726 msgid "wildcard" msgstr "萬用字元" -#: libraries/server_privileges.lib.php:2738 +#: libraries/server_privileges.lib.php:2732 msgid "table-specific" msgstr "指定資料表" -#: libraries/server_privileges.lib.php:2869 +#: libraries/server_privileges.lib.php:2863 msgid "Edit privileges" msgstr "編輯權限" -#: libraries/server_privileges.lib.php:2872 +#: libraries/server_privileges.lib.php:2866 msgid "Revoke" msgstr "移除" -#: libraries/server_privileges.lib.php:2896 +#: libraries/server_privileges.lib.php:2890 msgid "Edit user group" msgstr "編輯使用者群組" -#: libraries/server_privileges.lib.php:3077 +#: libraries/server_privileges.lib.php:3071 msgid "… keep the old one." msgstr "… 保留舊使用者。" -#: libraries/server_privileges.lib.php:3078 +#: libraries/server_privileges.lib.php:3072 msgid "… delete the old one from the user tables." msgstr "… 從使用者資料表中刪除舊使用者。" -#: libraries/server_privileges.lib.php:3080 +#: libraries/server_privileges.lib.php:3074 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… 移除舊使用者的所有權限,然後刪除舊使用者。" -#: libraries/server_privileges.lib.php:3084 +#: libraries/server_privileges.lib.php:3078 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… 從使用者資料表中刪除舊使用者,然後重新載入權限。" -#: libraries/server_privileges.lib.php:3099 +#: libraries/server_privileges.lib.php:3093 msgid "Change login information / Copy user account" msgstr "修改登入資訊/複製使用者帳號" -#: libraries/server_privileges.lib.php:3105 +#: libraries/server_privileges.lib.php:3099 msgid "Create a new user account with the same privileges and …" msgstr "建立具有相同權限的新使用者帳號並且 …" -#: libraries/server_privileges.lib.php:3318 +#: libraries/server_privileges.lib.php:3312 #: templates/privileges/edit_routine_privileges.phtml:12 #, fuzzy #| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "指定欄位權限" -#: libraries/server_privileges.lib.php:3704 +#: libraries/server_privileges.lib.php:3697 msgid "Remove selected user accounts" msgstr "刪除已選擇的使用者帳號" -#: libraries/server_privileges.lib.php:3710 +#: libraries/server_privileges.lib.php:3703 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "移除使用者所有權限,然後刪除使用者。" -#: libraries/server_privileges.lib.php:3718 -#: libraries/server_privileges.lib.php:3724 -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3711 +#: libraries/server_privileges.lib.php:3717 +#: libraries/server_privileges.lib.php:3720 msgid "Drop the databases that have the same names as the users." msgstr "刪除與使用者同名的資料庫。" -#: libraries/server_privileges.lib.php:3870 +#: libraries/server_privileges.lib.php:3863 msgid "No users selected for deleting!" msgstr "沒有選擇要刪除的使用者!" -#: libraries/server_privileges.lib.php:3873 +#: libraries/server_privileges.lib.php:3866 msgid "Reloading the privileges" msgstr "重新載入權限" -#: libraries/server_privileges.lib.php:3892 +#: libraries/server_privileges.lib.php:3885 msgid "The selected users have been deleted successfully." msgstr "已成功刪除選中的使用者。" -#: libraries/server_privileges.lib.php:3967 +#: libraries/server_privileges.lib.php:3960 #, php-format msgid "You have updated the privileges for %s." msgstr "您已更新了 %s 的權限。" -#: libraries/server_privileges.lib.php:4065 +#: libraries/server_privileges.lib.php:4058 #, php-format msgid "Deleting %s" msgstr "正在刪除 %s" -#: libraries/server_privileges.lib.php:4095 +#: libraries/server_privileges.lib.php:4088 msgid "The privileges were reloaded successfully." msgstr "已成功重新載入權限。" -#: libraries/server_privileges.lib.php:4196 +#: libraries/server_privileges.lib.php:4189 #, php-format msgid "The user %s already exists!" msgstr "使用者 %s 己存在!" -#: libraries/server_privileges.lib.php:4463 +#: libraries/server_privileges.lib.php:4456 #, php-format msgid "Privileges for %s" msgstr "權限 %s" -#: libraries/server_privileges.lib.php:4472 +#: libraries/server_privileges.lib.php:4465 #: libraries/server_status_processes.lib.php:76 #: libraries/server_user_groups.lib.php:40 msgid "User" msgstr "使用者" -#: libraries/server_privileges.lib.php:4513 +#: libraries/server_privileges.lib.php:4506 msgctxt "Create new user" msgid "New" msgstr "新增" -#: libraries/server_privileges.lib.php:4542 +#: libraries/server_privileges.lib.php:4535 msgid "Edit privileges:" msgstr "編輯權限:" -#: libraries/server_privileges.lib.php:4543 +#: libraries/server_privileges.lib.php:4536 msgid "User account" msgstr "使用者帳號" -#: libraries/server_privileges.lib.php:4617 +#: libraries/server_privileges.lib.php:4610 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "注意:您正嘗試編輯您目前登入使用者的權限。" -#: libraries/server_privileges.lib.php:4637 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4630 libraries/server_users.lib.php:25 msgid "User accounts overview" msgstr "使用者帳號一覽" -#: libraries/server_privileges.lib.php:4705 +#: libraries/server_privileges.lib.php:4698 msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " @@ -12189,7 +12196,7 @@ msgstr "" "已存在允許任何來自 localhost 連線的使用者帳號,這將會導致其他若在帳號中的主機" "允許來自任何(%)地方連線使用者無法使用。" -#: libraries/server_privileges.lib.php:4746 +#: libraries/server_privileges.lib.php:4739 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -12201,7 +12208,7 @@ msgstr "" "限,則表中顯示的內容可能與伺服器實際使用的使用者權限有異。在這種情況下,您應" "在繼續前 %s重新載入權限%s。" -#: libraries/server_privileges.lib.php:4765 +#: libraries/server_privileges.lib.php:4758 msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " @@ -12213,11 +12220,11 @@ msgstr "" "動的修改,這些資料表的內容可能將與伺服器實際使用的權限有所不同。 在此情況下才" "需要重新整理權限,目前您並不需要重新整理(RELOAD)權限。" -#: libraries/server_privileges.lib.php:4815 +#: libraries/server_privileges.lib.php:4808 msgid "The selected user was not found in the privilege table." msgstr "在權限表內找不到選中的使用者。" -#: libraries/server_privileges.lib.php:5039 +#: libraries/server_privileges.lib.php:5032 msgid "You have added a new user." msgstr "您已新增了一個新使用者。" From 2e40dd3bd36c9f0d78510d300ae7c754b799834c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristjan=20R=C3=A4ts?= Date: Tue, 17 Nov 2015 15:34:38 +0100 Subject: [PATCH 058/100] Translated using Weblate (Estonian) Currently translated at 100.0% (3222 of 3222 strings) [CI skip] --- po/et.po | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/po/et.po b/po/et.po index 9dcaa7190b..65bc0c5bfb 100644 --- a/po/et.po +++ b/po/et.po @@ -6,10 +6,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-11-17 08:14-0500\n" -"PO-Revision-Date: 2015-11-16 13:01+0000\n" +"PO-Revision-Date: 2015-11-17 15:34+0000\n" "Last-Translator: Kristjan Räts \n" -"Language-Team: Estonian \n" +"Language-Team: Estonian " +"\n" "Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -10412,16 +10412,16 @@ msgid "Metadata" msgstr "Metaandmed" #: libraries/plugins/export/ExportSql.php:1063 -#, fuzzy, php-format +#, php-format #| msgid "Metadata for %s" msgid "Metadata for table %s" -msgstr "%s metaandmed" +msgstr "Tabeli %s metaandmed" #: libraries/plugins/export/ExportSql.php:1070 -#, fuzzy, php-format +#, php-format #| msgid "Metadata for %s" msgid "Metadata for database %s" -msgstr "%s metaandmed" +msgstr "Andmebaasi %s metaandmed" #: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 From a039b6232ae3f45e0115411587f088b419cb3b63 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Tue, 17 Nov 2015 17:56:20 +0100 Subject: [PATCH 059/100] Translated using Weblate (Turkish) Currently translated at 100.0% (3222 of 3222 strings) [CI skip] --- po/tr.po | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/po/tr.po b/po/tr.po index 7b4ece97c0..d99f14dcd4 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,10 +4,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-11-17 08:14-0500\n" -"PO-Revision-Date: 2015-11-14 10:46+0000\n" +"PO-Revision-Date: 2015-11-17 17:56+0000\n" "Last-Translator: Burak Yavuz \n" -"Language-Team: Turkish \n" +"Language-Team: Turkish " +"\n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -10516,16 +10516,16 @@ msgid "Metadata" msgstr "Üstveri" #: libraries/plugins/export/ExportSql.php:1063 -#, fuzzy, php-format +#, php-format #| msgid "Metadata for %s" msgid "Metadata for table %s" -msgstr "%s için üstveri" +msgstr "%s tablosu için üstveri" #: libraries/plugins/export/ExportSql.php:1070 -#, fuzzy, php-format +#, php-format #| msgid "Metadata for %s" msgid "Metadata for database %s" -msgstr "%s için üstveri" +msgstr "%s veritabanı için üstveri" #: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 From d3363015669f8fd8071fb9c4422d6e49320985ea Mon Sep 17 00:00:00 2001 From: Achilles-96 Date: Tue, 17 Nov 2015 22:23:58 +0530 Subject: [PATCH 060/100] Fixes issue #11504 Signed-off-by: Achilles-96 --- js/functions.js | 94 ++++++++++++++++++++++++++++++++++++ js/sql.js | 10 ++++ libraries/DisplayResults.php | 24 +++++++++ 3 files changed, 128 insertions(+) diff --git a/js/functions.js b/js/functions.js index 313a015819..73d6cd09a5 100644 --- a/js/functions.js +++ b/js/functions.js @@ -4393,6 +4393,100 @@ function printPage() } } +/** + * Print button + */ +function copyToClipboard() +{ + var textArea = document.createElement("textarea"); + + // + // *** This styling is an extra step which is likely not required. *** + // + // Why is it here? To ensure: + // 1. the element is able to have focus and selection. + // 2. if element was to flash render it has minimal visual impact. + // 3. less flakyness with selection and copying which **might** occur if + // the textarea element is not visible. + // + // The likelihood is the element won't even render, not even a flash, + // so some of these are just precautions. However in IE the element + // is visible whilst the popup box asking the user for permission for + // the web page to copy to the clipboard. + // + + // Place in top-left corner of screen regardless of scroll position. + textArea.style.position = 'fixed'; + textArea.style.top = 0; + textArea.style.left = 0; + + // Ensure it has a small width and height. Setting to 1px / 1em + // doesn't work as this gives a negative w/h on some browsers. + textArea.style.width = '2em'; + textArea.style.height = '2em'; + + // We don't need padding, reducing the size if it does flash render. + textArea.style.padding = 0; + + // Clean up any borders. + textArea.style.border = 'none'; + textArea.style.outline = 'none'; + textArea.style.boxShadow = 'none'; + + // Avoid flash of white box if rendered for any reason. + textArea.style.background = 'transparent'; + + textArea.value = ''; + + var elementList = $('#serverinfo a'); + + elementList.each(function(){ + textArea.value += $(this).text().split(':')[1].trim() + '/'; + }); + textArea.value += '\t\t' + window.location.href; + textArea.value += '\n'; + + elementList = $('.notice,.success'); + + elementList.each(function(){ + textArea.value += $(this).clone().children().remove().end().text() + '\n\n'; + }); + + elementList = $('.sql pre'); + + elementList.each(function() { + textArea.value += $(this).text() + '\n\n'; + }); + + elementList = $('.table_results .column_heading a'); + + elementList.each(function() { + textArea.value += $(this).clone().children().remove().end().text() + '\t'; + }); + + textArea.value += '\n'; + elementList = $('tbody .odd,tbody .even'); + elementList.each(function() { + var childElementList = $(this).find('.data span') + childElementList.each(function(){ + textArea.value += $(this).clone().children().remove().end().text() + '\t'; + }); + textArea.value += '\n'; + }); + + document.body.appendChild(textArea); + + textArea.select(); + + try { + document.execCommand('copy'); + } catch (err) { + alert('Sorry! Unable to copy'); + } + + document.body.removeChild(textArea); +} + /** * Unbind all event handlers before tearing down a page */ diff --git a/js/sql.js b/js/sql.js index 76b4f08a83..90ff91a789 100644 --- a/js/sql.js +++ b/js/sql.js @@ -192,6 +192,16 @@ AJAX.registerOnload('sql.js', function () { .toggle($(this).val().length > 0); }).trigger('keyup'); + /** + * Attach Event Handler for 'Copy to clipbpard + */ + $(document).on('click', "#copyToClipBoard", function (event) { + event.preventDefault(); + + // Print the page + copyToClipboard(); + }); //end of Copy to Clipboard action + /** * Attach Event Handler for 'Print View' */ diff --git a/libraries/DisplayResults.php b/libraries/DisplayResults.php index ed84a8a055..ffc712f103 100644 --- a/libraries/DisplayResults.php +++ b/libraries/DisplayResults.php @@ -4987,6 +4987,29 @@ class DisplayResults return $results_operations_html; } + /** + * Get copy to clipboard links for results operations + * + * @return string $html + * + * @access private + */ + private function _getCopytoclipboardLinks() + { + $html = Util::linkOrButton( + '#', + Util::getIcon( + 'b_insrow.png', __('Copy to clip board'), true + ), + array('id' => 'copyToClipBoard'), + true, + true, + 'copy_to_clip_board' + ); + + return $html; + } + /** * Get printview links for results operations * @@ -5062,6 +5085,7 @@ class DisplayResults // Displays "printable view" link if required if ($displayParts['pview_lnk'] == '1') { $results_operations_html .= $this->_getPrintviewLinks(); + $results_operations_html .= $this->_getCopytoclipboardLinks(); } // end displays "printable view" // Export link From 0d5bf185ee743843773d79a69233ff04e3c7147b Mon Sep 17 00:00:00 2001 From: Dan Ungureanu Date: Tue, 17 Nov 2015 22:12:00 +0200 Subject: [PATCH 061/100] Fixes #11664. Online syntax verifier bug - "IF" on SELECT statement Fixes #11665. Format breaks query with COUNT() Update sql-parser to udan11/sql-parser@5621792c48cc6756508379ba941cb8c271df24bd (v3.0.7). Signed-off-by: Dan Ungureanu --- .../sql-parser/src/Components/ExpressionArray.php | 1 + libraries/sql-parser/src/Utils/Formatter.php | 11 ++++++----- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/libraries/sql-parser/src/Components/ExpressionArray.php b/libraries/sql-parser/src/Components/ExpressionArray.php index 5c84dcd950..b05ccc1838 100644 --- a/libraries/sql-parser/src/Components/ExpressionArray.php +++ b/libraries/sql-parser/src/Components/ExpressionArray.php @@ -70,6 +70,7 @@ class ExpressionArray extends Component if (($token->type === Token::TYPE_KEYWORD) && ($token->flags & Token::FLAG_KEYWORD_RESERVED) + && ((~$token->flags & Token::FLAG_KEYWORD_FUNCTION)) && ($token->value !== 'DUAL') ) { // No keyword is expected. diff --git a/libraries/sql-parser/src/Utils/Formatter.php b/libraries/sql-parser/src/Utils/Formatter.php index ea4b419ff4..7ff13463f6 100644 --- a/libraries/sql-parser/src/Utils/Formatter.php +++ b/libraries/sql-parser/src/Utils/Formatter.php @@ -304,7 +304,9 @@ class Formatter if (($this->options['parts_newline']) && (!$formattedOptions) && (empty(self::$INLINE_CLAUSES[$lastClause])) - && ($curr->type != Token::TYPE_KEYWORD) + && (($curr->type !== Token::TYPE_KEYWORD) + || (($curr->type === Token::TYPE_KEYWORD) + && ($curr->flags & Token::FLAG_KEYWORD_FUNCTION))) ) { $formattedOptions = true; $lineEnded = true; @@ -334,8 +336,8 @@ class Formatter // Formatting fragments delimited by comma. if (($prev->type === Token::TYPE_OPERATOR) && ($prev->value === ',')) { // Fragments delimited by a comma are broken into multiple - // pieces only if the clause if the clause is not inlined or - // this fragment is between brackets that were on new line. + // pieces only if the clause is not inlined or this fragment + // is between brackets that are on new line. if (((empty(self::$INLINE_CLAUSES[$lastClause])) && ($this->options['parts_newline'])) || (end($blocksLineEndings) === true) @@ -401,8 +403,7 @@ class Formatter $comment = ''; } - // Saving the next token as the one that will be processed during - // the next iteration. + // Iteration finished, consider current token as previous. $prev = $curr; } From 2502bfde149d7416a2709ae300f642b60c437151 Mon Sep 17 00:00:00 2001 From: Dan Ungureanu Date: Tue, 17 Nov 2015 22:27:15 +0200 Subject: [PATCH 062/100] Added ChangeLog entries. Signed-off-by: Dan Ungureanu --- ChangeLog | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ChangeLog b/ChangeLog index 4ed071ce71..bd4bdd8c25 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,8 @@ phpMyAdmin - ChangeLog ====================== 4.5.3.0 (not yet released) +- issue #11664 Online syntax verifier bug - "IF" on SELECT statement +- issue #11665 Format breaks query with COUNT() 4.5.2.0 (not yet released) - issue #11589 Incorrect parameter in mysqli_fetch_fields() From c7302a09e8e2e7ea53d7f9880a51acaba35202c9 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Wed, 18 Nov 2015 08:00:49 +1100 Subject: [PATCH 063/100] More templating Signed-off-by: Madhura Jayaratne --- .../controllers/ServerVariablesController.php | 28 ++++++------------- 1 file changed, 8 insertions(+), 20 deletions(-) diff --git a/libraries/controllers/ServerVariablesController.php b/libraries/controllers/ServerVariablesController.php index 29002b7568..ef26cbd909 100644 --- a/libraries/controllers/ServerVariablesController.php +++ b/libraries/controllers/ServerVariablesController.php @@ -248,34 +248,22 @@ class ServerVariablesController extends Controller * @return string */ private function _getHtmlForServerVariables($serverVars, $serverVarsSession) { - $value = ! empty($_REQUEST['filter']) + // filter + $filterValue = ! empty($_REQUEST['filter']) ? htmlspecialchars($_REQUEST['filter']) : ''; - $output = '
' - . '' . __('Filters') . '' - . '
' - . '' - . '' - . '
' - . '
'; - - $output .= '' - . '' - . '' - . '' - . '' - . '' - . ''; + $output = Template::get('server/variables/variable_filter') + ->render(array('filterValue' => $filterValue)); + $output .= '
' . __('Action') . '' . __('Variable') . '' - . __('Session value') . ' / ' . __('Global value') - . '
'; + $output .= Template::get('server/variables/variable_table_head')->render(); $output .= ''; + $output .= $this->_getHtmlForServerVariablesItems( $serverVars, $serverVarsSession ); - $output .= ''; + $output .= ''; $output .= '
'; return $output; From d8e5063ddbf486dc1a3b57a1ce1e2eee0b80112b Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Wed, 18 Nov 2015 08:13:08 +1100 Subject: [PATCH 064/100] Add missing templates Signed-off-by: Madhura Jayaratne --- templates/server/variables/variable_filter.phtml | 8 ++++++++ templates/server/variables/variable_table_head.phtml | 7 +++++++ 2 files changed, 15 insertions(+) create mode 100644 templates/server/variables/variable_filter.phtml create mode 100644 templates/server/variables/variable_table_head.phtml diff --git a/templates/server/variables/variable_filter.phtml b/templates/server/variables/variable_filter.phtml new file mode 100644 index 0000000000..744c4bf2f3 --- /dev/null +++ b/templates/server/variables/variable_filter.phtml @@ -0,0 +1,8 @@ +
+ +
+ + +
+
\ No newline at end of file diff --git a/templates/server/variables/variable_table_head.phtml b/templates/server/variables/variable_table_head.phtml new file mode 100644 index 0000000000..dec0629cad --- /dev/null +++ b/templates/server/variables/variable_table_head.phtml @@ -0,0 +1,7 @@ + + + + + / + + \ No newline at end of file From 399363c9b0eff3346e941a7c504a7a8f6f5dfd7d Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Wed, 18 Nov 2015 08:13:56 +1100 Subject: [PATCH 065/100] DocLinks can be an instance variable Signed-off-by: Madhura Jayaratne --- .../controllers/ServerVariablesController.php | 42 +++++++++++-------- 1 file changed, 25 insertions(+), 17 deletions(-) diff --git a/libraries/controllers/ServerVariablesController.php b/libraries/controllers/ServerVariablesController.php index ef26cbd909..fe4a40ca69 100644 --- a/libraries/controllers/ServerVariablesController.php +++ b/libraries/controllers/ServerVariablesController.php @@ -20,6 +20,21 @@ use PMA\libraries\Util; */ class ServerVariablesController extends Controller { + /** + * @var array Documentation links for variables + */ + protected $variable_doc_links; + + /** + * Constructs ServerVariablesController + */ + public function __construct() + { + parent::__construct(); + + $this->variable_doc_links = $this->_getArrayForDocumentLinks(); + } + /** * Index action * @@ -117,9 +132,8 @@ class ServerVariablesController extends Controller 'NUM' ); - $variable_doc_links = $this->_getArrayForDocumentLinks(); - if (isset($variable_doc_links[$_REQUEST['varName']][3]) - && $variable_doc_links[$_REQUEST['varName']][3] == 'byte' + if (isset($this->variable_doc_links[$_REQUEST['varName']][3]) + && $this->variable_doc_links[$_REQUEST['varName']][3] == 'byte' ) { $this->response->addJSON( 'message', @@ -145,9 +159,8 @@ class ServerVariablesController extends Controller $value = $_REQUEST['varValue']; $matches = array(); - $variable_doc_links = $this->_getArrayForDocumentLinks(); - if (isset($variable_doc_links[$_REQUEST['varName']][3]) - && $variable_doc_links[$_REQUEST['varName']][3] == 'byte' + if (isset($this->variable_doc_links[$_REQUEST['varName']][3]) + && $this->variable_doc_links[$_REQUEST['varName']][3] == 'byte' && preg_match( '/^\s*(\d+(\.\d+)?)\s*(mb|kb|mib|kib|gb|gib)\s*$/i', $value, @@ -212,9 +225,8 @@ class ServerVariablesController extends Controller private function _formatVariable($name, $value) { if (is_numeric($value)) { - $variable_doc_links = $this->_getArrayForDocumentLinks(); - if (isset($variable_doc_links[$name][3]) - && $variable_doc_links[$name][3]=='byte' + if (isset($this->variable_doc_links[$name][3]) + && $this->variable_doc_links[$name][3]=='byte' ) { return '' @@ -283,8 +295,6 @@ class ServerVariablesController extends Controller ) { // list of static system variables $static_variables = $this->_getStaticSystemVariables(); - // list of documentation links - $variable_doc_links = $this->_getArrayForDocumentLinks(); $output = ''; $odd_row = true; @@ -293,11 +303,9 @@ class ServerVariablesController extends Controller && $serverVarsSession[$name] != $value; $row_class = ($odd_row ? ' odd' : ' even') . ($has_session_value ? ' diffSession' : ''); - $docLink = isset($variable_doc_links[$name]) - ? $variable_doc_links[$name] : null; - $formattedValue = $this->_formatVariable( - $name, $value, $variable_doc_links - ); + $docLink = isset($this->variable_doc_links[$name]) + ? $this->variable_doc_links[$name] : null; + $formattedValue = $this->_formatVariable($name, $value); $output .= Template::get('server/variables/variable_row') ->render( @@ -313,7 +321,7 @@ class ServerVariablesController extends Controller if ($has_session_value) { $formattedValue = $this->_formatVariable( - $name, $serverVarsSession[$name], $variable_doc_links + $name, $serverVarsSession[$name] ); $output .= Template::get('server/variables/session_variable_row') ->render( From 605727d9613b9cb5ee443db2c614754243127ba3 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Wed, 18 Nov 2015 08:17:12 +1100 Subject: [PATCH 066/100] Better method name Signed-off-by: Madhura Jayaratne --- libraries/controllers/ServerVariablesController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/controllers/ServerVariablesController.php b/libraries/controllers/ServerVariablesController.php index fe4a40ca69..0984cf907c 100644 --- a/libraries/controllers/ServerVariablesController.php +++ b/libraries/controllers/ServerVariablesController.php @@ -32,7 +32,7 @@ class ServerVariablesController extends Controller { parent::__construct(); - $this->variable_doc_links = $this->_getArrayForDocumentLinks(); + $this->variable_doc_links = $this->_getDocumentLinks(); } /** @@ -356,7 +356,7 @@ class ServerVariablesController extends Controller * * @return array */ - private function _getArrayForDocumentLinks() + private function _getDocumentLinks() { $variable_doc_links = array(); $variable_doc_links['auto_increment_increment'] = array( From 776e7932bb99e9f8af7cb911f30122496fea3059 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 17 Nov 2015 23:55:11 +0100 Subject: [PATCH 067/100] Translated using Weblate (Slovenian) Currently translated at 100.0% (3222 of 3222 strings) [CI skip] --- po/sl.po | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/po/sl.po b/po/sl.po index b7d7e3769e..9306cf3459 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,16 +4,16 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-11-17 08:14-0500\n" -"PO-Revision-Date: 2015-11-14 02:41+0000\n" +"PO-Revision-Date: 2015-11-17 23:55+0000\n" "Last-Translator: Domen \n" -"Language-Team: Slovenian \n" +"Language-Team: Slovenian " +"\n" "Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" "X-Generator: Weblate 2.5-dev\n" #: changelog.php:37 license.php:33 @@ -10497,16 +10497,16 @@ msgid "Metadata" msgstr "Metapodatki" #: libraries/plugins/export/ExportSql.php:1063 -#, fuzzy, php-format +#, php-format #| msgid "Metadata for %s" msgid "Metadata for table %s" -msgstr "Metapodatki za %s" +msgstr "Metapodatki tabele %s" #: libraries/plugins/export/ExportSql.php:1070 -#, fuzzy, php-format +#, php-format #| msgid "Metadata for %s" msgid "Metadata for database %s" -msgstr "Metapodatki za %s" +msgstr "Metapodatki zbirke podatkov %s" #: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 From 21b6ca375619867343f37c37860eab44838e132a Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Wed, 18 Nov 2015 10:29:39 +1100 Subject: [PATCH 068/100] Move escaping to view Signed-off-by: Madhura Jayaratne --- .../controllers/ServerVariablesController.php | 14 +++++++------- .../server/variables/session_variable_row.phtml | 2 +- templates/server/variables/variable_filter.phtml | 3 ++- templates/server/variables/variable_row.phtml | 2 +- 4 files changed, 11 insertions(+), 10 deletions(-) diff --git a/libraries/controllers/ServerVariablesController.php b/libraries/controllers/ServerVariablesController.php index 0984cf907c..7cab06c3ec 100644 --- a/libraries/controllers/ServerVariablesController.php +++ b/libraries/controllers/ServerVariablesController.php @@ -200,9 +200,11 @@ class ServerVariablesController extends Controller ); $this->response->addJSON( 'variable', - $this->_formatVariable( - $_REQUEST['varName'], - $varValue[1] + htmlspecialchars( + $this->_formatVariable( + $_REQUEST['varName'], + $varValue[1] + ) ) ); } else { @@ -236,7 +238,7 @@ class ServerVariablesController extends Controller return Util::formatNumber($value, 0); } } - return htmlspecialchars($value); + return $value; } /** @@ -261,9 +263,7 @@ class ServerVariablesController extends Controller */ private function _getHtmlForServerVariables($serverVars, $serverVarsSession) { // filter - $filterValue = ! empty($_REQUEST['filter']) - ? htmlspecialchars($_REQUEST['filter']) - : ''; + $filterValue = ! empty($_REQUEST['filter']) ? $_REQUEST['filter'] : ''; $output = Template::get('server/variables/variable_filter') ->render(array('filterValue' => $filterValue)); diff --git a/templates/server/variables/session_variable_row.phtml b/templates/server/variables/session_variable_row.phtml index 4422995d25..e9c05e4fed 100644 --- a/templates/server/variables/session_variable_row.phtml +++ b/templates/server/variables/session_variable_row.phtml @@ -1,5 +1,5 @@ ( ) -   +   \ No newline at end of file diff --git a/templates/server/variables/variable_filter.phtml b/templates/server/variables/variable_filter.phtml index 744c4bf2f3..392f2a9cf9 100644 --- a/templates/server/variables/variable_filter.phtml +++ b/templates/server/variables/variable_filter.phtml @@ -3,6 +3,7 @@
+ style="vertical-align: baseline;" + value="" />
\ No newline at end of file diff --git a/templates/server/variables/variable_row.phtml b/templates/server/variables/variable_row.phtml index eee788f96c..e4bafd74ea 100644 --- a/templates/server/variables/variable_row.phtml +++ b/templates/server/variables/variable_row.phtml @@ -21,5 +21,5 @@ -   +   \ No newline at end of file From 8c1ed92460c09eb65d1a87b334a8e3f0c8c663ac Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Wed, 18 Nov 2015 10:49:32 +1100 Subject: [PATCH 069/100] Move to a sub package for better organization Signed-off-by: Madhura Jayaratne --- .../ServerVariablesController.php | 9 +++---- server_variables.php | 6 ++--- .../ServerVariablesControllerTest.php | 24 +++++++++---------- 3 files changed, 20 insertions(+), 19 deletions(-) rename libraries/controllers/{ => server}/ServerVariablesController.php (99%) diff --git a/libraries/controllers/ServerVariablesController.php b/libraries/controllers/server/ServerVariablesController.php similarity index 99% rename from libraries/controllers/ServerVariablesController.php rename to libraries/controllers/server/ServerVariablesController.php index 7cab06c3ec..6ea2a7325d 100644 --- a/libraries/controllers/ServerVariablesController.php +++ b/libraries/controllers/server/ServerVariablesController.php @@ -2,13 +2,14 @@ /* vim: set expandtab sw=4 ts=4 sts=4: */ /** - * Holds the PMA\libraries\controllers\ServerVariablesController + * Holds the PMA\libraries\controllers\server\ServerVariablesController * - * @package PMA\libraries\controllers + * @package PMA\libraries\controllers\server */ -namespace PMA\libraries\controllers; +namespace PMA\libraries\controllers\server; +use PMA\libraries\controllers\Controller; use PMA\libraries\Message; use PMA\libraries\Template; use PMA\libraries\Util; @@ -16,7 +17,7 @@ use PMA\libraries\Util; /** * Handles viewing and editing server variables * - * @package PMA\libraries\controllers + * @package PMA\libraries\controllers\server */ class ServerVariablesController extends Controller { diff --git a/server_variables.php b/server_variables.php index ee4602af58..a5c35ff605 100644 --- a/server_variables.php +++ b/server_variables.php @@ -9,18 +9,18 @@ namespace PMA; -use PMA\libraries\controllers\ServerVariablesController; +use PMA\libraries\controllers\server\ServerVariablesController; use PMA\libraries\Response; require_once 'libraries/common.inc.php'; $container = libraries\di\Container::getDefaultContainer(); $container->factory( - 'PMA\libraries\controllers\ServerVariablesController' + 'PMA\libraries\controllers\server\ServerVariablesController' ); $container->alias( 'ServerVariablesController', - 'PMA\libraries\controllers\ServerVariablesController' + 'PMA\libraries\controllers\server\ServerVariablesController' ); $container->set('PMA\libraries\Response', Response::getInstance()); $container->alias('response', 'PMA\libraries\Response'); diff --git a/test/classes/controllers/ServerVariablesControllerTest.php b/test/classes/controllers/ServerVariablesControllerTest.php index a49e2ac10d..0c70f0dd9a 100644 --- a/test/classes/controllers/ServerVariablesControllerTest.php +++ b/test/classes/controllers/ServerVariablesControllerTest.php @@ -119,14 +119,14 @@ class ServerVariablesControllerTest extends PHPUnit_Framework_TestCase */ public function testFormatVariable() { - $class = new ReflectionClass('\PMA\libraries\controllers\ServerVariablesController'); + $class = new ReflectionClass('\PMA\libraries\controllers\server\ServerVariablesController'); $method = $class->getMethod('_formatVariable'); $method->setAccessible(true); $container = Container::getDefaultContainer(); - $container->factory('PMA\libraries\controllers\ServerVariablesController'); + $container->factory('PMA\libraries\controllers\server\ServerVariablesController'); $container->alias( - 'ServerVariablesController', 'PMA\libraries\controllers\ServerVariablesController' + 'ServerVariablesController', 'PMA\libraries\controllers\server\ServerVariablesController' ); $ctrl = $container->get('ServerVariablesController'); @@ -161,14 +161,14 @@ class ServerVariablesControllerTest extends PHPUnit_Framework_TestCase */ public function testGetHtmlForLinkTemplates() { - $class = new ReflectionClass('\PMA\libraries\controllers\ServerVariablesController'); + $class = new ReflectionClass('\PMA\libraries\controllers\server\ServerVariablesController'); $method = $class->getMethod('_getHtmlForLinkTemplates'); $method->setAccessible(true); $container = Container::getDefaultContainer(); - $container->factory('PMA\libraries\controllers\ServerVariablesController'); + $container->factory('PMA\libraries\controllers\server\ServerVariablesController'); $container->alias( - 'ServerVariablesController', 'PMA\libraries\controllers\ServerVariablesController' + 'ServerVariablesController', 'PMA\libraries\controllers\server\ServerVariablesController' ); $ctrl = $container->get('ServerVariablesController'); @@ -200,14 +200,14 @@ class ServerVariablesControllerTest extends PHPUnit_Framework_TestCase public function testPMAGetHtmlForServerVariables() { - $class = new ReflectionClass('\PMA\libraries\controllers\ServerVariablesController'); + $class = new ReflectionClass('\PMA\libraries\controllers\server\ServerVariablesController'); $method = $class->getMethod('_getHtmlForLinkTemplates'); $method->setAccessible(true); $container = Container::getDefaultContainer(); - $container->factory('PMA\libraries\controllers\ServerVariablesController'); + $container->factory('PMA\libraries\controllers\server\ServerVariablesController'); $container->alias( - 'ServerVariablesController', 'PMA\libraries\controllers\ServerVariablesController' + 'ServerVariablesController', 'PMA\libraries\controllers\server\ServerVariablesController' ); $ctrl = $container->get('ServerVariablesController'); @@ -254,14 +254,14 @@ class ServerVariablesControllerTest extends PHPUnit_Framework_TestCase */ public function testGetHtmlForServerVariablesItems() { - $class = new ReflectionClass('\PMA\libraries\controllers\ServerVariablesController'); + $class = new ReflectionClass('\PMA\libraries\controllers\server\ServerVariablesController'); $method = $class->getMethod('_getHtmlForServerVariablesItems'); $method->setAccessible(true); $container = Container::getDefaultContainer(); - $container->factory('PMA\libraries\controllers\ServerVariablesController'); + $container->factory('PMA\libraries\controllers\server\ServerVariablesController'); $container->alias( - 'ServerVariablesController', 'PMA\libraries\controllers\ServerVariablesController' + 'ServerVariablesController', 'PMA\libraries\controllers\server\ServerVariablesController' ); $ctrl = $container->get('ServerVariablesController'); From c8eefbeac58f001fd0419a654a137cf190dc19d0 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Wed, 18 Nov 2015 10:56:05 +1100 Subject: [PATCH 070/100] Fix style violations Signed-off-by: Madhura Jayaratne --- .../controllers/server/ServerVariablesController.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libraries/controllers/server/ServerVariablesController.php b/libraries/controllers/server/ServerVariablesController.php index 6ea2a7325d..109e72e4b0 100644 --- a/libraries/controllers/server/ServerVariablesController.php +++ b/libraries/controllers/server/ServerVariablesController.php @@ -220,8 +220,8 @@ class ServerVariablesController extends Controller /** * Format Variable * - * @param string $name variable name - * @param number $value variable value + * @param string $name variable name + * @param number $value variable value * * @return string formatted string */ @@ -257,8 +257,8 @@ class ServerVariablesController extends Controller /** * Prints Html for Server Variables * - * @param Array $serverVars global variables - * @param Array $serverVarsSession session variables + * @param Array $serverVars global variables + * @param Array $serverVarsSession session variables * * @return string */ @@ -286,8 +286,8 @@ class ServerVariablesController extends Controller /** * Prints Html for Server Variables Items * - * @param Array $serverVars global variables - * @param Array $serverVarsSession session variables + * @param Array $serverVars global variables + * @param Array $serverVarsSession session variables * * @return string */ From dff7e8ae7ac3338c3349c19234a4b6da701b0265 Mon Sep 17 00:00:00 2001 From: Giovanni Sora Date: Tue, 17 Nov 2015 23:24:31 +0100 Subject: [PATCH 071/100] Translated using Weblate (Interlingua) Currently translated at 72.3% (2332 of 3222 strings) [CI skip] --- po/ia.po | 46 +++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/po/ia.po b/po/ia.po index 60067f8c4b..88b9667576 100644 --- a/po/ia.po +++ b/po/ia.po @@ -8,10 +8,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-11-17 08:14-0500\n" -"PO-Revision-Date: 2015-11-15 22:07+0000\n" +"PO-Revision-Date: 2015-11-17 23:24+0000\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" @@ -9439,7 +9439,7 @@ msgstr[1] "" #: libraries/navigation/NavigationTree.php:1369 #: libraries/navigation/NavigationTree.php:1406 msgid "Type to filter these, Enter to search all" -msgstr "" +msgstr "Typa pro filtrar istos, pressa Enter pro cercar toto" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -9955,7 +9955,7 @@ msgstr "Optiones de tabella" #: libraries/operations.lib.php:1062 libraries/server_engines.lib.php:51 msgid "Storage Engine" -msgstr "" +msgstr "Motor de immagazinage" #: libraries/operations.lib.php:1087 msgid "Change all column collations" @@ -9991,16 +9991,16 @@ msgstr "Tabella de checksum" #: libraries/operations.lib.php:1443 msgid "Defragment table" -msgstr "" +msgstr "Defragmenta tabella" #: libraries/operations.lib.php:1455 #, php-format msgid "Table %s has been flushed." -msgstr "" +msgstr "Tabella %s ha essite initialisate." #: libraries/operations.lib.php:1461 msgid "Flush the table (FLUSH)" -msgstr "" +msgstr "Initialisa le tabella (FLUSH)" #: libraries/operations.lib.php:1475 #: templates/database/structure/check_all_tables.phtml:22 @@ -10011,7 +10011,7 @@ msgstr "Optimiza tabella" #: libraries/operations.lib.php:1490 #: templates/database/structure/check_all_tables.phtml:23 msgid "Repair table" -msgstr "" +msgstr "Repara tabella" #: libraries/operations.lib.php:1536 #: templates/database/structure/check_all_tables.phtml:14 @@ -10050,12 +10050,12 @@ msgstr "Reconstrue" #: libraries/operations.lib.php:1596 #: templates/table/structure/display_structure.phtml:193 msgid "Repair" -msgstr "" +msgstr "Repara" #: libraries/operations.lib.php:1597 #: templates/table/structure/display_structure.phtml:194 msgid "Truncate" -msgstr "" +msgstr "Trunca" #: libraries/operations.lib.php:1607 msgid "Coalesce" @@ -10063,7 +10063,7 @@ msgstr "Uni" #: libraries/operations.lib.php:1616 msgid "Partition maintenance" -msgstr "" +msgstr "Mantenentia de partition" #: libraries/operations.lib.php:1633 #, php-format @@ -10081,35 +10081,35 @@ msgstr "Verifica le integritate referential:" #: libraries/operations.lib.php:2095 msgid "Can't move table to same one!" -msgstr "" +msgstr "On non pote mover tabella sur se mesme!" #: libraries/operations.lib.php:2097 msgid "Can't copy table to same one!" -msgstr "" +msgstr "On non pote copiar tabella sur se mesme!" #: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." -msgstr "" +msgstr "Tabella %s ha essite movite in %s. Privilegios ha essite adaptate." #: libraries/operations.lib.php:2128 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." -msgstr "" +msgstr "Tabella %s ha essite copiate in %s. Privilegios ha essite adaptate." #: libraries/operations.lib.php:2137 #, php-format msgid "Table %s has been moved to %s." -msgstr "" +msgstr "Tabella %s ha essite movite in %s." #: libraries/operations.lib.php:2141 #, php-format msgid "Table %s has been copied to %s." -msgstr "" +msgstr "Tabella %s ha essite copiate in %s." #: libraries/operations.lib.php:2163 msgid "The table name is empty!" -msgstr "" +msgstr "Le nomine de tabella es vacue!" #: libraries/plugin_interface.lib.php:564 msgid "This format has no options" @@ -10599,16 +10599,16 @@ msgid "Metadata" msgstr "Metadatos" #: libraries/plugins/export/ExportSql.php:1063 -#, fuzzy, php-format +#, php-format #| msgid "Metadata for %s" msgid "Metadata for table %s" -msgstr "Metadata pro %s" +msgstr "Metadata pro tabella %s" #: libraries/plugins/export/ExportSql.php:1070 -#, fuzzy, php-format +#, php-format #| msgid "Metadata for %s" msgid "Metadata for database %s" -msgstr "Metadata pro %s" +msgstr "Metadata pro base de datos %s" #: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 From 2fb291bbb0453a4c2d30937589f3e5f8238449ee Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Wed, 18 Nov 2015 12:29:00 +1100 Subject: [PATCH 072/100] Move packages for better organization Signed-off-by: Madhura Jayaratne --- db_structure.php | 6 +++--- .../{ => database}/DatabaseStructureController.php | 5 +++-- .../controllers/DatabaseStructureControllerTest.php | 12 ++++++------ 3 files changed, 12 insertions(+), 11 deletions(-) rename libraries/controllers/{ => database}/DatabaseStructureController.php (99%) diff --git a/db_structure.php b/db_structure.php index f7341b2b18..50f3ef80d9 100644 --- a/db_structure.php +++ b/db_structure.php @@ -8,7 +8,7 @@ namespace PMA; -use PMA\libraries\controllers\DatabaseStructureController; +use PMA\libraries\controllers\database\DatabaseStructureController; use PMA\libraries\Response; use PMA\libraries\Util; @@ -28,10 +28,10 @@ list( ) = Util::getDbInfo($GLOBALS['db'], isset($sub_part) ? $sub_part : ''); $container = libraries\di\Container::getDefaultContainer(); -$container->factory('PMA\libraries\controllers\DatabaseStructureController'); +$container->factory('PMA\libraries\controllers\database\DatabaseStructureController'); $container->alias( 'DatabaseStructureController', - 'PMA\libraries\controllers\DatabaseStructureController' + 'PMA\libraries\controllers\database\DatabaseStructureController' ); $container->set('PMA\libraries\Response', Response::getInstance()); $container->alias('response', 'PMA\libraries\Response'); diff --git a/libraries/controllers/DatabaseStructureController.php b/libraries/controllers/database/DatabaseStructureController.php similarity index 99% rename from libraries/controllers/DatabaseStructureController.php rename to libraries/controllers/database/DatabaseStructureController.php index d5f5f6e6db..ec6fc10ef7 100644 --- a/libraries/controllers/DatabaseStructureController.php +++ b/libraries/controllers/database/DatabaseStructureController.php @@ -2,14 +2,15 @@ /* vim: set expandtab sw=4 ts=4 sts=4: */ /** - * Holds the PMA\DatabaseStructureController + * Holds the PMA\libraries\controllers\database\DatabaseStructureController * * @package PMA */ -namespace PMA\libraries\controllers; +namespace PMA\libraries\controllers\database; use PMA\libraries\config\PageSettings; +use PMA\libraries\controllers\DatabaseController; use PMA\libraries\Message; use PMA\libraries\RecentFavoriteTable; use PMA\libraries\Template; diff --git a/test/classes/controllers/DatabaseStructureControllerTest.php b/test/classes/controllers/DatabaseStructureControllerTest.php index 48f7b76c99..6b5d52a410 100644 --- a/test/classes/controllers/DatabaseStructureControllerTest.php +++ b/test/classes/controllers/DatabaseStructureControllerTest.php @@ -11,7 +11,7 @@ /* * Include to test. */ -use PMA\libraries\controllers\DatabaseStructureController; +use PMA\libraries\controllers\database\DatabaseStructureController; use PMA\libraries\di\Container; use PMA\libraries\Table; use PMA\libraries\Theme; @@ -105,7 +105,7 @@ class DatabaseStructureControllerTest extends PHPUnit_Framework_TestCase $container->set('PMA\libraries\Response', $response); $container->alias('response', 'PMA\libraries\Response'); - $class = new ReflectionClass('PMA\libraries\controllers\DatabaseStructureController'); + $class = new ReflectionClass('PMA\libraries\controllers\database\DatabaseStructureController'); $method = $class->getMethod('getValuesForInnodbTable'); $method->setAccessible(true); // Showing statistics @@ -191,7 +191,7 @@ class DatabaseStructureControllerTest extends PHPUnit_Framework_TestCase */ public function testGetValuesForAriaTable() { - $class = new ReflectionClass('PMA\libraries\controllers\DatabaseStructureController'); + $class = new ReflectionClass('PMA\libraries\controllers\database\DatabaseStructureController'); $method = $class->getMethod('getValuesForAriaTable'); $method->setAccessible(true); @@ -254,7 +254,7 @@ class DatabaseStructureControllerTest extends PHPUnit_Framework_TestCase */ public function testHasTable() { - $class = new ReflectionClass('PMA\libraries\controllers\DatabaseStructureController'); + $class = new ReflectionClass('PMA\libraries\controllers\database\DatabaseStructureController'); $method = $class->getMethod('hasTable'); $method->setAccessible(true); @@ -301,7 +301,7 @@ class DatabaseStructureControllerTest extends PHPUnit_Framework_TestCase */ public function testCheckFavoriteTable() { - $class = new ReflectionClass('PMA\libraries\controllers\DatabaseStructureController'); + $class = new ReflectionClass('PMA\libraries\controllers\database\DatabaseStructureController'); $method = $class->getMethod('checkFavoriteTable'); $method->setAccessible(true); @@ -353,7 +353,7 @@ class DatabaseStructureControllerTest extends PHPUnit_Framework_TestCase ) ); - $class = new ReflectionClass('PMA\libraries\controllers\DatabaseStructureController'); + $class = new ReflectionClass('PMA\libraries\controllers\database\DatabaseStructureController'); $method = $class->getMethod('synchronizeFavoriteTables'); $method->setAccessible(true); From 97e30a81f3c6a3fede606bd33a85cb463519e861 Mon Sep 17 00:00:00 2001 From: Stefano Martinelli Date: Wed, 18 Nov 2015 11:14:08 +0100 Subject: [PATCH 073/100] Translated using Weblate (Italian) Currently translated at 100.0% (3222 of 3222 strings) [CI skip] --- po/it.po | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/po/it.po b/po/it.po index 989daecb68..4e4503fac7 100644 --- a/po/it.po +++ b/po/it.po @@ -4,10 +4,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-11-17 08:14-0500\n" -"PO-Revision-Date: 2015-11-14 09:24+0000\n" +"PO-Revision-Date: 2015-11-18 11:14+0000\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" @@ -10616,16 +10616,16 @@ msgid "Metadata" msgstr "Metadati" #: libraries/plugins/export/ExportSql.php:1063 -#, fuzzy, php-format +#, php-format #| msgid "Metadata for %s" msgid "Metadata for table %s" -msgstr "Metadati per %s" +msgstr "Metadati per tabella %s" #: libraries/plugins/export/ExportSql.php:1070 -#, fuzzy, php-format +#, php-format #| msgid "Metadata for %s" msgid "Metadata for database %s" -msgstr "Metadati per %s" +msgstr "Metadati per database %s" #: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 From 575e1dd01b7f7e8e7b4d9a89090ef14a7a6f95ad Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 18 Nov 2015 12:40:59 +0100 Subject: [PATCH 074/100] Translated using Weblate (French) Currently translated at 100.0% (3222 of 3222 strings) [CI skip] --- po/fr.po | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/po/fr.po b/po/fr.po index bf0795c41d..a7743a92e4 100644 --- a/po/fr.po +++ b/po/fr.po @@ -4,10 +4,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-11-17 08:14-0500\n" -"PO-Revision-Date: 2015-11-14 12:14+0000\n" +"PO-Revision-Date: 2015-11-18 12:41+0000\n" "Last-Translator: Marc Delisle \n" -"Language-Team: French \n" +"Language-Team: French " +"\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -10607,16 +10607,16 @@ msgid "Metadata" msgstr "Métadonnées" #: libraries/plugins/export/ExportSql.php:1063 -#, fuzzy, php-format +#, php-format #| msgid "Metadata for %s" msgid "Metadata for table %s" -msgstr "Métadonnées pour %s" +msgstr "Métadonnées pour la table %s" #: libraries/plugins/export/ExportSql.php:1070 -#, fuzzy, php-format +#, php-format #| msgid "Metadata for %s" msgid "Metadata for database %s" -msgstr "Métadonnées pour %s" +msgstr "Métadonnées pour la base de données %s" #: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 From f11b49c3c718709f61b8c77289716f03dd4fdce5 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 18 Nov 2015 06:46:25 -0500 Subject: [PATCH 075/100] Fix message Signed-off-by: Marc Delisle --- libraries/DisplayResults.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/DisplayResults.php b/libraries/DisplayResults.php index ffc712f103..a7f80c1821 100644 --- a/libraries/DisplayResults.php +++ b/libraries/DisplayResults.php @@ -4999,7 +4999,7 @@ class DisplayResults $html = Util::linkOrButton( '#', Util::getIcon( - 'b_insrow.png', __('Copy to clip board'), true + 'b_insrow.png', __('Copy to clipboard'), true ), array('id' => 'copyToClipBoard'), true, From 122270f06463eb2ec7d22ca2e9d5075f39b99a32 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 18 Nov 2015 06:46:48 -0500 Subject: [PATCH 076/100] ChangeLog entry Signed-off-by: Marc Delisle --- ChangeLog | 1 + 1 file changed, 1 insertion(+) diff --git a/ChangeLog b/ChangeLog index 36dae52482..5ae338808b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -15,6 +15,7 @@ phpMyAdmin - ChangeLog + issue #11641 Ability to disable the navigationhiding Feature - issue #11647 Restrict configuration NavigationTreeDbSeparator to strings - issue #11667 Disable the tooltip in the navigation panel's filter box ++ issue Copy results to clipboard 4.5.3.0 (not yet released) - issue #11664 Online syntax verifier bug - "IF" on SELECT statement From 9c7f4bc6021f7b8282c4f5c1945fa7e688a7866b Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 18 Nov 2015 06:47:19 -0500 Subject: [PATCH 077/100] Update po files [CI skip] Signed-off-by: Marc Delisle --- po/af.po | 104 +++++++++++++++++++++------------------- po/ar.po | 106 +++++++++++++++++++++-------------------- po/az.po | 108 ++++++++++++++++++++++-------------------- po/be.po | 106 +++++++++++++++++++++-------------------- po/be@latin.po | 106 +++++++++++++++++++++-------------------- po/bg.po | 106 +++++++++++++++++++++-------------------- po/bn.po | 106 +++++++++++++++++++++-------------------- po/br.po | 104 +++++++++++++++++++++------------------- po/brx.po | 104 +++++++++++++++++++++------------------- po/bs.po | 106 +++++++++++++++++++++-------------------- po/ca.po | 106 +++++++++++++++++++++-------------------- po/ckb.po | 104 +++++++++++++++++++++------------------- po/cs.po | 106 +++++++++++++++++++++-------------------- po/cy.po | 104 +++++++++++++++++++++------------------- po/da.po | 106 +++++++++++++++++++++-------------------- po/de.po | 108 ++++++++++++++++++++++-------------------- po/el.po | 110 ++++++++++++++++++++++-------------------- po/en_GB.po | 106 +++++++++++++++++++++-------------------- po/eo.po | 104 +++++++++++++++++++++------------------- po/es.po | 108 ++++++++++++++++++++++-------------------- po/et.po | 110 +++++++++++++++++++++--------------------- po/eu.po | 106 +++++++++++++++++++++-------------------- po/fa.po | 104 +++++++++++++++++++++------------------- po/fi.po | 106 +++++++++++++++++++++-------------------- po/fr.po | 114 +++++++++++++++++++++++--------------------- po/fy.po | 104 +++++++++++++++++++++------------------- po/gl.po | 106 +++++++++++++++++++++-------------------- po/he.po | 106 +++++++++++++++++++++-------------------- po/hi.po | 106 +++++++++++++++++++++-------------------- po/hr.po | 106 +++++++++++++++++++++-------------------- po/hu.po | 106 +++++++++++++++++++++-------------------- po/hy.po | 108 ++++++++++++++++++++++-------------------- po/ia.po | 110 +++++++++++++++++++++--------------------- po/id.po | 104 +++++++++++++++++++++------------------- po/it.po | 114 +++++++++++++++++++++++--------------------- po/ja.po | 106 +++++++++++++++++++++-------------------- po/ka.po | 106 +++++++++++++++++++++-------------------- po/kk.po | 104 +++++++++++++++++++++------------------- po/km.po | 104 +++++++++++++++++++++------------------- po/kn.po | 104 +++++++++++++++++++++------------------- po/ko.po | 106 +++++++++++++++++++++-------------------- po/ksh.po | 104 +++++++++++++++++++++------------------- po/ky.po | 104 +++++++++++++++++++++------------------- po/li.po | 104 +++++++++++++++++++++------------------- po/lt.po | 106 +++++++++++++++++++++-------------------- po/lv.po | 106 +++++++++++++++++++++-------------------- po/mk.po | 106 +++++++++++++++++++++-------------------- po/ml.po | 104 +++++++++++++++++++++------------------- po/mn.po | 106 +++++++++++++++++++++-------------------- po/ms.po | 106 +++++++++++++++++++++-------------------- po/nb.po | 106 +++++++++++++++++++++-------------------- po/ne.po | 104 +++++++++++++++++++++------------------- po/nl.po | 106 +++++++++++++++++++++-------------------- po/pa.po | 104 +++++++++++++++++++++------------------- po/phpmyadmin.pot | 104 +++++++++++++++++++++------------------- po/pl.po | 106 +++++++++++++++++++++-------------------- po/pt.po | 106 +++++++++++++++++++++-------------------- po/pt_BR.po | 106 +++++++++++++++++++++-------------------- po/ro.po | 106 +++++++++++++++++++++-------------------- po/ru.po | 106 +++++++++++++++++++++-------------------- po/si.po | 106 +++++++++++++++++++++-------------------- po/sk.po | 106 +++++++++++++++++++++-------------------- po/sl.po | 118 ++++++++++++++++++++++++---------------------- po/sq.po | 108 ++++++++++++++++++++++-------------------- po/sr.po | 106 +++++++++++++++++++++-------------------- po/sr@latin.po | 106 +++++++++++++++++++++-------------------- po/sv.po | 108 ++++++++++++++++++++++-------------------- po/ta.po | 106 +++++++++++++++++++++-------------------- po/te.po | 104 +++++++++++++++++++++------------------- po/th.po | 106 +++++++++++++++++++++-------------------- po/tk.po | 104 +++++++++++++++++++++------------------- po/tr.po | 112 ++++++++++++++++++++++--------------------- po/tt.po | 106 +++++++++++++++++++++-------------------- po/ug.po | 104 +++++++++++++++++++++------------------- po/uk.po | 106 +++++++++++++++++++++-------------------- po/ur.po | 104 +++++++++++++++++++++------------------- po/uz.po | 106 +++++++++++++++++++++-------------------- po/uz@latin.po | 106 +++++++++++++++++++++-------------------- po/vi.po | 104 +++++++++++++++++++++------------------- po/vls.po | 104 +++++++++++++++++++++------------------- po/zh_CN.po | 106 +++++++++++++++++++++-------------------- po/zh_TW.po | 104 +++++++++++++++++++++------------------- 82 files changed, 4589 insertions(+), 4109 deletions(-) diff --git a/po/af.po b/po/af.po index 00cbb86177..00be1492a8 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-11-17 08:14-0500\n" +"POT-Creation-Date: 2015-11-18 06:46-0500\n" "PO-Revision-Date: 2015-10-15 11:30+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Afrikaans \n" "Language-Team: Arabic \n" "Language-Team: Azerbaijani \n" "Language-Team: Belarusian \n" "Language-Team: Belarusian (latin) \n" "Language-Team: Bulgarian \n" "Language-Team: Bengali \n" "Language-Team: Breton \n" "Language-Team: Bodo \n" "Language-Team: Bosnian \n" "Language-Team: Catalan \n" "Language-Team: Kurdish Sorani \n" "Language-Team: Czech \n" "Language-Team: Welsh \n" "Language-Team: Danish \n" "Language-Team: German \n" "Language-Team: Greek \n" "Language-Team: English (United Kingdom) \n" "Language-Team: Esperanto \n" "Language-Team: Spanish \n" -"Language-Team: Estonian " -"\n" +"Language-Team: Estonian \n" "Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -243,7 +243,7 @@ msgid "View dump (schema) of database" msgstr "Vaata andmebaasi tõmmist (skeemi)" #: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:157 +#: libraries/controllers/database/DatabaseStructureController.php:158 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "Andmebaasist tabeleid ei leitud." @@ -716,7 +716,7 @@ msgstr "Versiooniinfo:" #: libraries/config/FormDisplay.tpl.php:163 #: libraries/display_export.lib.php:579 libraries/engines/Pbxt.php:170 #: libraries/navigation/NavigationHeader.php:196 -#: libraries/server_variables.lib.php:162 +#: templates/server/variables/link_template.phtml:10 msgid "Documentation" msgstr "Dokumentatsioon" @@ -1680,7 +1680,7 @@ msgstr "SQL vormindamine…" msgid "No parameters found!" msgstr "Parameetrid puuduvad!" -#: js/messages.php:347 libraries/server_variables.lib.php:159 +#: js/messages.php:347 #: 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,6 +1688,7 @@ msgstr "Parameetrid puuduvad!" #: templates/database/designer/options_panel.phtml:253 #: templates/database/designer/rename_to_panel.phtml:45 #: templates/database/designer/where_query_panel.phtml:83 +#: templates/server/variables/link_template.phtml:5 msgid "Cancel" msgstr "Katkesta" @@ -1802,7 +1803,7 @@ msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Salvestatud funktsioon peab sisaldama RETURN käsku!" #: js/messages.php:389 libraries/DisplayResults.php:4850 -#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/DisplayResults.php:5133 libraries/Menu.php:347 #: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 #: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 #: libraries/Util.php:4361 libraries/config/messages.inc.php:254 @@ -1859,9 +1860,9 @@ msgstr "Näita päringu kasti" #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:121 -#: libraries/server_variables.lib.php:242 -#: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 +#: libraries/server_user_groups.lib.php:121 setup/frames/index.inc.php:183 +#: templates/server/variables/variable_row.phtml:4 +#: templates/server/variables/variable_row.phtml:7 msgid "Edit" msgstr "Muuda" @@ -2043,9 +2044,10 @@ msgid "No dependencies selected!" msgstr "Ühtegi sõltuvust ei ole valitud!" #: js/messages.php:466 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 -#: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 +#: libraries/insert_edit.lib.php:1466 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 +#: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 @@ -3523,7 +3525,7 @@ msgid "Your SQL query has been executed successfully." msgstr "Sinu SQL päring teostati edukalt." #: libraries/DisplayResults.php:4676 -#: libraries/controllers/DatabaseStructureController.php:767 +#: libraries/controllers/database/DatabaseStructureController.php:768 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3570,25 +3572,29 @@ msgstr "Valitutega:" msgid "Check all" msgstr "Vali kõik" -#: libraries/DisplayResults.php:5002 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 +msgid "Copy to clipboard" +msgstr "" + +#: libraries/DisplayResults.php:5025 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Prindi vaade" -#: libraries/DisplayResults.php:5035 +#: libraries/DisplayResults.php:5058 msgid "Query results operations" msgstr "Päringu tulemuste tegevused" -#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5146 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Näita diagrammi" -#: libraries/DisplayResults.php:5147 +#: libraries/DisplayResults.php:5171 msgid "Visualize GIS data" msgstr "Visualiseeri GIS andmed" -#: libraries/DisplayResults.php:5326 +#: libraries/DisplayResults.php:5350 msgid "Link not found!" msgstr "Linki ei leitud!" @@ -3691,12 +3697,12 @@ msgstr "Indeksid" #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 #: libraries/server_privileges.lib.php:2605 #: libraries/server_privileges.lib.php:3522 -#: libraries/server_user_groups.lib.php:83 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/server_user_groups.lib.php:83 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 #: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 +#: templates/server/variables/variable_table_head.phtml:3 #: templates/table/structure/display_partitions.phtml:34 #: templates/table/structure/table_structure_header.phtml:22 msgid "Action" @@ -7841,33 +7847,42 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "OpenDocument tekst" -#: libraries/controllers/DatabaseStructureController.php:272 +#: libraries/controllers/database/DatabaseStructureController.php:273 msgid "Favorite List is full!" msgstr "Lemmikute nimekiri on täis!" -#: libraries/controllers/DatabaseStructureController.php:558 +#: libraries/controllers/database/DatabaseStructureController.php:559 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Tabel %s on tühjendatud." -#: libraries/controllers/DatabaseStructureController.php:579 +#: libraries/controllers/database/DatabaseStructureController.php:580 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "Vaade %s kustutati." -#: libraries/controllers/DatabaseStructureController.php:580 +#: libraries/controllers/database/DatabaseStructureController.php:581 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "Tabel %s kustutati." -#: libraries/controllers/DatabaseStructureController.php:981 +#: libraries/controllers/database/DatabaseStructureController.php:982 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "tundmatu" +#: libraries/controllers/server/ServerVariablesController.php:107 +#, php-format +msgid "Not enough privilege to view server variables and settings. %s" +msgstr "Puuduvad õigused serveri muutujate ja sätete kuvamiseks. %s" + +#: libraries/controllers/server/ServerVariablesController.php:215 +msgid "Setting variable failed" +msgstr "Muutuja seadmine ebaõnnestus" + #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -10413,13 +10428,11 @@ msgstr "Metaandmed" #: libraries/plugins/export/ExportSql.php:1063 #, php-format -#| msgid "Metadata for %s" msgid "Metadata for table %s" msgstr "Tabeli %s metaandmed" #: libraries/plugins/export/ExportSql.php:1070 #, php-format -#| msgid "Metadata for %s" msgid "Metadata for database %s" msgstr "Andmebaasi %s metaandmed" @@ -11352,7 +11365,7 @@ msgstr "Alluva staatus" #: libraries/replication_gui.lib.php:545 #: libraries/server_status_variables.lib.php:221 -#: libraries/server_variables.lib.php:195 +#: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Muutuja" @@ -12871,7 +12884,7 @@ msgstr "Edenemine" #: libraries/server_status_processes.lib.php:229 #: libraries/server_status_variables.lib.php:41 -#: libraries/server_variables.lib.php:184 +#: templates/server/variables/variable_filter.phtml:2 msgid "Filters" msgstr "Filtrid" @@ -12906,7 +12919,7 @@ msgid "#" msgstr "#" #: libraries/server_status_variables.lib.php:46 -#: libraries/server_variables.lib.php:186 +#: templates/server/variables/variable_filter.phtml:4 msgid "Containing the word:" msgstr "Sisaldab sõna:" @@ -13667,23 +13680,6 @@ msgstr "Andmebaasi tasemete sakid" msgid "Table-level tabs" msgstr "Tabeli tasemete sakid" -#: libraries/server_variables.lib.php:116 -msgid "Setting variable failed" -msgstr "Muutuja seadmine ebaõnnestus" - -#: libraries/server_variables.lib.php:197 -#: libraries/server_variables.lib.php:281 -msgid "Session value" -msgstr "Seansi väärtus" - -#: libraries/server_variables.lib.php:197 -msgid "Global value" -msgstr "Globaalne väärtus" - -#: libraries/server_variables.lib.php:245 -msgid "This is a read-only variable and can not be edited" -msgstr "Selle muutuja väärtus on ainult lugemiseks" - #: libraries/sql-parser/src/Component.php:48 #: libraries/sql-parser/src/Component.php:68 msgid "Not implemented yet." @@ -13737,7 +13733,7 @@ msgstr "Ootamatu punkt." msgid "An alias was expected." msgstr "Oodati aliast." -#: libraries/sql-parser/src/Components/ExpressionArray.php:97 +#: libraries/sql-parser/src/Components/ExpressionArray.php:98 msgid "An expression was expected." msgstr "Oodati avaldist." @@ -14318,11 +14314,6 @@ msgstr "Puuduvad õigused päringute statistika kuvamiseks." msgid "Not enough privilege to view status variables." msgstr "Puuduvad õigused olekumuutujate kuvamiseks." -#: server_variables.php:86 -#, php-format -msgid "Not enough privilege to view server variables and settings. %s" -msgstr "Puuduvad õigused serveri muutujate ja sätete kuvamiseks. %s" - #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:280 msgid "Download" msgstr "Laadi alla" @@ -15077,6 +15068,19 @@ msgstr "Lisa õigusi järgnevas tabelis:" msgid "Column-specific privileges" msgstr "Veerupõhised õigused" +#: templates/server/variables/session_variable_row.phtml:3 +#: templates/server/variables/variable_table_head.phtml:5 +msgid "Session value" +msgstr "Seansi väärtus" + +#: templates/server/variables/variable_row.phtml:6 +msgid "This is a read-only variable and can not be edited" +msgstr "Selle muutuja väärtus on ainult lugemiseks" + +#: templates/server/variables/variable_table_head.phtml:5 +msgid "Global value" +msgstr "Globaalne väärtus" + #: templates/startAndNumberOfRowsPanel.phtml:3 msgid "Start row:" msgstr "Alusta reaga:" diff --git a/po/eu.po b/po/eu.po index c7056a5cf9..206151bdbd 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-11-17 08:14-0500\n" +"POT-Creation-Date: 2015-11-18 06:46-0500\n" "PO-Revision-Date: 2015-10-15 11:26+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Basque \n" "Language-Team: Persian \n" "Language-Team: Finnish \n" -"Language-Team: French " -"\n" +"Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -240,7 +240,7 @@ msgid "View dump (schema) of database" msgstr "Voir une exportation (schéma) de la base de données" #: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:157 +#: libraries/controllers/database/DatabaseStructureController.php:158 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "Aucune table n'a été trouvée dans cette base." @@ -724,7 +724,7 @@ msgstr "Version : " #: libraries/config/FormDisplay.tpl.php:163 #: libraries/display_export.lib.php:579 libraries/engines/Pbxt.php:170 #: libraries/navigation/NavigationHeader.php:196 -#: libraries/server_variables.lib.php:162 +#: templates/server/variables/link_template.phtml:10 msgid "Documentation" msgstr "Documentation" @@ -1702,7 +1702,7 @@ msgstr "Formatage SQL…" msgid "No parameters found!" msgstr "Paramètres manquants !" -#: js/messages.php:347 libraries/server_variables.lib.php:159 +#: js/messages.php:347 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1710,6 +1710,7 @@ msgstr "Paramètres manquants !" #: templates/database/designer/options_panel.phtml:253 #: templates/database/designer/rename_to_panel.phtml:45 #: templates/database/designer/where_query_panel.phtml:83 +#: templates/server/variables/link_template.phtml:5 msgid "Cancel" msgstr "Annuler" @@ -1824,7 +1825,7 @@ 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:389 libraries/DisplayResults.php:4850 -#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/DisplayResults.php:5133 libraries/Menu.php:347 #: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 #: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 #: libraries/Util.php:4361 libraries/config/messages.inc.php:254 @@ -1882,9 +1883,9 @@ msgstr "Montrer zone SQL" #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:121 -#: libraries/server_variables.lib.php:242 -#: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 +#: libraries/server_user_groups.lib.php:121 setup/frames/index.inc.php:183 +#: templates/server/variables/variable_row.phtml:4 +#: templates/server/variables/variable_row.phtml:7 msgid "Edit" msgstr "Modifier" @@ -2067,9 +2068,10 @@ msgid "No dependencies selected!" msgstr "Aucune dépendance sélectionnée !" #: js/messages.php:466 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 -#: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 +#: libraries/insert_edit.lib.php:1466 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 +#: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 @@ -3569,7 +3571,7 @@ msgid "Your SQL query has been executed successfully." msgstr "Votre requête SQL a été exécutée avec succès." #: libraries/DisplayResults.php:4676 -#: libraries/controllers/DatabaseStructureController.php:767 +#: libraries/controllers/database/DatabaseStructureController.php:768 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3617,25 +3619,29 @@ msgstr "Pour la sélection : " msgid "Check all" msgstr "Tout cocher" -#: libraries/DisplayResults.php:5002 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 +msgid "Copy to clipboard" +msgstr "" + +#: libraries/DisplayResults.php:5025 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Version imprimable" -#: libraries/DisplayResults.php:5035 +#: libraries/DisplayResults.php:5058 msgid "Query results operations" msgstr "Opérations sur les résultats de la requête" -#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5146 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Afficher le graphique" -#: libraries/DisplayResults.php:5147 +#: libraries/DisplayResults.php:5171 msgid "Visualize GIS data" msgstr "Visualiser les données GIS" -#: libraries/DisplayResults.php:5326 +#: libraries/DisplayResults.php:5350 msgid "Link not found!" msgstr "Lien absent !" @@ -3743,12 +3749,12 @@ msgstr "Index" #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 #: libraries/server_privileges.lib.php:2605 #: libraries/server_privileges.lib.php:3522 -#: libraries/server_user_groups.lib.php:83 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/server_user_groups.lib.php:83 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 #: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 +#: templates/server/variables/variable_table_head.phtml:3 #: templates/table/structure/display_partitions.phtml:34 #: templates/table/structure/table_structure_header.phtml:22 msgid "Action" @@ -7989,33 +7995,44 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Texte OpenDocument" -#: libraries/controllers/DatabaseStructureController.php:272 +#: libraries/controllers/database/DatabaseStructureController.php:273 msgid "Favorite List is full!" msgstr "La liste des tables favorites est pleine !" -#: libraries/controllers/DatabaseStructureController.php:558 +#: libraries/controllers/database/DatabaseStructureController.php:559 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "La table %s a été vidée." -#: libraries/controllers/DatabaseStructureController.php:579 +#: libraries/controllers/database/DatabaseStructureController.php:580 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "La vue %s a été supprimée." -#: libraries/controllers/DatabaseStructureController.php:580 +#: libraries/controllers/database/DatabaseStructureController.php:581 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "La table %s a été effacée." -#: libraries/controllers/DatabaseStructureController.php:981 +#: libraries/controllers/database/DatabaseStructureController.php:982 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "inconnu" +#: libraries/controllers/server/ServerVariablesController.php:107 +#, php-format +msgid "Not enough privilege to view server variables and settings. %s" +msgstr "" +"Privilèges insuffisants pour visualiser les variables d'état et les " +"paramètres. %s" + +#: libraries/controllers/server/ServerVariablesController.php:215 +msgid "Setting variable failed" +msgstr "Échec de mise à jour de la variable" + #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -10608,13 +10625,11 @@ msgstr "Métadonnées" #: libraries/plugins/export/ExportSql.php:1063 #, php-format -#| msgid "Metadata for %s" msgid "Metadata for table %s" msgstr "Métadonnées pour la table %s" #: libraries/plugins/export/ExportSql.php:1070 #, php-format -#| msgid "Metadata for %s" msgid "Metadata for database %s" msgstr "Métadonnées pour la base de données %s" @@ -11571,7 +11586,7 @@ msgstr "État de l'esclave" #: libraries/replication_gui.lib.php:545 #: libraries/server_status_variables.lib.php:221 -#: libraries/server_variables.lib.php:195 +#: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Variable" @@ -13124,7 +13139,7 @@ msgstr "Progression" #: libraries/server_status_processes.lib.php:229 #: libraries/server_status_variables.lib.php:41 -#: libraries/server_variables.lib.php:184 +#: templates/server/variables/variable_filter.phtml:2 msgid "Filters" msgstr "Filtres" @@ -13159,7 +13174,7 @@ msgid "#" msgstr "#" #: libraries/server_status_variables.lib.php:46 -#: libraries/server_variables.lib.php:186 +#: templates/server/variables/variable_filter.phtml:4 msgid "Containing the word:" msgstr "Contenant le mot : " @@ -13938,23 +13953,6 @@ msgstr "Onglets de niveau base de données" msgid "Table-level tabs" msgstr "Onglets de niveau table" -#: libraries/server_variables.lib.php:116 -msgid "Setting variable failed" -msgstr "Échec de mise à jour de la variable" - -#: libraries/server_variables.lib.php:197 -#: libraries/server_variables.lib.php:281 -msgid "Session value" -msgstr "Valeur pour la session" - -#: libraries/server_variables.lib.php:197 -msgid "Global value" -msgstr "Valeur globale" - -#: libraries/server_variables.lib.php:245 -msgid "This is a read-only variable and can not be edited" -msgstr "Ceci est une variable en lecture seule qui ne peut pas être modifiée" - #: libraries/sql-parser/src/Component.php:48 #: libraries/sql-parser/src/Component.php:68 msgid "Not implemented yet." @@ -14008,7 +14006,7 @@ msgstr "Point inattendu." msgid "An alias was expected." msgstr "Un alias était attendu." -#: libraries/sql-parser/src/Components/ExpressionArray.php:97 +#: libraries/sql-parser/src/Components/ExpressionArray.php:98 msgid "An expression was expected." msgstr "Une expression était attendue." @@ -14599,13 +14597,6 @@ msgstr "Privilèges insuffisants pour visualiser les statistiques de requêtes." msgid "Not enough privilege to view status variables." msgstr "Privilèges insuffisants pour visualiser les variables d'état." -#: server_variables.php:86 -#, php-format -msgid "Not enough privilege to view server variables and settings. %s" -msgstr "" -"Privilèges insuffisants pour visualiser les variables d'état et les " -"paramètres. %s" - #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:280 msgid "Download" msgstr "Télécharger" @@ -15357,6 +15348,19 @@ msgstr "Ajouter des privilèges sur cette table : " msgid "Column-specific privileges" msgstr "Privilèges de colonnes" +#: templates/server/variables/session_variable_row.phtml:3 +#: templates/server/variables/variable_table_head.phtml:5 +msgid "Session value" +msgstr "Valeur pour la session" + +#: templates/server/variables/variable_row.phtml:6 +msgid "This is a read-only variable and can not be edited" +msgstr "Ceci est une variable en lecture seule qui ne peut pas être modifiée" + +#: templates/server/variables/variable_table_head.phtml:5 +msgid "Global value" +msgstr "Valeur globale" + #: templates/startAndNumberOfRowsPanel.phtml:3 msgid "Start row:" msgstr "Ligne de départ : " diff --git a/po/fy.po b/po/fy.po index 986e4d72d0..8cfee2ed22 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-11-17 08:14-0500\n" +"POT-Creation-Date: 2015-11-18 06:46-0500\n" "PO-Revision-Date: 2015-04-15 22:05+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Frisian \n" "Language-Team: Galician \n" "Language-Team: Hebrew \n" "Language-Team: Hindi \n" "Language-Team: Croatian \n" "Language-Team: Hungarian \n" "Language-Team: Armenian \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" @@ -243,7 +243,7 @@ msgid "View dump (schema) of database" msgstr "Vide dump (schema) del base de datos" #: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:157 +#: libraries/controllers/database/DatabaseStructureController.php:158 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "Il non ha tabulas in le base de datos." @@ -726,7 +726,7 @@ msgstr "Information de version:" #: libraries/config/FormDisplay.tpl.php:163 #: libraries/display_export.lib.php:579 libraries/engines/Pbxt.php:170 #: libraries/navigation/NavigationHeader.php:196 -#: libraries/server_variables.lib.php:162 +#: templates/server/variables/link_template.phtml:10 msgid "Documentation" msgstr "Documentation" @@ -1704,7 +1704,7 @@ msgstr "Formatante SQL…" msgid "No parameters found!" msgstr "Il non trovava aucun parametros!" -#: js/messages.php:347 libraries/server_variables.lib.php:159 +#: js/messages.php:347 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1712,6 +1712,7 @@ msgstr "Il non trovava aucun parametros!" #: templates/database/designer/options_panel.phtml:253 #: templates/database/designer/rename_to_panel.phtml:45 #: templates/database/designer/where_query_panel.phtml:83 +#: templates/server/variables/link_template.phtml:5 msgid "Cancel" msgstr "Cancella" @@ -1828,7 +1829,7 @@ msgstr "" "RETURN!" #: js/messages.php:389 libraries/DisplayResults.php:4850 -#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/DisplayResults.php:5133 libraries/Menu.php:347 #: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 #: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 #: libraries/Util.php:4361 libraries/config/messages.inc.php:254 @@ -1887,9 +1888,9 @@ msgstr "Monstra quadro de query" #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:121 -#: libraries/server_variables.lib.php:242 -#: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 +#: libraries/server_user_groups.lib.php:121 setup/frames/index.inc.php:183 +#: templates/server/variables/variable_row.phtml:4 +#: templates/server/variables/variable_row.phtml:7 msgid "Edit" msgstr "Modifica" @@ -2071,9 +2072,10 @@ msgid "No dependencies selected!" msgstr "Necun dependentias seligite!" #: js/messages.php:466 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 -#: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 +#: libraries/insert_edit.lib.php:1466 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 +#: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 @@ -3581,7 +3583,7 @@ msgid "Your SQL query has been executed successfully." msgstr "Le demanda (query) SQL ha essite executate con successo." #: libraries/DisplayResults.php:4676 -#: libraries/controllers/DatabaseStructureController.php:767 +#: libraries/controllers/database/DatabaseStructureController.php:768 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3629,25 +3631,29 @@ msgstr "Si seligite:" msgid "Check all" msgstr "Marca omnes" -#: libraries/DisplayResults.php:5002 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 +msgid "Copy to clipboard" +msgstr "" + +#: libraries/DisplayResults.php:5025 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Vista pro imprimer" -#: libraries/DisplayResults.php:5035 +#: libraries/DisplayResults.php:5058 msgid "Query results operations" msgstr "Operationes super exitos de query" -#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5146 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Monstra graphico" -#: libraries/DisplayResults.php:5147 +#: libraries/DisplayResults.php:5171 msgid "Visualize GIS data" msgstr "Monstra datos de GIS" -#: libraries/DisplayResults.php:5326 +#: libraries/DisplayResults.php:5350 msgid "Link not found!" msgstr "Ligamine non trovate!" @@ -3752,12 +3758,12 @@ msgstr "Indices" #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 #: libraries/server_privileges.lib.php:2605 #: libraries/server_privileges.lib.php:3522 -#: libraries/server_user_groups.lib.php:83 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/server_user_groups.lib.php:83 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 #: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 +#: templates/server/variables/variable_table_head.phtml:3 #: templates/table/structure/display_partitions.phtml:34 #: templates/table/structure/table_structure_header.phtml:22 msgid "Action" @@ -8008,33 +8014,42 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Texto OpenDocument" -#: libraries/controllers/DatabaseStructureController.php:272 +#: libraries/controllers/database/DatabaseStructureController.php:273 msgid "Favorite List is full!" msgstr "Lista de favoritos es complete!" -#: libraries/controllers/DatabaseStructureController.php:558 +#: libraries/controllers/database/DatabaseStructureController.php:559 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Tabella %s ha essite vacuate." -#: libraries/controllers/DatabaseStructureController.php:579 +#: libraries/controllers/database/DatabaseStructureController.php:580 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "Vista %s ha essite delite." -#: libraries/controllers/DatabaseStructureController.php:580 +#: libraries/controllers/database/DatabaseStructureController.php:581 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "Tabella %s ha essite delite." -#: libraries/controllers/DatabaseStructureController.php:981 +#: libraries/controllers/database/DatabaseStructureController.php:982 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "incognite" +#: libraries/controllers/server/ServerVariablesController.php:107 +#, php-format +msgid "Not enough privilege to view server variables and settings. %s" +msgstr "" + +#: libraries/controllers/server/ServerVariablesController.php:215 +msgid "Setting variable failed" +msgstr "" + #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -10600,13 +10615,11 @@ msgstr "Metadatos" #: libraries/plugins/export/ExportSql.php:1063 #, php-format -#| msgid "Metadata for %s" msgid "Metadata for table %s" msgstr "Metadata pro tabella %s" #: libraries/plugins/export/ExportSql.php:1070 #, php-format -#| msgid "Metadata for %s" msgid "Metadata for database %s" msgstr "Metadata pro base de datos %s" @@ -11462,7 +11475,7 @@ msgstr "" #: libraries/replication_gui.lib.php:545 #: libraries/server_status_variables.lib.php:221 -#: libraries/server_variables.lib.php:195 +#: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Variabile" @@ -12906,7 +12919,7 @@ msgstr "" #: libraries/server_status_processes.lib.php:229 #: libraries/server_status_variables.lib.php:41 -#: libraries/server_variables.lib.php:184 +#: templates/server/variables/variable_filter.phtml:2 msgid "Filters" msgstr "Filtros" @@ -12941,7 +12954,7 @@ msgid "#" msgstr "" #: libraries/server_status_variables.lib.php:46 -#: libraries/server_variables.lib.php:186 +#: templates/server/variables/variable_filter.phtml:4 msgid "Containing the word:" msgstr "" @@ -13589,23 +13602,6 @@ msgstr "Schedas de nivello de base de datos" msgid "Table-level tabs" msgstr "Schedas de nivello de tabula" -#: libraries/server_variables.lib.php:116 -msgid "Setting variable failed" -msgstr "" - -#: libraries/server_variables.lib.php:197 -#: libraries/server_variables.lib.php:281 -msgid "Session value" -msgstr "" - -#: libraries/server_variables.lib.php:197 -msgid "Global value" -msgstr "" - -#: libraries/server_variables.lib.php:245 -msgid "This is a read-only variable and can not be edited" -msgstr "" - #: libraries/sql-parser/src/Component.php:48 #: libraries/sql-parser/src/Component.php:68 msgid "Not implemented yet." @@ -13659,7 +13655,7 @@ msgstr "" msgid "An alias was expected." msgstr "On expectava un alias." -#: libraries/sql-parser/src/Components/ExpressionArray.php:97 +#: libraries/sql-parser/src/Components/ExpressionArray.php:98 msgid "An expression was expected." msgstr "On expectava un expression." @@ -14230,11 +14226,6 @@ msgstr "" msgid "Not enough privilege to view status variables." msgstr "" -#: server_variables.php:86 -#, php-format -msgid "Not enough privilege to view server variables and settings. %s" -msgstr "" - #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:280 msgid "Download" msgstr "Discarga" @@ -14959,6 +14950,19 @@ msgstr "" msgid "Column-specific privileges" msgstr "" +#: templates/server/variables/session_variable_row.phtml:3 +#: templates/server/variables/variable_table_head.phtml:5 +msgid "Session value" +msgstr "" + +#: templates/server/variables/variable_row.phtml:6 +msgid "This is a read-only variable and can not be edited" +msgstr "" + +#: templates/server/variables/variable_table_head.phtml:5 +msgid "Global value" +msgstr "" + #: templates/startAndNumberOfRowsPanel.phtml:3 msgid "Start row:" msgstr "Initia rango:" diff --git a/po/id.po b/po/id.po index eb730dd4a1..be948f4602 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-11-17 08:14-0500\n" +"POT-Creation-Date: 2015-11-18 06:46-0500\n" "PO-Revision-Date: 2015-10-15 11:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Indonesian \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" @@ -239,7 +239,7 @@ msgid "View dump (schema) of database" msgstr "Visualizza dump (schema) del database" #: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:157 +#: libraries/controllers/database/DatabaseStructureController.php:158 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "Non ci sono tabelle nel database." @@ -723,7 +723,7 @@ msgstr "Informazioni sulla versione:" #: libraries/config/FormDisplay.tpl.php:163 #: libraries/display_export.lib.php:579 libraries/engines/Pbxt.php:170 #: libraries/navigation/NavigationHeader.php:196 -#: libraries/server_variables.lib.php:162 +#: templates/server/variables/link_template.phtml:10 msgid "Documentation" msgstr "Documentazione" @@ -1702,7 +1702,7 @@ msgstr "Formatto SQL…" msgid "No parameters found!" msgstr "Parametri errati!" -#: js/messages.php:347 libraries/server_variables.lib.php:159 +#: js/messages.php:347 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1710,6 +1710,7 @@ msgstr "Parametri errati!" #: templates/database/designer/options_panel.phtml:253 #: templates/database/designer/rename_to_panel.phtml:45 #: templates/database/designer/where_query_panel.phtml:83 +#: templates/server/variables/link_template.phtml:5 msgid "Cancel" msgstr "Annulla" @@ -1826,7 +1827,7 @@ msgstr "" "RETURN!" #: js/messages.php:389 libraries/DisplayResults.php:4850 -#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/DisplayResults.php:5133 libraries/Menu.php:347 #: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 #: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 #: libraries/Util.php:4361 libraries/config/messages.inc.php:254 @@ -1885,9 +1886,9 @@ msgstr "Mostra riquadro query SQL" #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:121 -#: libraries/server_variables.lib.php:242 -#: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 +#: libraries/server_user_groups.lib.php:121 setup/frames/index.inc.php:183 +#: templates/server/variables/variable_row.phtml:4 +#: templates/server/variables/variable_row.phtml:7 msgid "Edit" msgstr "Modifica" @@ -2068,9 +2069,10 @@ msgid "No dependencies selected!" msgstr "Nessuna dipendenza selezionata!" #: js/messages.php:466 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 -#: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 +#: libraries/insert_edit.lib.php:1466 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 +#: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 @@ -3572,7 +3574,7 @@ msgid "Your SQL query has been executed successfully." msgstr "La query SQL è stata eseguita con successo." #: libraries/DisplayResults.php:4676 -#: libraries/controllers/DatabaseStructureController.php:767 +#: libraries/controllers/database/DatabaseStructureController.php:768 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3620,25 +3622,29 @@ msgstr "Se selezionati:" msgid "Check all" msgstr "Seleziona tutto" -#: libraries/DisplayResults.php:5002 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 +msgid "Copy to clipboard" +msgstr "" + +#: libraries/DisplayResults.php:5025 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Visualizza per stampa" -#: libraries/DisplayResults.php:5035 +#: libraries/DisplayResults.php:5058 msgid "Query results operations" msgstr "Operazioni sui risultati della query" -#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5146 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Mostra diagramma" -#: libraries/DisplayResults.php:5147 +#: libraries/DisplayResults.php:5171 msgid "Visualize GIS data" msgstr "Visualizzare dati GIS" -#: libraries/DisplayResults.php:5326 +#: libraries/DisplayResults.php:5350 msgid "Link not found!" msgstr "Link non trovato!" @@ -3741,12 +3747,12 @@ msgstr "Indici" #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 #: libraries/server_privileges.lib.php:2605 #: libraries/server_privileges.lib.php:3522 -#: libraries/server_user_groups.lib.php:83 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/server_user_groups.lib.php:83 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 #: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 +#: templates/server/variables/variable_table_head.phtml:3 #: templates/table/structure/display_partitions.phtml:34 #: templates/table/structure/table_structure_header.phtml:22 msgid "Action" @@ -8000,33 +8006,44 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Testo OpenDocument" -#: libraries/controllers/DatabaseStructureController.php:272 +#: libraries/controllers/database/DatabaseStructureController.php:273 msgid "Favorite List is full!" msgstr "La lista dei preferiti è piena!" -#: libraries/controllers/DatabaseStructureController.php:558 +#: libraries/controllers/database/DatabaseStructureController.php:559 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "La tabella %s è stata svuotata." -#: libraries/controllers/DatabaseStructureController.php:579 +#: libraries/controllers/database/DatabaseStructureController.php:580 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "La vista %s è stata eliminata." -#: libraries/controllers/DatabaseStructureController.php:580 +#: libraries/controllers/database/DatabaseStructureController.php:581 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "La tabella %s è stata eliminata." -#: libraries/controllers/DatabaseStructureController.php:981 +#: libraries/controllers/database/DatabaseStructureController.php:982 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "sconosciuto" +#: libraries/controllers/server/ServerVariablesController.php:107 +#, php-format +msgid "Not enough privilege to view server variables and settings. %s" +msgstr "" +"Non sei autorizzato a visualizzare le variabili del server e le " +"impostazioni. %s" + +#: libraries/controllers/server/ServerVariablesController.php:215 +msgid "Setting variable failed" +msgstr "L'impostazione della variablile è fallita" + #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -10617,13 +10634,11 @@ msgstr "Metadati" #: libraries/plugins/export/ExportSql.php:1063 #, php-format -#| msgid "Metadata for %s" msgid "Metadata for table %s" msgstr "Metadati per tabella %s" #: libraries/plugins/export/ExportSql.php:1070 #, php-format -#| msgid "Metadata for %s" msgid "Metadata for database %s" msgstr "Metadati per database %s" @@ -11578,7 +11593,7 @@ msgstr "Stato slave" #: libraries/replication_gui.lib.php:545 #: libraries/server_status_variables.lib.php:221 -#: libraries/server_variables.lib.php:195 +#: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Variabile" @@ -13133,7 +13148,7 @@ msgstr "Progresso" #: libraries/server_status_processes.lib.php:229 #: libraries/server_status_variables.lib.php:41 -#: libraries/server_variables.lib.php:184 +#: templates/server/variables/variable_filter.phtml:2 msgid "Filters" msgstr "Filtri" @@ -13168,7 +13183,7 @@ msgid "#" msgstr "#" #: libraries/server_status_variables.lib.php:46 -#: libraries/server_variables.lib.php:186 +#: templates/server/variables/variable_filter.phtml:4 msgid "Containing the word:" msgstr "Contenente la parola:" @@ -13957,23 +13972,6 @@ msgstr "Tabulazioni livello database" msgid "Table-level tabs" msgstr "Tabulazioni livello tabella" -#: libraries/server_variables.lib.php:116 -msgid "Setting variable failed" -msgstr "L'impostazione della variablile è fallita" - -#: libraries/server_variables.lib.php:197 -#: libraries/server_variables.lib.php:281 -msgid "Session value" -msgstr "Valore sessione" - -#: libraries/server_variables.lib.php:197 -msgid "Global value" -msgstr "Valore globale" - -#: libraries/server_variables.lib.php:245 -msgid "This is a read-only variable and can not be edited" -msgstr "Questa è una variabile a sola lettura e non può essere modificata" - #: libraries/sql-parser/src/Component.php:48 #: libraries/sql-parser/src/Component.php:68 msgid "Not implemented yet." @@ -14027,7 +14025,7 @@ msgstr "Segno di punteggiatura \"punto\" inatteso." msgid "An alias was expected." msgstr "Era atteso un alias." -#: libraries/sql-parser/src/Components/ExpressionArray.php:97 +#: libraries/sql-parser/src/Components/ExpressionArray.php:98 msgid "An expression was expected." msgstr "Era attesa un'espressione." @@ -14613,13 +14611,6 @@ msgstr "Non sei autorizzato a visualizzare le statistiche di query." msgid "Not enough privilege to view status variables." msgstr "Non sei autorizzato a visualizzare le variabili di stato." -#: server_variables.php:86 -#, php-format -msgid "Not enough privilege to view server variables and settings. %s" -msgstr "" -"Non sei autorizzato a visualizzare le variabili del server e le " -"impostazioni. %s" - #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:280 msgid "Download" msgstr "Scarica" @@ -15376,6 +15367,19 @@ msgstr "Aggiungi privilegi sulla seguente tabella:" msgid "Column-specific privileges" msgstr "Privilegi relativi ai campi" +#: templates/server/variables/session_variable_row.phtml:3 +#: templates/server/variables/variable_table_head.phtml:5 +msgid "Session value" +msgstr "Valore sessione" + +#: templates/server/variables/variable_row.phtml:6 +msgid "This is a read-only variable and can not be edited" +msgstr "Questa è una variabile a sola lettura e non può essere modificata" + +#: templates/server/variables/variable_table_head.phtml:5 +msgid "Global value" +msgstr "Valore globale" + #: templates/startAndNumberOfRowsPanel.phtml:3 msgid "Start row:" msgstr "Riga iniziale:" diff --git a/po/ja.po b/po/ja.po index 288f545b8b..f86909fa57 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-11-17 08:14-0500\n" +"POT-Creation-Date: 2015-11-18 06:46-0500\n" "PO-Revision-Date: 2015-10-18 20:27+0200\n" "Last-Translator: Eshin Kunishima \n" "Language-Team: Japanese \n" "Language-Team: Georgian \n" "Language-Team: Kazakh \n" "Language-Team: Central Khmer \n" "Language-Team: Kannada \n" "Language-Team: Korean \n" "Language-Team: Colognian \n" "Language-Team: Kyrgyz \n" "Language-Team: Lithuanian \n" "Language-Team: Latvian \n" "Language-Team: Macedonian \n" "Language-Team: Malayalam \n" "Language-Team: Mongolian \n" "Language-Team: Malay \n" "Language-Team: Norwegian Bokmål \n" "Language-Team: Nepali \n" "Language-Team: Dutch \n" "Language-Team: Punjabi \n" "Language-Team: LANGUAGE \n" @@ -240,7 +240,7 @@ msgid "View dump (schema) of database" msgstr "" #: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:157 +#: libraries/controllers/database/DatabaseStructureController.php:158 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "" @@ -691,7 +691,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:163 #: libraries/display_export.lib.php:579 libraries/engines/Pbxt.php:170 #: libraries/navigation/NavigationHeader.php:196 -#: libraries/server_variables.lib.php:162 +#: templates/server/variables/link_template.phtml:10 msgid "Documentation" msgstr "" @@ -1588,7 +1588,7 @@ msgstr "" msgid "No parameters found!" msgstr "" -#: js/messages.php:347 libraries/server_variables.lib.php:159 +#: js/messages.php:347 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1596,6 +1596,7 @@ msgstr "" #: templates/database/designer/options_panel.phtml:253 #: templates/database/designer/rename_to_panel.phtml:45 #: templates/database/designer/where_query_panel.phtml:83 +#: templates/server/variables/link_template.phtml:5 msgid "Cancel" msgstr "" @@ -1710,7 +1711,7 @@ msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" #: js/messages.php:389 libraries/DisplayResults.php:4850 -#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/DisplayResults.php:5133 libraries/Menu.php:347 #: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 #: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 #: libraries/Util.php:4361 libraries/config/messages.inc.php:254 @@ -1767,9 +1768,9 @@ msgstr "" #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:121 -#: libraries/server_variables.lib.php:242 -#: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 +#: libraries/server_user_groups.lib.php:121 setup/frames/index.inc.php:183 +#: templates/server/variables/variable_row.phtml:4 +#: templates/server/variables/variable_row.phtml:7 msgid "Edit" msgstr "" @@ -1941,9 +1942,10 @@ msgid "No dependencies selected!" msgstr "" #: js/messages.php:466 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 -#: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 +#: libraries/insert_edit.lib.php:1466 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 +#: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 @@ -3389,7 +3391,7 @@ msgid "Your SQL query has been executed successfully." msgstr "" #: libraries/DisplayResults.php:4676 -#: libraries/controllers/DatabaseStructureController.php:767 +#: libraries/controllers/database/DatabaseStructureController.php:768 #, possible-php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3435,25 +3437,29 @@ msgstr "" msgid "Check all" msgstr "" -#: libraries/DisplayResults.php:5002 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 +msgid "Copy to clipboard" +msgstr "" + +#: libraries/DisplayResults.php:5025 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "" -#: libraries/DisplayResults.php:5035 +#: libraries/DisplayResults.php:5058 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5146 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.php:5147 +#: libraries/DisplayResults.php:5171 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.php:5326 +#: libraries/DisplayResults.php:5350 msgid "Link not found!" msgstr "" @@ -3554,12 +3560,12 @@ msgstr "" #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 #: libraries/server_privileges.lib.php:2605 #: libraries/server_privileges.lib.php:3522 -#: libraries/server_user_groups.lib.php:83 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/server_user_groups.lib.php:83 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 #: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 +#: templates/server/variables/variable_table_head.phtml:3 #: templates/table/structure/display_partitions.phtml:34 #: templates/table/structure/table_structure_header.phtml:22 msgid "Action" @@ -7384,33 +7390,42 @@ msgstr "" msgid "OpenDocument Text" msgstr "" -#: libraries/controllers/DatabaseStructureController.php:272 +#: libraries/controllers/database/DatabaseStructureController.php:273 msgid "Favorite List is full!" msgstr "" -#: libraries/controllers/DatabaseStructureController.php:558 +#: libraries/controllers/database/DatabaseStructureController.php:559 #: tbl_operations.php:378 #, possible-php-format msgid "Table %s has been emptied." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:579 +#: libraries/controllers/database/DatabaseStructureController.php:580 #: tbl_operations.php:396 view_operations.php:122 #, possible-php-format msgid "View %s has been dropped." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:580 +#: libraries/controllers/database/DatabaseStructureController.php:581 #: tbl_operations.php:397 #, possible-php-format msgid "Table %s has been dropped." msgstr "" -#: libraries/controllers/DatabaseStructureController.php:981 +#: libraries/controllers/database/DatabaseStructureController.php:982 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "" +#: libraries/controllers/server/ServerVariablesController.php:107 +#, possible-php-format +msgid "Not enough privilege to view server variables and settings. %s" +msgstr "" + +#: libraries/controllers/server/ServerVariablesController.php:215 +msgid "Setting variable failed" +msgstr "" + #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -10652,7 +10667,7 @@ msgstr "" #: libraries/replication_gui.lib.php:545 #: libraries/server_status_variables.lib.php:221 -#: libraries/server_variables.lib.php:195 +#: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "" @@ -12096,7 +12111,7 @@ msgstr "" #: libraries/server_status_processes.lib.php:229 #: libraries/server_status_variables.lib.php:41 -#: libraries/server_variables.lib.php:184 +#: templates/server/variables/variable_filter.phtml:2 msgid "Filters" msgstr "" @@ -12131,7 +12146,7 @@ msgid "#" msgstr "" #: libraries/server_status_variables.lib.php:46 -#: libraries/server_variables.lib.php:186 +#: templates/server/variables/variable_filter.phtml:4 msgid "Containing the word:" msgstr "" @@ -12779,23 +12794,6 @@ msgstr "" msgid "Table-level tabs" msgstr "" -#: libraries/server_variables.lib.php:116 -msgid "Setting variable failed" -msgstr "" - -#: libraries/server_variables.lib.php:197 -#: libraries/server_variables.lib.php:281 -msgid "Session value" -msgstr "" - -#: libraries/server_variables.lib.php:197 -msgid "Global value" -msgstr "" - -#: libraries/server_variables.lib.php:245 -msgid "This is a read-only variable and can not be edited" -msgstr "" - #: libraries/sql-parser/src/Component.php:48 #: libraries/sql-parser/src/Component.php:68 msgid "Not implemented yet." @@ -12849,7 +12847,7 @@ msgstr "" msgid "An alias was expected." msgstr "" -#: libraries/sql-parser/src/Components/ExpressionArray.php:97 +#: libraries/sql-parser/src/Components/ExpressionArray.php:98 msgid "An expression was expected." msgstr "" @@ -13414,11 +13412,6 @@ msgstr "" msgid "Not enough privilege to view status variables." msgstr "" -#: server_variables.php:86 -#, possible-php-format -msgid "Not enough privilege to view server variables and settings. %s" -msgstr "" - #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:280 msgid "Download" msgstr "" @@ -14138,6 +14131,19 @@ msgstr "" msgid "Column-specific privileges" msgstr "" +#: templates/server/variables/session_variable_row.phtml:3 +#: templates/server/variables/variable_table_head.phtml:5 +msgid "Session value" +msgstr "" + +#: templates/server/variables/variable_row.phtml:6 +msgid "This is a read-only variable and can not be edited" +msgstr "" + +#: templates/server/variables/variable_table_head.phtml:5 +msgid "Global value" +msgstr "" + #: templates/startAndNumberOfRowsPanel.phtml:3 msgid "Start row:" msgstr "" diff --git a/po/pl.po b/po/pl.po index 01f92ffa7d..2286cf7120 100644 --- a/po/pl.po +++ b/po/pl.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-11-17 08:14-0500\n" +"POT-Creation-Date: 2015-11-18 06:46-0500\n" "PO-Revision-Date: 2015-11-14 12:43+0000\n" "Last-Translator: Michał VonFlynee \n" "Language-Team: Polish \n" "Language-Team: Portuguese \n" "Language-Team: Portuguese (Brazil) \n" "Language-Team: Romanian \n" "Language-Team: Russian \n" "Language-Team: Sinhala \n" "Language-Team: Slovak \n" -"Language-Team: Slovenian " -"\n" +"Language-Team: Slovenian \n" "Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " -"n%100==4 ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3;\n" "X-Generator: Weblate 2.5-dev\n" #: changelog.php:37 license.php:33 @@ -240,7 +240,7 @@ msgid "View dump (schema) of database" msgstr "Preglej povzetek stanja zbirke podatkov" #: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:157 +#: libraries/controllers/database/DatabaseStructureController.php:158 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "V zbirki podatkov ni mogoče najti tabel." @@ -717,7 +717,7 @@ msgstr "Podatki o različici:" #: libraries/config/FormDisplay.tpl.php:163 #: libraries/display_export.lib.php:579 libraries/engines/Pbxt.php:170 #: libraries/navigation/NavigationHeader.php:196 -#: libraries/server_variables.lib.php:162 +#: templates/server/variables/link_template.phtml:10 msgid "Documentation" msgstr "Dokumentacija" @@ -1688,7 +1688,7 @@ msgstr "Oblikovanje SQL …" msgid "No parameters found!" msgstr "Nismo našli nobenih parametrov!" -#: js/messages.php:347 libraries/server_variables.lib.php:159 +#: js/messages.php:347 #: 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,6 +1696,7 @@ msgstr "Nismo našli nobenih parametrov!" #: templates/database/designer/options_panel.phtml:253 #: templates/database/designer/rename_to_panel.phtml:45 #: templates/database/designer/where_query_panel.phtml:83 +#: templates/server/variables/link_template.phtml:5 msgid "Cancel" msgstr "Prekliči" @@ -1810,7 +1811,7 @@ msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Opredelitev shranjene funkcije mora vsebovati izjavo RETURN!" #: js/messages.php:389 libraries/DisplayResults.php:4850 -#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/DisplayResults.php:5133 libraries/Menu.php:347 #: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 #: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 #: libraries/Util.php:4361 libraries/config/messages.inc.php:254 @@ -1867,9 +1868,9 @@ msgstr "Prikaži polje poizvedbe" #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:121 -#: libraries/server_variables.lib.php:242 -#: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 +#: libraries/server_user_groups.lib.php:121 setup/frames/index.inc.php:183 +#: templates/server/variables/variable_row.phtml:4 +#: templates/server/variables/variable_row.phtml:7 msgid "Edit" msgstr "Uredi" @@ -2049,9 +2050,10 @@ msgid "No dependencies selected!" msgstr "Ni izbranih odvisnosti!" #: js/messages.php:466 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 -#: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 +#: libraries/insert_edit.lib.php:1466 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 +#: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 @@ -3547,7 +3549,7 @@ msgid "Your SQL query has been executed successfully." msgstr "Poizvedbo SQL sem uspešno izvedel." #: libraries/DisplayResults.php:4676 -#: libraries/controllers/DatabaseStructureController.php:767 +#: libraries/controllers/database/DatabaseStructureController.php:768 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3593,25 +3595,29 @@ msgstr "Z označenim:" msgid "Check all" msgstr "Označi vse" -#: libraries/DisplayResults.php:5002 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 +msgid "Copy to clipboard" +msgstr "" + +#: libraries/DisplayResults.php:5025 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Pogled za tiskanje" -#: libraries/DisplayResults.php:5035 +#: libraries/DisplayResults.php:5058 msgid "Query results operations" msgstr "Dejanja rezultatov poizvedbe" -#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5146 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Prikaži grafikon" -#: libraries/DisplayResults.php:5147 +#: libraries/DisplayResults.php:5171 msgid "Visualize GIS data" msgstr "Predstavi podatke GIS" -#: libraries/DisplayResults.php:5326 +#: libraries/DisplayResults.php:5350 msgid "Link not found!" msgstr "Povezave ni mogoče najti!" @@ -3715,12 +3721,12 @@ msgstr "Indeksi" #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 #: libraries/server_privileges.lib.php:2605 #: libraries/server_privileges.lib.php:3522 -#: libraries/server_user_groups.lib.php:83 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/server_user_groups.lib.php:83 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 #: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 +#: templates/server/variables/variable_table_head.phtml:3 #: templates/table/structure/display_partitions.phtml:34 #: templates/table/structure/table_structure_header.phtml:22 msgid "Action" @@ -7916,33 +7922,44 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "Besedilo OpenDocument" -#: libraries/controllers/DatabaseStructureController.php:272 +#: libraries/controllers/database/DatabaseStructureController.php:273 msgid "Favorite List is full!" msgstr "Seznam Priljubljenih je poln!" -#: libraries/controllers/DatabaseStructureController.php:558 +#: libraries/controllers/database/DatabaseStructureController.php:559 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "Izpraznil sem tabelo %s." -#: libraries/controllers/DatabaseStructureController.php:579 +#: libraries/controllers/database/DatabaseStructureController.php:580 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "Pogled %s sem zavrgel." -#: libraries/controllers/DatabaseStructureController.php:580 +#: libraries/controllers/database/DatabaseStructureController.php:581 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "Tabelo %s sem zavrgel." -#: libraries/controllers/DatabaseStructureController.php:981 +#: libraries/controllers/database/DatabaseStructureController.php:982 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "neznano" +#: libraries/controllers/server/ServerVariablesController.php:107 +#, php-format +msgid "Not enough privilege to view server variables and settings. %s" +msgstr "" +"Nimate zadostnih privilegijev za ogled strežniških spremenljivk in " +"nastavitev. %s" + +#: libraries/controllers/server/ServerVariablesController.php:215 +msgid "Setting variable failed" +msgstr "Nastavljanje spremenljivke je spodletelo" + #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -10498,13 +10515,11 @@ msgstr "Metapodatki" #: libraries/plugins/export/ExportSql.php:1063 #, php-format -#| msgid "Metadata for %s" msgid "Metadata for table %s" msgstr "Metapodatki tabele %s" #: libraries/plugins/export/ExportSql.php:1070 #, php-format -#| msgid "Metadata for %s" msgid "Metadata for database %s" msgstr "Metapodatki zbirke podatkov %s" @@ -11444,7 +11459,7 @@ msgstr "Stanje podrejenca" #: libraries/replication_gui.lib.php:545 #: libraries/server_status_variables.lib.php:221 -#: libraries/server_variables.lib.php:195 +#: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Spremenljivka" @@ -12982,7 +12997,7 @@ msgstr "Napredek" #: libraries/server_status_processes.lib.php:229 #: libraries/server_status_variables.lib.php:41 -#: libraries/server_variables.lib.php:184 +#: templates/server/variables/variable_filter.phtml:2 msgid "Filters" msgstr "Filtri" @@ -13017,7 +13032,7 @@ msgid "#" msgstr "Št." #: libraries/server_status_variables.lib.php:46 -#: libraries/server_variables.lib.php:186 +#: templates/server/variables/variable_filter.phtml:4 msgid "Containing the word:" msgstr "Vsebuje besedo:" @@ -13783,23 +13798,6 @@ msgstr "Zavihki stopenj zbirke podatkov" msgid "Table-level tabs" msgstr "Zavihki stopenj tabele" -#: libraries/server_variables.lib.php:116 -msgid "Setting variable failed" -msgstr "Nastavljanje spremenljivke je spodletelo" - -#: libraries/server_variables.lib.php:197 -#: libraries/server_variables.lib.php:281 -msgid "Session value" -msgstr "Vrednost seje" - -#: libraries/server_variables.lib.php:197 -msgid "Global value" -msgstr "Skupna vrednost" - -#: libraries/server_variables.lib.php:245 -msgid "This is a read-only variable and can not be edited" -msgstr "Spremenljivka je samo za branje in je ni mogoče urejati" - #: libraries/sql-parser/src/Component.php:48 #: libraries/sql-parser/src/Component.php:68 msgid "Not implemented yet." @@ -13853,7 +13851,7 @@ msgstr "Nepričakovana pika." msgid "An alias was expected." msgstr "Pričakovali smo vzdevek." -#: libraries/sql-parser/src/Components/ExpressionArray.php:97 +#: libraries/sql-parser/src/Components/ExpressionArray.php:98 msgid "An expression was expected." msgstr "Pričakovali smo izraz." @@ -14436,13 +14434,6 @@ msgstr "Nimate zadostnih privilegijev za ogled statistike poizvedb." msgid "Not enough privilege to view status variables." msgstr "Nimate zadostnih privilegijev za ogled spremenljivk stanja." -#: server_variables.php:86 -#, php-format -msgid "Not enough privilege to view server variables and settings. %s" -msgstr "" -"Nimate zadostnih privilegijev za ogled strežniških spremenljivk in " -"nastavitev. %s" - #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:280 msgid "Download" msgstr "Prenesi" @@ -15199,6 +15190,19 @@ msgstr "Dodaj privilegije na naslednji tabeli:" msgid "Column-specific privileges" msgstr "Privilegiji tipični za stolpec" +#: templates/server/variables/session_variable_row.phtml:3 +#: templates/server/variables/variable_table_head.phtml:5 +msgid "Session value" +msgstr "Vrednost seje" + +#: templates/server/variables/variable_row.phtml:6 +msgid "This is a read-only variable and can not be edited" +msgstr "Spremenljivka je samo za branje in je ni mogoče urejati" + +#: templates/server/variables/variable_table_head.phtml:5 +msgid "Global value" +msgstr "Skupna vrednost" + #: templates/startAndNumberOfRowsPanel.phtml:3 msgid "Start row:" msgstr "Začetna vrstica:" diff --git a/po/sq.po b/po/sq.po index 60b511f976..87eaa53eca 100644 --- a/po/sq.po +++ b/po/sq.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-11-17 08:14-0500\n" +"POT-Creation-Date: 2015-11-18 06:46-0500\n" "PO-Revision-Date: 2015-09-05 23:03+0200\n" "Last-Translator: Arben Çokaj \n" "Language-Team: Albanian \n" "Language-Team: Serbian \n" "Language-Team: Serbian (latin) \n" "Language-Team: Swedish \n" "Language-Team: Tamil \n" "Language-Team: Telugu \n" "Language-Team: Thai \n" "Language-Team: Turkmen \n" -"Language-Team: Turkish " -"\n" +"Language-Team: Turkish \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -239,7 +239,7 @@ msgid "View dump (schema) of database" msgstr "Veritabanının dökümünü (şemasını) göster" #: db_export.php:51 db_tracking.php:102 export.php:384 libraries/DbQbe.php:328 -#: libraries/controllers/DatabaseStructureController.php:157 +#: libraries/controllers/database/DatabaseStructureController.php:158 #: libraries/navigation/NavigationTree.php:922 msgid "No tables found in database." msgstr "Veritabanında tablo bulunamadı." @@ -716,7 +716,7 @@ msgstr "Sürüm bilgisi:" #: libraries/config/FormDisplay.tpl.php:163 #: libraries/display_export.lib.php:579 libraries/engines/Pbxt.php:170 #: libraries/navigation/NavigationHeader.php:196 -#: libraries/server_variables.lib.php:162 +#: templates/server/variables/link_template.phtml:10 msgid "Documentation" msgstr "Belgeler" @@ -1688,7 +1688,7 @@ msgstr "SQL biçimlendiriliyor…" msgid "No parameters found!" msgstr "Hiç parametre bulunamadı!" -#: js/messages.php:347 libraries/server_variables.lib.php:159 +#: js/messages.php:347 #: 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,6 +1696,7 @@ msgstr "Hiç parametre bulunamadı!" #: templates/database/designer/options_panel.phtml:253 #: templates/database/designer/rename_to_panel.phtml:45 #: templates/database/designer/where_query_panel.phtml:83 +#: templates/server/variables/link_template.phtml:5 msgid "Cancel" msgstr "İptal" @@ -1810,7 +1811,7 @@ msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Depolanan işlevin tanımı RETURN ifadesi içermek zorunda!" #: js/messages.php:389 libraries/DisplayResults.php:4850 -#: libraries/DisplayResults.php:5109 libraries/Menu.php:347 +#: libraries/DisplayResults.php:5133 libraries/Menu.php:347 #: libraries/Menu.php:448 libraries/Menu.php:574 libraries/Util.php:3710 #: libraries/Util.php:3711 libraries/Util.php:4329 libraries/Util.php:4344 #: libraries/Util.php:4361 libraries/config/messages.inc.php:254 @@ -1869,9 +1870,9 @@ msgstr "Sorgu kutusunu göster" #: libraries/central_columns.lib.php:852 #: libraries/central_columns.lib.php:1195 #: libraries/config/messages.inc.php:895 -#: libraries/server_user_groups.lib.php:121 -#: libraries/server_variables.lib.php:242 -#: libraries/server_variables.lib.php:247 setup/frames/index.inc.php:183 +#: libraries/server_user_groups.lib.php:121 setup/frames/index.inc.php:183 +#: templates/server/variables/variable_row.phtml:4 +#: templates/server/variables/variable_row.phtml:7 msgid "Edit" msgstr "Düzenle" @@ -2052,9 +2053,10 @@ msgid "No dependencies selected!" msgstr "Seçilen bağımlılıklar yok!" #: js/messages.php:466 libraries/central_columns.lib.php:1216 -#: libraries/insert_edit.lib.php:1466 libraries/server_variables.lib.php:157 -#: setup/frames/config.inc.php:43 setup/frames/index.inc.php:283 +#: libraries/insert_edit.lib.php:1466 setup/frames/config.inc.php:43 +#: setup/frames/index.inc.php:283 #: templates/columns_definitions/column_definitions_form.phtml:162 +#: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:128 #: templates/table/structure/partition_definition_form.phtml:11 @@ -3545,7 +3547,7 @@ msgid "Your SQL query has been executed successfully." msgstr "SQL sorgunuz başarılı olarak çalıştırıldı." #: libraries/DisplayResults.php:4676 -#: libraries/controllers/DatabaseStructureController.php:767 +#: libraries/controllers/database/DatabaseStructureController.php:768 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -3592,25 +3594,29 @@ msgstr "Seçilileri:" msgid "Check all" msgstr "Tümünü işaretle" -#: libraries/DisplayResults.php:5002 libraries/Header.php:378 +#: libraries/DisplayResults.php:5002 +msgid "Copy to clipboard" +msgstr "" + +#: libraries/DisplayResults.php:5025 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print view" msgstr "Baskı görünümü" -#: libraries/DisplayResults.php:5035 +#: libraries/DisplayResults.php:5058 msgid "Query results operations" msgstr "Sorgu sonuçları işlemleri" -#: libraries/DisplayResults.php:5122 templates/table/chart/tbl_chart.phtml:12 +#: libraries/DisplayResults.php:5146 templates/table/chart/tbl_chart.phtml:12 msgid "Display chart" msgstr "Çizelge göster" -#: libraries/DisplayResults.php:5147 +#: libraries/DisplayResults.php:5171 msgid "Visualize GIS data" msgstr "GIS verisini görselleştir" -#: libraries/DisplayResults.php:5326 +#: libraries/DisplayResults.php:5350 msgid "Link not found!" msgstr "Bağlantı bulunamadı!" @@ -3714,12 +3720,12 @@ msgstr "İndeksler" #: libraries/rte/rte_list.lib.php:105 libraries/server_databases.lib.php:410 #: libraries/server_privileges.lib.php:2605 #: libraries/server_privileges.lib.php:3522 -#: libraries/server_user_groups.lib.php:83 -#: libraries/server_variables.lib.php:194 libraries/tracking.lib.php:285 +#: libraries/server_user_groups.lib.php:83 libraries/tracking.lib.php:285 #: libraries/tracking.lib.php:806 libraries/tracking.lib.php:1490 #: libraries/tracking.lib.php:1640 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:23 +#: templates/server/variables/variable_table_head.phtml:3 #: templates/table/structure/display_partitions.phtml:34 #: templates/table/structure/table_structure_header.phtml:22 msgid "Action" @@ -7929,33 +7935,43 @@ msgstr "Microsoft Word 2000" msgid "OpenDocument Text" msgstr "OpenDocument Metni" -#: libraries/controllers/DatabaseStructureController.php:272 +#: libraries/controllers/database/DatabaseStructureController.php:273 msgid "Favorite List is full!" msgstr "Sık Kullanılan Listesi dolu!" -#: libraries/controllers/DatabaseStructureController.php:558 +#: libraries/controllers/database/DatabaseStructureController.php:559 #: tbl_operations.php:378 #, php-format msgid "Table %s has been emptied." msgstr "%s tablosu boşaltıldı." -#: libraries/controllers/DatabaseStructureController.php:579 +#: libraries/controllers/database/DatabaseStructureController.php:580 #: tbl_operations.php:396 view_operations.php:122 #, php-format msgid "View %s has been dropped." msgstr "%s görünümü kaldırıldı." -#: libraries/controllers/DatabaseStructureController.php:580 +#: libraries/controllers/database/DatabaseStructureController.php:581 #: tbl_operations.php:397 #, php-format msgid "Table %s has been dropped." msgstr "%s tablosu kaldırıldı." -#: libraries/controllers/DatabaseStructureController.php:981 +#: libraries/controllers/database/DatabaseStructureController.php:982 #: libraries/mysql_charsets.lib.php:357 libraries/mysql_charsets.lib.php:364 msgid "unknown" msgstr "bilinmiyor" +#: libraries/controllers/server/ServerVariablesController.php:107 +#, php-format +msgid "Not enough privilege to view server variables and settings. %s" +msgstr "" +"Sunucu değişkenlerini ve ayarlarını görüntülemek için yetersiz yetki. %s" + +#: libraries/controllers/server/ServerVariablesController.php:215 +msgid "Setting variable failed" +msgstr "Ayar değişkeni başarısız oldu" + #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 msgid "No SQL query was set to fetch data." @@ -10517,13 +10533,11 @@ msgstr "Üstveri" #: libraries/plugins/export/ExportSql.php:1063 #, php-format -#| msgid "Metadata for %s" msgid "Metadata for table %s" msgstr "%s tablosu için üstveri" #: libraries/plugins/export/ExportSql.php:1070 #, php-format -#| msgid "Metadata for %s" msgid "Metadata for database %s" msgstr "%s veritabanı için üstveri" @@ -11468,7 +11482,7 @@ msgstr "Slave durumu" #: libraries/replication_gui.lib.php:545 #: libraries/server_status_variables.lib.php:221 -#: libraries/server_variables.lib.php:195 +#: templates/server/variables/variable_table_head.phtml:4 msgid "Variable" msgstr "Değişken" @@ -13000,7 +13014,7 @@ msgstr "İlerleme" #: libraries/server_status_processes.lib.php:229 #: libraries/server_status_variables.lib.php:41 -#: libraries/server_variables.lib.php:184 +#: templates/server/variables/variable_filter.phtml:2 msgid "Filters" msgstr "Süzgeçler" @@ -13035,7 +13049,7 @@ msgid "#" msgstr "#" #: libraries/server_status_variables.lib.php:46 -#: libraries/server_variables.lib.php:186 +#: templates/server/variables/variable_filter.phtml:4 msgid "Containing the word:" msgstr "İçerdiği kelime:" @@ -13804,23 +13818,6 @@ msgstr "Veritabanı seviyesi sekmeler" msgid "Table-level tabs" msgstr "Tablo seviyesi sekmeler" -#: libraries/server_variables.lib.php:116 -msgid "Setting variable failed" -msgstr "Ayar değişkeni başarısız oldu" - -#: libraries/server_variables.lib.php:197 -#: libraries/server_variables.lib.php:281 -msgid "Session value" -msgstr "Oturum değeri" - -#: libraries/server_variables.lib.php:197 -msgid "Global value" -msgstr "Genel değer" - -#: libraries/server_variables.lib.php:245 -msgid "This is a read-only variable and can not be edited" -msgstr "Bu, salt okunur bir değişkendir ve düzenlenemez" - #: libraries/sql-parser/src/Component.php:48 #: libraries/sql-parser/src/Component.php:68 msgid "Not implemented yet." @@ -13874,7 +13871,7 @@ msgstr "Beklenmedik nokta." msgid "An alias was expected." msgstr "Bir kodadı beklenmekte." -#: libraries/sql-parser/src/Components/ExpressionArray.php:97 +#: libraries/sql-parser/src/Components/ExpressionArray.php:98 msgid "An expression was expected." msgstr "Bir ifade beklenmekte." @@ -14457,12 +14454,6 @@ msgstr "Sorgu istatistiklerini görüntülemek için yetersiz yetki." msgid "Not enough privilege to view status variables." msgstr "Durum değişkenlerini görüntülemek için yetersiz yetki." -#: server_variables.php:86 -#, php-format -msgid "Not enough privilege to view server variables and settings. %s" -msgstr "" -"Sunucu değişkenlerini ve ayarlarını görüntülemek için yetersiz yetki. %s" - #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:280 msgid "Download" msgstr "İndir" @@ -15217,6 +15208,19 @@ msgstr "Aşağıdaki tabloya yetkileri ekle:" msgid "Column-specific privileges" msgstr "Sütuna özgü yetkiler" +#: templates/server/variables/session_variable_row.phtml:3 +#: templates/server/variables/variable_table_head.phtml:5 +msgid "Session value" +msgstr "Oturum değeri" + +#: templates/server/variables/variable_row.phtml:6 +msgid "This is a read-only variable and can not be edited" +msgstr "Bu, salt okunur bir değişkendir ve düzenlenemez" + +#: templates/server/variables/variable_table_head.phtml:5 +msgid "Global value" +msgstr "Genel değer" + #: templates/startAndNumberOfRowsPanel.phtml:3 msgid "Start row:" msgstr "Başlangıç satırı:" diff --git a/po/tt.po b/po/tt.po index 80d6a563c6..d40859f9da 100644 --- a/po/tt.po +++ b/po/tt.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-11-17 08:14-0500\n" +"POT-Creation-Date: 2015-11-18 06:46-0500\n" "PO-Revision-Date: 2015-10-15 11:22+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Tatar \n" "Language-Team: Uighur \n" "Language-Team: Ukrainian \n" "Language-Team: Urdu \n" "Language-Team: Uzbek \n" "Language-Team: Uzbek (latin) \n" "Language-Team: Vietnamese \n" "Language-Team: West Flemish \n" "Language-Team: Chinese (China) \n" "Language-Team: Chinese (Taiwan) Date: Tue, 17 Nov 2015 15:34:48 +0100 Subject: [PATCH 078/100] Translated using Weblate (Estonian) Currently translated at 100.0% (3223 of 3223 strings) [CI skip] --- po/et.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/et.po b/po/et.po index a1c38e17ab..1fefa49c9f 100644 --- a/po/et.po +++ b/po/et.po @@ -6,10 +6,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-11-18 06:46-0500\n" -"PO-Revision-Date: 2015-11-17 15:34+0000\n" +"PO-Revision-Date: 2015-11-18 12:57+0000\n" "Last-Translator: Kristjan Räts \n" -"Language-Team: Estonian \n" +"Language-Team: Estonian " +"\n" "Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -3574,7 +3574,7 @@ msgstr "Vali kõik" #: libraries/DisplayResults.php:5002 msgid "Copy to clipboard" -msgstr "" +msgstr "Kopeeri lõikelauale" #: libraries/DisplayResults.php:5025 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 From 0152eca9861a1906223f9c377cb3efe514c6952d Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 18 Nov 2015 07:59:20 -0500 Subject: [PATCH 079/100] Fix coding style Signed-off-by: Marc Delisle --- js/functions.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/js/functions.js b/js/functions.js index 73d6cd09a5..1370b795a8 100644 --- a/js/functions.js +++ b/js/functions.js @@ -4442,7 +4442,7 @@ function copyToClipboard() elementList.each(function(){ textArea.value += $(this).text().split(':')[1].trim() + '/'; - }); + }); textArea.value += '\t\t' + window.location.href; textArea.value += '\n'; @@ -4450,27 +4450,27 @@ function copyToClipboard() elementList.each(function(){ textArea.value += $(this).clone().children().remove().end().text() + '\n\n'; - }); + }); elementList = $('.sql pre'); elementList.each(function() { - textArea.value += $(this).text() + '\n\n'; + textArea.value += $(this).text() + '\n\n'; }); elementList = $('.table_results .column_heading a'); elementList.each(function() { - textArea.value += $(this).clone().children().remove().end().text() + '\t'; + textArea.value += $(this).clone().children().remove().end().text() + '\t'; }); textArea.value += '\n'; elementList = $('tbody .odd,tbody .even'); elementList.each(function() { - var childElementList = $(this).find('.data span') - childElementList.each(function(){ - textArea.value += $(this).clone().children().remove().end().text() + '\t'; - }); + var childElementList = $(this).find('.data span'); + childElementList.each(function(){ + textArea.value += $(this).clone().children().remove().end().text() + '\t'; + }); textArea.value += '\n'; }); @@ -4479,9 +4479,9 @@ function copyToClipboard() textArea.select(); try { - document.execCommand('copy'); + document.execCommand('copy'); } catch (err) { - alert('Sorry! Unable to copy'); + alert('Sorry! Unable to copy'); } document.body.removeChild(textArea); From db1c646893aa0bcc43a90686084fed66126f2f9e Mon Sep 17 00:00:00 2001 From: Giovanni Sora Date: Wed, 18 Nov 2015 13:41:39 +0100 Subject: [PATCH 080/100] Translated using Weblate (Interlingua) Currently translated at 72.4% (2336 of 3223 strings) [CI skip] --- po/ia.po | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/po/ia.po b/po/ia.po index c76a033fdc..5a53ed4bac 100644 --- a/po/ia.po +++ b/po/ia.po @@ -8,10 +8,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-11-18 06:46-0500\n" -"PO-Revision-Date: 2015-11-17 23:24+0000\n" +"PO-Revision-Date: 2015-11-18 13:41+0000\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" @@ -3633,7 +3633,7 @@ msgstr "Marca omnes" #: libraries/DisplayResults.php:5002 msgid "Copy to clipboard" -msgstr "" +msgstr "Copia a area de transferentia" #: libraries/DisplayResults.php:5025 libraries/Header.php:378 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 @@ -8045,10 +8045,12 @@ msgstr "incognite" #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" +"Tu non ha bastante privilegios pro vider variabiles e fixationes de " +"servitor. %s" #: libraries/controllers/server/ServerVariablesController.php:215 msgid "Setting variable failed" -msgstr "" +msgstr "Il falleva fixar variabile" #: libraries/controllers/table/TableChartController.php:76 #: libraries/controllers/table/TableGisVisualizationController.php:97 @@ -10128,7 +10130,7 @@ msgstr "Le nomine de tabella es vacue!" #: libraries/plugin_interface.lib.php:564 msgid "This format has no options" -msgstr "" +msgstr "Iste formato ha nulle optiones" #: libraries/plugins/AuthenticationPlugin.php:64 msgid "" From 50a9c19fe4967efb936782043660bb3ee667bbe9 Mon Sep 17 00:00:00 2001 From: Atul Pratap Singh Date: Wed, 18 Nov 2015 19:46:28 +0530 Subject: [PATCH 081/100] Rename 'Print view' to 'Print' Signed-off-by: Atul Pratap Singh --- js/db_structure.js | 4 ++-- js/sql.js | 4 ++-- js/tbl_structure.js | 4 ++-- libraries/DisplayResults.php | 2 +- .../database/structure/print_view_data_dictionary_link.phtml | 4 ++-- templates/table/structure/optional_action_links.phtml | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/js/db_structure.js b/js/db_structure.js index 187243b8c8..21fbfb2841 100644 --- a/js/db_structure.js +++ b/js/db_structure.js @@ -332,14 +332,14 @@ AJAX.registerOnload('db_structure.js', function () { }); //end of Drop Table Ajax action /** - * Attach Event Handler for 'Print View' + * Attach Event Handler for 'Print' link */ $(document).on('click', "#printView", function (event) { event.preventDefault(); // Print the page printPage(); - }); //end of Print View action + }); //end of 'Print' action //Calculate Real End for InnoDB /** diff --git a/js/sql.js b/js/sql.js index 90ff91a789..be35cf9d2e 100644 --- a/js/sql.js +++ b/js/sql.js @@ -203,14 +203,14 @@ AJAX.registerOnload('sql.js', function () { }); //end of Copy to Clipboard action /** - * Attach Event Handler for 'Print View' + * Attach Event Handler for 'Print' link */ $(document).on('click', "#printView", function (event) { event.preventDefault(); // Print the page printPage(); - }); //end of Print View action + }); //end of 'Print' action /** * Attach the {@link makegrid} function to a custom event, which will be diff --git a/js/tbl_structure.js b/js/tbl_structure.js index c593298e0d..7aa5cbd08f 100644 --- a/js/tbl_structure.js +++ b/js/tbl_structure.js @@ -251,14 +251,14 @@ AJAX.registerOnload('tbl_structure.js', function () { }); //end of Drop Column Anchor action /** - * Attach Event Handler for 'Print View' + * Attach Event Handler for 'Print' link */ $(document).on('click', "#printView", function (event) { event.preventDefault(); // Print the page printPage(); - }); //end of Print View action + }); //end of 'Print' action /** * Ajax Event handler for adding keys diff --git a/libraries/DisplayResults.php b/libraries/DisplayResults.php index a7f80c1821..ddc9f0970a 100644 --- a/libraries/DisplayResults.php +++ b/libraries/DisplayResults.php @@ -5022,7 +5022,7 @@ class DisplayResults $html = Util::linkOrButton( '#', Util::getIcon( - 'b_print.png', __('Print view'), true + 'b_print.png', __('Print'), true ), array('id' => 'printView'), true, diff --git a/templates/database/structure/print_view_data_dictionary_link.phtml b/templates/database/structure/print_view_data_dictionary_link.phtml index bd88ab7a2e..d4c49f9faf 100644 --- a/templates/database/structure/print_view_data_dictionary_link.phtml +++ b/templates/database/structure/print_view_data_dictionary_link.phtml @@ -1,7 +1,7 @@ \ No newline at end of file +

diff --git a/templates/table/structure/optional_action_links.phtml b/templates/table/structure/optional_action_links.phtml index 4076132429..4be22f3e11 100644 --- a/templates/table/structure/optional_action_links.phtml +++ b/templates/table/structure/optional_action_links.phtml @@ -3,7 +3,7 @@ use PMA\libraries\Tracker; use PMA\libraries\Util; ?> - + \n" "Language-Team: Afrikaans \n" "Language-Team: Arabic \n" "Language-Team: Azerbaijani \n" "Language-Team: Belarusian \n" "Language-Team: Belarusian (latin) \n" "Language-Team: Bulgarian \n" "Language-Team: Bengali \n" "Language-Team: Breton \n" "Language-Team: Bodo \n" "Language-Team: Bosnian \n" "Language-Team: Catalan \n" "Language-Team: Kurdish Sorani \n" "Language-Team: Czech \n" "Language-Team: Welsh \n" "Language-Team: Danish \n" "Language-Team: German \n" "Language-Team: Greek \n" "Language-Team: English (United Kingdom) \n" "Language-Team: Esperanto \n" "Language-Team: Spanish \n" -"Language-Team: Estonian " -"\n" +"Language-Team: Estonian \n" "Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -3576,11 +3576,11 @@ msgstr "Vali kõik" msgid "Copy to clipboard" msgstr "Kopeeri lõikelauale" -#: libraries/DisplayResults.php:5025 libraries/Header.php:378 +#: libraries/DisplayResults.php:5025 libraries/Util.php:4222 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 -msgid "Print view" -msgstr "Prindi vaade" +msgid "Print" +msgstr "Prindi" #: libraries/DisplayResults.php:5058 msgid "Query results operations" @@ -3671,6 +3671,10 @@ msgstr "Git'i informatsioon puudub!" msgid "Open new phpMyAdmin window" msgstr "Ava uus phpMyAdmini aken" +#: libraries/Header.php:378 +msgid "Print view" +msgstr "Prindi vaade" + #: libraries/Header.php:464 msgid "Click on the bar to scroll to top of page" msgstr "Kliki ribal, et lehe alguessse kerida" @@ -4742,10 +4746,6 @@ msgstr "Tühjenda" msgid "Execute" msgstr "Teosta" -#: libraries/Util.php:4222 -msgid "Print" -msgstr "Prindi" - #: libraries/Util.php:4328 msgid "Users" msgstr "Kasutajad" diff --git a/po/eu.po b/po/eu.po index 206151bdbd..b8a54859cc 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-11-18 06:46-0500\n" +"POT-Creation-Date: 2015-11-18 09:43-0500\n" "PO-Revision-Date: 2015-10-15 11:26+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Basque \n" "Language-Team: Persian \n" "Language-Team: Finnish \n" "Language-Team: French \n" "Language-Team: Frisian \n" "Language-Team: Galician \n" "Language-Team: Hebrew \n" "Language-Team: Hindi \n" "Language-Team: Croatian \n" "Language-Team: Hungarian \n" "Language-Team: Armenian \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" @@ -3635,11 +3635,11 @@ msgstr "Marca omnes" msgid "Copy to clipboard" msgstr "Copia a area de transferentia" -#: libraries/DisplayResults.php:5025 libraries/Header.php:378 +#: libraries/DisplayResults.php:5025 libraries/Util.php:4222 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 -msgid "Print view" -msgstr "Vista pro imprimer" +msgid "Print" +msgstr "Imprime" #: libraries/DisplayResults.php:5058 msgid "Query results operations" @@ -3732,6 +3732,10 @@ msgstr "Information de git mancante!" msgid "Open new phpMyAdmin window" msgstr "Aperi nove fenestra de phpMyAdmin" +#: libraries/Header.php:378 +msgid "Print view" +msgstr "Vista pro imprimer" + #: libraries/Header.php:464 msgid "Click on the bar to scroll to top of page" msgstr "Pulsa sur le barra pro rolar al culmine del pagina" @@ -4822,10 +4826,6 @@ msgstr "Vacua" msgid "Execute" msgstr "Executa" -#: libraries/Util.php:4222 -msgid "Print" -msgstr "Imprime" - #: libraries/Util.php:4328 msgid "Users" msgstr "Usatores" diff --git a/po/id.po b/po/id.po index be948f4602..3e45d7bd3e 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-11-18 06:46-0500\n" +"POT-Creation-Date: 2015-11-18 09:43-0500\n" "PO-Revision-Date: 2015-10-15 11:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Indonesian \n" "Language-Team: Italian \n" "Language-Team: Japanese \n" "Language-Team: Georgian \n" "Language-Team: Kazakh \n" "Language-Team: Central Khmer \n" "Language-Team: Kannada \n" "Language-Team: Korean \n" "Language-Team: Colognian \n" "Language-Team: Kyrgyz \n" "Language-Team: Lithuanian \n" "Language-Team: Latvian \n" "Language-Team: Macedonian \n" "Language-Team: Malayalam \n" "Language-Team: Mongolian \n" "Language-Team: Malay \n" "Language-Team: Norwegian Bokmål \n" "Language-Team: Nepali \n" "Language-Team: Dutch \n" "Language-Team: Punjabi \n" "Language-Team: LANGUAGE \n" @@ -3441,10 +3441,10 @@ msgstr "" msgid "Copy to clipboard" msgstr "" -#: libraries/DisplayResults.php:5025 libraries/Header.php:378 +#: libraries/DisplayResults.php:5025 libraries/Util.php:4222 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 -msgid "Print view" +msgid "Print" msgstr "" #: libraries/DisplayResults.php:5058 @@ -3534,6 +3534,10 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" +#: libraries/Header.php:378 +msgid "Print view" +msgstr "" + #: libraries/Header.php:464 msgid "Click on the bar to scroll to top of page" msgstr "" @@ -4538,10 +4542,6 @@ msgstr "" msgid "Execute" msgstr "" -#: libraries/Util.php:4222 -msgid "Print" -msgstr "" - #: libraries/Util.php:4328 msgid "Users" msgstr "" diff --git a/po/pl.po b/po/pl.po index 2286cf7120..c9345af9b1 100644 --- a/po/pl.po +++ b/po/pl.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-11-18 06:46-0500\n" +"POT-Creation-Date: 2015-11-18 09:43-0500\n" "PO-Revision-Date: 2015-11-14 12:43+0000\n" "Last-Translator: Michał VonFlynee \n" "Language-Team: Polish \n" "Language-Team: Portuguese \n" "Language-Team: Portuguese (Brazil) \n" "Language-Team: Romanian \n" "Language-Team: Russian \n" "Language-Team: Sinhala \n" "Language-Team: Slovak \n" "Language-Team: Slovenian \n" "Language-Team: Albanian \n" "Language-Team: Serbian \n" "Language-Team: Serbian (latin) \n" "Language-Team: Swedish \n" "Language-Team: Tamil \n" "Language-Team: Telugu \n" "Language-Team: Thai \n" "Language-Team: Turkmen \n" "Language-Team: Turkish \n" "Language-Team: Tatar \n" "Language-Team: Uighur \n" "Language-Team: Ukrainian \n" "Language-Team: Urdu \n" "Language-Team: Uzbek \n" "Language-Team: Uzbek (latin) \n" "Language-Team: Vietnamese \n" "Language-Team: West Flemish \n" "Language-Team: Chinese (China) \n" "Language-Team: Chinese (Taiwan) Date: Wed, 18 Nov 2015 12:41:13 +0100 Subject: [PATCH 083/100] Translated using Weblate (French) Currently translated at 100.0% (3223 of 3223 strings) [CI skip] --- po/fr.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/fr.po b/po/fr.po index 4aee3ac7fa..1239601f83 100644 --- a/po/fr.po +++ b/po/fr.po @@ -4,10 +4,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-11-18 09:43-0500\n" -"PO-Revision-Date: 2015-11-18 12:41+0000\n" +"PO-Revision-Date: 2015-11-18 15:47+0000\n" "Last-Translator: Marc Delisle \n" -"Language-Team: French \n" +"Language-Team: French " +"\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -3621,7 +3621,7 @@ msgstr "Tout cocher" #: libraries/DisplayResults.php:5002 msgid "Copy to clipboard" -msgstr "" +msgstr "Copier dans le presse-papier" #: libraries/DisplayResults.php:5025 libraries/Util.php:4222 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 From 3971265c5ea6eb3e1e3c3baa6a91700915e9d9a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=A0=CE=B1=CE=BD=CE=B1=CE=B3=CE=B9=CF=8E=CF=84=CE=B7?= =?UTF-8?q?=CF=82=20=CE=A0=CE=B1=CF=80=CE=AC=CE=B6=CE=BF=CE=B3=CE=BB=CE=BF?= =?UTF-8?q?=CF=85?= Date: Wed, 18 Nov 2015 15:53:38 +0100 Subject: [PATCH 084/100] Translated using Weblate (Greek) Currently translated at 100.0% (3223 of 3223 strings) [CI skip] --- po/el.po | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/po/el.po b/po/el.po index 5328244528..a15fefa77c 100644 --- a/po/el.po +++ b/po/el.po @@ -4,10 +4,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-11-18 09:43-0500\n" -"PO-Revision-Date: 2015-11-14 19:41+0000\n" +"PO-Revision-Date: 2015-11-18 15:53+0000\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" @@ -3611,7 +3611,7 @@ msgstr "Επιλογή όλων" #: libraries/DisplayResults.php:5002 msgid "Copy to clipboard" -msgstr "" +msgstr "Αντιγραφή στο πρόχειρο" #: libraries/DisplayResults.php:5025 libraries/Util.php:4222 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 @@ -10623,16 +10623,16 @@ msgid "Metadata" msgstr "Μεταδεδομένα" #: libraries/plugins/export/ExportSql.php:1063 -#, fuzzy, php-format +#, php-format #| msgid "Metadata for %s" msgid "Metadata for table %s" -msgstr "Μεταδεδομένα για %s" +msgstr "Μεταδεδομένα για πίνακα %s" #: libraries/plugins/export/ExportSql.php:1070 -#, fuzzy, php-format +#, php-format #| msgid "Metadata for %s" msgid "Metadata for database %s" -msgstr "Μεταδεδομένα για %s" +msgstr "Μεταδεδομένα για βάση δεδομένων %s" #: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 From 7d4aa69470082c559894fe89f47d594071f30f77 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Tue, 17 Nov 2015 17:56:36 +0100 Subject: [PATCH 085/100] Translated using Weblate (Turkish) Currently translated at 100.0% (3223 of 3223 strings) [CI skip] --- po/tr.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/tr.po b/po/tr.po index 0514bea2aa..0b5d071542 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,10 +4,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-11-18 09:43-0500\n" -"PO-Revision-Date: 2015-11-17 17:56+0000\n" +"PO-Revision-Date: 2015-11-18 17:23+0000\n" "Last-Translator: Burak Yavuz \n" -"Language-Team: Turkish \n" +"Language-Team: Turkish " +"\n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -3596,7 +3596,7 @@ msgstr "Tümünü işaretle" #: libraries/DisplayResults.php:5002 msgid "Copy to clipboard" -msgstr "" +msgstr "Panoya kopyala" #: libraries/DisplayResults.php:5025 libraries/Util.php:4222 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 From 967bd4dabc9eb61301a7d023608e2195efe189b6 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 17 Nov 2015 23:55:31 +0100 Subject: [PATCH 086/100] Translated using Weblate (Slovenian) Currently translated at 100.0% (3223 of 3223 strings) [CI skip] --- po/sl.po | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/po/sl.po b/po/sl.po index c3cf5ba21f..f4be1d9a3b 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,16 +4,16 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-11-18 09:43-0500\n" -"PO-Revision-Date: 2015-11-17 23:55+0000\n" +"PO-Revision-Date: 2015-11-18 18:24+0000\n" "Last-Translator: Domen \n" -"Language-Team: Slovenian \n" +"Language-Team: Slovenian " +"\n" "Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" "X-Generator: Weblate 2.5-dev\n" #: changelog.php:37 license.php:33 @@ -3597,7 +3597,7 @@ msgstr "Označi vse" #: libraries/DisplayResults.php:5002 msgid "Copy to clipboard" -msgstr "" +msgstr "Kopiraj v odložišče" #: libraries/DisplayResults.php:5025 libraries/Util.php:4222 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 From b9e99b282c3f1451e15a187af8516149c1b79e31 Mon Sep 17 00:00:00 2001 From: Stefano Martinelli Date: Wed, 18 Nov 2015 11:14:19 +0100 Subject: [PATCH 087/100] Translated using Weblate (Italian) Currently translated at 100.0% (3223 of 3223 strings) [CI skip] --- po/it.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/po/it.po b/po/it.po index 752969e4e4..6cb4818545 100644 --- a/po/it.po +++ b/po/it.po @@ -4,10 +4,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-11-18 09:43-0500\n" -"PO-Revision-Date: 2015-11-18 11:14+0000\n" -"Last-Translator: Stefano Martinelli \n" -"Language-Team: Italian \n" +"PO-Revision-Date: 2015-11-19 09:51+0000\n" +"Last-Translator: Domenico \n" +"Language-Team: Italian " +"\n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -3624,7 +3624,7 @@ msgstr "Seleziona tutto" #: libraries/DisplayResults.php:5002 msgid "Copy to clipboard" -msgstr "" +msgstr "Copia nella clipboard" #: libraries/DisplayResults.php:5025 libraries/Util.php:4222 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 From d37b26a1e9d7faad68f9c1ad9d08e20a61088c5f Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 19 Nov 2015 11:27:01 -0500 Subject: [PATCH 088/100] Undefined index: SendErrorReports Signed-off-by: Marc Delisle --- ChangeLog | 1 + libraries/Error_Handler.class.php | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/ChangeLog b/ChangeLog index bd4bdd8c25..b01ebe09b0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,7 @@ phpMyAdmin - ChangeLog 4.5.3.0 (not yet released) - issue #11664 Online syntax verifier bug - "IF" on SELECT statement - issue #11665 Format breaks query with COUNT() +- issue Undefinex index: SendErrorReports 4.5.2.0 (not yet released) - issue #11589 Incorrect parameter in mysqli_fetch_fields() diff --git a/libraries/Error_Handler.class.php b/libraries/Error_Handler.class.php index d8518a2d7a..6abd863f73 100644 --- a/libraries/Error_Handler.class.php +++ b/libraries/Error_Handler.class.php @@ -296,6 +296,10 @@ class PMA_Error_Handler */ public function getDispErrors() { + // Not sure why but seen in reports.phpmyadmin.net + if (empty($GLOBALS['cfg']['SendErrorReports'])) { + $GLOBALS['cfg']['SendErrorReports'] = 'ask'; + } $retval = ''; // display errors if SendErrorReports is set to 'ask'. if ($GLOBALS['cfg']['SendErrorReports'] != 'never') { From cfd3e1a1215a1418bc7dc7f8f6ff0dbb54d10c51 Mon Sep 17 00:00:00 2001 From: disorderman Date: Thu, 19 Nov 2015 08:10:01 +0100 Subject: [PATCH 089/100] Translated using Weblate (Chinese (China)) Currently translated at 89.5% (2876 of 3211 strings) [CI skip] --- po/zh_CN.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/zh_CN.po b/po/zh_CN.po index 4bf6245720..c2731ce266 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.5.2-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-10-26 19:59-0400\n" -"PO-Revision-Date: 2015-11-02 02:33+0200\n" -"Last-Translator: San \n" +"PO-Revision-Date: 2015-11-19 08:09+0000\n" +"Last-Translator: disorderman \n" "Language-Team: Chinese (China) " "\n" "Language: zh_CN\n" @@ -922,7 +922,6 @@ msgid "Do you really want to TRUNCATE the selected partition(s)?" msgstr "您真的要清空所选择的分区吗?" #: js/messages.php:66 -#, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to RESET SLAVE?" msgstr "您真的要执行“RESET SLAVE”吗?" From c5b69b770ceb8a524c42ca97458bc90ed3d2217f Mon Sep 17 00:00:00 2001 From: Giovanni Sora Date: Wed, 18 Nov 2015 13:41:41 +0100 Subject: [PATCH 090/100] Translated using Weblate (Interlingua) Currently translated at 72.2% (2320 of 3211 strings) [CI skip] --- po/ia.po | 38 ++++++++++++++++++++------------------ 1 file changed, 20 insertions(+), 18 deletions(-) diff --git a/po/ia.po b/po/ia.po index e8da7fea2b..540c318e18 100644 --- a/po/ia.po +++ b/po/ia.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.5.2-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-10-26 19:59-0400\n" -"PO-Revision-Date: 2015-11-02 15:37+0200\n" +"PO-Revision-Date: 2015-11-18 13:41+0000\n" "Last-Translator: Giovanni Sora \n" "Language-Team: Interlingua " "\n" @@ -10021,7 +10021,7 @@ msgstr "Optiones de tabella" #: libraries/operations.lib.php:1071 libraries/server_engines.lib.php:49 msgid "Storage Engine" -msgstr "" +msgstr "Motor de immagazinage" #: libraries/operations.lib.php:1096 msgid "Change all column collations" @@ -10057,16 +10057,16 @@ msgstr "Tabella de checksum" #: libraries/operations.lib.php:1453 msgid "Defragment table" -msgstr "" +msgstr "Defragmenta tabella" #: libraries/operations.lib.php:1465 #, php-format msgid "Table %s has been flushed." -msgstr "" +msgstr "Tabella %s ha essite initialisate." #: libraries/operations.lib.php:1471 msgid "Flush the table (FLUSH)" -msgstr "" +msgstr "Initialisa le tabella (FLUSH)" #: libraries/operations.lib.php:1487 #: templates/database/structure/check_all_tables.phtml:23 @@ -10077,7 +10077,7 @@ msgstr "Optimiza tabella" #: libraries/operations.lib.php:1502 #: templates/database/structure/check_all_tables.phtml:24 msgid "Repair table" -msgstr "" +msgstr "Repara tabella" #: libraries/operations.lib.php:1548 #: templates/database/structure/check_all_tables.phtml:14 @@ -10116,12 +10116,12 @@ msgstr "Reconstrue" #: libraries/operations.lib.php:1608 #: templates/table/structure/display_structure.phtml:185 msgid "Repair" -msgstr "" +msgstr "Repara" #: libraries/operations.lib.php:1609 #: templates/table/structure/display_structure.phtml:186 msgid "Truncate" -msgstr "" +msgstr "Trunca" #: libraries/operations.lib.php:1619 msgid "Coalesce" @@ -10129,7 +10129,7 @@ msgstr "Uni" #: libraries/operations.lib.php:1628 msgid "Partition maintenance" -msgstr "" +msgstr "Mantenentia de partition" #: libraries/operations.lib.php:1645 #, php-format @@ -10146,39 +10146,39 @@ msgstr "Verifica le integritate referential:" #: libraries/operations.lib.php:2109 msgid "Can't move table to same one!" -msgstr "" +msgstr "On non pote mover tabella sur se mesme!" #: libraries/operations.lib.php:2111 msgid "Can't copy table to same one!" -msgstr "" +msgstr "On non pote copiar tabella sur se mesme!" #: libraries/operations.lib.php:2135 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." -msgstr "" +msgstr "Tabella %s ha essite movite in %s. Privilegios ha essite adaptate." #: libraries/operations.lib.php:2142 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." -msgstr "" +msgstr "Tabella %s ha essite copiate in %s. Privilegios ha essite adaptate." #: libraries/operations.lib.php:2151 #, php-format msgid "Table %s has been moved to %s." -msgstr "" +msgstr "Tabella %s ha essite movite in %s." #: libraries/operations.lib.php:2155 #, php-format msgid "Table %s has been copied to %s." -msgstr "" +msgstr "Tabella %s ha essite copiate in %s." #: libraries/operations.lib.php:2177 msgid "The table name is empty!" -msgstr "" +msgstr "Le nomine de tabella es vacue!" #: libraries/plugin_interface.lib.php:554 msgid "This format has no options" -msgstr "" +msgstr "Iste formato ha nulle optiones" #: libraries/plugins/AuthenticationPlugin.class.php:66 msgid "" @@ -13659,7 +13659,7 @@ msgstr "Schedas de nivello de tabula" #: libraries/server_variables.lib.php:116 msgid "Setting variable failed" -msgstr "" +msgstr "Il falleva fixar variabile" #: libraries/server_variables.lib.php:197 #: libraries/server_variables.lib.php:281 @@ -14306,6 +14306,8 @@ msgstr "" #, php-format msgid "Not enough privilege to view server variables and settings. %s" msgstr "" +"Tu non ha bastante privilegios pro vider variabiles e fixationes de " +"servitor. %s" #: setup/frames/config.inc.php:41 setup/frames/index.inc.php:278 msgid "Download" From f82509d7870dc9bd79bcaaddcc7731317f5b922d Mon Sep 17 00:00:00 2001 From: disorderman Date: Thu, 19 Nov 2015 08:10:03 +0100 Subject: [PATCH 091/100] Translated using Weblate (Chinese (China)) Currently translated at 88.4% (2851 of 3223 strings) [CI skip] --- po/zh_CN.po | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/po/zh_CN.po b/po/zh_CN.po index 6ef8a277c3..ae47023115 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -4,10 +4,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-11-18 09:43-0500\n" -"PO-Revision-Date: 2015-11-02 02:33+0200\n" -"Last-Translator: San \n" -"Language-Team: Chinese (China) \n" +"PO-Revision-Date: 2015-11-19 08:10+0000\n" +"Last-Translator: disorderman \n" +"Language-Team: Chinese (China) " +"\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -923,7 +923,6 @@ msgid "Do you really want to remove partitioning?" msgstr "您真的要清空所选择的分区吗?" #: js/messages.php:83 -#, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to RESET SLAVE?" msgstr "您真的要执行“RESET SLAVE”吗?" From d89ba29b219bfcea26da40e3a8d8321de3d8df4f Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 19 Nov 2015 11:41:28 -0500 Subject: [PATCH 092/100] Incorrect script name in include Signed-off-by: Marc Delisle --- ChangeLog | 1 + db_create.php | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b01ebe09b0..ea90c7b53b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,7 @@ phpMyAdmin - ChangeLog - issue #11664 Online syntax verifier bug - "IF" on SELECT statement - issue #11665 Format breaks query with COUNT() - issue Undefinex index: SendErrorReports +- issue Incorrect script name in include 4.5.2.0 (not yet released) - issue #11589 Incorrect parameter in mysqli_fetch_fields() diff --git a/db_create.php b/db_create.php index 86cdf4bafd..54440b62dd 100644 --- a/db_create.php +++ b/db_create.php @@ -138,6 +138,8 @@ if (! $result) { . urlencode($current['SCHEMA_NAME']) ); } else { - include_once '' . $cfg['DefaultTabDatabase']; + include_once '' . PMA_Util::getScriptNameForOption( + $GLOBALS['cfg']['DefaultTabDatabase'], 'database' + ); } } From 76c2825817676d8df0079ef01d6a505b6119fdd4 Mon Sep 17 00:00:00 2001 From: mh Date: Fri, 20 Nov 2015 22:32:08 +0100 Subject: [PATCH 093/100] Translated using Weblate (Persian) Currently translated at 25.1% (811 of 3223 strings) [CI skip] --- po/fa.po | 47 ++++++++++++++++++++++++----------------------- 1 file changed, 24 insertions(+), 23 deletions(-) diff --git a/po/fa.po b/po/fa.po index 2aaa4b859c..cf0ed3bbcc 100644 --- a/po/fa.po +++ b/po/fa.po @@ -4,10 +4,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-11-18 09:43-0500\n" -"PO-Revision-Date: 2015-10-15 11:32+0200\n" -"Last-Translator: Michal Čihař \n" -"Language-Team: Persian \n" +"PO-Revision-Date: 2015-11-20 22:32+0000\n" +"Last-Translator: m hashemi \n" +"Language-Team: Persian " +"\n" "Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,7 +35,9 @@ msgstr "برای مرتب کردن کلیک کنید." #: db_central_columns.php:149 #, php-format msgid "Showing rows %1$s - %2$s." -msgstr "نمایش سطرها %1$s - %2$s." +msgstr "" +"نمایش سطرهای\n" +"%1$s - %2$s" #: db_create.php:62 #, php-format @@ -521,24 +523,23 @@ msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." msgstr "" -"گزینه \"شکل از متن\" را از ستون \"عمل\" انتخاب کنید و رشته زیر را در بخش " +"گزینه \"شکل از متن\" را از ستون \"عملکرد\" انتخاب کنید و رشته زیر را در بخش " "\"مقدار\" وارد کنید" #: import.php:55 -#, fuzzy #| msgid "Access denied!" msgid "Succeeded" -msgstr "دسترسي مجاز نيست!" +msgstr "عملیات موفق شد" #: import.php:59 js/messages.php:589 msgid "Failed" -msgstr "" +msgstr "عملیات شکست خورد" #: import.php:63 #, fuzzy #| msgid "complete inserts" msgid "Incomplete params" -msgstr "تمام وروديها" +msgstr "پارامترهای ناقص" #: import.php:183 #, php-format @@ -551,11 +552,11 @@ msgstr "" #: import.php:361 import.php:666 msgid "Showing bookmark" -msgstr "نمایش تاریخچه" +msgstr "نمایش نشانه گذاری" #: import.php:377 import.php:662 msgid "The bookmark has been deleted." -msgstr "تاریخچه حذف شد ." +msgstr "نشانه گذاری حذف شد." #: import.php:475 #, php-format @@ -575,8 +576,8 @@ msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -"فایلی که می خواهید بارگذاری کنید با فرمت (%s) فشرده سازی شده است که پیاده " -"سازی نشده یا در تنظیمات برنامه، غیر فعال شده است." +"فایلی که می خواهید بارگذاری کنید با فرمت (%s) فشرده سازی شده است که پشتیبانی " +"نشده یا در تنظیمات برنامه، غیر فعال شده است." #: import.php:575 msgid "" @@ -590,20 +591,20 @@ msgstr "" #: import.php:627 libraries/display_import.lib.php:665 msgid "Could not load import plugins, please check your installation!" -msgstr "خطا در بارگزاری افزونه ها, لطفا مراحل نصب را چک کنید" +msgstr "خطا در بارگزاری افزونه ها, لطفا مراحل نصب را چک کنید!" #: import.php:669 libraries/sql.lib.php:754 libraries/sql.lib.php:1485 -#, fuzzy, php-format +#, php-format msgid "Bookmark %s has been created." -msgstr "تاریخچه ایجاد شده است" +msgstr "نشانه گذاری %s ایجاد شده است." #: import.php:678 -#, fuzzy, php-format +#, php-format msgid "Import has been successfully finished, %d queries executed." -msgstr "وارد کردن اطلاعات با موفقیت به پایان رسید ,فرآیند اجرا شد ." +msgstr "وارد کردن اطلاعات با موفقیت به پایان رسید، درخواست ها اجرا شد." #: import.php:706 -#, fuzzy, php-format +#, php-format #| msgid "" #| "Script timeout passed, if you want to finish import, please resubmit same " #| "file and import will resume." @@ -612,7 +613,7 @@ msgid "" "same file%s and import will resume." msgstr "" "زمان انتظار اسکریپت به پایان رسیده، اگر مایلید عملیات را به پایان برسانید، " -"همان فایل را دوباره ارسال کنید تا وارد کردن اطلاعات ادامه پیدا کنید." +"همان فایل را دوباره ارسال کنید تا وارد کردن اطلاعات ادامه پیدا کند." #: import.php:716 msgid "" @@ -625,7 +626,7 @@ msgstr "" #: import_status.php:102 msgid "Could not load the progress of the import." -msgstr "" +msgstr "قادر به بارگذاری پیشرفت واردات نیست." #: import_status.php:111 js/messages.php:445 libraries/Util.php:797 #: libraries/export.lib.php:523 @@ -672,7 +673,7 @@ msgstr "تنظیمات ظاهری" #: index.php:262 prefs_manage.php:288 msgid "More settings" -msgstr "تظیمات بیشتر" +msgstr "تنظیمات بیشتر" #: index.php:284 msgid "Database server" From a41fd5ae9ce8ecde7db17c45dc59046f89685438 Mon Sep 17 00:00:00 2001 From: Hauke Henningsen Date: Sat, 21 Nov 2015 09:21:37 +0100 Subject: [PATCH 094/100] Translated using Weblate (German) Currently translated at 100.0% (3223 of 3223 strings) [CI skip] --- po/de.po | 29 ++++++++++++++--------------- 1 file changed, 14 insertions(+), 15 deletions(-) diff --git a/po/de.po b/po/de.po index ab541b2294..c145b66c6f 100644 --- a/po/de.po +++ b/po/de.po @@ -4,10 +4,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-11-18 09:43-0500\n" -"PO-Revision-Date: 2015-10-25 22:31+0200\n" -"Last-Translator: Julian Ladisch \n" -"Language-Team: German \n" +"PO-Revision-Date: 2015-11-21 09:21+0000\n" +"Last-Translator: Hauke Henningsen \n" +"Language-Team: German " +"\n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -996,7 +996,6 @@ msgstr "" "konvertieren wollen?" #: js/messages.php:95 -#, fuzzy #| msgid "" #| "Through this operation, MySQL attempts to map the data values between " #| "collations. If the character sets are incompatible, there may be data " @@ -1711,10 +1710,9 @@ msgid "Formatting SQL…" msgstr "SQL wird formatiert .…" #: js/messages.php:343 -#, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" -msgstr "Ungültige Parameter!" +msgstr "Keine Parameter gefunden!" #: js/messages.php:347 #: templates/database/designer/aggregate_query_panel.phtml:63 @@ -3650,7 +3648,7 @@ msgstr "Alle auswählen" #: libraries/DisplayResults.php:5002 msgid "Copy to clipboard" -msgstr "" +msgstr "In Zwischenablage kopieren" #: libraries/DisplayResults.php:5025 libraries/Util.php:4222 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 @@ -9473,7 +9471,7 @@ msgstr[1] "%s Ergebnisse gefunden" #: libraries/navigation/NavigationTree.php:1369 #: libraries/navigation/NavigationTree.php:1406 msgid "Type to filter these, Enter to search all" -msgstr "" +msgstr "Hier schreiben um zu filtern, Enter um alles zu suchen" #: libraries/navigation/NavigationTree.php:1371 #: libraries/navigation/NavigationTree.php:1407 @@ -10661,16 +10659,16 @@ msgid "Metadata" msgstr "Metadaten" #: libraries/plugins/export/ExportSql.php:1063 -#, fuzzy, php-format +#, php-format #| msgid "Metadata for %s" msgid "Metadata for table %s" -msgstr "Metadaten für %s" +msgstr "Metadaten für Tabelle %s" #: libraries/plugins/export/ExportSql.php:1070 -#, fuzzy, php-format +#, php-format #| msgid "Metadata for %s" msgid "Metadata for database %s" -msgstr "Metadaten für %s" +msgstr "Metadaten für Datenbank %s" #: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 @@ -14640,6 +14638,8 @@ msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" +"Nutzername und Host-Name haben sich nicht geändert. Wenn Sie nur das " +"Passwort ändern wollen, sollten Sie den “Passwort ändern”-Tab verwenden." #: server_status.php:35 msgid "Not enough privilege to view server status." @@ -15486,10 +15486,9 @@ msgid "Stacked" msgstr "Gestapelt" #: templates/table/chart/tbl_chart.phtml:53 -#, fuzzy #| msgid "Chart title" msgid "Chart title:" -msgstr "Titel des Reports" +msgstr "Titel des Reports:" #: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" From 0dae3b2874cbbc8fbaa289b3d3069c92517e2267 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Sat, 21 Nov 2015 11:45:19 +0100 Subject: [PATCH 095/100] Translated using Weblate (Persian) Currently translated at 25.1% (809 of 3223 strings) [CI skip] --- po/fa.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/fa.po b/po/fa.po index cf0ed3bbcc..dc45b1f70e 100644 --- a/po/fa.po +++ b/po/fa.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-11-18 09:43-0500\n" -"PO-Revision-Date: 2015-11-20 22:32+0000\n" -"Last-Translator: m hashemi \n" +"PO-Revision-Date: 2015-11-21 11:45+0000\n" +"Last-Translator: Michal Čihař \n" "Language-Team: Persian " "\n" "Language: fa\n" @@ -599,12 +599,12 @@ msgid "Bookmark %s has been created." msgstr "نشانه گذاری %s ایجاد شده است." #: import.php:678 -#, php-format +#, fuzzy, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "وارد کردن اطلاعات با موفقیت به پایان رسید، درخواست ها اجرا شد." #: import.php:706 -#, php-format +#, fuzzy, php-format #| msgid "" #| "Script timeout passed, if you want to finish import, please resubmit same " #| "file and import will resume." From e02542d0ba955200b70baa9cca94e4eb472f8f30 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sat, 21 Nov 2015 06:50:41 -0500 Subject: [PATCH 096/100] Refactor handling of export template actions Signed-off-by: Marc Delisle --- libraries/display_export.lib.php | 75 ++++++++++++++++++++++++++++++++ tbl_export.php | 66 +--------------------------- 2 files changed, 76 insertions(+), 65 deletions(-) diff --git a/libraries/display_export.lib.php b/libraries/display_export.lib.php index dd858b28db..c900d96ef4 100644 --- a/libraries/display_export.lib.php +++ b/libraries/display_export.lib.php @@ -1107,3 +1107,78 @@ function PMA_getExportDisplay( $html .= ''; return $html; } + +/** + * Handles export template actions + * + * @param array $cfgRelation Relation configuration + * + * @return void + */ +function PMA_handleExportTemplateActions($cfgRelation) +{ + if (isset($_REQUEST['templateId'])) { + $templateId = $_REQUEST['templateId']; + $id = PMA\libraries\Util::sqlAddSlashes($templateId); + } + + $templateTable = PMA\libraries\Util::backquote($cfgRelation['db']) . '.' + . PMA\libraries\Util::backquote($cfgRelation['export_templates']); + $user = PMA\libraries\Util::sqlAddSlashes($GLOBALS['cfg']['Server']['user']); + + switch ($_REQUEST['templateAction']) { + case 'create': + $query = "INSERT INTO " . $templateTable . "(" + . " `username`, `export_type`," + . " `template_name`, `template_data`" + . ") VALUES (" + . "'" . $user . "', " + . "'" . PMA\libraries\Util::sqlAddSlashes($_REQUEST['exportType']) + . "', '" . PMA\libraries\Util::sqlAddSlashes($_REQUEST['templateName']) + . "', '" . PMA\libraries\Util::sqlAddSlashes($_REQUEST['templateData']) + . "');"; + break; + case 'load': + $query = "SELECT `template_data` FROM " . $templateTable + . " WHERE `id` = " . $id . " AND `username` = '" . $user . "'"; + break; + case 'update': + $query = "UPDATE " . $templateTable . " SET `template_data` = " + . "'" . PMA\libraries\Util::sqlAddSlashes($_REQUEST['templateData']) . "'" + . " WHERE `id` = " . $id . " AND `username` = '" . $user . "'"; + break; + case 'delete': + $query = "DELETE FROM " . $templateTable + . " WHERE `id` = " . $id . " AND `username` = '" . $user . "'"; + break; + default: + break; + } + + $result = PMA_queryAsControlUser($query, false); + + $response = PMA\libraries\Response::getInstance(); + if (! $result) { + $error = $GLOBALS['dbi']->getError($GLOBALS['controllink']); + $response->setRequestStatus(false); + $response->addJSON('message', $error); + exit; + } + + $response->setRequestStatus(true); + if ('create' == $_REQUEST['templateAction']) { + $response->addJSON( + 'data', + PMA_getOptionsForExportTemplates($_REQUEST['exportType']) + ); + } elseif ('load' == $_REQUEST['templateAction']) { + $data = null; + while ($row = $GLOBALS['dbi']->fetchAssoc( + $result, $GLOBALS['controllink'] + )) { + $data = $row['template_data']; + } + $response->addJSON('data', $data); + } + $GLOBALS['dbi']->freeResult($result); +} diff --git a/tbl_export.php b/tbl_export.php index 5831971a5c..deac625dc9 100644 --- a/tbl_export.php +++ b/tbl_export.php @@ -28,71 +28,7 @@ $cfgRelation = PMA_getRelationsParam(); // handling export template actions if (isset($_REQUEST['templateAction']) && $cfgRelation['exporttemplateswork']) { - - if (isset($_REQUEST['templateId'])) { - $templateId = $_REQUEST['templateId']; - $id = PMA\libraries\Util::sqlAddSlashes($templateId); - } - - $templateTable = PMA\libraries\Util::backquote($cfgRelation['db']) . '.' - . PMA\libraries\Util::backquote($cfgRelation['export_templates']); - $user = PMA\libraries\Util::sqlAddSlashes($GLOBALS['cfg']['Server']['user']); - - switch ($_REQUEST['templateAction']) { - case 'create': - $query = "INSERT INTO " . $templateTable . "(" - . " `username`, `export_type`," - . " `template_name`, `template_data`" - . ") VALUES (" - . "'" . $user . "', " - . "'" . PMA\libraries\Util::sqlAddSlashes($_REQUEST['exportType']) - . "', '" . PMA\libraries\Util::sqlAddSlashes($_REQUEST['templateName']) - . "', '" . PMA\libraries\Util::sqlAddSlashes($_REQUEST['templateData']) - . "');"; - break; - case 'load': - $query = "SELECT `template_data` FROM " . $templateTable - . " WHERE `id` = " . $id . " AND `username` = '" . $user . "'"; - break; - case 'update': - $query = "UPDATE " . $templateTable . " SET `template_data` = " - . "'" . PMA\libraries\Util::sqlAddSlashes($_REQUEST['templateData']) . "'" - . " WHERE `id` = " . $id . " AND `username` = '" . $user . "'"; - break; - case 'delete': - $query = "DELETE FROM " . $templateTable - . " WHERE `id` = " . $id . " AND `username` = '" . $user . "'"; - break; - default: - break; - } - - $result = PMA_queryAsControlUser($query, false); - - $response = PMA\libraries\Response::getInstance(); - if (! $result) { - $error = $GLOBALS['dbi']->getError($GLOBALS['controllink']); - $response->setRequestStatus(false); - $response->addJSON('message', $error); - exit; - } - - $response->setRequestStatus(true); - if ('create' == $_REQUEST['templateAction']) { - $response->addJSON( - 'data', - PMA_getOptionsForExportTemplates($_REQUEST['exportType']) - ); - } elseif ('load' == $_REQUEST['templateAction']) { - $data = null; - while ($row = $GLOBALS['dbi']->fetchAssoc( - $result, $GLOBALS['controllink'] - )) { - $data = $row['template_data']; - } - $response->addJSON('data', $data); - } - $GLOBALS['dbi']->freeResult($result); + PMA_handleExportTemplateActions($cfgRelation); exit; } From 49feb9f1c7c1017e898b9857f62724ff58e36e95 Mon Sep 17 00:00:00 2001 From: Andrey Aleksanyants Date: Fri, 20 Nov 2015 12:40:05 +0100 Subject: [PATCH 097/100] Translated using Weblate (Armenian) Currently translated at 67.4% (2174 of 3223 strings) [CI skip] --- po/hy.po | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/po/hy.po b/po/hy.po index e0ba38c071..9f374f2943 100644 --- a/po/hy.po +++ b/po/hy.po @@ -8,10 +8,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-11-18 09:43-0500\n" -"PO-Revision-Date: 2015-10-24 16:49+0200\n" +"PO-Revision-Date: 2015-11-20 12:40+0000\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" @@ -989,7 +989,6 @@ msgid "Are you sure you wish to change the collation and convert the data?" msgstr "Համոզվա՞ծ եք, որ ցանկանում եք փոխել համադրումը և փոխարկել տվյալները։" #: js/messages.php:95 -#, fuzzy #| msgid "" #| "Through this operation, MySQL attempts to map the data values between " #| "collations. If the character sets are incompatible, there may be data " @@ -1009,8 +1008,8 @@ msgstr "" "համադրումների միջև։ Եթե գրանշանների կազմերը անհամատեղելի են, հնարավոր է " "տվյալների կորսուստ և տվյալները կարող են ՉԼԻՆԵՆ վերականգնման ենթակա՝ " "ուղղակի սկունակի համադրումը հետարկելու միջոցով։ Առկա տվյալները փոխարկելու " -"համար խորհուրդ է տրվում օգտագործել սյունակ(ների) խմբագրման հատկությունը " -"(\"Փոխել\" հղումը)՝ աղյուսակի կառուցվածքի էջում։" +"համար խորհուրդ է տրվում օգտագործել սյունակ(ների) խմբագրման հատկությունը (\"" +"Փոխել\" հղումը)՝ աղյուսակի կառուցվածքի էջում։" #: js/messages.php:104 msgid "" @@ -1699,10 +1698,9 @@ msgid "Formatting SQL…" msgstr "SQL-ի ձևավորում …" #: js/messages.php:343 -#, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" -msgstr "Անվավեր հարաչափեր" +msgstr "Հարաչափերը չեն գտնվել։" #: js/messages.php:347 #: templates/database/designer/aggregate_query_panel.phtml:63 @@ -10114,16 +10112,16 @@ msgid "Metadata" msgstr "Անդրտվյալներ" #: libraries/plugins/export/ExportSql.php:1063 -#, fuzzy, php-format +#, php-format #| msgid "Metadata for %s" msgid "Metadata for table %s" -msgstr "%s-ի անդրտվյալները" +msgstr "%s աղյուսակի անդրտվյալները" #: libraries/plugins/export/ExportSql.php:1070 -#, fuzzy, php-format +#, php-format #| msgid "Metadata for %s" msgid "Metadata for database %s" -msgstr "%s-ի անդրտվյալները" +msgstr "%s տվյալների բազայի անդրտվյալները" #: libraries/plugins/export/ExportSql.php:1402 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:606 @@ -14545,10 +14543,9 @@ msgid "Stacked" msgstr "" #: templates/table/chart/tbl_chart.phtml:53 -#, fuzzy #| msgid "Chart title" msgid "Chart title:" -msgstr "Գծապատկերի վերնագիր" +msgstr "Գծապատկերի վերնագիր՝" #: templates/table/chart/tbl_chart.phtml:58 msgid "X-Axis:" From 148f7fc06cdcc3eb6ce4a21aef89c2ffa1d2a878 Mon Sep 17 00:00:00 2001 From: Dana Akram Date: Fri, 20 Nov 2015 15:47:09 +0100 Subject: [PATCH 098/100] Translated using Weblate (Kurdish Sorani) Currently translated at 18.1% (586 of 3223 strings) [CI skip] --- po/ckb.po | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/po/ckb.po b/po/ckb.po index 3210e0a990..89d14985d9 100644 --- a/po/ckb.po +++ b/po/ckb.po @@ -8,16 +8,16 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-11-18 09:43-0500\n" -"PO-Revision-Date: 2015-09-14 09:27+0200\n" -"Last-Translator: muhammad \n" -"Language-Team: Kurdish Sorani \n" +"PO-Revision-Date: 2015-11-20 15:47+0000\n" +"Last-Translator: Dana Akram \n" +"Language-Team: Kurdish Sorani " +"\n" "Language: ckb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.4-dev\n" +"X-Generator: Weblate 2.5-dev\n" #: changelog.php:37 license.php:33 #, php-format @@ -744,8 +744,9 @@ msgid "List of changes" msgstr "خشتەی گۆڕانکارییەکان" #: index.php:438 libraries/server_plugins.lib.php:83 +#, fuzzy msgid "License" -msgstr "" +msgstr "مۆڵەت" #: index.php:460 msgid "" @@ -770,6 +771,7 @@ msgstr "" "داتای بنکەی دراوە!" #: index.php:492 +#, fuzzy msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -777,6 +779,7 @@ msgid "" msgstr "" #: index.php:509 +#, fuzzy msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than " From 033e568570496f0068a558cfe32894813b05eaa2 Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 19 Nov 2015 22:08:58 +0100 Subject: [PATCH 099/100] Translated using Weblate (Russian) Currently translated at 96.6% (3114 of 3223 strings) [CI skip] --- po/ru.po | 46 +++++++++++++++++++++------------------------- 1 file changed, 21 insertions(+), 25 deletions(-) diff --git a/po/ru.po b/po/ru.po index fabc28d542..dd80b99daa 100644 --- a/po/ru.po +++ b/po/ru.po @@ -4,17 +4,17 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-11-18 09:43-0500\n" -"PO-Revision-Date: 2015-09-06 06:59+0200\n" -"Last-Translator: Egorov Artyom \n" -"Language-Team: Russian \n" +"PO-Revision-Date: 2015-11-19 22:08+0000\n" +"Last-Translator: Victor Volkov \n" +"Language-Team: Russian " +"\n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 2.4-dev\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" +"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 2.5-dev\n" #: changelog.php:37 license.php:33 #, php-format @@ -946,16 +946,14 @@ msgid "Do you really want to TRUNCATE the selected partition(s)?" msgstr "Вы действительно хотите ОБНУЛИТЬ выбранный(е) раздел(ы)?" #: js/messages.php:82 -#, fuzzy #| msgid "Do you really want to TRUNCATE the selected partition(s)?" msgid "Do you really want to remove partitioning?" -msgstr "Вы действительно хотите ОБНУЛИТЬ выбранный(е) раздел(ы)?" +msgstr "Вы действительно хотите удалить выбранный(е) раздел(ы)?" #: js/messages.php:83 -#, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to RESET SLAVE?" -msgstr "Вы действительно хотите выполнить запрос \"%s\"?" +msgstr "Вы действительно хотите СБРОСИТЬ ПОДЧИНЕННЫЙ СЕРВЕР?" #: js/messages.php:85 msgid "" @@ -979,7 +977,6 @@ msgid "Are you sure you wish to change the collation and convert the data?" msgstr "Вы уверены, что хотите изменить сверку и конвертировать данные?" #: js/messages.php:95 -#, fuzzy #| msgid "" #| "Through this operation, MySQL attempts to map the data values between " #| "collations. If the character sets are incompatible, there may be data " @@ -995,12 +992,13 @@ msgid "" "column(s) editing feature (the \"Change\" Link) on the table structure page. " "" msgstr "" -"Посредством данной операции MySQL делает попытку расположить значения данных " -"между сверками. Если наборы символов неполны, может произойти потеря данных " -"и потерянные данные НЕ смогут быть восстановлены посредством " -"обратного изменения сверки(ок) колонки. Чтобы конвертировать существующие " -"данные, рекомендуется использовать возможность редактировать колонку(и) " -"(ссылка \"Изменить\") на странице структуры таблицы." +"С помощью этой операции, MySQL пытается сопоставить значения данных между " +"различными параметрами сравнения. Если наборы символов несовместимы, может " +"произойти потеря данных и утерянные данные НЕ смогут быть " +"восстановлены посредством обратного изменения сравнения колонки. Чтобы " +"конвертировать существующие данные, рекомендуется использовать возможность " +"редактировать колонку(и) (ссылка \"Изменить\") на странице структуры " +"таблицы." #: js/messages.php:104 msgid "" @@ -1689,10 +1687,9 @@ msgid "Formatting SQL…" msgstr "Форматирование SQL…" #: js/messages.php:343 -#, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" -msgstr "Ошибочные параметры!" +msgstr "Параметры не найдены!" #: js/messages.php:347 #: templates/database/designer/aggregate_query_panel.phtml:63 @@ -3154,10 +3151,9 @@ msgid "Ungroup queries" msgstr "Разгруппировать запросы" #: libraries/Console.php:318 -#, fuzzy #| msgid "Show create" msgid "Show trace" -msgstr "Вывести форму создания" +msgstr "Показать трассировку" #: libraries/Console.php:320 #, fuzzy @@ -3833,6 +3829,7 @@ msgstr "Индексы %1$s и %2$s равнозначны и один из ни msgid "" "Linting is disabled for this query because it exceeds the maximum length." msgstr "" +"Отступы для данного запроса убраны из-за превышения максимальной длинны." #: libraries/Linter.php:165 #, php-format @@ -4945,7 +4942,7 @@ msgstr "Атрибут" #: libraries/central_columns.lib.php:711 #: libraries/central_columns.lib.php:1385 msgid "A_I" -msgstr "" +msgstr "A_I" #: libraries/central_columns.lib.php:751 msgid "Select a table" @@ -15749,10 +15746,9 @@ msgid "Improve table structure" msgstr "Улучшить структуру таблицы" #: templates/table/structure/optional_action_links.phtml:34 -#, fuzzy #| msgid "Track table" msgid "Track view" -msgstr "Отслеживать таблицу" +msgstr "Отслеживать представление" #: templates/table/structure/row_stats_table.phtml:3 msgid "Row statistics" From a8c6cdc0065600bbc2f051d0dc59285a11e490f1 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sat, 21 Nov 2015 07:40:27 -0500 Subject: [PATCH 100/100] Fix warnings; remove unneeded variable Signed-off-by: Marc Delisle --- libraries/display_export.lib.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libraries/display_export.lib.php b/libraries/display_export.lib.php index c900d96ef4..73537fe7a9 100644 --- a/libraries/display_export.lib.php +++ b/libraries/display_export.lib.php @@ -1118,8 +1118,9 @@ function PMA_getExportDisplay( function PMA_handleExportTemplateActions($cfgRelation) { if (isset($_REQUEST['templateId'])) { - $templateId = $_REQUEST['templateId']; - $id = PMA\libraries\Util::sqlAddSlashes($templateId); + $id = PMA\libraries\Util::sqlAddSlashes($_REQUEST['templateId']); + } else { + $id = ''; } $templateTable = PMA\libraries\Util::backquote($cfgRelation['db']) . '.' @@ -1152,6 +1153,7 @@ function PMA_handleExportTemplateActions($cfgRelation) . " WHERE `id` = " . $id . " AND `username` = '" . $user . "'"; break; default: + $query = ''; break; }